/* Above Fold */

@media only screen and (min-width: 0px) {
    .home {
        width: 100%;
        height: 27rem;
        overflow: hidden;
    }
    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        display: block;
        z-index: -1;
        position: relative;
        pointer-events: none;
    }
    .home .cta {
        position: absolute;
        inset: 0;  
        height: 32rem;                     /* stretch over the image */
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: clamp(16px, 5vw, 48px);
        text-align: center;
        color: #fff;
    }
    .home .cta p {
        font-family: 'Gilroy', sans-serif;
        font-weight: 500;
        font-size: 1rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    h1 {
        font-family: 'Libre', serif;
        font-weight: 500;
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.25;
        text-shadow: 0px 1px 20px rgb(0, 0, 0);
    }
    .home .cta a {
        font-family: 'Gilroy', sans-serif;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 1rem;
        background-color: #B05E1F;
        padding: 20px 26px;
        text-transform: uppercase;
        letter-spacing: 3px;
    }
    .home::before {
  content: "";
  position: absolute;
  height: 30rem;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,      /* top dark */
    rgba(0, 0, 0, .6) 40%,       /* fade to transparent */
    rgba(0, 0, 0, 0.6) 30%,       /* stay clear */
    rgba(0, 0, 0, 0) 100%     /* bottom dark */
  );
  pointer-events: none; /* so clicks pass through */
  z-index: 1;
}


    /* ----------- Location Scroller ----------- */


    #location-scroller {
        position: relative;
    }
    .gradient-left::before {
        content: "";
        position: absolute;
        height: 4rem;
        width: 5rem;
        inset: 0;
        z-index: 3;
        background: -webkit-linear-gradient(90deg, rgba(10, 2, 3, 1) 0%, rgba(10, 2, 3, 0) 100%);
        background: #0A0203;
        background: linear-gradient(90deg, rgba(10, 2, 3, 1) 0%, rgba(10, 2, 3, 0) 100%);
        background: -moz-linear-gradient(90deg, rgba(10, 2, 3, 1) 0%, rgba(10, 2, 3, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0A0203", endColorstr="#0A0203", GradientType=1);
    }
    .gradient-right::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 4rem;
        width: 5rem;
        z-index: 3;
        background: -webkit-linear-gradient(-90deg, rgba(10, 2, 3, 1) 0%, rgba(10, 2, 3, 0) 100%);
        background: #0A0203;
        background: linear-gradient(-90deg, rgba(10, 2, 3, 1) 0%, rgba(10, 2, 3, 0) 100%);
        background: -moz-linear-gradient(-90deg, rgba(10, 2, 3, 1) 0%, rgba(10, 2, 3, 0) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0A0203", endColorstr="#0A0203", GradientType=1);
    }
    #location-scroller > div {
        padding-left: 1rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        background-color: #000;
        height: 4.5rem;
    }
    #location-scroller > div p {
        font-family: 'Libre', serif;
        font-weight: 500;
        color: #fff;
        margin-right: 1rem;
    }
    #location-scroller > div img {
        margin-right: 1rem;
    }

    /* Outer shell */
.location-scroller {
    position: relative;
    height: 4.5rem;
    background-color: #0A0203;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: "Cormorant Garamond", serif; /* or whatever you're using */
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
}

/* The moving belt */
.scroller-track {
    display: flex;
    align-items: center;
    /* The trick: the whole thing slides left forever */
    animation: scroll-left 30s linear infinite;
}

/* One "set" of cities/logos */
.scroller-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 2rem; /* space before repeating */
}

.scroller-group p {
    color: #fff;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* logo alignment tweak */
.scroller-group img {
    display: block;
    height: 35px;
    width: 35px;
    object-fit: contain;
}

/* Animation:
   Start at 0.
   Move left by 50 percent of total width.
   Because we duplicated content, 50 percent of the track
   brings copy #2 into the same place copy #1 started.
   Then it snaps back to 0 and repeats. */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

    /* ------- Quote ------- */


    #meet-the-owner {
        background-color: #FFFCF5;
        padding: 5rem 1rem 2rem 1rem;
        font-family: 'Libre', serif;
        line-height: 160%;
        text-align: center;
    }
    #meet-the-owner .quote {
        position: relative;
    }
    #meet-the-owner > .quote > .first {
        position: absolute;
        top: -40px;
        left: 10px;
    }
    #meet-the-owner > .quote > .last {
        position: absolute;
        bottom: 50px;
        right: 10px;
    }
}

