/* =========================================================
   Hummus & Garlic — v2
   Cava-inspired premium QSR | White / Black / Gold
   Display: Recoleta (warm rounded serif)
   Body: Inter (clean modern sans)
   Hero: full-bleed food photography
   ========================================================= */

:root {
    --white: #ffffff;
    --off-white: #fafaf7;
    --paper: #fdfcfa;
    --black: #0a0908;
    --soft-black: #161311;
    --slate: #1f1c19;
    --ink: #1a1815;
    --muted-warm: #6b5f4f;
    --muted: #6e6c68;
    --line: #ececea;
    --line-warm: #e7e2d6;

    /* Gold from logo */
    --gold: #c9a247;
    --gold-deep: #a07e26;
    --gold-light: #e6c668;
    --gold-pale: #f5ebcd;

    --font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
    --font-body: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --max-width: 1400px;
    --nav-h: 130px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--black);
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-deep);
    margin-bottom: 1.25rem;
}
.eyebrow.on-dark { color: var(--gold-light); }

/* ---------- Nav ---------- */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}
/* Scrolled nav background only applies on desktop (where the full nav is visible).
   On tablet/mobile (≤1100px) the nav stays transparent on scroll — the menu-open
   state handles its own background when the hamburger is tapped. */
@media (min-width: 1281px) {
    .site-nav.scrolled {
        height: 88px;
        background: rgba(10,9,8,0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 2px 30px rgba(0,0,0,0.4);
        border-bottom: 1px solid rgba(201,162,71,0.2);
    }
    .site-nav.scrolled .nav-brand img { height: 48px; }
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand img {
    height: 116px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4));
}
.site-nav.scrolled .nav-brand img {
    height: 104px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    transition: var(--transition);
}
.site-nav.scrolled .nav-links a {
    color: var(--white);
    text-shadow: none;
}
.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links a:hover:after, .nav-links a.active:after { width: 100%; }
.nav-links a:hover { color: var(--gold-light); }
.site-nav.scrolled .nav-links a:hover { color: var(--gold-light); }

.nav-cta {
    background: var(--white);
    color: var(--black) !important;
    padding: 0.85rem 1.6rem !important;
    border-radius: 100px;
    border: 2px solid var(--white);
    text-shadow: none !important;
}
.nav-cta:after { display: none !important; }
.nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,162,71,0.4);
}
.site-nav.scrolled .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 10;
}
.nav-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.site-nav.scrolled .nav-toggle span { background: var(--white); }

