/* ============================================================
   The Place Steak Houze — Page-specific layouts
   Imports nothing; assumes tokens.css is loaded.
   Section order: section-head/category-tabs, hero (home),
   featured (home), reserve-mini (home), page-header,
   sticky-tabs (menu), menu-section variants (menu),
   steak-row + doneness + info-note (menu),
   sides-list, drinks list (menu), reservation page,
   promotions page, then responsive overrides.
   ============================================================ */

/* ---------- SECTION HEAD ---------- */
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 32px;
    flex-wrap: wrap;
}
.section-head__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 44px;
    color: var(--cream);
    line-height: 1;
    margin-top: 12px;
}
.section-head__link {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 0.5px solid var(--gold);
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.2s;
}
.section-head__link:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.section-title-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- CATEGORY TABS (home featured + menu sticky) ---------- */
.cat-tabs {
    display: flex;
    gap: 38px;
    margin-bottom: 44px;
    padding-bottom: 18px;
    border-bottom: 0.5px solid var(--gold-line);
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    font-weight: 400;
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
    transition: color 0.2s;
    background: none;
    border: none;
}
.cat-tab:hover { color: var(--cream); }
.cat-tab.is-active { color: var(--gold); }
.cat-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18.5px;
    height: 1px;
    background: var(--gold);
}

/* ---------- HOMEPAGE / HERO (full-bleed exterior) ---------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 78vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}
.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(11,42,46,0.55) 0%, rgba(11,42,46,0.35) 35%, rgba(11,42,46,0.75) 100%),
        radial-gradient(ellipse at center, rgba(11,42,46,0.10) 0%, rgba(11,42,46,0.55) 100%);
}
.hero__content {
    padding: 100px 48px 110px;
    text-align: center;
    color: var(--cream);
    max-width: 880px;
    margin: 0 auto;
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 84px;
    line-height: 1.05;
    color: var(--cream);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.hero__title span { display: block; }
.hero__sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(245,240,232,0.88);
    max-width: 560px;
    margin: 0 auto 38px;
    font-weight: 300;
}
.hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero__rating {
    display: inline-block;
    background: rgba(11,42,46,0.55);
    border: 0.5px solid var(--gold-border);
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    font-weight: 400;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero__rating .star { color: var(--gold); margin-right: 6px; }

/* ---------- HOURS STRIP (below hero) ---------- */
.hours-strip {
    background: var(--bg-deeper);
    border-bottom: 0.5px solid var(--gold-line);
    padding: 22px 0;
}
.hours {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.hours__label {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 400;
}
.hours__value {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--cream);
    font-weight: 400;
    font-style: italic;
}

/* ---------- GALLERY SECTION ---------- */
.gallery-section {
    padding: 88px 0 96px;
    border-top: 0.5px solid var(--gold-line);
    background: var(--bg-primary);
}
/* "A Great Rendezvous" — original static gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 48px;
}

/* "The Vibe" — two-row horizontal-scroll filmstrip */
.gallery-strip { position: relative; margin-top: 48px; }
.vibe-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: auto auto;
    grid-auto-columns: 260px;
    gap: 14px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 16px;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-border) transparent;
}
.vibe-grid.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.vibe-grid::-webkit-scrollbar { height: 8px; }
.vibe-grid::-webkit-scrollbar-track { background: rgba(201,168,76,0.06); }
.vibe-grid::-webkit-scrollbar-thumb { background: var(--gold-border); border-radius: 4px; }
.vibe-grid.is-dragging img { pointer-events: none; }
.vibe-grid .gallery-grid__item { scroll-snap-align: start; }
/* Right-edge fade hint that there is more to scroll */
.gallery-strip::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 16px;
    width: 60px;
    pointer-events: none;
    background: linear-gradient(to right, rgba(7,24,27,0), var(--bg-primary));
    transition: opacity 0.3s ease;
}
.gallery-strip.is-scrolled::after { opacity: 0; }
.gallery-strip__hint {
    display: block;
    text-align: right;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    transition: opacity 0.3s ease;
}
.gallery-strip.is-scrolled .gallery-strip__hint { opacity: 0; }
.gallery-grid__item {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-image);
    border: 0.5px solid transparent;
    transition: border-color 0.25s ease;
    padding: 0;
    display: block;
}
.gallery-grid__item:hover { border-color: var(--gold-border-strong); }
.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-grid__item:hover img { transform: scale(1.04); }
.gallery-grid__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 14px 12px;
    background: linear-gradient(to top, rgba(7,24,27,0.92), rgba(7,24,27,0));
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 400;
}

/* ---------- LIGHTBOX (gallery viewer) ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(7, 24, 27, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border: 0.5px solid var(--gold-border-strong);
}
.lightbox__close,
.lightbox__nav {
    position: fixed;
    background: rgba(11,42,46,0.6);
    border: 0.5px solid var(--gold-border-strong);
    color: var(--gold);
    width: 48px;
    height: 48px;
    cursor: pointer;
    font-family: var(--font-display);
    transition: background 0.2s, border-color 0.2s;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); }
.lightbox__close { top: 20px; right: 20px; font-size: 26px; }
.lightbox__nav  { top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__caption {
    position: fixed;
    left: 0; right: 0;
    bottom: 24px;
    text-align: center;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ---------- FEATURED PREVIEW ---------- */