@media only screen and (min-width: 768px) {

    /* Hero */

    h1 {
        width: 25rem;
        font-size: 2.5rem;
    }


    /* Quote */

    #meet-the-owner .quote {
        max-width: 31rem;
        margin: auto;
    }

    #meet-the-owner > .quote > .first {
        position: absolute;
        top: -40px;
        left: 10px;
    }
    #meet-the-owner > .quote > .last {
        position: absolute;
        bottom: 40px;
        right: 25px;
    }


    /* Meet the Owner */

    #meet-the-owner {
        padding: 6rem 2rem 3rem 2rem;
    }

    #meet-the-owner .bio {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10%;
    }

    #meet-the-owner .bio img {
        height: 25rem !important;
        object-fit: cover;
    }

    #meet-the-owner .bio .mto-text {
        width: 100%;
        text-align: start;
    }

    .bio .gradient-border {
        margin-bottom: 0rem;
        width: 59%;
    }

    .mto-text .link {
        display: block;
        width: fit-content;
        padding: .75rem 1.75rem;
        margin: unset !important;
    }

    
}

@media only screen and (min-width: 1100px) {

    /* Hero Image */

    #home {
        height: 30rem;
    }

    .home .cta {
        position: absolute;
        inset: 0;
        height: 34rem;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: clamp(16px, 5vw, 48px);
        text-align: center;
        color: #fff;
    }

    h1 {
        font-size: 3.75rem;
        width: 35rem;
    }

    .home .cta p {
        font-size: 18px;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .home .cta a {
        font-size: 18px;
    }


    /* Location Scroller */

    #location-scroller > div p {
        margin-right: 4rem;
    }

    #location-scroller > div img {
        margin-right: 4rem;
    }

    .scroller-track {
        animation: scroll-left 60s linear infinite;
    }


    /* Quote */

    #meet-the-owner {
        padding: 8rem 3rem 8rem 3rem;
    }

    #meet-the-owner .bio {
        max-width: 1200px;
        margin: auto;
        gap: 7%;
    }

    #meet-the-owner .bio h2 {
        font-size: 18px;
    }

    #meet-the-owner .bio h3 {
        font-size: 3rem;
    }

    #meet-the-owner .bio img {
        height: 30rem !important;
        width: 30rem !important;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    #meet-the-owner .quote {
        font-size: 2rem;
        line-height: 1.6;
        max-width: 52rem;
        margin-bottom: 2rem;
    }

    #meet-the-owner .quote .first {
        width: 50.5px;
        height: 40.5px;
        left: -55px;
        top: -35px;
    }

    #meet-the-owner .quote .last {
        width: 50.5px;
        height: 40.5px;
        bottom: 90px;
        right: 35px;
    }
}

@media only screen and (min-width: 1300px) {
}

/* Main */

@media only screen and (min-width:0px){

   /* ------- Reviews ------- */

    .google-reviews {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        letter-spacing: 0px;
        margin-bottom: 5rem;
        min-height: 35rem;
    }

    .google-reviews h2 {
        text-align: center;
    }

    .google-reviews h3 {
        text-align: center;
    }

   /* ------- Quote ------- */

    #meet-the-owner .quote {
        margin-bottom: 2rem;
    }

    #meet-the-owner .bio img {
        z-index: 2;
        height: auto;
        width: 100%;
        padding: .5rem;
    }

    .gradient-border {
        width: 100%;
        height: 100%;
        display: inline-block;
        padding: 2px; /* thickness of the border */
        background: #9C530D;
        background: -webkit-linear-gradient(90deg, rgba(156, 83, 13, 1) 0%, rgba(247, 222, 180, 1) 54%, rgba(156, 83, 13, 1) 100%);
        background: -moz-linear-gradient(90deg, rgba(156, 83, 13, 1) 0%, rgba(247, 222, 180, 1) 54%, rgba(156, 83, 13, 1) 100%);
        background: linear-gradient(90deg, rgba(156, 83, 13, 1) 0%, rgba(247, 222, 180, 1) 54%, rgba(156, 83, 13, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9C530D", endColorstr="#9C530D", GradientType=1);
        margin-bottom: 1rem;
    }

    .gradient-border img {
        display: block;
        background: #fff;
    }

    h2 {
        font-family: 'Gilroy', sans-serif;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #BB6622;
        font-size: 1rem;
        text-align: start;
        margin-bottom: 1rem;
    }

    h3 {
        font-family: 'Libre', serif;
        font-weight: 500;
        font-size: 2rem;
        line-height: 1.2;
        text-align: start;
        margin-bottom: 2rem;
    }

    .bio p {
        font-family: 'Inter', sans-serif;
        text-align: start;
        font-size: 18px;
        margin-bottom: 3rem;
    }

    .mto-text .link {
        margin: auto;
    }

    .link {
        font-family: 'Gilroy', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 1rem 1.75rem;
        border: #BB6622 2px solid;
        display: block;
        width: fit-content;
    }


    /* ------ Services ------ */

    #services {
        background-color: #F6F0E3;
        padding: 3rem 1rem 1rem 1rem;
    }

    #services h2, #services h3 {
        text-align: center;
    }

    #services .gradient-border img {
        z-index: 2;
        height: auto;
        width: 100%;
        padding: .5rem;
        background-color: #F6F0E3;
        border-radius: 15rem 15rem 2rem 2rem;
    }

    #services .gradient-border {
        border-radius: 15rem 15rem 2.2rem 2.2rem;
        margin-bottom: 1.5rem;
    }

    .small-header {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .small-header img {
        margin-right: .5rem;
    }

    #services .service {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }

    #services .service h2 {
        color: #000;
        font-family: 'Libre', serif;
        font-weight: 800;
        margin-bottom: 1.75rem;
        font-size: 2rem;
        text-transform: capitalize;
        letter-spacing: -1px;
        text-align: start;
        width: 100%;
        line-height: 1.2;
    }

    #services .service h3 {
        font-family: 'Gilroy', sans-serif;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 1rem;
        margin-bottom: 0rem;
    }
    #services .service p {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