/* =========================================================
   HERO — Full-bleed food photo
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(10,9,8,0.65) 0%, rgba(10,9,8,0) 30%, rgba(10,9,8,0) 50%, rgba(10,9,8,0.85) 100%),
      linear-gradient(90deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0) 60%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem 6rem;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 1.5rem;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-shadow: 0 8px 40px rgba(0,0,0,0.6);
    opacity: 0;
    animation: fadeUp 1.1s ease 0.35s forwards;
}
.hero h1 .gold-text,
.hero h1 .hero-bowl-word {
    color: var(--white);
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeUp 1.1s ease 0.5s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.65s forwards;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--gold-light);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 1.5s ease 1s forwards, bounce 2.5s ease-in-out 2s infinite;
    text-align: center;
}
.hero-scroll-hint:after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: var(--gold-light);
    margin: 0.7rem auto 0;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.15rem 2.4rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-radius: 100px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}
/* All CTAs are white-style — solid white background, black text, gold hover */
.btn-gold,
.btn-black,
.btn-white,
.btn-ghost-light,
.btn-outline-dark {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.btn-gold:hover,
.btn-black:hover,
.btn-white:hover,
.btn-ghost-light:hover,
.btn-outline-dark:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,162,71,0.4);
}
.btn .arrow { transition: transform 0.3s ease; font-size: 1.1em; }
.btn:hover .arrow { transform: translateX(5px); }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee {
    background: var(--black);
    color: var(--white);
    padding: 1.6rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(201,162,71,0.3);
    border-bottom: 1px solid rgba(201,162,71,0.3);
}
.marquee-inner {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}
.marquee span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    font-style: normal;
    display: inline-flex;
    align-items: center;
}
.marquee span:after {
    content: '✦';
    color: var(--gold);
    font-size: 1.2rem;
    margin-left: 4rem;
    font-style: normal;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION BASE
   ========================================================= */
.section { padding: 6rem 0; position: relative; }
.section-tight { padding: 4rem 0; }
.section-off { background: var(--off-white); }
.section-paper { background: var(--paper); }
.section-black { background: var(--black); color: var(--white); }
.section-black h1, .section-black h2, .section-black h3 { color: var(--white); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
}
.section-header h2 .gold-text { color: var(--gold-deep); }
.section-black .section-header h2 .gold-text { color: var(--gold); }
.section-header p {
    color: var(--muted-warm);
    font-size: 1.05rem;
    line-height: 1.7;
}
.section-black .section-header p { color: rgba(255,255,255,0.7); }
.section-header .gold-bar {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 1.75rem;
}

/* =========================================================
   PRODUCT GRID — Middle Eats style: 3 centered square cards
   ========================================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1180px;
    margin: 0 auto;
}
.product-card {
    text-align: center;
    padding: 0;
}
.product-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.75rem;
    background: var(--off-white);
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
    color: var(--black);
}
.product-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Pill button — clean white, with built-in arrow + soft depth */
.btn-pill,
.btn-pill.btn-pill-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1.05rem 2.3rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--black);
    background: var(--white);
    border: 1.5px solid var(--white);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.12),
      0 2px 4px rgba(0, 0, 0, 0.06);
    position: relative;
}
.btn-pill::before {
    content: "🌯";
    font-size: 1.15em;
    line-height: 1;
    transition: transform 0.3s ease;
}
.btn-pill::after {
    content: "→";
    font-size: 1.05em;
    line-height: 1;
    transition: transform 0.3s ease;
}
.btn-pill:hover::before { transform: rotate(-8deg) scale(1.15); }
.btn-pill:hover,
.btn-pill.btn-pill-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow:
      0 14px 32px rgba(201, 162, 71, 0.4),
      0 4px 10px rgba(0, 0, 0, 0.1);
}
.btn-pill:hover::after { transform: translateX(4px); }
.btn-pill:active { transform: translateY(-1px); }

/* =========================================================
   STORY BLOCK — clean centered text block, photo above
   ========================================================= */
.story-block {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.story-block-image {
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
}
.story-block-image img {
    width: 100%;
    height: auto;
    display: block;
}
.story-block h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.story-block h2 .gold-text { color: var(--gold-deep); }
.story-block .gold-bar {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 2rem;
}
.story-block p {
    font-size: 1.08rem;
    color: var(--ink);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

/* =========================================================
   FEATURE BLOCK — full-width centered image with caption
   ========================================================= */
.feature-block {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-block-image {
    width: 100%;
    margin-top: 3rem;
    overflow: hidden;
}
.feature-block-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   DIAGONAL SLASH ANNOUNCEMENT + OVERLAPPING BOWLS
   Black band cut across page at angle. Trio of bowls
   sits centered, overlapping the bottom edge into the
   next white section below for a "spilling out" effect.
   ========================================================= */
.slash-wrap {
    position: relative;
    margin: 4rem 0 0;
    /* Reserve space below the slash for the bowls overlap */
    padding-bottom: 140px;
}
.slash-announce {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 6rem;
    overflow: hidden;
    transform: rotate(-1.8deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.slash-announce-inner {
    transform: rotate(1.8deg);
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}
.slash-announce .label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}
.slash-announce h2 {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 9vw, 9rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.9;
    color: var(--white);
    margin: 0 0 0.75rem;
}
.slash-announce h2 .gold-text { color: var(--gold); }
.slash-announce .tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0 auto;
    letter-spacing: 0.04em;
}

/* Trio bowls overlapping the slash, spilling into the next section */
.slash-bowls {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 38%);
    width: min(640px, 80vw);
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}
.slash-bowls img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tighten the next section since slash-wrap already pads its bottom */
.slash-wrap + section { margin-top: 0; padding-top: 5rem; }

/* =========================================================
   DESSERTS SHOWCASE
   ========================================================= */
.desserts-showcase {
    position: relative;
    background: var(--paper);
    padding: 3rem 2.5rem 5rem;
    overflow: visible;
}
.desserts-showcase-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.desserts-content {
    text-align: left;
}
.desserts-content .label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-deep);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}
.desserts-content h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.9;
    color: var(--black);
    margin: 0 0 1rem;
}
.desserts-content h2 .gold-text { color: var(--gold-deep); }
.desserts-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(0,0,0,0.7);
    max-width: 460px;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