.featured {
    padding: 80px 0 100px;
    border-top: 0.5px solid var(--gold-line);
}
.menu-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.menu-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ---------- RESERVATION MINI (home) ---------- */
.reserve-mini {
    background: var(--bg-deeper);
    padding: 96px 0;
    border-top: 0.5px solid var(--gold-line);
}
.reserve-mini__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.reserve-mini__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.05;
    color: var(--cream);
    margin: 18px 0 24px;
}
.reserve-mini__copy {
    font-size: 13px;
    line-height: 1.75;
    color: var(--cream-muted);
    max-width: 380px;
    font-weight: 300;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.session-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.session-btn {
    background: transparent;
    border: 0.5px solid var(--gold-border-strong);
    color: var(--cream-muted);
    padding: 14px 6px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    line-height: 1.5;
}
.session-btn b {
    display: block;
    color: var(--cream);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-size: 10px;
}
.session-btn.is-active {
    border-color: var(--gold);
    background: rgba(201,168,76,0.12);
    color: var(--gold);
}
.session-btn.is-active b { color: var(--gold); }

/* ---------- MENU PAGE — header + sticky tabs ---------- */
.page-header {
    text-align: center;
    padding: 96px 0 56px;
    position: relative;
}
/* Optional background image — opt in by adding .page-header--photo + style="--bg:url(...)" */
.page-header--photo {
    overflow: hidden;
    isolation: isolate;
}
.page-header--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    z-index: -1;
}
.page-header--photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(11,42,46,0.5) 0%, rgba(11,42,46,0.95) 100%);
    z-index: -1;
}
.page-header__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 88px;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-top: 20px;
}
.page-header__sub {
    font-size: 13px;
    color: var(--cream-muted);
    margin-top: 22px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.7;
}

.sticky-tabs {
    position: sticky;
    /* --nav-height is set by site.js → syncNavHeight() on load + resize,
       so the bar always lands flush under the main nav (and mobile/desk
       differences are handled automatically). */
    top: var(--nav-height);
    z-index: 50;
    background: rgba(11,42,46,0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 0.5px solid var(--gold-line);
    border-bottom: 0.5px solid var(--gold-line);
    overflow-x: auto;
    scrollbar-width: none;
}
.sticky-tabs::-webkit-scrollbar { display: none; }
.sticky-tabs__inner {
    display: flex;
    gap: 32px;
    padding: 18px 48px;
    max-width: 1440px;
    margin: 0 auto;
}
.sticky-tabs .cat-tab { padding: 4px 0; }
.sticky-tabs .cat-tab.is-active::after { bottom: -18.5px; }

.menu-section { padding: 16px 0 40px; }
.menu-section--first { padding-top: 56px; }

/* ---------- STEAK ROW (prestige cuts) ---------- */
.steak-row {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 22px 24px;
    background: var(--bg-secondary);
    margin-bottom: 14px;
    transition: background 0.2s;
}
.steak-row:hover { background: var(--bg-tertiary); }
.steak-row--prestige {
    border: 0.5px solid var(--gold-border-strong);
    background: rgba(201,168,76,0.04);
}
.steak-row__img {
    aspect-ratio: 4/3;
    background: var(--bg-image);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steak-row__img::before {
    /* Diagonal hatch pattern shown when no photo is present */
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0, transparent 18px, rgba(201,168,76,0.03) 18px, rgba(201,168,76,0.03) 19px);
}
.steak-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}
.steak-row__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.steak-row__name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream);
    font-weight: 400;
    line-height: 1.2;
}
.steak-row__desc { font-size: 12px; color: var(--cream-muted); line-height: 1.6; }
.steak-row__meta { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
.steak-row__right { text-align: right; }
.steak-row__right .price { font-size: 22px; display: block; }
.steak-row__right .unit {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--cream-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ---------- INFO NOTE + DONENESS ---------- */
.info-note {
    padding: 22px 28px;
    background: var(--gold-bg);
    border-left: 2px solid var(--gold);
    margin-bottom: 26px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--cream);
    font-weight: 300;
}
.doneness {
    padding: 24px 28px;
    border-left: 2px solid var(--gold);
    background: rgba(201,168,76,0.03);
    margin-bottom: 32px;
}
.doneness__label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 400;
}
.doneness__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.doneness__col { text-align: center; }
.doneness__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 auto 10px;
}
.doneness__name {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--cream);
    font-weight: 400;
}

/* ---------- SIDES LIST + DRINKS LIST ---------- */
.sides-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 56px;
}
.sides-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 0.5px solid var(--gold-line);
}
.sides-item .item-code { min-width: 30px; }
.sides-item__name {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--cream);
    font-weight: 400;
}
.sides-item__dots {
    height: 1px;
    border-bottom: 0.5px dotted rgba(201,168,76,0.3);
    align-self: end;
    margin-bottom: 8px;
}
.sides-item .price { font-size: 18px; }

.drinks-block { margin-bottom: 30px; }
.drinks-block__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 12px;
    border-bottom: 0.5px solid var(--gold-line);
    margin-bottom: 14px;
}
.drinks-block__head h4 {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}
.drinks-block__head .price { font-size: 18px; }
.drinks-block__items {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--cream);
    line-height: 1.7;
    font-weight: 400;
}
.drinks-block__items .dot-sep { color: var(--gold-faint); margin: 0 8px; }
.drinks-list-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 0.5px solid var(--gold-line);
    gap: 24px;
}
.drinks-list-row__name {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--cream);
    font-weight: 400;
}
.drinks-list-row__right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.pill-tag {
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid var(--gold);
    padding: 3px 8px;
    font-family: var(--font-body);
    font-weight: 500;
}

/* ---------- RESERVATION PAGE ---------- */
.reserve-page { padding-bottom: 100px; }
.reserve-page__inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 48px;
}
.stepper {
    display: flex;
    align-items: center;
    margin: 40px 0 56px;
    gap: 0;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.step__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.5px solid var(--gold-border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--cream-muted);
    transition: all 0.3s;
}
.step__label {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    transition: color 0.3s;
    white-space: nowrap;
}
.step.is-active .step__circle {
    border-color: var(--gold);
    background: rgba(201,168,76,0.10);
    color: var(--gold);
}
.step.is-active .step__label { color: var(--gold); }
.step.is-complete .step__circle {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--bg-primary);
}
.step.is-complete .step__label { color: var(--cream); }
.step__line {
    flex: 1;
    height: 0.5px;
    background: rgba(201,168,76,0.30);
    margin: 0 18px;
    margin-bottom: 28px;
}
.step-panel { display: none; }
.step-panel.is-active { display: block; }