.triangle-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 2rem;
  width: 100%;
}
.triangle-list li {
  position: relative;
  padding-left: 1.25rem;          /* space for the triangle */
  margin: .45rem 0;
  line-height: 1.2;
  display: block;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.triangle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #111;    /* color of the triangle */
}

    .service-text a {
                    margin: auto;
    }

    /* ------- Signature Process ------- */

    #signature-process {
        padding: 5rem 2rem 3rem 2rem;
        background-color: #FFFCF5;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #signature-process h3 {
        font-family: 'Libre', serif;
        font-weight: 500;
        font-size: 2rem;
        line-height: 1.2;
        text-align: start;
        margin-bottom: 2rem;
        text-transform: capitalize;
        color: #000;
        letter-spacing: -1px;
        text-align: center;
    }

    #signature-process h2 {
        text-align: center;
        font-family: 'Gilroy', sans-serif;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #BB6622;
        font-size: 1rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    #signature-process .step {
        margin: 1rem 0rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    #signature-process .step .number {
        font-size: 2.625rem;
        font-family: 'Libre', serif;
        color: #BB6622;
        margin-bottom: 2rem;
    }
    #signature-process .step h4 {
        font-family: 'Libre', serif;
        font-weight: 800;
        margin-bottom: 1rem;
        font-size: 1.125;
    }
    #signature-process .step .desc {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
    }
    #signature-process .divider-line {
        display: block;
        height: 1px;
        margin: .5rem 0rem 1.5rem 0rem;
        background: #BB6622;
        width: 100%;
    }

    /* ----- Wedding Spotlight ----- */

    #wedding-spotlight {
        background-color: #FFFCF5;
        display: flex;
        justify-content: center;
        align-items: center;  
        flex-direction: column;
        padding: 1rem 1rem 3rem 1rem;
    }

    #wedding-spotlight h3 {
        text-align: center;
    }

    #wedding-spotlight .gradient-border {
        margin-bottom: 2rem;
    }

    #wedding-spotlight .gradient-border img {
        z-index: 2;
        height: auto;
        width: 100%;
        padding: .5rem;
    }

    #wedding-spotlight .gradient-border .small {
        display: none;
    }

    .d-none-small {
        display: none;
    }

    #wedding-spotlight .small-header h3 {
        font-family: 'Gilroy', sans-serif;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 1rem;
        margin-bottom: 0rem;
    }

    #wedding-spotlight p {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    #wedding-spotlight .link {
        margin: auto;
    }

    #wedding-spotlight h3 br {
        display: none;
    }


    /* ------ Picture Reviews */

    #pictures-review {
        background-color: #0A0203;
        padding: 3rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #pictures-review .pictures {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        gap: 5%;
        margin-bottom: 3rem;
    }
    #pictures-review .pictures .first-pic {
        width: auto;
        height: 7rem;
        position: relative;
        bottom: -1rem;
    }
    #pictures-review .pictures .second-pic {
        width: auto;
        height: 13rem;
    }
    #pictures-review .pictures .third-pic {
        width: auto;
        height: 7rem;
        position: relative;
        bottom: 1rem;
    }
    #pictures-review .quote > p {
        color: #fff;
        text-align: center;
        font-family: 'Libre', serif;
        font-size: 1.25rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    #pictures-review > .quote {
        position: relative;
    }
    #pictures-review > .quote > .first {
        position: absolute;
        top: -20px;
    }
    #pictures-review > .quote > .last {
        position: absolute;
        right: 0px;
        bottom: 10px;
    }
    #pictures-review .orange-link {
        font-family: 'Gilroy', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 700;
        font-size: 1rem;
        color: #BB6622;
        padding: 1rem 1.5rem;
        border: #BB6622 solid 2px;
    }


    /* ------ Gallery ------ */

    #gallery {
        padding: 3rem 1rem 0rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #FFFCF5;
    }

    #gallery h3 {
        letter-spacing: -1px;
        text-align: center;
    }
    #gallery .gradient-border {
        border-radius: 15rem 15rem 2rem 2rem;
        position: relative;
    }
    .gradient-overlay::before {
        content: "";
        position: absolute;
        height: 24rem;
        inset: 0;
background: #000000;
background: -webkit-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.8) 100%);
background: -moz-linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.8) 100%);
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0.8) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
z-index: 1;
        margin: .6rem .6rem;
        padding: 1rem;
        border-radius: 15rem 15rem 1.25rem 1.25rem;
        height: auto;
    }
    #gallery .gradient-border img {
        z-index: 2;
        height: auto;
        width: 100%;
        padding: .5rem;
        background-color: #FFFCF5;
        border-radius: 15rem 15rem 1.75rem 1.75rem;
        height: 24rem;
        width: 20rem;
        object-fit: cover;
    }
    #gallery .gradient-border a {
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        border: #BB6622 2px solid;
        padding: 1.25rem 1.75rem;
        width: 14rem;
        text-align: center;
        -webkit-box-shadow: 0px 1px 39px -13px #000000; 
        box-shadow: 0px 1px 39px -13px #000000;
        font-family: 'Gilroy', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 1rem;
        z-index: 3;
    }
    #gallery > div {
        margin-bottom: 2rem;
    }


    /* ------ Person Review ------ */
