* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: #F7F4EF;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #1a1714;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

button {
    font-family: inherit
}

::selection {
    background: #B08D57;
    color: #fff
}

section {
    scroll-margin-top: 74px
}

input,
textarea,
select {
    font-family: inherit
}

input:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
    outline: 2px solid #B08D57;
    outline-offset: 3px
}

@keyframes kenburns {
    0% {
        transform: scale(1.04) translate(0, 0)
    }

    100% {
        transform: scale(1.16) translate(-1.5%, -1%)
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(28px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes cue {

    0%,
    100% {
        transform: translateY(0);
        opacity: .55
    }

    50% {
        transform: translateY(9px);
        opacity: 1
    }
}

/* reveal-on-scroll */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s ease, transform .9s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 64px);
    height: 74px;
    background: rgba(12, 11, 10, 0.12);
    border-bottom: 1px solid rgba(247, 244, 239, 0);
    backdrop-filter: blur(8px);
    transition: background .5s ease, border-color .5s ease
}

.nav.scrolled {
    background: rgba(15, 13, 11, 0.96);
    border-bottom-color: rgba(176, 141, 87, .18)
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none
}

.nav-brand img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(176, 141, 87, .35)
}

.nav-brand span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: .32em;
    font-weight: 500;
    color: #F7F4EF
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px
}

.nav-links a {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #E7E0D6;
    text-decoration: none;
    transition: color .3s
}

.nav-links a:hover {
    color: #B08D57
}

.nav-links a.book {
    color: #111;
    background: #B08D57;
    padding: 11px 22px;
    border-radius: 2px;
    font-weight: 500;
    transition: background .3s
}

.nav-links a.book:hover {
    background: #C9A977;
    color: #111
}


.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #F7F4EF
}

@media(max-width:879px) {
    .nav-links {
        display: none
    }

    .nav-burger {
        display: flex
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(12, 11, 10, .97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    animation: fadeIn .3s ease
}

.mobile-menu .close {
    position: absolute;
    top: 24px;
    right: 26px;
    background: none;
    border: none;
    color: #F7F4EF;
    font-size: 30px;
    cursor: pointer;
    line-height: 1
}

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: #F7F4EF;
    text-decoration: none
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    width: 100%;
    overflow: hidden;
    background: #0c0b0a
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1900&q=80');
    background-size: cover;
    background-position: center;
    animation: kenburns 22s ease-out forwards
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 11, 10, .55) 0%, rgba(12, 11, 10, .32) 35%, rgba(12, 11, 10, .78) 100%)
}

.hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px
}

.hero-eyebrow {
    font-size: 14px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 14px rgba(0, 0, 0, .55);
    margin-bottom: 26px;
    animation: fadeUp 1s ease .2s both
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(44px, 8vw, 104px);
    line-height: 1.02;
    color: #F7F4EF;
    max-width: 15ch;
    animation: fadeUp 1.1s ease .35s both
}

.hero p {
    margin-top: 26px;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 300;
    letter-spacing: .04em;
    color: rgba(247, 244, 239, .85);
    max-width: 44ch;
    animation: fadeUp 1.1s ease .55s both
}

.hero-btns {
    margin-top: 42px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 1.1s ease .75s both
}

.hero-btn {
    display: inline-block;
    padding: 17px 44px;
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 2px;
    text-decoration: none;
    transition: all .3s
}

.hero-btn-primary {
    background: #B08D57;
    color: #111;
    border: 1px solid #B08D57
}

.hero-btn-primary:hover {
    background: #C9A977;
    border-color: #C9A977
}

.hero-btn-secondary {
    background: transparent;
    color: #F7F4EF;
    border: 1px solid rgba(247, 244, 239, .5)
}

.hero-btn-secondary:hover {
    background: rgba(247, 244, 239, .1);
    border-color: rgba(247, 244, 239, .85)
}

/* ---- SECTION SHELL ---- */
.eyebrow {
    font-size: 12px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: #B08D57;
    margin-bottom: 18px
}