.session-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 14px 0 6px;
}
.session-card {
    background: transparent;
    border: 0.5px solid var(--gold-border-strong);
    padding: 28px 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.session-card.is-active {
    border-color: var(--gold);
    background: rgba(201,168,76,0.10);
}
.session-card__icon {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
    font-family: var(--font-display);
}
.session-card__name {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 500;
}
.session-card.is-active .session-card__name { color: var(--gold); }
.session-card__time {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--cream-muted);
    font-size: 14px;
}
.session-card.is-active .session-card__time { color: var(--gold-light); }

.slot-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 12px;
}
.slot-pill {
    border: 0.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
}
.slot-pill:hover { background: rgba(201,168,76,0.10); }
.slot-pill.is-active { background: var(--gold); color: var(--bg-primary); }
.slot-pill--warn { border-color: #EA580C; color: #EA580C; }
.slot-pill--warn:hover { background: rgba(234,88,12,0.08); }
.slot-pill--full {
    border-color: var(--cream-fainter);
    color: var(--cream-fainter);
    text-decoration: line-through;
    cursor: not-allowed;
}
.slot-pill--full:hover { background: transparent; }
.capacity-note {
    font-size: 11px;
    color: var(--cream-muted);
    margin: 18px 0 30px;
    letter-spacing: 0.3px;
}
.stepper-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
}
.stepper-actions .btn { flex: 1; }

.qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 0.5px solid var(--gold-border-strong);
    width: fit-content;
    background: rgba(201,168,76,0.05);
}
.qty-stepper button {
    width: 46px;
    height: 46px;
    color: var(--gold);
    font-size: 18px;
    font-family: var(--font-display);
}
.qty-stepper button:hover { background: rgba(201,168,76,0.10); }
.qty-stepper input {
    width: 60px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 20px;
    height: 46px;
    outline: none;
}

.summary-card {
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-border-strong);
    padding: 32px 28px;
    margin-bottom: 28px;
}
.summary-card__head {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 400;
}
.summary-card__ref {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    font-weight: 400;
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding-top: 22px;
    border-top: 0.5px solid var(--gold-line);
}
.summary-grid__cell .label {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 400;
}
.summary-grid__cell .val {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--cream);
    font-weight: 400;
}

.deposit-display { text-align: center; margin: 28px 0; }
.deposit-display .lbl {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.deposit-display .amt {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    font-weight: 300;
}

.bank-callout {
    background: var(--gold-bg);
    border-left: 2px solid var(--gold);
    padding: 22px 26px;
    margin-bottom: 24px;
}
.bank-callout h4 {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
}
.bank-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 8px 0;
    font-size: 13px;
}
.bank-row .k {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--cream-muted);
    text-transform: uppercase;
}
.bank-row .v {
    font-family: var(--font-display);
    color: var(--cream);
    font-size: 16px;
}

.upload-area {
    border: 1px dashed rgba(201,168,76,0.45);
    padding: 38px 24px;
    text-align: center;
    margin-bottom: 22px;
    cursor: pointer;
    transition: background 0.2s;
}
.upload-area:hover { background: rgba(201,168,76,0.04); }
.upload-area p {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 6px;
}
.upload-area span {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--cream-muted);
    text-transform: uppercase;
}

/* Reservation inline validation + upload status */
.form-error {
    margin: 14px 0 0;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: #f3c0b6;
    background: rgba(176,58,46,0.14);
    border: 0.5px solid rgba(176,58,46,0.5);
}
.form-status {
    margin: 12px 0 0;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
}
.form-status.is-ok  { color: var(--gold); }
.form-status.is-err { color: #f3c0b6; }

.whatsapp-note {
    background: var(--gold-bg);
    border: 0.5px solid var(--gold-border);
    padding: 14px 18px;
    font-size: 12px;
    color: var(--cream);
    margin-bottom: 28px;
    font-weight: 300;
    line-height: 1.5;
}
.whatsapp-note strong { color: var(--gold); font-weight: 500; }

.success-card {
    max-width: 540px;
    margin: 80px auto 0;
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-border-strong);
    padding: 64px 48px;
    text-align: center;
}
.success-check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
}
.success-card h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 40px;
    color: var(--cream);
    margin-bottom: 14px;
}
.success-card .ref {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 22px;
}
.success-card p {
    color: var(--cream-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ---------- PROMOTIONS PAGE ---------- */
.promos { padding-bottom: 100px; }
.promo-card {
    display: grid;
    grid-template-columns: 40% 60%;
    background: var(--bg-secondary);
    margin-bottom: 28px;
    min-height: 320px;
    transition: background 0.2s;
}
.promo-card:hover { background: var(--bg-tertiary); }
/* Prestige variant — kept on the same dark-teal surface as siblings so
   the row of cards reads as a uniform set. The gold border alone signals
   the prestige rank. */
.promo-card--prestige {
    border: 0.5px solid var(--gold-border-strong);
}
.promo-card__img {
    /* Lighter teal placeholder per brand spec — reads as an "intentional"
       dark surface against the page background instead of flat black. */
    background: var(--bg-tertiary);
    border-right: 0.5px solid var(--gold-line);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.promo-card__img::before {
    /* Diagonal gold hatch — same pattern as dish cards, slightly stronger
       contrast since the underlying surface is brighter. */
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0, transparent 30px, rgba(201,168,76,0.035) 30px, rgba(201,168,76,0.035) 31px);
}
.promo-card__img::after {
    /* Soft inner glow at bottom so the lighter teal grades into the body */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(11,42,46,0.45), transparent);
    pointer-events: none;
}
/* The promo card is much taller than a dish card; scale the placeholder
   text accordingly so it doesn't feel lost in the middle. */
.promo-card__img .placeholder-text {
    font-size: 32px;
    opacity: 0.14;
    text-align: center;
    padding: 0 24px;
    line-height: 1.15;
    max-width: 80%;
}
/* Real image — fills the image slot, center-cropped via cover. */
.promo-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}
.promo-card__body {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.promo-card__badge { align-self: flex-start; }
.promo-card__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 38px;
    line-height: 1.1;
    color: var(--cream);
    margin: 4px 0;
}
.promo-card__desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--cream-muted);
    max-width: 480px;
    font-weight: 300;
}
.promo-card__price {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 20px;
    margin-top: 6px;
}
.promo-card__valid {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    font-weight: 400;
}
.promo-card__cta {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 0.5px solid var(--gold);
    padding-bottom: 3px;
    align-self: flex-start;
    margin-top: 12px;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s;
}
.promo-card__cta:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold-light);
}