#person-review {
  padding: 3rem 1rem;
  position: relative; /* keeps absolutely positioned children within this section */
  overflow: hidden;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: start;
}

/* target the actual class used in your HTML */
#person-review img.bg-img,
#person-review picture {
  position: absolute;
  inset: 0;                 /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  z-index: 0;               /* place image behind content but above parent background */
  filter: brightness(50%);
}

/* make sure foreground content sits above the image */
#person-review .review {
  position: relative;
  z-index: 1;
}

.pr-image {
    margin-top: 2rem;
}

.review .person {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.review .person h2 {
    font-family: 'Libre', serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.3;
    letter-spacing: -1px;
    text-transform: capitalize;
    color: #fff;
    margin-top: 1rem;
}

.review .quote img {
    margin-right: 1.25rem;
}

.review .quote > div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.review .quote {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.review .quote p {
    font-family: 'Libre', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: -1px;
    color: #fff;
}
.review .quote a {
    color: #fff;
    margin-bottom: 2rem;
}


/* ----- As Featured In ----- */

#as-seen-in {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 3rem 1rem 2rem 1rem;
}

#as-seen-in .title h2 {
    text-align: center;
}

#as-seen-in .title h3 {
    text-align: center;
    font-size: 1.5rem;
}

#as-seen-in .gradient-border img {
    z-index: 2;
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: .5rem;
    object-fit: cover;
}


/* ------ FAQ ------ */

#faq {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem 1rem 3rem 1rem;
}

#faq .title h2 {
    text-align: center;
}

#faq .title h3 {
    text-align: center;
}

.faq-item {
    width: 100%;
}

.faq-item summary {
    margin-bottom: 1rem;
}

.faq-item summary > span {
    font-family: 'Libre', serif;
    letter-spacing: -1px;
    line-height: 1.3;
}

.faq-item .panel p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    letter-spacing: 0px;
    font-size: 1rem;
    padding-bottom: 1rem;
}

.faq-item .pm {
    margin-left: auto;
}

:root {
    --dur: .28s;
    --ease: cubic-bezier(.2, .6, .2, 1);
    --divider: #e7e0d7;
}

.faq-item {
    border-bottom: 1px solid var(--divider);
    padding-block: 12px;
    margin-bottom: 1rem;
}