.section-head {
    text-align: center;
    margin-bottom: 54px
}

h2.display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    color: #1a1714
}

/* ---- PRICING ---- */
.pricing {
    background: #F7F4EF;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px)
}

.pricing-intro {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center
}

.pricing-intro p {
    margin: 20px auto 0;
    max-width: 50ch;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #5a544c
}

.tier-grid {
    max-width: 1180px;
    margin: 54px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    align-items: stretch
}

.tier {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(26, 23, 20, .08);
    border-radius: 3px;
    padding: 40px 34px;
    transition: transform .4s ease, box-shadow .4s ease
}

.tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 36px 74px rgba(92, 66, 28, .6)
}

.tier.popular {
    background: #17140f;
    border-color: #B08D57;
    padding: 46px 34px
}

.tier.popular:hover {
    box-shadow: 0 36px 80px rgba(110, 80, 32, .72)
}

.tier-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #B08D57;
    color: #111;
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 2px;
    white-space: nowrap
}

.tier-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #1a1714
}

.tier.popular .tier-name {
    color: #F7F4EF
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 14px
}

.tier-price span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    color: #1a1714
}

.tier.popular .tier-price span {
    color: #C9A977
}

.tier-rule {
    height: 1px;
    background: rgba(26, 23, 20, .1);
    margin: 24px 0
}

.tier.popular .tier-rule {
    background: rgba(176, 141, 87, .3)
}

.tier ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1
}

.tier li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.5;
    color: #5a544c
}

.tier.popular li {
    color: rgba(247, 244, 239, .82)
}

.tier li .diamond {
    color: #B08D57;
    font-size: 13px;
    margin-top: 2px
}

.tier-btn {
    margin-top: 30px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 15px;
    border-radius: 2px;
    background: transparent;
    color: #1a1714;
    border: 1px solid rgba(26, 23, 20, .25);
    transition: all .3s;
    cursor: pointer;
    display: block;
    width: 100%
}

.tier-btn:hover {
    background: #1a1714;
    color: #F7F4EF;
    border-color: #1a1714
}

.tier.popular .tier-btn {
    background: #B08D57;
    color: #111;
    border-color: #B08D57
}

.tier.popular .tier-btn:hover {
    background: #C9A977;
    color: #111;
    border-color: #C9A977
}

/* ---- BOOKING ---- */
.booking {
    background: #141210;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px)
}

.booking-wrap {
    max-width: 1180px;
    margin: 0 auto
}

.booking-head {
    text-align: center;
    margin-bottom: 54px
}

.booking-head .eyebrow {
    color: #B08D57
}

.booking-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(34px, 5vw, 58px);
    color: #F7F4EF
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: clamp(28px, 4vw, 56px);
    align-items: start
}

.cal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
}

.cal-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: 1px solid rgba(176, 141, 87, .3);
    color: #F7F4EF;
    cursor: pointer;
    font-size: 16px;
    transition: all .3s
}

.cal-nav:hover:not(:disabled) {
    border-color: #B08D57
}

.cal-nav:disabled {
    opacity: .3;
    cursor: default
}

.cal-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #F7F4EF;
    letter-spacing: .02em
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px
}

.cal-wd {
    text-align: center;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(247, 244, 239, .4);
    padding-bottom: 8px
}

.cal-cell {
    aspect-ratio: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 500 14.5px Inter, sans-serif;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all .25s ease;
    background: none
}

.cal-cell.empty {
    visibility: hidden
}

.cal-cell.available {
    color: #F7F4EF;
    border-color: rgba(176, 141, 87, .35);
    cursor: pointer
}

.cal-cell.available:hover {
    background: rgba(176, 141, 87, .18)
}

.cal-cell.unavailable {
    color: rgba(247, 244, 239, .2);
    cursor: default
}

.cal-cell.selected {
    background: #B08D57;
    color: #111;
    border-color: #B08D57;
    cursor: pointer
}

.legend {
    display: flex;
    gap: 20px;
    margin-top: 22px;
    flex-wrap: wrap
}