/* ============================================================
   DEARFLIP — gold-accented overrides on a WHITE lightbox.
   We let the lightbox keep DearFlip's native white backdrop so the
   page-turn flash (default white pages) blends invisibly. The only
   "branding" we layer on is gold-tinted controls and a gold border
   around the page-number readout, so the viewer still feels like
   part of our site without fighting the PDF's own colour palette.
   ============================================================ */
.df-lightbox-wrapper {
    background-color: #ffffff !important;
}
/* Close button — dark teal on white so it reads as a clear "exit" */
.df-lightbox-close {
    color: var(--bg-primary) !important;
    border: 0.5px solid var(--gold) !important;
    background-color: #ffffff !important;
}
.df-lightbox-close:hover {
    color: #ffffff !important;
    background-color: var(--bg-primary) !important;
    border-color: var(--bg-primary) !important;
}
/* Control bar — dark teal pill floating on the white surface */
.df-ui-controls,
.df-ui-wrapper {
    background-color: rgba(11, 42, 46, 0.94) !important;
    border: 0.5px solid var(--gold) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
}
.df-ui-btn {
    color: var(--gold) !important;
    background-color: transparent !important;
    transition: color 0.2s, background-color 0.2s;
}
.df-ui-btn:hover {
    color: var(--bg-primary) !important;
    background-color: var(--gold) !important;
}
.df-ui-btn.disabled,
.df-ui-btn.disabled:hover {
    color: rgba(201,168,76,0.3) !important;
    background-color: transparent !important;
}
.df-ui-page {
    color: var(--cream) !important;
    background-color: rgba(201,168,76,0.08) !important;
}
.df-ui-page label,
.df-ui-page input { color: var(--cream) !important; }
/* Side prev/next arrows sit on the white backdrop.
   No background pill on hover — it covered the menu pages. Just a
   simple opacity bump from quiet (40%) to full (100%) so the arrow
   stays legible without overlaying the PDF content. */
.df-ui-next,
.df-ui-prev,
.df-container > .df-ui-prev,
.df-container > .df-ui-next {
    color: var(--bg-primary) !important;
    background-color: transparent !important;
    opacity: 0.4 !important;
}
.df-ui-next:hover,
.df-ui-prev:hover,
.df-container > .df-ui-prev:hover,
.df-container > .df-ui-next:hover {
    opacity: 1 !important;
    background-color: transparent !important;
    color: var(--gold) !important;
}
/* Initial PDF-parse loading screen stays in our palette */
.df-loading { background-color: #ffffff !important; }
.df-container.df-loading:before,
.df-page-loading:before {
    background-color: #ffffff !important;
}
/* Page shadow stays subtle */
.df-book-shadow,
.df-page-fold-inner-shadow,
.df-page-fold-outer-shadow {
    background-color: rgba(0, 0, 0, 0.25) !important;
}

/* Legacy navigation-button selectors used elsewhere on the menu-book CTA */
.flipbook-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}
.flipbook-nav__btn {
    background: transparent;
    border: 0.5px solid var(--gold-border-strong);
    color: var(--gold);
    width: 52px;
    height: 52px;
    font-family: var(--font-display);
    font-size: 24px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flipbook-nav__btn:hover {
    background: rgba(201,168,76,0.10);
    border-color: var(--gold);
}
.flipbook-nav__btn[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
}
.flipbook-nav__counter {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream);
    letter-spacing: 2px;
}
.flipbook-nav__counter b {
    color: var(--gold);
    font-weight: 400;
}
.flipbook-nav__counter span {
    color: var(--cream-muted);
    margin: 0 10px;
}

.flipbook-hint {
    text-align: center;
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
}
.flipbook-hint kbd {
    font-family: var(--font-body);
    font-size: 10px;
    border: 0.5px solid var(--gold-border);
    padding: 2px 6px;
    margin: 0 2px;
    color: var(--gold);
}