#faq :nth-child(7){
    border-bottom: none;
}

/* remove default marker */
.faq-item>summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
}

.faq-item>summary::-webkit-details-marker {
    display: none;
}

/* plus/minus icon built from two bars */
.pm {
    position: relative;
    width: 18px;
    height: 18px;
}

.pm::before,
.pm::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 18px;
    height: 1.35px;
    background: currentColor;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.pm::after {
    transform: rotate(90deg);
}

/* vertical bar */
.faq-item[open] .pm::after {
    transform: rotate(0deg);
    opacity: 0;
}

/* hide to make minus */

/* the animation: grid rows from 0fr to 1fr gives auto-height feel */
.panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--dur) var(--ease);
}

.faq-item[open] .panel {
    grid-template-rows: 1fr;
}

.panel>div {
    overflow: hidden;
}

/* nice little fade/slide for content */
.faq-item[open] .panel>div {
    animation: fade-in var(--dur) var(--ease);
}

.faq-item.closing[open] .panel { grid-template-rows: 0fr; }

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    #faq .more-info {
        display: flex;
        justify-self: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin: 1rem 0rem;
    }

    #faq .more-info p {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: .5rem;
    }

    #faq .more-info a {
        color: #BB6622;
        font-family: "Inter", sans-serif;
        font-weight: 700;
    }

    #faq .more-info img {
        margin-bottom: -.1rem;
        margin-right: .5rem;
    }


    /* ----- Lookbook ----- */

    #lookbook {
        padding: 8rem 1rem;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #lookbook img {
        z-index: 2;
        height: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

    #lookbook .bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        pointer-events: none;
        z-index: 0;
        filter: brightness(50%);
    }

    #lookbook > div {
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        color: #fff;
    }

    #lookbook h2 {
        font-family: 'Libre', serif;
        font-weight: 800;
        font-size: 2rem;
        line-height: 1.2;
        text-align: start;
        margin-bottom: 2rem;
        color: #fff;
        text-transform: none;
        letter-spacing: -1px;
    }

    #lookbook > div > p {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    #lookbook picture::before {
        content: "";
        position: absolute;
        height: 24rem;
        inset: 0;
        background: #000000;
        background: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
        background: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
        background: linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
        z-index: 1;
        height: auto;
    }

    /* ----- Get Started ----- */

    #get-started {
        padding: 3rem 1rem;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #get-started .bg-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        pointer-events: none;
        z-index: 0;
        filter: brightness(50%);
    }

    #get-started > picture::before {
        content: "";
        position: absolute;
        height: 24rem;
        inset: 0;