.legend div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(247, 244, 239, .55)
}

.legend .dot {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.slots-wrap {
    margin-top: 30px;
    min-height: 54px
}

.slots-label {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #B08D57;
    margin-bottom: 14px
}

.slots-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.slot {
    padding: 9px 14px;
    border-radius: 2px;
    font: 400 13px Inter, sans-serif;
    letter-spacing: .04em;
    transition: all .25s ease;
    background: none;
    color: #F7F4EF;
    border: 1px solid rgba(176, 141, 87, .4);
    cursor: pointer
}

.slot.selected {
    background: #B08D57;
    color: #111;
    border-color: #B08D57
}

.slot.unavailable {
    color: rgba(247, 244, 239, .2);
    border-color: rgba(247, 244, 239, .1);
    cursor: not-allowed
}

.slots-empty {
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    color: rgba(247, 244, 239, .4)
}

.bk-form {
    background: #1c1916;
    border: 1px solid rgba(176, 141, 87, .18);
    border-radius: 4px;
    padding: clamp(26px, 3.5vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 18px
}

.bk-form .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #F7F4EF
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.field label {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(247, 244, 239, .55)
}

.field input,
.field textarea,
.field select {
    background: #141210;
    border: 1px solid rgba(247, 244, 239, .14);
    border-radius: 2px;
    padding: 13px 15px;
    color: #F7F4EF;
    font-size: 14.5px;
    font-weight: 300;
    transition: border-color .3s
}

.field textarea {
    resize: vertical
}

.field select {
    cursor: pointer
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: #B08D57;
    outline: none
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.bk-summary {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(247, 244, 239, .5);
    line-height: 1.5;
    min-height: 18px
}

.bk-error {
    font-size: 12.5px;
    color: #d98a8a;
    font-weight: 300
}

.bk-submit {
    margin-top: 6px;
    background: #B08D57;
    border: none;
    color: #111;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 16px;
    border-radius: 2px;
    cursor: pointer;
    transition: background .3s
}

.bk-submit:hover {
    background: #C9A977
}

.bk-confirm {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    background: #1c1916;
    border: 1px solid rgba(176, 141, 87, .35);
    border-radius: 4px;
    padding: clamp(40px, 6vw, 72px);
    animation: fadeUp .7s ease both
}

.bk-confirm .check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid #B08D57;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
    color: #B08D57;
    font-size: 28px
}

.bk-confirm h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #F7F4EF;
    font-weight: 500
}

.bk-confirm p {
    margin-top: 18px;
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(247, 244, 239, .72)
}

.bk-confirm strong {
    color: #C9A977;
    font-weight: 500
}

.bk-again {
    margin-top: 32px;
    background: none;
    border: 1px solid rgba(176, 141, 87, .5);
    color: #C9A977;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 13px 26px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .3s
}

.bk-again:hover {
    background: #B08D57;
    color: #111;
    border-color: #B08D57
}

/* ---- PORTFOLIO ---- */
.portfolio {
    background: #F7F4EF;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px)
}

.portfolio-wrap {
    max-width: 1280px;
    margin: 0 auto
}

.masonry {
    column-width: 300px;
    column-gap: 18px
}

.pf-item {
    display: block;
    width: 100%;
    break-inside: avoid;
    margin: 0 0 18px;
    padding: 0;
    border: none;
    background: #141210;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease
}

.pf-item.in {
    opacity: 1;
    transform: translateY(0)
}

.pf-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.1s cubic-bezier(.2, .8, .2, 1);
    transform: scale(1.001)
}

.pf-item:hover img {
    transform: scale(1.07)
}

.pf-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 34px 18px 16px;
    background: linear-gradient(to top, rgba(12, 11, 10, .82), transparent);
    text-align: left;
    pointer-events: none
}

.pf-cap .dish {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #F7F4EF;
    line-height: 1.1
}

