@media only screen and (min-width: 0px) {
    .home {
        width: 100%;
        height: 35rem;
        overflow: hidden;
    }
    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        z-index: -1;
        position: relative;
        pointer-events: none;
    }
    .home .cta {
        position: absolute;
        inset: 0;  
        height: 35rem;                     /* 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 4rem 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: -30px;
        left: 10px;
    }
    #meet-the-owner > .quote > .last {
        position: absolute;
        bottom: -30px;
        right: 10px;
    }
}

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

    /* Hero */

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


    /* Quote */

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


    /* Meet the Owner */

    #meet-the-owner {
        padding: 6rem 2rem 5rem 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: 48rem;
    }

    .home .cta {
        position: absolute;
        inset: 0;
        height: 48rem;
        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: 50rem;
    }

    .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: 55rem;
        margin-bottom: 7rem;
    }

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

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

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