/* Menu page — centered button + small "download PDF" link beneath. */
.menu-book-cta {
    text-align: center;
    margin: 8px auto 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.menu-book-cta__download {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    border-bottom: 0.5px solid rgba(245,240,232,0.18);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.menu-book-cta__download:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ---------- RESPONSIVE — page-specific ---------- */
@media (max-width: 920px) {
    .hero { min-height: 64vh; }
    .hero__content { padding: 72px 24px 80px; }
    .hero__title { font-size: 48px; line-height: 1.05; }
    .hero__sub { font-size: 14px; margin-bottom: 28px; }
    .hours-strip { padding: 16px 0; }
    .hours { gap: 8px; }
    .hours__value { font-size: 14px; }
    .hours__label { letter-spacing: 2px; font-size: 8px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .vibe-grid { grid-auto-columns: 220px; gap: 10px; }
    .gallery-section { padding: 56px 0 64px; }

    .lightbox__close, .lightbox__nav { width: 40px; height: 40px; font-size: 22px; }
    .lightbox__close { top: 12px; right: 12px; }
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }

    .menu-grid-3, .menu-grid-2 { grid-template-columns: 1fr; gap: 18px; }
    .dish--hero { grid-template-columns: 1fr; }
    .dish--hero .dish__body { padding: 28px 26px; }
    .dish--hero .dish__name { font-size: 28px; }
    .dish--hero .dish__img { min-height: 240px; }
    .featured { padding: 56px 0 64px; }
    .section-head__title { font-size: 32px; }

    .reserve-mini { padding: 64px 0; }
    .reserve-mini__grid { grid-template-columns: 1fr; gap: 36px; }
    .reserve-mini__title { font-size: 36px; }
    .form-row { grid-template-columns: 1fr; gap: 12px; }
    .session-toggle { grid-template-columns: 1fr; }

    .page-header { padding: 56px 0 32px; }
    .page-header__title { font-size: 56px; }

    .sticky-tabs__inner { padding: 16px 24px; gap: 24px; }
    /* mobile sticky-tab offset is set dynamically via --nav-height from JS */

    .doneness__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .doneness { padding: 22px; }

    .steak-row { grid-template-columns: 1fr; padding: 18px; gap: 16px; }
    .steak-row__img { max-width: 200px; aspect-ratio: 4/3; }
    .steak-row__right {
        text-align: left;
        display: flex;
        gap: 12px;
        align-items: baseline;
    }
    .steak-row__right .unit { margin-top: 0; }

    .sides-list { grid-template-columns: 1fr; gap: 0; }

    .reserve-page__inner { padding: 0 24px; }
    .stepper { margin: 24px 0 36px; }
    .step__label { font-size: 8px; letter-spacing: 1px; }
    .step__circle { width: 34px; height: 34px; font-size: 15px; }
    .step__line { margin: 0 8px 26px; }
    .session-cards { grid-template-columns: 1fr; }
    .summary-grid { grid-template-columns: 1fr 1fr; }
    .deposit-display .amt { font-size: 38px; }
    .stepper-actions { flex-direction: column; }
    .bank-row { grid-template-columns: 1fr; gap: 4px; }

    .promo-card { grid-template-columns: 1fr; }
    .promo-card__img { min-height: 220px; }
    .promo-card__body { padding: 32px 26px; }
    .promo-card__title { font-size: 30px; }

    .menu-book-cta .btn { width: 100%; max-width: 320px; }
    .flipbook-modal { padding: 16px 12px; }
    .flipbook-modal__title { font-size: 22px; }
    .flipbook-modal__footer { gap: 16px; }
    .flipbook-nav__btn { width: 44px; height: 44px; font-size: 20px; }
    .flipbook-nav__counter { font-size: 18px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 36px; }
    .hero { min-height: 56vh; }
    .page-header__title { font-size: 44px; }
    .section-head__title { font-size: 28px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .vibe-grid { grid-auto-columns: 180px; gap: 10px; }
}

/* ============================================================
   SUB-PHASE 5 — About + Packages pages
   Story / philosophy / find-us / testimonials / CTA bands /
   package cards. Mirrors the promo-card + section-head system.
   ============================================================ */

/* Centered section heading variant (about + packages + testimonials) */
.section-head--center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
}

/* About page sections */
.about-section {
    padding: 80px 0;
    border-top: 0.5px solid var(--gold-line);
}
.about-section--alt { background: var(--bg-deeper); }
.about-prose {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.about-prose p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--cream-muted);
    margin-bottom: 18px;
    font-weight: 300;
}
.placeholder-note {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px dashed var(--gold-border-strong);
    background: var(--gold-bg);
    padding: 10px 16px;
}
.about-prose .placeholder-note { margin-bottom: 28px; }

/* Philosophy 3-up */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.philosophy-card {
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-line);
    padding: 40px 32px;
    text-align: center;
}
.philosophy-card__icon {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 18px;
}
.philosophy-card__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 12px;
}
.philosophy-card__desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--cream-muted);
    font-weight: 300;
}

/* Where to find us */
.find-us {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}
.find-us__block {
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-line);
    padding: 36px 40px;
    text-align: center;
}
.find-us__label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.find-us__address {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.5;
    color: var(--cream);
    margin-bottom: 18px;
}
.find-us__link {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 0.5px solid var(--gold);
    padding-bottom: 3px;
    transition: color 0.2s;
}
.find-us__link:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

/* Testimonials */
.testimonials-section {
    padding: 88px 0 96px;
    border-top: 0.5px solid var(--gold-line);
}
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.testi-card {
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-line);
    padding: 32px 30px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.testi-card__stars { letter-spacing: 3px; font-size: 14px; }
.testi-card__stars .star-on  { color: var(--gold); }
.testi-card__stars .star-off { color: var(--gold-faint); opacity: 0.4; }
.testi-card__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.6;
    color: var(--cream);
    margin: 0;
    flex: 1;
}
.testi-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 0.5px solid var(--gold-line);
    padding-top: 16px;
}
.testi-card__name {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--cream);
    font-weight: 500;
}
.testi-card__source {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-faint);
}