.pf-cap .venue {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #C9A977;
    margin-top: 4px
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(10, 9, 8, .94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 80px);
    animation: fadeIn .3s ease;
    cursor: zoom-out
}

.lightbox .close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #F7F4EF;
    font-size: 34px;
    line-height: 1;
    cursor: pointer
}

.lb-inner {
    max-width: 1000px;
    width: 100%;
    text-align: center
}

.lb-inner img {
    max-width: 100%;
    max-height: 74vh;
    width: auto;
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6)
}

.lb-inner .dish {
    margin-top: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #F7F4EF
}

.lb-inner .venue {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #C9A977;
    margin-top: 6px
}

/* ---- ABOUT ---- */
.about {
    background: #141210;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px)
}

.about-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(36px, 5vw, 72px);
    align-items: center
}

.about-photo {
    position: relative
}

.about-photo .img {
    aspect-ratio: 4/5;
    background-image: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    background-color: #26211b;
    border-radius: 3px
}

.about-photo .grad {
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 40%;
    background: linear-gradient(to top, rgba(20, 18, 16, .6), transparent);
    pointer-events: none;
    border-radius: 3px
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.04;
    color: #F7F4EF
}

.about h2 .sub {
    font-style: italic;
    color: #C9A977;
    font-size: .62em
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px
}

.about-copy p {
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.78;
    color: rgba(247, 244, 239, .78)
}

.about-copy p.sig {
    font-weight: 400;
    color: #C9A977;
    font-style: italic
}


/* ---- FAQ ---- */
.faq {
    background: #EFE9E0;
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px)
}

.faq-wrap {
    max-width: 780px;
    margin: 0 auto
}

.faq-list {
    display: flex;
    flex-direction: column
}

.faq-item {
    border-top: 1px solid rgba(26, 23, 20, .12)
}

.faq-item:last-of-type {
    border-bottom: 1px solid rgba(26, 23, 20, .12)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 24px 2px;
    text-align: left
}

.faq-q .q {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(19px, 2.4vw, 24px);
    color: #1a1714
}

.faq-q .icon {
    flex: none;
    width: 26px;
    height: 26px;
    color: #B08D57;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s
}

.faq-item.open .faq-q .icon {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease
}

.faq-item.open .faq-a {
    max-height: 320px
}

.faq-a p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #5a544c;
    padding: 0 2px 26px
}

/* ---- FOOTER ---- */
.footer {
    background: #0c0b0a;
    padding: clamp(60px, 7vw, 90px) clamp(20px, 5vw, 64px) 40px
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px
}

.footer img {
    height: 74px;
    width: 74px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(176, 141, 87, .3)
}

.footer .brand {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    letter-spacing: .34em;
    color: #F7F4EF
}

.footer .based {
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #B08D57
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 6px
}

.footer-links a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(247, 244, 239, .78);
    text-decoration: none;
    transition: color .3s
}

.footer-links a:hover {
    color: #C9A977
}

.footer .rule {
    width: 46px;
    height: 1px;
    background: rgba(176, 141, 87, .4);
    margin-top: 10px
}

.footer .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: rgba(247, 244, 239, .6)
}

.footer .copy {
    font-size: 11px;
    letter-spacing: .08em;
    color: rgba(247, 244, 239, .3);
    margin-top: 8px
}

/* =====================================================================
   TABLET — 820 × 1180 (iPad Air 11″ portrait & landscape)
   ===================================================================== */