background: #F6F0E3;
background: -webkit-linear-gradient(180deg, rgba(246, 240, 227, 0.25) 0%, rgba(246, 240, 227, 0.9) 50%);
background: -moz-linear-gradient(180deg, rgba(246, 240, 227, 0.25) 0%, rgba(246, 240, 227, 0.9) 50%);
background: linear-gradient(180deg, rgba(246, 240, 227, 0.25) 0%, rgba(246, 240, 227, 0.9) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6F0E3", endColorstr="#F6F0E3", GradientType=0);
        z-index: 1;
        height: auto;
    }

    #get-started .content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        z-index: 2;
    }
    #get-started .content > div {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 3rem 0rem;
    }
    #get-started h3 {
        text-align: center;
        letter-spacing: -1px;
    }
    #get-started .content img {
        height: 15rem;
        width: auto;
    }


    /* ----- Contact & Inquiry ----- */

    #contact-and-inquiry {
        background-color: #FFFCF5;
        padding: 3rem 1rem;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #contact-and-inquiry > div {
        width: 100%;
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
    }

    #contact-and-inquiry .contact-info p {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    #contact-and-inquiry .contact-info > div {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-direction: row;
        margin-bottom: 1rem;
        width: 100%;
    }

    #contact-and-inquiry .icon {
        width: 1.5rem;
        height: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 1rem;
    }

    #contact-and-inquiry .contact-info div a {
        font-family: 'Inter', sans-serif;
        font-size: 1.125rem;
        margin-bottom: 0rem;
        font-weight: 500;
    }

    #contact-and-inquiry .contact-info .icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* ----- Form ----- */

    .form {
        padding: 1rem 0rem;
        width: 100%;
    }

    .form label {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .form .form-row {
        width: 100%;
    }

    .form input {
        background-color: #FFFCF5;
        border: none;
        border-bottom: .1rem solid black;
        padding: .75rem 1rem;
        font-size: 1rem;
        margin-top: .5rem;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .form select {
        background-color: #FFFCF5;
        border: none;
        border-bottom: .1rem solid black;
        padding: .75rem 1rem;
        font-size: 1rem;
        margin-top: .5rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .form textarea {
        font-family: 'Inter', sans-serif;
        background-color: #FFFCF5;
        border: none;
        border-bottom: .1rem solid black;
        padding: .75rem 1rem;
        font-size: 1rem;
        margin-top: .5rem;
        width: 100%;
        margin-bottom: 1.5rem;
        letter-spacing: 0px;
        line-height: 1.6;
    }

    .form button {
        font-family: 'Gilroy', sans-serif;
        font-weight: 700;
        background-color: #FFFCF5;
        padding: 1rem 1rem;
        font-size: 1.125rem;
        margin-top: .5rem;
        width: 100%;
        letter-spacing: 2px;
        line-height: 1.6;
        border: #BB6622 .15rem solid;
    }


    /* ------ Footer ------ */

    footer {
        background-color: #000;
        padding: 4rem 1rem 2rem 1rem;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: #fff;
    }

    footer .f-logo {
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: 1px;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    footer .f-logo img {
        margin-bottom: 1.5rem;
    }

    .f-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }

    .f-nav a {
        margin-bottom: 2rem;
    }

    footer h2 {
        font-family: 'Libre', serif;
        font-weight: 500;
        font-size: 1.5rem;
        line-height: 1.3;
        letter-spacing: 0px;
        text-transform: capitalize;
        text-align: start;
        margin-bottom: 2rem;
    }

    .f-location {
        margin-top: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }

    footer hr {
        border: 0;
        width: 100%;
        height: 1px;
        margin: 4rem 0rem 2rem 0rem;
        background: #3e3e3e;
    }

    footer span {
        background-color: #000;
        color: #fff;
        width: 100%;
        font-size: 1rem;
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        text-align: center;
    }
}

@media only screen and (min-width:768px){

    /* Google Reviews */

    .google-reviews {
        margin-bottom: 4rem;
    }


    /* Services */

    #services {
        padding: 5rem 2rem 1rem 2rem;
    }

    #services .service {
        margin: 4rem 0rem;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 7%;
    }

    #services > :nth-child(2 of .service) {
        flex-direction: row;
    }

    #services .gradient-border {
        width: 75%;
    }

    #services .service-text {
        text-align: start;
        width: 100%;
    }

    .service-text a {
        margin: unset;
    }


    /* Wedding Spotlight */

    #wedding-spotlight {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8%;
        padding: 3rem 2rem 5rem 2rem;
    }

    #wedding-spotlight h2 {
        width: 100%;
        text-align: center;
    }

    #wedding-spotlight h3 {
        width: 30rem;
        margin: auto;
        margin-bottom: 3rem;
    }

    #wedding-spotlight .link {
        margin: unset;
    }

    #wedding-spotlight .gradient-border {
        width: auto;
    }

    #wedding-spotlight .gradient-border img {
        width: 14rem;
        height: 18rem;
        object-fit: cover;
    }

    #wedding-spotlight .ws-text {
        width: 45%;
    }


    /* Pictures Review */

    #pictures-review {
        background-color: #0A0203;
        padding: 5rem 2rem;
    }

    #pictures-review .quote {
        max-width: 32rem;
    }
    
    #pictures-review .pictures .first-pic {
        height: 12rem;
        bottom: -1rem;
    }

    #pictures-review .pictures .second-pic {
        height: 18rem;
    }

    #pictures-review .pictures .third-pic {
        height: 12rem;
        bottom: 1rem;
    }


    /* Remarkable Memories */

    #gallery {
        padding: 5rem 2rem 2rem 2rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5%;
    }

    #gallery h2 {
        width: 100%;
        text-align: center;
    }

    #gallery h3 {
        width: 100%;
        text-align: center;
    }


    /* Person Review */

    #person-review {
        padding: 5rem 2rem;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #person-review .review {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5%;
    }

    #person-review .person {
        width: 80%;
    }

    .review .quote > div {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    #person-review .quote {
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #person-review .link {
        margin-left: 1rem;
    }

    .review .quote a {
        margin-bottom: 1rem;
    }


    /* As Seen In */

    #as-seen-in {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 5rem 2rem 3rem 2rem;
    }

    #as-seen-in .gradient-border img {
        aspect-ratio: unset;
    }


    /* FAQs */

    #faq {
        padding: 2rem 2rem 5rem 2rem;
    }

    #faq .more-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        width: 100%;
        text-align: center;
        margin: 1rem 0rem;
    }

    #faq .more-info br {
        display: none;
    }

    #faq .more-info img {
        margin-left: 1rem;
        margin-bottom: -.05rem;
    }

    #faq .more-info a {
        margin-bottom: .25rem;
    }


    /* Your Guide to Refined Floral Design */

    #lookbook {
        padding: 8rem 2rem;
    }

    #lookbook picture::before {
        content: "";
        position: absolute;
        height: 24rem;
        inset: 0;
        background: #000000;
        background: -webkit-linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
        background: -moz-linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
        background: linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
        z-index: 1;
        height: auto;
    }

    #lookbook > div h2 {
        width: 50%;
    }

    #lookbook > div p {
        width: 50%;
    }

    #lookbook .bg-img {
        filter: brightness(100%);
    }


    /* Get Started */

    #get-started {
        padding: 5rem 2rem;
    }

    #get-started .content {
        flex-direction: row;
        gap: 5%;
    }

    #get-started .content img {
        height: 12rem;
        width: auto;
    }

    #get-started > picture::before {
        content: "";
        position: absolute;
        height: 24rem;
        inset: 0;
        background: #F6F0E3;
        background: -webkit-linear-gradient(180deg, rgba(246, 240, 227, 0.25) 0%, rgba(246, 240, 227, 0.9) 0%);
        background: -moz-linear-gradient(180deg, rgba(246, 240, 227, 0.25) 0%, rgba(246, 240, 227, 0.9) 0%);
        background: linear-gradient(180deg, rgba(246, 240, 227, 0.25) 0%, rgba(246, 240, 227, 0.9) 0%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6F0E3", endColorstr="#F6F0E3", GradientType=0);
        z-index: 1;
        height: auto;
    }


    /* Contact & Inquiry */

    #contact-and-inquiry {
        padding: 5rem 2rem;
    }

    footer {
        padding: 5rem 2rem 2rem 2rem;
        display: flex;
        flex-wrap: wrap;    
        flex-direction: row;
        justify-content: center;
        align-items: start;
    }

    footer .f-logo {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 4rem;
    }

    footer .f-nav {
        width: 45%;
    }

    footer .f-nav h2 {
        margin-top: 1rem;
    }

    footer .f-logo p {
        width: 20rem;
    }

    footer .f-location {
        width: 50%;
        height: 22rem;
    }

    #contact-and-inquiry .contact-info .icons {
        justify-content: start;
    }
}