.desserts-image {
    position: relative;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.25));
}
.desserts-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* =========================================================
   FEATURED MENU — 2-card MIRROR SPLIT
   Left card: light, photo on TOP
   Right card: dark/black, photo on BOTTOM (inverted)
   ========================================================= */
.featured-menu {
    padding: 8rem 0 7rem;
    background: var(--paper);
}
.featured-menu .menu-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.featured-menu .menu-section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.4rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.9;
    margin: 0;
}
.featured-menu .menu-section-head h2 .gold-text,
.featured-menu .menu-section-head h2 .menu-word-dark { color: var(--black); }
.featured-menu .menu-section-head .lead {
    max-width: 360px;
    text-align: right;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* The two-card mirror split */
.mirror-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.mirror-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.mirror-card:hover { transform: translateY(-6px); }

.mirror-card-image {
    width: 100%;
    aspect-ratio: 5/4;
    overflow: hidden;
    background: var(--off-white);
}
.mirror-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.mirror-card:hover .mirror-card-image img { transform: scale(1.05); }

.mirror-card-body {
    padding: 2.5rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* LEFT CARD — light, photo on TOP */
.mirror-card-light {
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}
.mirror-card-light .mirror-card-image { order: 1; }
.mirror-card-light .mirror-card-body { order: 2; }

/* RIGHT CARD — dark, photo on BOTTOM (inverted) */
.mirror-card-dark {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.mirror-card-dark .mirror-card-image { order: 2; }
.mirror-card-dark .mirror-card-body { order: 1; }

/* Card content */
.mirror-card .tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-deep);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1.5px solid var(--gold);
    align-self: flex-start;
}
.mirror-card-dark .tag { color: var(--gold-light); border-bottom-color: var(--gold); }

.mirror-card h3 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 0.9;
    margin-bottom: 1.25rem;
    color: var(--black);
}
.mirror-card-dark h3 { color: var(--white); }
.mirror-card h3 .gold-text { color: var(--gold-deep); }
.mirror-card-dark h3 .gold-text { color: var(--gold); }
.mirror-card-light h3 .bowl-word-dark { color: var(--black); }
.mirror-card-dark h3 .shawarma-word-light { color: var(--white); }

.mirror-card p {
    color: var(--muted-warm);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 460px;
}
.mirror-card-dark p { color: rgba(255,255,255,0.72); }

.mirror-card .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: auto;
}
.mirror-card .price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--gold-deep);
    line-height: 1;
    letter-spacing: 0.02em;
}
.mirror-card-dark .price { color: var(--gold); }

.mirror-card-wide {
    margin-top: 2rem;
    flex-direction: row;
    max-height: 400px;
}
.mirror-card-wide .mirror-card-image {
    flex: 1;
    max-width: 50%;
}
.mirror-card-wide .mirror-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark card: gold pill pops naturally against black, no override needed */

/* =========================================================
   BUILD A BOWL — 4 horizontal steps
   ========================================================= */
.build-bowl {
    padding: 7rem 0;
    background: var(--off-white);
}
.build-bowl .build-head {
    text-align: center;
    margin-bottom: 4rem;
}
.build-bowl .build-head h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin-bottom: 0.75rem;
}
.build-bowl .build-head h2 .gold-text { color: var(--gold-deep); }
.build-bowl .build-head p {
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1rem;
}