/* Reserve CTA band (about page) */
.cta-band {
    padding: 88px 0;
    text-align: center;
    background: var(--bg-deeper);
    border-top: 0.5px solid var(--gold-line);
}
.cta-band__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 48px;
    line-height: 1.05;
    color: var(--cream);
    margin: 14px 0 18px;
}
.cta-band__copy {
    font-size: 13px;
    line-height: 1.7;
    color: var(--cream-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    font-weight: 300;
}

/* ---------- PACKAGES PAGE ---------- */
.packages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding-bottom: 56px;
}
.package-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-line);
    transition: background 0.2s, border-color 0.2s;
}
.package-card:hover { background: var(--bg-tertiary); border-color: var(--gold-border-strong); }
.package-card__img {
    position: relative;
    min-height: 200px;
    background: var(--bg-tertiary);
    border-bottom: 0.5px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.package-card__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, transparent 0, transparent 30px, rgba(201,168,76,0.035) 30px, rgba(201,168,76,0.035) 31px);
}
.package-card__img .placeholder-text { font-size: 24px; opacity: 0.14; }
.package-card__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.package-card__body {
    padding: 32px 34px 34px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.package-card__badge { align-self: flex-start; }
.package-card__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 28px;
    line-height: 1.15;
    color: var(--cream);
}
.package-card__desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--cream-muted);
    font-weight: 300;
    flex: 1;
}
.package-card__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    border-top: 0.5px solid var(--gold-line);
    padding-top: 16px;
}
.package-card__pax {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
}
.package-card__price {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 20px;
}
.package-card__cta {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 0.5px solid var(--gold);
    padding-bottom: 3px;
    align-self: flex-start;
    margin-top: 4px;
    font-weight: 500;
    transition: color 0.2s;
}
.package-card__cta:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

.packages-catalogue {
    text-align: center;
    padding: 24px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.packages-catalogue__note {
    font-size: 13px;
    color: var(--cream-muted);
    margin-bottom: 6px;
    font-weight: 300;
}

/* Packages CTA band on the promotions page */
.packages-cta {
    text-align: center;
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-border-strong);
    padding: 56px 40px;
    margin-bottom: 100px;
}
.packages-cta__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 36px;
    line-height: 1.1;
    color: var(--cream);
    margin: 12px 0 14px;
}
.packages-cta__copy {
    font-size: 13px;
    line-height: 1.7;
    color: var(--cream-muted);
    max-width: 480px;
    margin: 0 auto 28px;
    font-weight: 300;
}

/* ---------- RESPONSIVE — sub-phase 5 ---------- */
@media (max-width: 920px) {
    .philosophy-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials { grid-template-columns: 1fr; gap: 16px; }
    .packages { grid-template-columns: 1fr; gap: 20px; }
    .find-us { grid-template-columns: 1fr; gap: 16px; }
    .about-section { padding: 56px 0; }
    .testimonials-section { padding: 56px 0 64px; }
    .cta-band { padding: 64px 0; }
    .cta-band__title { font-size: 36px; }
    .packages-cta { padding: 40px 24px; }
    .packages-cta__title { font-size: 28px; }
}

/* ---------- ABOUT PAGE — real-content rebuild (2026-06-28) ---------- */
/* Vibe image bands interlaced between sections */
.vibe-band {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-top: 0.5px solid var(--gold-line);
    border-bottom: 0.5px solid var(--gold-line);
}
.vibe-band img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* Why Choose Us — 4-up variant of the philosophy grid */
.philosophy-grid--four { grid-template-columns: repeat(4, 1fr); }

/* Meet the Chef */
.chef { max-width: 360px; margin: 0 auto; text-align: center; }
.chef__photo {
    min-height: 380px;
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.chef__photo .placeholder-text {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
    opacity: 0.35;
}
.chef__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    color: var(--cream);
    margin-bottom: 8px;
}
.chef__title {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Legal entity fine print */
.about-fineprint {
    text-align: center;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--cream-muted);
    opacity: 0.75;
    margin-top: 32px;
}

@media (max-width: 920px) {
    .philosophy-grid--four { grid-template-columns: 1fr 1fr; }
    .vibe-band { height: 260px; }
}
@media (max-width: 560px) {
    .philosophy-grid--four { grid-template-columns: 1fr; }
    .vibe-band { height: 200px; }
}

/* ---------- ENRICHMENT PASS (2026-06-29): quick facts, team, signature band ---------- */

/* Quick facts strip */
.quickfacts {
    border-top: 0.5px solid var(--gold-line);
    border-bottom: 0.5px solid var(--gold-line);
    background: var(--bg-deeper);
}
.quickfacts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quickfact {
    text-align: center;
    padding: 38px 20px;
    border-left: 0.5px solid var(--gold-line);
}
.quickfact:first-child { border-left: 0; }
.quickfact__value {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 26px;
    line-height: 1.1;
    color: var(--gold);
    margin-bottom: 8px;
}
.quickfact__label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream-muted);
}

/* Meet the Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    gap: 28px;
    justify-content: center;
    margin-top: 16px;
}
.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-line);
    padding: 0 0 28px;
    cursor: pointer;
    font: inherit;
    color: inherit;
    transition: background 0.2s, border-color 0.2s;
}
.team-card:hover { background: var(--bg-tertiary); border-color: var(--gold-border-strong); }
.team-card__photo {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 22px;
    border-bottom: 0.5px solid var(--gold-line);
}
.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
@supports not (aspect-ratio: 4 / 5) {
    .team-card__photo { height: 380px; }
}
.team-card__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 24px;
    color: var(--cream);
    padding: 0 18px;
}
.team-card__role {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 8px;
}
.team-card__more {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--cream-muted);
    margin-top: 16px;
    border-bottom: 0.5px solid var(--gold-line);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
}
.team-card:hover .team-card__more { color: var(--gold); border-bottom-color: var(--gold); }

/* Team bio modal */
.team-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(6, 20, 22, 0.92);
    padding: 24px;
    align-items: center;
    justify-content: center;
}
.team-modal.is-open { display: flex; }
.team-modal__panel {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 820px;
    width: 100%;
    max-height: 88vh;
    overflow: auto;
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-border-strong);
}
.team-modal__photo { overflow: hidden; min-height: 100%; }
.team-modal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-modal__body { padding: 46px 46px 50px; }
.team-modal__name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 32px;
    color: var(--cream);
    margin: 8px 0 22px;
}
.team-modal__bio p {
    font-size: 13px;
    line-height: 1.85;
    color: var(--cream-muted);
    font-weight: 300;
    margin-bottom: 16px;
}
.team-modal__bio p:last-child { margin-bottom: 0; }
.team-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 40px;
    height: 40px;
    background: rgba(11, 42, 46, 0.65);
    border: 0.5px solid var(--gold-line);
    color: var(--cream);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.team-modal__close:hover { background: rgba(201, 168, 76, 0.18); border-color: var(--gold); }