@media only screen and (min-width:1024px){

    /* Meet the Owner */

    #meet-the-owner {
        padding: 6rem 2rem 3.5rem 2rem;
    }

    #meet-the-owner .quote {
        margin-bottom: 1rem;
    }


    /* Signature Process */

    #signature-process {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: start;
        gap: 5%;
    }

    #signature-process .step {
        width: 19rem;
        border-right: #BB6622 solid 1px;
        padding-right: 2rem;
        margin-bottom: 2rem;
    }

    #signature-process h2 {
        width: 100%;
    }

    #signature-process h3 {
        width: 100%;
    }

    #signature-process .divider-line {
        display: none;
    }


    /* Wedding Spotlight */

    #wedding-spotlight h3 {
        width: 100%;
        margin: auto;
        margin-bottom: 3rem;
    }

    #wedding-spotlight .small-header h3 {
        width: fit-content;
        margin: unset;
    }

    #wedding-spotlight .gradient-border img {
        width: 24rem;
        height: 30rem;
        object-fit: cover;
    }

    #wedding-spotlight .gradient-border {
        margin-bottom: 0rem;
    }


    /* Person Review */

    #person-review .person {
        width: 40%;
    }

    .review .quote img {
        height: 120px;
    }

    #person-review .link {
        margin-left: .5rem;
    }


    /* As Seen In */

    #as-seen-in .title h3 {
        text-align: center;
        font-size: 2.5rem;
    }


    /* FAQ */

    #faq h3 {
        font-size: 2.5rem;
    }


    /* Your Guide / Lookbook */

    #lookbook > div h2 {
        width: 22rem;
    }


    /* Get Started */

    #get-started .content img {
        height: 18rem;
        width: auto;
    }


    /* Contact & Inquiry */

    #contact-and-inquiry > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #contact-and-inquiry .contact-info p {
        width: 20rem;
    }

    .form {
        width: 55%;
        padding-top: 0rem;
    }


    /* Footer */

    footer {
        display: flex;
        justify-content: space-between;
        align-items: start;
        padding: 5rem 3rem 2rem 3rem;
    }

    footer .f-logo {
        width: 17rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        margin-bottom: 4rem;
    }

    footer .f-logo p {
        text-align: start;
        width: 17rem;
    }

    footer .f-nav {
        width: 10rem;
    }

    footer .f-location {
        width: 35%;
        height: 22rem;
    }
}