.build-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}
.build-step {
    text-align: left;
    position: relative;
}
.build-step-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}
.build-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.build-step:hover .build-step-image img { transform: scale(1.04); }
.build-step-num {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 16px rgba(0,0,0,0.6);
    background: var(--gold);
    padding: 0.4rem 0.85rem 0.2rem;
    color: var(--black);
    text-shadow: none;
}
.build-step h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.build-step p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}
.build-cta {
    text-align: center;
}

/* =========================================================
   PHOTO QUOTE SECTION — full bleed photo bg + big quote
   ========================================================= */
.photo-quote {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.photo-quote-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.photo-quote-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-quote-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
      linear-gradient(135deg, rgba(10,9,8,0.85) 0%, rgba(10,9,8,0.55) 50%, rgba(10,9,8,0.85) 100%);
}
.photo-quote-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 6rem 2.5rem;
    text-align: center;
}
.photo-quote .label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}
.photo-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
    color: var(--white);
    margin: 0 auto 1.75rem;
    text-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.photo-quote blockquote .gold-text { color: var(--gold-light); }
.photo-quote .cite {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.65);
}

/* =========================================================
   HIRING BAND — gold full-bleed
   ========================================================= */
.hiring-band {
    background: var(--gold);
    padding: 4.5rem 0;
    color: var(--black);
}
.hiring-band-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.hiring-band h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.95;
    margin: 0;
    color: var(--black);
    flex: 1;
    min-width: 280px;
}
.hiring-band p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: rgba(10,9,8,0.75);
    margin: 0.5rem 0 0;
    max-width: 580px;
}
/* Hiring band sits on gold bg — invert to deep black pill so it stands out */
.hiring-band .btn-pill {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.hiring-band .btn-pill:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .featured-menu .menu-section-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .featured-menu .menu-section-head .lead { text-align: left; }
    .mirror-split { grid-template-columns: 1fr; gap: 1.5rem; }
    /* On mobile, force BOTH cards to photo-on-top so they read in the natural visual order */
    .mirror-card-dark .mirror-card-image { order: 1; }
    .mirror-card-dark .mirror-card-body { order: 2; }
    .mirror-card-body { padding: 2rem 1.75rem 2.5rem; }
    .mirror-card-wide { flex-direction: column; max-height: none; }
    .mirror-card-wide .mirror-card-image { max-width: 100%; }
    .desserts-showcase { padding: 2rem 1.5rem 4rem; }
    .desserts-showcase-inner { grid-template-columns: 1fr; gap: 2rem; }
    .build-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .hiring-band-inner { flex-direction: column; align-items: flex-start; }
    .photo-quote { min-height: 460px; }
}
@media (max-width: 991px) {
    .slash-wrap { padding-bottom: 110px; }
    .slash-bowls { width: min(540px, 88vw); transform: translate(-50%, 36%); }
}



@media (max-width: 767px) {
    .slash-wrap { margin: 5rem 0 0; padding-bottom: 150px; }
    .slash-announce { padding: 3rem 0 3.5rem; }
    .slash-announce h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
    .slash-announce .tagline { font-size: 0.95rem; padding: 0 0.5rem; }
    .slash-announce .label { font-size: 0.7rem; letter-spacing: 0.25em; }
    .slash-bowls { width: 75vw; transform: translate(-50%, 25%); }
    .slash-wrap + section { padding-top: 6rem; }
    .featured-menu { padding: 4rem 0; }
    .build-bowl { padding: 4rem 0; }
    .build-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .build-step h3 { font-size: 1.5rem; }
    .hiring-band { padding: 3rem 0; }
}


@media (max-width: 630px) {
    .slash-wrap { margin: 5rem 0 0; padding-bottom: 150px; }
    .slash-announce { padding: 3rem 0 3.5rem; }
    .slash-announce h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
    .slash-announce .tagline { font-size: 0.95rem; padding: 0 0.5rem; }
    .slash-announce .label { font-size: 0.7rem; letter-spacing: 0.25em; }
    .slash-bowls { width: 90vw; transform: translate(-50%, 25%); }
    .slash-wrap + section { padding-top: 6rem; }
    .featured-menu { padding: 4rem 0; }
    .build-bowl { padding: 4rem 0; }
    .build-steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .build-step h3 { font-size: 1.5rem; }
    .hiring-band { padding: 3rem 0; }
}