/* Signature band (homepage) */
.signature-band {
    position: relative;
    overflow: hidden;
    background: var(--bg-deeper);
    border-top: 0.5px solid var(--gold-line);
    border-bottom: 0.5px solid var(--gold-line);
}
.signature-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
}
.signature-band__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 24, 26, 0.94) 0%, rgba(7, 24, 26, 0.8) 40%, rgba(7, 24, 26, 0.32) 100%);
}
.signature-band__content { position: relative; padding: 100px 0; }
.signature-band__title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 46px;
    line-height: 1.05;
    color: var(--cream);
    margin: 14px 0 18px;
}
.signature-band__copy {
    font-size: 14px;
    line-height: 1.8;
    color: var(--cream-muted);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 30px;
}

@media (max-width: 920px) {
    .quickfacts__grid { grid-template-columns: 1fr 1fr; }
    .quickfact { border-left: 0; }
    .quickfact:nth-child(even) { border-left: 0.5px solid var(--gold-line); }
    .quickfact:nth-child(3), .quickfact:nth-child(4) { border-top: 0.5px solid var(--gold-line); }
    .team-modal__panel { grid-template-columns: 1fr; max-height: 92vh; }
    .team-modal__photo { max-height: 340px; }
    .team-modal__body { padding: 32px 28px 36px; }
    .signature-band__content { padding: 64px 0; }
    .signature-band__title { font-size: 34px; }
    .signature-band__scrim { background: linear-gradient(180deg, rgba(7, 24, 26, 0.66) 0%, rgba(7, 24, 26, 0.9) 100%); }
}
@media (max-width: 560px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { max-width: 360px; margin: 0 auto; width: 100%; }
}

/* ---------- ENRICHMENT PASS (2026-06-29 cont.): royalty + video gallery ---------- */

/* Favoured by Royalty & Distinguished Guests */
.royalty__hero {
    margin: 40px auto 0;
    max-width: 1000px;
    overflow: hidden;
    border: 0.5px solid var(--gold-border);
    background: var(--bg-secondary);
}
.royalty__hero img { width: 100%; height: auto; display: block; }
.royalty__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto 0;
}
.royalty__item {
    margin: 0;
    overflow: hidden;
    border: 0.5px solid var(--gold-line);
    background: var(--bg-secondary);
}
.royalty__item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.royalty__cap {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream-muted);
    text-align: center;
    padding: 14px 16px 4px;
}

/* Video gallery — Moments at The Place */
.video-gallery {
    padding: 88px 0;
    background: var(--bg-deeper);
    border-top: 0.5px solid var(--gold-line);
    border-bottom: 0.5px solid var(--gold-line);
}
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.video-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 9 / 16;
    padding: 24px 18px;
    cursor: pointer;
    background:
        radial-gradient(circle at 50% 38%, rgba(201,168,76,0.10), transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-deeper) 100%);
    border: 0.5px solid var(--gold-border);
    transition: border-color 0.25s ease, transform 0.25s ease;
    font-family: var(--font-body);
}
.video-tile:hover {
    border-color: var(--gold-border-strong);
    transform: translateY(-3px);
}
.video-tile__play {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.5px solid var(--gold);
    color: var(--gold);
    font-size: 22px;
    padding-left: 5px;
    margin-bottom: 18px;
    transition: background 0.25s ease;
}
.video-tile:hover .video-tile__play { background: rgba(201,168,76,0.16); }
.video-tile__label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    text-align: center;
    line-height: 1.5;
}

/* Video modal (click-to-play) */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 18, 20, 0.92);
}
.video-modal__inner {
    position: relative;
    z-index: 1;
    width: min(92vw, 460px);
    max-height: 90vh;
}
.video-modal__video {
    width: 100%;
    max-height: 90vh;
    display: block;
    background: #000;
    border: 0.5px solid var(--gold-border);
}
.video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 0.5px solid var(--gold-border-strong);
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.video-modal__close:hover { background: rgba(201,168,76,0.16); }

@media (max-width: 920px) {
    .video-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .royalty__item img { height: 220px; }
    .video-gallery { padding: 64px 0; }
}
@media (max-width: 560px) {
    .royalty__grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    .video-tile__play { width: 52px; height: 52px; font-size: 18px; }
}

/* ---------- ENRICHMENT FIXES (2026-06-30): vibe-band overlay, video posters,
   royal visit feature, single-video grid, clickable review source ---------- */

/* Brand-teal gradient overlay on the wide image bands (about page) */
.vibe-band { position: relative; }
.vibe-band::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Layered teal wash + side vignette so the band reads as a designed,
       textured brand panel and any upscale softness recedes. */
    background:
        linear-gradient(90deg, rgba(11,42,46,0.42) 0%, rgba(11,42,46,0.08) 22%, rgba(11,42,46,0.08) 78%, rgba(11,42,46,0.42) 100%),
        linear-gradient(180deg, rgba(11,42,46,0.66) 0%, rgba(11,42,46,0.20) 42%, rgba(11,42,46,0.62) 100%);
}

/* Video tiles with a real poster frame behind them */
.video-tile.has-poster {
    background-size: cover;
    background-position: center;
}
/* Poster rendered as a real <img> (injected by video_modal.php) so it fills
   the whole tile edge-to-edge with no inline-element gaps. Layered below the
   teal overlay and the play icon/label. */