@media (min-width: 820px) and (max-width: 1180px) {

    /* Pricing — auto-fit produces 2+1 at ~820px (floor(738÷280)=2);
       force 3 equal columns and tighten padding to fit narrower cards */
    .tier-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px
    }

    .tier {
        padding: 30px 20px
    }

    .tier.popular {
        padding: 36px 20px
    }

    .tier-name {
        font-size: 22px
    }

    .tier-price span {
        font-size: 40px
    }

    /* Testimonials — same 2+1 problem; force 3 equal columns */
    .tst-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .tst {
        padding: 28px 20px
    }

    .tst blockquote {
        font-size: 18px
    }

    /* About — auto-fit gives 2 cols at this range which is correct,
       but lock it explicitly so a wider viewport can't jump to 3 */
    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    /* Calendar — cells are ~48px at tablet width; nudge font down slightly */
    .cal-cell {
        font-size: 13px
    }

    /* Booking gap — ease the spacing between calendar and form */
    .booking-grid {
        gap: clamp(24px, 3.5vw, 44px)
    }

    /* Form field-row — email + phone side-by-side in a ~350px form column
       leaves only ~168px per field; stack them vertically instead */
    .field-row {
        grid-template-columns: 1fr
    }

    /* Lightbox — give a little more room on the sides */
    .lightbox {
        padding: clamp(20px, 4vw, 60px)
    }
}

/* =====================================================================
   MOBILE — 430 × 932 (iPhone 14 Pro and similar phones)
   ===================================================================== */
@media (max-width: 639px) {

    /* iOS Safari: 100vh includes hidden browser chrome — svh fixes it */
    .hero {
        height: 100svh
    }

    /* Nav brand text tighter so it doesn't crowd the burger */
    .nav-brand span {
        font-size: 11px;
        letter-spacing: .2em
    }

    /* Hero — slightly smaller headline so it doesn't wrap awkwardly */
    .hero h1 {
        font-size: clamp(36px, 9vw, 52px)
    }

    .hero p {
        font-size: 15px;
        max-width: 34ch
    }

    /* Sections — less vertical breathing room on small screens */
    .section-head {
        margin-bottom: 36px
    }

    .booking-head {
        margin-bottom: 36px
    }

    /* Pricing — compact vertical stack, all 3 cards visible on one screen */
    .pricing {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .pricing-intro p {
        font-size: 13px
    }

    .tier-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 20px
    }

    .tier {
        padding: 14px 20px;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        border-radius: 4px
    }

    .tier:hover {
        transform: none;
        box-shadow: none
    }

    .tier.popular {
        padding: 14px 20px
    }

    .tier-badge {
        position: static;
        transform: none;
        display: inline-block;
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 8px;
        width: 100%
    }

    .tier-name {
        font-size: 18px;
        flex: 1
    }

    .tier-price {
        margin-top: 0;
        margin-left: 12px
    }

    .tier-price span {
        font-size: 26px
    }

    .tier-rule {
        width: 100%;
        margin: 10px 0
    }

    .tier ul {
        gap: 5px;
        width: 100%
    }

    .tier li {
        font-size: 12px;
        gap: 8px;
        line-height: 1.3
    }

    .tier li .diamond {
        font-size: 9px;
        margin-top: 3px
    }

    .tier-btn {
        margin-top: 12px;
        padding: 10px;
        font-size: 11px;
        width: 100%
    }

    /* Booking — force single column: calendar above, form below */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    /* Calendar — tighten cell gap so 7 columns breathe at 390px */
    .cal-grid {
        gap: 3px
    }

    .cal-cell {
        font-size: 12px
    }

    /* Booking form — stack email + phone instead of side-by-side */
    .field-row {
        grid-template-columns: 1fr
    }

    /* FAQ — increase max-height so longer answers aren't clipped on mobile */
    .faq-item.open .faq-a {
        max-height: 600px
    }

    /* Portfolio — single full-width column instead of partial 300px column */
    .masonry {
        columns: 1;
        column-width: auto
    }

    /* Testimonials — single column so cards aren't squeezed */
    .tst-grid {
        grid-template-columns: 1fr
    }

    .tst blockquote {
        font-size: 19px
    }

    /* About — single column: photo above copy */
    .about-grid {
        grid-template-columns: 1fr
    }

    /* Lightbox — full-bleed on small screen */
    .lightbox {
        padding: 16px 12px
    }

    .lb-inner img {
        max-height: 58vh
    }

    .lb-inner .dish {
        font-size: 20px
    }

    /* Footer links — tighter gap so they wrap cleanly */
    .footer-links {
        gap: 18px
    }
}