@media (max-width: 480px) {
    .slash-wrap { margin: 4.5rem 0 0; padding-bottom: 130px; }
    .slash-wrap + section { padding-top: 5.5rem; }
    .slash-bowls { width: 96vw; transform: translate(-50%, 28%); }
    .slash-announce h2 { font-size: 2.6rem; }
}

/* =========================================================
   INSIDE / VENUE SECTION
   ========================================================= */
.venue {
    padding: 0;
    background: var(--black);
    color: var(--white);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    min-height: 680px;
}
.venue-image {
    position: relative;
    overflow: hidden;
}
.venue-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.venue-content {
    padding: 7rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.venue-content .eyebrow { color: var(--gold-light); }
.venue-content h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 4.6rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 0.95;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.venue-content h2 .gold-text { color: var(--gold); }
.venue-content .gold-bar {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.25rem 0 1.75rem;
}
.venue-content p {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats {
    padding: 5rem 0;
    background: var(--gold);
    color: var(--black);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    gap: 0;
}
.stat {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(10,9,8,0.18);
}
.stat:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(10,9,8,0.7);
    font-weight: 700;
}

/* =========================================================
   LOCATIONS COMING SOON
   ========================================================= */
.locations-cs { text-align: center; }
.locations-cs h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.locations-cs h2 .gold-text { color: var(--gold); }
.locations-cs .gold-bar {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 2rem;
}
.locations-cs p {
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
    padding: 7rem 0;
    background: var(--white);
    text-align: center;
    border-top: 1px solid var(--line);
}
.cta-band .eyebrow { color: var(--gold-deep); }
.cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 1.25rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.cta-band h2 .gold-text { color: var(--gold-deep); }
.cta-band .gold-bar {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem auto 2rem;
}
.cta-band p {
    color: var(--muted-warm);
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.6);
    padding: 6rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}
.footer-brand img {
    height: 130px;
    margin-bottom: 1.5rem;
}
.footer-brand p {
    color: rgba(255,255,255,0.55);
    max-width: 340px;
    font-size: 0.92rem;
    line-height: 1.75;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.25rem;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,162,71,0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1380px) {
    .nav-links { gap: 1.8rem; }
    .nav-links a { font-size: 0.9rem; letter-spacing: 0.14em; }
}

