.btn {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: .02em
}

.btn.primary {
    background: var(--brown);
    color: #fff
}

.hero {
    background: #fff8dc;
    padding: clamp(48px, 6vw, 96px) 0;
    border-bottom: 1px solid rgba(23, 21, 18, .06)
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
}

.display {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    line-height: 1.06;
    margin: 10px 0 12px;
    color: var(--brown)
}

.kicker {
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--harvest)
}

.lead {
    font-size: 17px;
    opacity: .92
}

.hero-visual {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  background: #f3f1e8; /* fallback color */
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* change to contain if you want zero cropping */
  display: block;
}


.slice {
    padding: 48px 0
}

.section-alt {
    background: #fff;
    border-top: 1px solid rgba(23, 21, 18, .06);
    border-bottom: 1px solid rgba(23, 21, 18, .06)
}

.h3 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: var(--brown);
    margin: 0 0 16px
}

.specials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.special {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(23, 21, 18, .08)
}

.special h4 {
    margin: 0 0 6px;
    color: var(--brown);
    font-size: 18px
}

.special p {
    margin: 0;
    font-size: 14px;
    opacity: .9
}

.grid6 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(23, 21, 18, .08)
}

.card h4 {
    margin: 0 0 6px;
    color: var(--brown);
    font-size: 16px
}

.card p {
    margin: 0;
    font-size: 14px;
    opacity: .85
}

.carousel {
    position: relative
}

.testi-shell {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(23, 21, 18, .08);
    padding: 24px 36px
}

.fade {
    position: relative;
    min-height: 190px
}

.fade .pane {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease
}

.fade .pane.active {
    opacity: 1
}

.fade blockquote {
    font-family: "Playfair Display", serif;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--brown);
    max-width: 70ch;
    text-align: center;
    margin: 0 auto;
    line-height: 1.4
}

.fade cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    opacity: .75;
    text-align: center
}

.ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1.5px solid rgba(23, 21, 18, .5);
    border-radius: 999px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1
}

.ctrl svg {
    width: 16px;
    height: 16px;
    display: block
}

.ctrl.prev {
    left: -19px
}

.ctrl.next {
    right: -19px
}

.reel {
    position: relative;
    overflow: hidden;
    min-height: 300px
}

.reel .strip {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 24px;
    will-change: transform
}

.reel .img {
    flex: 0 0 auto;
    width: 520px;
    height: 300px;
    border-radius: 18px;
    background: #ddd center/cover no-repeat;
    box-shadow: 0 6px 16px rgba(23, 21, 18, .08)
}



@media (max-width:980px) {
    .hero .wrap {
        grid-template-columns: 1fr;
    }

    .grid6,
    .specials,
    .footer .cols {
        grid-template-columns: 1fr 1fr
    }

    .ctrl.prev {
        left: 6px
    }

    .ctrl.next {
        right: 6px
    }

    .hero-visual {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width:840px) {
    .hero .wrap {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .hero-visual {
        min-height: 260px
    }
}

@media (max-width:640px) {

    .grid6,
    .specials,
    .footer .cols {
        grid-template-columns: 1fr
    }
}

@media (max-width:560px) {
    .grid6 {
        grid-template-columns: 1fr
    }
}

@media (max-width:900px) {
    .reel .img {
        width: 72vw;
        height: 40vw
    }
}