@media only screen and (min-width:1100px){

   /* ------- Reviews ------- */

    .google-reviews h2 {
        font-size: 18px;
    }

    .google-reviews h3 {
        font-size: 3rem;
        margin-bottom: 4rem;
    }

    /* Services */

    #services {
        padding: 6rem 2rem 1rem 2rem;
    }

    #services h2 {
        font-size: 18px;
    }

    #services h3 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    #services .service h3 {
        font-size: 18px;
    }

    #services .service {
        max-width: 1200px;
        margin: auto;
        gap: 15%;
        margin-bottom: 3rem;
    }

    #services .service-text {
        width: 30rem;
    }

    #services .gradient-border img {
        height: 100%;
        width: auto;
    }

    #services .gradient-border {
        height: 30rem;
        width: auto;
    }

    /* Meet the Owner */

    #meet-the-owner {
        padding: 6rem 2rem 4.5rem 2rem;
    }


    /* How We Work / Our Signature Process */

        #signature-process {
        padding: 8rem 2rem 3rem 2rem;
    }

    #signature-process .step {
        width: 19rem;
        border-right: #BB6622 solid 1px;
        padding-right: 2rem;
        margin-bottom: 2rem;
    }

    #signature-process div.step:last-of-type {
        border-right: none;
    }

    #signature-process h2 {
        font-size: 18px;
    }

    #signature-process h3 {
        font-size: 3rem;
        margin-bottom: 3rem;
    }


    /* Wedding Spotlight */

    #wedding-spotlight {
        gap: 6%;
    }

    #wedding-spotlight h2 {
        font-size: 18px;
    }

    #wedding-spotlight h3 {
        font-size: 3rem;
    }

    #wedding-spotlight h3 br {
        display: block;
    }

    #wedding-spotlight .ws-text {
        width: 34rem;
    }

    #wedding-spotlight .gradient-border {
        margin-top: auto;
    }

    #wedding-spotlight {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8%;
        padding: 3rem 2rem 8rem 2rem;
    }


    /* Picture Review */

    #pictures-review {
        background-color: #0A0203;
        padding: 8rem 2rem;
    }

    #pictures-review .pictures .second-pic {
        height: 25rem;
    }

    #pictures-review .pictures .third-pic {
        height: 15rem;
        bottom: 1.5rem;
    }

    #pictures-review .pictures .first-pic {
        height: 15rem;
        bottom: -1.5rem;
    }


    /* Gallery */

    #gallery {
        padding: 7rem 2rem 4rem 2rem;
    }

    #gallery h2 {
        font-size: 18px;
    }

    #gallery h3 {
        margin-bottom: 3rem;
        font-size: 3rem;
    }


    /* Person Review */

    #person-review {
        padding: 8rem 2rem;
    }


    /* As Seen In */

    #as-seen-in {
        padding: 7rem 2rem 3rem 2rem;
    }

    #as-seen-in h2 {
        font-size: 18px;
    }

    #as-seen-in h3 {
        font-size: 3rem;
    }

    #as-seen-in .gradient-border  {
        width: 55rem;
    }


    /* FAQ */

    #faq {
        max-width: 1000px;
        margin: auto;
    }

    #faq h2 {
        font-size: 18px;
    }

    #faq h3 {
        font-size: 3rem;
    }


    /* Get Started */

    #get-started h3 {
        width: 25rem;
    }


    /* Contact & Inquiry */

    #contact-and-inquiry {
        width: 100%;
    }

    .form-row {
        display: flex;
        justify-content: space-between;
    }

    .form-row p {
        width: 47%;
    }
}

@media only screen and (min-width:1300px) {

/* Get Started */

    #get-started {
        padding: 8rem 2rem;
    }

    #get-started .content img {
        height: 24rem;
        width: auto;
    }

    #get-started h2 {
        font-size: 18px;
    }


    /* Weeding Spotlight */

       #wedding-spotlight .gradient-border .small {
        display: block;
        width: 10rem;
        height: 10rem;
        object-fit: cover;
    }

    .d-none-small {
        display: block;
    }
}