@media (max-width: 1280px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        /* Constrain to the visible area between the nav and the bottom of the
           viewport, then add safe-area inset so Safari's bottom URL bar can't
           cover the last menu item ("Join the Team"). Scroll if it overflows. */
        max-height: calc(100vh - var(--nav-h));
        max-height: calc(100dvh - var(--nav-h));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--black);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom));
        border-bottom: 1px solid rgba(201,162,71,0.2);
        /* Hide fully off-screen: shift up by its own height + the nav-h offset
           + buffer, so the element top sits above y=0 regardless of menu length. */
        transform: translateY(calc(-100% - var(--nav-h) - 1rem));
        transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s 0.32s;
        visibility: hidden;
        will-change: transform;
    }
    .nav-links.open {
        transform: translateY(0);
        visibility: visible;
        transition: transform 0.22s cubic-bezier(0.32, 0.72, 0, 1), visibility 0s 0s;
    }
    .nav-links li { width: 100%; text-align: center; padding: 1.15rem 0; }
    .nav-links a { color: var(--white); text-shadow: none; font-size: 1.25rem; letter-spacing: 0.2em; }
    .nav-cta { display: inline-block; margin-top: 0.5rem; }

    /* When the menu is open, force the panel visible and the hamburger white.
       (Height, logo, and background are handled by the shared scrolled/menu-open
       rule below.) */
    .site-nav.menu-open .nav-links { transform: translateY(0); }
    .site-nav.menu-open .nav-toggle span { background: var(--white); }

    /* Scale the (now huge) logo + nav height down for tablet so the
       hero, mirror-split, and other sections aren't crushed by it. */
    :root { --nav-h: 160px; }
    .nav-brand img { height: 140px; }

    /* Scrolled state on tablet: collapse to a slim black bar just like
       mobile does. Otherwise the tablet sits in a dead zone where the
       hamburger shows but the nav stays huge. */
    .site-nav.scrolled,
    .site-nav.menu-open {
        height: 80px;
        background: rgba(10,9,8,0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 2px 30px rgba(0,0,0,0.4);
        border-bottom: 1px solid rgba(201,162,71,0.2);
    }
    .site-nav.scrolled .nav-brand img,
    .site-nav.menu-open .nav-brand img { height: 64px; }
    .site-nav.scrolled .nav-links,
    .site-nav.menu-open .nav-links {
        top: 80px;
        max-height: calc(100dvh - 80px);
    }

    /* Mirror split menu cards: stack to one column under 1100 so each
       card has room and the Order Now button isn't squeezed. */
    .mirror-split { grid-template-columns: 1fr; gap: 1.75rem; }
    .mirror-card-body { padding: 2rem 2rem 2.5rem; }

    /* Container breathing room */
    .container { padding: 0 2rem; }
}

@media (max-width: 991px) {
    .story { grid-template-columns: 1fr; }
    .story-content { padding: 4rem 2.5rem; }
    .menu-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .venue { grid-template-columns: 1fr; }
    .venue-image { aspect-ratio: 16/9; }
    .venue-content { padding: 4rem 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 0; }
    .stat:nth-child(2) { border-right: none; }
    .stat { border-bottom: 1px solid rgba(10,9,8,0.18); padding-bottom: 1.5rem; }
    .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 767px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 5rem 0; }
    .section-tight { padding: 4rem 0; }
    .bowl-feature { padding: 5rem 0; }

    :root { --nav-h: 148px; }
    .nav-brand img { height: 128px; }

    /* Push the HG logo flush to the left edge on mobile (still leaves the
       hamburger comfortable padding on the right). */
    .nav-inner { padding: 0 1rem 0 0.5rem; }

    /* Scrolled state on mobile: collapse the nav into a thin black bar that
       sits flush around the (now smaller) logo. Also apply this when the
       mobile menu is open, so the dropdown always anchors to a 64px bar
       (and the menu items don't fall under Safari's bottom URL bar). */
    .site-nav.scrolled,
    .site-nav.menu-open {
        height: 64px;
        background: rgba(10,9,8,0.97);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.4);
        border-bottom: 1px solid rgba(201,162,71,0.2);
    }
    .site-nav.scrolled .nav-brand img,
    .site-nav.menu-open .nav-brand img { height: 48px; }
    /* Keep the dropdown anchored to the slim 64px bar */
    .site-nav.scrolled .nav-links,
    .site-nav.menu-open .nav-links {
        top: 64px;
        max-height: calc(100dvh - 64px);
    }

    .hero { min-height: 100vh; }
    .hero-content { padding: 0 1.5rem 5rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-scroll-hint { display: none; }
    /* Push hero photo left so the food sits on the right side of frame */
    .hero-bg img { object-position: 18% center; }

    .marquee span { font-size: 1.4rem; }

    .story-content { padding: 3rem 1.5rem; }
    .venue-content { padding: 3rem 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-brand img { height: 100px; }

    /* Menu cards: Order Now button fits a small screen cleanly */
    .mirror-card .price-row {
        justify-content: center;
        gap: 0;
        margin-top: 1rem;
    }
    .mirror-card .price-row .btn-pill {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.95rem 1.25rem;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }
}

@media (max-width: 380px) {
    .mirror-card .price-row .btn-pill {
        padding: 0.9rem 1rem;
        font-size: 0.66rem;
        letter-spacing: 0.1em;
        gap: 0.45rem;
    }
}