.video-tile__poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}
.video-tile.has-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(11,42,46,0.30) 0%, rgba(11,42,46,0.20) 45%, rgba(11,42,46,0.72) 100%);
    transition: background 0.25s ease;
}
.video-tile.has-poster:hover::before { background: linear-gradient(180deg, rgba(11,42,46,0.18) 0%, rgba(11,42,46,0.12) 45%, rgba(11,42,46,0.62) 100%); }
.video-tile.has-poster .video-tile__play,
.video-tile.has-poster .video-tile__label { position: relative; z-index: 2; }
.video-tile.has-poster .video-tile__play { background: rgba(11,42,46,0.35); }

/* Consistent zoom affordance for every clickable content photo */
.zoomable { cursor: zoom-in; }

/* Single centred video (packages "Events in Action") */
.video-grid--single { grid-template-columns: minmax(0, 300px); justify-content: center; }
.event-video { padding: 16px 0 8px; }

/* Royal visit feature — photo + click-to-play video side by side */
.royal-visit {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    max-width: 1040px;
    margin: 40px auto 0;
    align-items: stretch;          /* equal-height columns */
}
/* Both frames share identical structure: media fills the top, a teal caption
   bar is pinned inside the bottom. Fixed equal height so the two boxes align
   flush at the top AND the bottom, captions on the same baseline. */
.royal-visit__frame {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 460px;
    border: 0.5px solid var(--gold-border);
    background: var(--bg-secondary);
    overflow: hidden;
}
.royal-visit__media {
    flex: 1 1 auto;
    min-height: 0;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}
.royal-visit__photo .royal-visit__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Video tile fills its media area (overrides the portrait aspect-ratio base).
   Restore flex centering so the play icon + label stay centred (the generic
   .royal-visit__media sets display:block, which would left-align them). */
.royal-visit__video .royal-visit__media.video-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    height: 100%;
    background-size: cover;
    background-position: center;
}
/* Matching teal caption bar inside the bottom of both frames */
.royal-visit__cap {
    flex: 0 0 auto;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 18px;
    background: var(--bg-deeper, #07181b);
    border-top: 0.5px solid var(--gold-line);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 10.5px;
    letter-spacing: 1.5px;
    line-height: 1.4;
    text-transform: uppercase;
}
/* Inner icon/label never intercept the click — the whole tile plays */
.video-tile__play, .video-tile__label { pointer-events: none; }
.royalty__more-label {
    text-align: center;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin: 52px 0 0;
}

/* Clickable Google Review source label */
a.testi-card__source--link {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
a.testi-card__source--link:hover { color: var(--gold-bright, var(--gold)); text-decoration: underline; }

@media (max-width: 720px) {
    .royal-visit { grid-template-columns: 1fr; }
    .royal-visit__frame { height: 360px; }
}

/* ---------- WHATSAPP: floating button (site-wide) + reservation-step help ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.32);
    z-index: 900;            /* above content, below lightbox/video modals (1000) */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,0,0,0.42); }
.wa-float__icon { width: 32px; height: 32px; fill: #fff; display: block; }

/* Secondary "need help?" WhatsApp affordance inside the reservation steps —
   recognizably WhatsApp (green outline + glyph) but lighter than the gold CTAs. */
.wa-help-row { text-align: center; margin-top: 18px; }
.wa-help {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--cream-muted);
    text-decoration: none;
    padding: 8px 16px;
    border: 0.5px solid rgba(37,211,102,0.45);
    border-radius: 40px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.wa-help:hover { color: #fff; border-color: #25D366; background: rgba(37,211,102,0.12); }
.wa-help__icon { width: 15px; height: 15px; fill: #25D366; flex: 0 0 auto; }

@media (max-width: 600px) {
    .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .wa-float__icon { width: 30px; height: 30px; }
}

/* ---------- CONTACT PAGE ---------- */
.contact-page { padding-bottom: 32px; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.contact-card {
    background: var(--bg-secondary);
    border: 0.5px solid var(--gold-border);
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
}
.contact-card__label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.contact-card__value {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--cream);
    margin: 0 0 18px;
    flex: 1;
}
.contact-card__muted { font-size: 12px; color: var(--cream-muted); }
.contact-card__action {
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-card__action:hover { text-decoration: underline; }
.contact-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 16px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contact-btn--wa { background: #25D366; color: #0B2A2E; border: 0.5px solid #25D366; }
.contact-btn--wa:hover { background: #1fbe5b; border-color: #1fbe5b; }
.contact-btn__wa { width: 15px; height: 15px; fill: #0B2A2E; flex: 0 0 auto; }
.contact-btn--ghost { background: transparent; color: var(--cream); border: 0.5px solid var(--gold-border); }
.contact-btn--ghost:hover { color: var(--gold); border-color: var(--gold); }
.contact-hours { display: flex; flex-direction: column; gap: 9px; }
.contact-hours > span { display: flex; justify-content: space-between; gap: 16px; }
.contact-hours .k { color: var(--cream-muted); font-size: 13px; }
.contact-hours .v { color: var(--cream); font-size: 13px; }
.contact-map {
    margin-top: 48px;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    border: 0.5px solid var(--gold-border);
    overflow: hidden;
    background: var(--bg-secondary);
}
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.contact-map__fallback { text-align: center; margin: 14px 0 52px; }
.contact-map__fallback a {
    font-family: var(--font-body); font-size: 12px; letter-spacing: 1px;
    color: var(--gold); text-decoration: none;
}
.contact-map__fallback a:hover { text-decoration: underline; }
.contact-fineprint {
    text-align: center;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream-muted);
    margin: 40px 0 0;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { aspect-ratio: 4 / 3; }
}
