/* =============================================
   Restaurant de L'Opéra — Apple Premium 2024
   Fluid · Cinematic · Minimal
   ============================================= */

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

:root {
    --black: #000;
    --near-black: #111;
    --off-black: #1d1d1f;
    --mid: #424245;
    --sub: #6e6e73;
    --ghost: #86868b;
    --rule: #d2d2d7;
    --surface: #f5f5f7;
    --white: #fff;
    --gold: #c9874a;
    --gold-light: #dba870;
    --gold-dark: #a06835;
    --ease: cubic-bezier(.25,.46,.45,.94);
    --spring: cubic-bezier(.22,1,.36,1);
    --r: 14px;
    --rl: 20px;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--off-black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ─── PRELOADER ─── */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo { width: 140px; animation: prePulse 1.5s ease infinite; }
@keyframes prePulse { 0%,100%{opacity:.3;transform:scale(.98)} 50%{opacity:1;transform:scale(1)} }

/* ─── NAV ─── */
.nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
    transition: background .5s var(--ease), backdrop-filter .5s;
}
.nav.solid {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    height: 52px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img {
    height: 26px; width: auto; transition: filter .3s, opacity .3s;
}
.nav-logo:hover img { opacity: .75; }
.nav:not(.solid) .nav-logo img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.45));
}
.nav-links {
    display: flex; align-items: center; gap: 4px;
}
.nav-links a {
    padding: 8px 13px; border-radius: 8px;
    font-size: .82rem; font-weight: 500; letter-spacing: .2px;
    color: var(--sub); transition: color .25s;
}
.nav-links a:hover { color: var(--off-black); }
.nav:not(.solid) .nav-links a {
    color: rgba(255,255,255,.92); font-weight: 600;
    text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.nav:not(.solid) .nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-btn-ghost {
    padding: 8px 18px; border-radius: 50px;
    font-size: .78rem; font-weight: 600; letter-spacing: .3px;
    color: var(--sub); border: 1px solid var(--rule);
    transition: color .25s, border-color .25s, background .25s;
}
.nav-btn-ghost:hover { color: var(--off-black); border-color: var(--sub); }
.nav:not(.solid) .nav-btn-ghost {
    color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4);
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.nav:not(.solid) .nav-btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.1); }
.nav-btn {
    padding: 9px 22px; border-radius: 50px;
    background: linear-gradient(135deg, #dba870 0%, #c9874a 55%, #dba870 100%);
    background-size: 200% auto;
    color: #241503;
    font-size: .78rem; font-weight: 600; letter-spacing: .3px;
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    box-shadow: 0 2px 12px rgba(201,135,74,.3);
}
.nav.solid .nav-btn {
    background: linear-gradient(135deg, #d4924f 0%, #b0692e 55%, #d4924f 100%);
    background-size: 200% auto;
    color: #fff;
    animation: navBtnShimmer 5s linear infinite;
}
.nav-btn:hover { transform: translateY(-1px) scale(1.04); box-shadow: 0 6px 24px rgba(201,135,74,.5); }
.nav-btn:active { transform: scale(.97); }
@keyframes navBtnShimmer {
    from { background-position: 0% center; }
    to   { background-position: 200% center; }
}
.nav-burger {
    display: none; flex-direction: column; gap: 5px;
    align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: none; border: 1px solid transparent; cursor: pointer; padding: 0;
    transition: background .3s, border-color .3s;
}
.nav-burger span {
    display: block; width: 16px; height: 1.5px;
    background: currentColor; border-radius: 1px;
    transition: all .35s var(--spring);
}
.nav:not(.solid) .nav-burger {
    color: #fff;
    background: rgba(0,0,0,.32);
    border-color: rgba(255,255,255,.35);
}
.nav.solid .nav-burger { color: var(--off-black); border-color: var(--rule); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

.nav-mobile-actions { display: none; flex-direction: column; gap: 12px; margin-top: 28px; align-items: center; }
.nav-mobile-actions .pill-btn { min-width: 240px; text-align: center; justify-content: center; }

/* ─── HERO ─── */
.hero {
    position: relative; height: 100vh; height: 100dvh;
    display: flex; align-items: flex-end;
    overflow: hidden; background: var(--black);
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
    width: 100%; height: 100%; object-fit: cover;
    transform-origin: center center;
    will-change: transform;
}
.hero-vignette {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.1) 70%, transparent 100%),
        linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.22) 9%, transparent 20%),
        linear-gradient(to right, rgba(0,0,0,.25) 0%, transparent 50%);
}
.hero-body {
    position: relative; z-index: 2;
    padding: 0 80px 80px; width: 100%;
}
.hero-eyebrow {
    margin-bottom: 16px;
    opacity: 0; animation: fadeUp .9s var(--spring) .4s both;
}
.eyebrow-pill {
    display: inline-block;
    font-size: .72rem; font-weight: 600; letter-spacing: 3.5px;
    text-transform: uppercase; color: #fff;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255,255,255,.35);
    padding: 8px 20px; border-radius: 50px;
    text-shadow: 0 1px 6px rgba(0,0,0,.7);
    box-shadow: 0 2px 20px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
}
.hero-title {
    line-height: 1.0;
    margin-bottom: 20px;
}
.ht-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 600; color: #fff;
    letter-spacing: -.02em;
    text-shadow: 0 2px 30px rgba(0,0,0,.5), 0 4px 60px rgba(0,0,0,.3);
    opacity: 0; animation: fadeUp 1s var(--spring) var(--d, .15s) both;
}
.ht-line.italic {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400; font-style: italic;
    color: var(--gold-light);
    text-shadow: 0 2px 40px rgba(0,0,0,.6), 0 0 80px rgba(201,135,74,.2);
}
.hero-sub {
    font-size: .85rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.6); font-weight: 500;
    margin-bottom: 36px;
    text-shadow: 0 1px 8px rgba(0,0,0,.6);
    opacity: 0; animation: fadeUp .9s var(--spring) var(--d,.3s) both;
}
.hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    opacity: 0; animation: fadeUp .9s var(--spring) var(--d,.45s) both;
}
.pill-btn {
    display: inline-block; padding: 14px 30px;
    border-radius: 50px; font-size: .82rem; font-weight: 600;
    letter-spacing: .5px; cursor: pointer;
    transition: all .35s var(--spring); border: none;
}
.pill-btn.dark { background: #fff; color: var(--off-black); }
.pill-btn.dark:hover { background: var(--gold-light); color: #fff; transform: scale(1.04); }
.pill-btn.ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.pill-btn.ghost:hover { background: rgba(255,255,255,.16); transform: scale(1.04); }
.pill-btn.light { background: var(--off-black); color: #fff; }
.pill-btn.light:hover { background: var(--gold-dark); transform: scale(1.02); }
.pill-btn:active { transform: scale(.97); }
.pill-btn.order {
    display: inline-flex; align-items: center; gap: 9px;
    background: linear-gradient(135deg, #dba870 0%, #c9874a 55%, #dba870 100%);
    background-size: 200% auto;
    color: #241503;
    box-shadow: 0 6px 24px rgba(201,135,74,.35);
    position: relative; overflow: hidden;
}
.pill-btn.order::after {
    content: '';
    position: absolute; top: 0; left: -70%;
    width: 45%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255,255,255,.42) 50%, transparent);
    transform: skewX(-18deg);
    transition: left .7s var(--ease);
    pointer-events: none;
}
.pill-btn.order:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 34px rgba(201,135,74,.5); }
.pill-btn.order:hover::after { left: 130%; }
.pill-btn.order:active { transform: scale(.97); }
:is(a, button):focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}
.full-w { width: 100%; text-align: center; }
.hero-scroll-hint {
    position: absolute; bottom: 28px; right: 40px; z-index: 2;
    opacity: 0; animation: fadeIn 1s ease 2.2s both;
}
.scroll-dot {
    display: block; width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,.3);
    animation: dotBounce 2.5s ease infinite;
}
@keyframes dotBounce { 0%,100%{transform:translateY(0);opacity:.3} 50%{transform:translateY(-6px);opacity:1} }

/* ─── STATEMENT ─── */
.statement {
    background: var(--off-black); padding: 160px 24px;
    overflow: hidden; position: relative;
}
.stmt-cursor-glow {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: radial-gradient(600px circle at var(--gx,50%) var(--gy,50%),
        rgba(201,135,74,.11) 0%, transparent 60%);
    opacity: 0; transition: opacity .6s ease;
}
.statement:hover .stmt-cursor-glow { opacity: 1; }
.statement-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.stmt-label {
    font-size: .72rem; font-weight: 600; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 32px; display: block;
}
.stmt-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 500; color: #fff; line-height: 1.1;
    letter-spacing: -.025em; margin-bottom: 40px;
    position: relative; overflow: hidden; cursor: default;
}
.stmt-title::after {
    content: '';
    position: absolute; top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,135,74,.2) 50%, transparent);
    transform: skewX(-15deg);
    pointer-events: none;
    opacity: 0;
}
.stmt-title:hover::after {
    animation: goldBeam 1.4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes goldBeam {
    0%  { left: -80%; opacity: 1; }
    100%{ left: 140%; opacity: 0; }
}
.stmt-title em { color: var(--gold-light); font-style: italic; transition: color .4s ease; }
.stmt-title:hover em { color: #f5c98a; }
.stmt-word {
    display: inline-block;
    transition: transform .45s var(--spring), color .35s ease;
    will-change: transform;
}
.stmt-body {
    font-size: 1.15rem; color: rgba(255,255,255,.58);
    max-width: 520px; line-height: 1.75; font-weight: 300;
}

/* ─── STORY ─── */
.story { background: var(--white); padding: 120px 0; }
.story-rows {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    display: flex; flex-direction: column; gap: 96px;
}
.story-row {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px; align-items: center;
}
.story-row.reverse .story-media { order: 2; }
.story-row.reverse .story-copy { order: 1; }
.story-media {
    border-radius: var(--rl); overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 30px 70px -30px rgba(0,0,0,.25);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-row:hover .story-media img { transform: scale(1.04); }
.story-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: .8rem; font-weight: 400; letter-spacing: 5px;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 22px;
}
.story-num::after {
    content: '';
    display: block; width: 44px; height: 1px;
    background: rgba(201,135,74,.4);
}
.story-copy h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500;
    color: var(--off-black); line-height: 1.15;
    letter-spacing: -.02em; margin-bottom: 20px;
}
.story-copy p {
    font-size: 1.05rem; color: var(--sub);
    max-width: 420px; line-height: 1.75; font-weight: 300;
}

/* ─── NUMBERS ─── */
.numbers {
    background: var(--black); padding: 120px 24px;
    position: relative; overflow: hidden;
}
.numbers::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 1px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,135,74,.12), transparent);
    pointer-events: none;
}
.num-gold-rule {
    width: 48px; height: 1px; background: var(--gold);
    margin: 0 auto 80px;
}
.numbers-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: center;
}
.num-divider {
    background: rgba(255,255,255,.07);
    height: 100px; width: 1px; justify-self: center;
}
.num-item {
    padding: 20px 60px; text-align: center;
    opacity: 0; transform: translateY(28px);
    transition: opacity 1s var(--spring) var(--rd,0s), transform 1s var(--spring) var(--rd,0s);
}
.num-item.vis { opacity: 1; transform: none; }
.num-val {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4.5rem, 9vw, 8rem);
    font-weight: 400; color: #fff; line-height: 1;
    letter-spacing: -.04em; display: block;
}
.num-meta { margin-top: 16px; }
.num-unit {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-style: italic; color: var(--gold-light);
    display: block; margin-bottom: 8px; letter-spacing: .01em;
}
.num-item p {
    font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-top: 4px;
}

/* ─── SPECIALTIES ─── */
.specs { padding: 140px 0; background: var(--surface); overflow: hidden; }
.specs-head {
    text-align: center; padding: 0 24px; margin-bottom: 64px;
    opacity: 0; transform: translateY(30px);
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}
.specs-head.vis { opacity: 1; transform: none; }
.eyebrow {
    display: block; font-size: .7rem; font-weight: 600;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.eyebrow.light { color: var(--gold-light); }
.specs-head h2,
.gallery-head h2,
.contact-info h2,
.reserve-head h2,
.menu-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500;
    color: var(--off-black); line-height: 1.15;
    letter-spacing: -.025em;
}
.specs-head h2 em,
.contact-info h2 em,
.reserve-head h2 em,
.gallery-head h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400; color: var(--gold-dark);
}
.gallery-head h2 { color: #fff; }
.gallery-head h2 em { color: var(--gold-light); }
.reserve-head h2 { color: #fff; }
.reserve-head h2 em { color: var(--gold-light); }

.specs-scroll {
    display: flex; gap: 20px; padding: 8px 80px 48px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; cursor: grab;
}
.specs-scroll::-webkit-scrollbar { display: none; }
.spec-card {
    width: 300px; min-width: 300px; flex: 0 0 300px; flex-shrink: 0; border-radius: var(--rl);
    overflow: hidden; background: var(--surface);
    scroll-snap-align: start;
    transition: transform .5s var(--spring), box-shadow .5s var(--spring);
    opacity: 0; transform: translateY(30px) scale(.98);
}
.spec-card.vis { opacity: 1; transform: none; }
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.spec-img { height: 220px; overflow: hidden; }
.spec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.spec-card:hover .spec-img img { transform: scale(1.05); }
.spec-info { padding: 24px; }
.spec-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 500; color: var(--off-black);
    margin-bottom: 8px;
}
.spec-info p { font-size: .82rem; color: var(--sub); line-height: 1.6; margin-bottom: 16px; }
.spec-price {
    display: inline-block; font-size: .8rem; font-weight: 700;
    color: var(--gold-dark); letter-spacing: .5px;
}
.specs-cta {
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    text-align: center; padding: 26px 24px 0;
}
.specs-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-style: italic; color: var(--mid);
    max-width: 480px; line-height: 1.5;
}

/* ─── PULL QUOTE ─── */
.pullquote {
    position: relative; padding: 180px 24px;
    overflow: hidden; isolation: isolate;
    background: var(--black);
}
.pq-bg {
    position: absolute; inset: -20%; z-index: 0;
}
.pq-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 1; filter: brightness(.3) saturate(1.2); }
.pq-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(15,8,0,.65) 100%);
}
.pq-content {
    max-width: 720px; margin: 0 auto; text-align: center;
    position: relative; z-index: 2;
    opacity: 0; transform: translateY(30px);
    transition: opacity 1s var(--spring), transform 1s var(--spring);
}
.pq-content.vis { opacity: 1; transform: none; }
.pq-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3.8vw, 2.8rem);
    font-weight: 400; line-height: 1.45; color: rgba(255,255,255,.92);
}
.pq-content blockquote em { font-style: italic; color: var(--gold-light); }
.pq-content cite {
    display: block; margin-top: 32px;
    font-size: .72rem; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: rgba(255,255,255,.38);
}
.pq-ornament {
    display: block; font-size: 3rem; color: var(--gold);
    opacity: .3; line-height: 1; margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
}

/* ─── MENU ─── */
.menu-sec { padding: 140px 0; background: var(--surface); }
.menu-head {
    text-align: center; margin-bottom: 48px;
    opacity: 0; transform: translateY(25px);
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}
.menu-head.vis { opacity: 1; transform: none; }
.menu-head p { font-size: .95rem; color: var(--sub); margin-top: 10px; }
.menu-tabs {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 6px; margin-bottom: 44px; padding: 0 24px;
}
.mtab {
    padding: 10px 22px; border-radius: 50px;
    font-size: .8rem; font-weight: 500;
    border: 1px solid rgba(0,0,0,.1); background: #fff;
    color: var(--sub); cursor: pointer;
    transition: all .3s var(--ease);
}
.mtab:hover { border-color: var(--gold); color: var(--gold-dark); }
.mtab.active { background: var(--off-black); color: #fff; border-color: var(--off-black); }
.menu-panels { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.mpanel { display: none; animation: panelIn .5s var(--spring); }
.mpanel.active { display: block; }
@keyframes panelIn { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:none} }
.mcat-banner {
    position: relative; height: 200px; border-radius: var(--rl);
    overflow: hidden; margin-bottom: 28px;
}
.mcat-banner img { width: 100%; height: 100%; object-fit: cover; }
.mcat-banner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.6), rgba(0,0,0,.1));
}
.mcb-text { position: absolute; bottom: 28px; left: 32px; z-index: 1; }
.mcb-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem; color: #fff; font-weight: 500;
}
.mcb-text p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; color: rgba(255,255,255,.5); font-size: 1rem;
}
.mlist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.mi {
    display: flex; align-items: center;
    background: #fff; border-radius: var(--r);
    overflow: hidden; transition: all .4s var(--spring);
    border: 1px solid transparent;
}
.mi:hover { box-shadow: 0 6px 20px rgba(0,0,0,.05); transform: translateY(-1px); }
.mi.highlight { border-color: var(--gold); background: #fdf7ef; }
.mi img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.mi-body {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; flex: 1; gap: 10px;
}
.mi-body span { font-size: .9rem; font-weight: 500; color: var(--off-black); }
.mi-body span small { font-size: .75rem; color: var(--ghost); font-weight: 400; margin-left: 4px; }
.mp { font-weight: 700; color: var(--gold-dark); white-space: nowrap; font-size: .9rem; }
.sides-wrap { margin-top: 32px; }
.sides-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 500; color: var(--off-black);
    margin-bottom: 14px; display: flex; justify-content: space-between; align-items: baseline;
    border-bottom: 1px solid var(--rule); padding-bottom: 10px;
}
.sides-title span { font-family: 'Inter', sans-serif; font-size: .78rem; color: var(--ghost); font-weight: 400; }
.sides { display: flex; flex-wrap: wrap; gap: 8px; }
.sides span {
    padding: 8px 16px; background: #fff; border-radius: 50px;
    font-size: .8rem; color: var(--sub); border: 1px solid var(--rule);
    transition: all .3s var(--ease);
}
.sides span:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ─── GALLERY ─── */
.gallery { background: var(--off-black); padding: 120px 0 100px; position: relative; overflow: hidden; }
.gallery-head, .gallery-grid { position: relative; z-index: 1; }
.gallery-head {
    text-align: center; margin-bottom: 56px; padding: 0 24px;
    opacity: 0; transform: translateY(25px);
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}
.gallery-head.vis { opacity: 1; transform: none; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 200px; grid-auto-flow: dense;
    gap: 6px; padding: 0 24px;
    max-width: 1080px; margin: 0 auto;
}
.gi {
    position: relative; border-radius: 10px; overflow: hidden; min-width: 0;
    cursor: pointer;
    opacity: 0; transform: scale(.96);
    transition: opacity .7s var(--spring) var(--rd,0s), transform .7s var(--spring) var(--rd,0s);
}
.gi.vis { opacity: 1; transform: none; }
.gi.tall { grid-row: span 2; }
.gi.wide { grid-column: span 2; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gi:hover img { transform: scale(1.06); }
.gi span {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 14px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    color: #fff; font-size: .72rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    transform: translateY(100%); transition: transform .4s var(--spring);
}
.gi:hover span { transform: none; }
@media (hover: none), (max-width: 768px) {
    .gi span { transform: none; padding: 20px 12px 10px; font-size: .66rem; }
}

/* ─── CONTACT ─── */
.contact { padding: 140px 0; background: var(--surface); }
.contact-grid {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start;
}
.contact-info { opacity: 0; transform: translateX(-30px); transition: opacity .9s var(--spring), transform .9s var(--spring); }
.contact-info.vis { opacity: 1; transform: none; }
.contact-info address {
    font-style: normal; color: var(--sub);
    font-size: .95rem; line-height: 1.8; margin: 28px 0;
}
.hours-list { margin-bottom: 32px; }
.hl {
    display: flex; justify-content: space-between;
    padding: 14px 0; border-bottom: 1px solid var(--rule);
    font-size: .9rem; color: var(--sub);
    transition: padding-left .3s var(--ease);
}
.hl:hover { padding-left: 6px; }
.hl span:first-child { font-weight: 500; color: var(--off-black); }
.hl.accent span { color: var(--gold); font-weight: 600; }
/* Contact CTA */
.contact-cta { margin-top: 4px; }
.contact-cta-label {
    font-size: .68rem; letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--ghost); margin-bottom: 14px; display: block;
}
.contact-phone-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 1.1rem; font-weight: 600; color: var(--off-black);
    background: var(--surface); border: 2px solid var(--off-black);
    padding: 14px 26px; border-radius: 50px;
    transition: all .35s var(--spring); margin-bottom: 12px;
}
.contact-phone-btn:hover {
    background: var(--off-black); color: #fff; transform: scale(1.03);
}
.contact-email-link {
    display: block; font-size: .85rem; color: var(--ghost);
    transition: color .25s;
}
.contact-email-link:hover { color: var(--gold-dark); }

/* Uber Eats mention */
.uber-eats-mention {
    display: flex; align-items: center; gap: 10px;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid var(--rule);
    opacity: .55;
}
.ue-label { font-size: .72rem; color: var(--ghost); letter-spacing: 1px; }
.ue-badge { display: flex; align-items: center; }
.ue-sub { font-size: .68rem; color: var(--ghost); letter-spacing: .5px; }
.contact-map {
    border-radius: var(--rl); overflow: hidden;
    height: 480px; border: 1px solid var(--rule);
    opacity: 0; transform: translateX(30px);
    transition: opacity .9s var(--spring) var(--rd,.2s), transform .9s var(--spring) var(--rd,.2s);
}
.contact-map.vis { opacity: 1; transform: none; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ─── RESERVATION ─── */
.reserve { background: var(--off-black); padding: 140px 24px; position: relative; overflow: hidden; }
.reserve-inner { position: relative; z-index: 1; }
.reserve-inner { max-width: 800px; margin: 0 auto; }
.reserve-head {
    margin-bottom: 48px;
    opacity: 0; transform: translateY(25px);
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}
.reserve-head.vis { opacity: 1; transform: none; }
.reserve-head p { font-size: .95rem; color: rgba(255,255,255,.55); margin-top: 12px; }
.reserve-form {
    opacity: 0; transform: translateY(25px);
    transition: opacity .9s var(--spring) var(--rd,.15s), transform .9s var(--spring) var(--rd,.15s);
}
.reserve-form.vis { opacity: 1; transform: none; }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.rf-field { display: flex; flex-direction: column; }
.rf-field.full { margin-bottom: 28px; }
.rf-field label {
    font-size: .68rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 6px;
}
.rf-field input, .rf-field select, .rf-field textarea {
    padding: 14px 18px; border-radius: 10px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: #fff; font-family: 'Inter', sans-serif; font-size: .9rem;
    transition: border-color .3s var(--ease), background .3s;
    outline: none;
}
.rf-field input::placeholder, .rf-field textarea::placeholder { color: rgba(255,255,255,.15); }
.rf-field input:focus, .rf-field select:focus, .rf-field textarea:focus {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
}
.rf-field select option { background: #1d1d1f; }

/* ─── FOOTER ─── */
.footer { background: var(--black); padding: 60px 0 0; }
.footer-top {
    max-width: 1080px; margin: 0 auto; padding: 0 24px 48px;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-brand { display: flex; flex-direction: column; gap: 16px; }
.ft-logo { height: 18px; width: auto; filter: brightness(0) invert(.3); }
.ft-brand p { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.7; }
.ft-social { display: flex; gap: 14px; }
.ft-social a { color: rgba(255,255,255,.45); transition: color .25s; }
.ft-social a:hover { color: var(--gold-light); }
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col h5 {
    font-size: .65rem; font-weight: 600; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px;
}
.ft-col a, .ft-col span { font-size: .82rem; color: rgba(255,255,255,.42); transition: color .25s; }
.ft-col a:hover { color: var(--gold-light); }
.ft-col a.ft-order { color: var(--gold-light); font-weight: 600; }
.footer-bottom {
    max-width: 1080px; margin: 0 auto; padding: 20px 24px;
    font-size: .72rem; color: rgba(255,255,255,.3);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.ft-credit { font-size: .68rem; color: rgba(255,255,255,.1); letter-spacing: 1px; }
.temonix-link {
    color: rgba(255,255,255,.2); text-decoration: none; letter-spacing: 1.5px;
    font-weight: 600; transition: color .3s;
}
.temonix-link:hover { color: var(--gold-light); }

/* ─── COMMUNAUTÉ & AVIS ─── */
.community {
    background: var(--off-black);
    padding: 140px 24px;
    position: relative; overflow: hidden;
}
.community::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(201,135,74,.09) 0%, transparent 65%);
    filter: blur(90px);
    top: -80px; left: 25%;
    animation: orbBreath 10s ease-in-out infinite;
}
.community-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.community-head {
    text-align: center; margin-bottom: 64px;
    opacity: 0; transform: translateY(25px);
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}
.community-head.vis { opacity: 1; transform: none; }
.community-head .eyebrow { color: var(--gold); }
.community-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500;
    color: #fff; line-height: 1.15; letter-spacing: -.02em;
}
.community-head h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300; color: var(--gold-light);
}
.community-head p {
    font-size: .98rem; color: rgba(255,255,255,.55);
    max-width: 520px; margin: 16px auto 0; line-height: 1.7;
}
.community-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px;
}
.com-card {
    display: flex; flex-direction: column; gap: 8px;
    padding: 34px 30px; border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    transition: transform .4s var(--spring), border-color .4s var(--ease), background .4s;
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s var(--spring) var(--rd,0s), transform .9s var(--spring) var(--rd,0s),
                border-color .4s var(--ease), background .4s;
}
.com-card.vis { opacity: 1; transform: none; }
.com-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.05); }
.com-icon {
    width: 58px; height: 58px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
}
.com-card.tiktok .com-icon { background: #010101; color: #fff; border: 1px solid rgba(255,255,255,.14); }
.com-card.facebook .com-icon { background: #1877f2; color: #fff; }
.com-card.instagram .com-icon { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); color: #fff; }
.com-card.review .com-icon { background: rgba(201,135,74,.12); color: var(--gold-light); border: 1px solid rgba(201,135,74,.3); }
.com-card.tiktok:hover { border-color: rgba(105,201,208,.35); }
.com-card.facebook:hover { border-color: rgba(24,119,242,.4); }
.com-card.review:hover { border-color: rgba(201,135,74,.4); }
.com-card strong { font-size: 1.15rem; font-weight: 600; color: #fff; letter-spacing: -.01em; }
.com-card small { font-size: .78rem; color: var(--gold-light); letter-spacing: .5px; }
.com-card p {
    font-size: .88rem; color: rgba(255,255,255,.5);
    line-height: 1.65; margin: 8px 0 18px; flex: 1;
}
.com-follow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 600; color: var(--gold-light);
    letter-spacing: .5px;
    transition: gap .3s var(--ease);
}
.com-card:hover .com-follow { gap: 12px; }
@media (max-width: 900px) {
    .community-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ─── AMBIANCE STRIP ─── */
.ambiance-strip {
    background: var(--off-black);
    padding: 22px 24px;
    display: flex; align-items: center; justify-content: center;
    gap: 18px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.ambiance-strip span {
    font-size: .68rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,.28); font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.ambiance-strip .amb-dot { color: var(--gold); opacity: .5; letter-spacing: 0; }

/* ─── SPECS NAVIGATION ─── */
.specs-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; margin-top: 20px; padding: 0 80px;
}
.spec-nav-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--rule);
    color: var(--off-black); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .35s var(--spring);
    flex-shrink: 0;
}
.spec-nav-btn svg { pointer-events: none; }
.spec-nav-btn:hover {
    background: var(--off-black); color: #fff;
    border-color: var(--off-black); transform: scale(1.1);
}
.spec-nav-btn:disabled { opacity: .25; pointer-events: none; }
.spec-nav-dots {
    display: flex; gap: 6px; align-items: center;
}
.spec-nav-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--rule); transition: all .3s var(--ease); cursor: pointer;
}
.spec-nav-dot.active { background: var(--off-black); width: 16px; border-radius: 3px; }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed; inset: 0; z-index: 9500;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.93);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    cursor: pointer;
}
.lb-close {
    position: absolute; top: 24px; right: 28px; z-index: 3;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.65); font-size: 1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s var(--ease);
    font-family: 'Inter', sans-serif;
}
.lb-close:hover { background: rgba(255,255,255,.14); color: #fff; transform: scale(1.1) rotate(90deg); }
.lb-count {
    position: absolute; top: 34px; left: 32px; z-index: 3;
    font-size: .78rem; letter-spacing: 2px; color: rgba(255,255,255,.55);
    font-variant-numeric: tabular-nums; font-family: 'Inter', sans-serif;
}
.lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.85); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .3s var(--ease), transform .3s var(--ease), opacity .3s;
}
.lb-nav:hover { background: rgba(255,255,255,.16); transform: translateY(-50%) scale(1.08); }
.lb-nav:active { transform: translateY(-50%) scale(.95); }
.lb-nav[hidden] { display: none; }
.lb-prev { left: 26px; }
.lb-next { right: 26px; }
@media (max-width: 768px) {
    .lb-prev { left: 10px; }
    .lb-next { right: 10px; }
    .lb-nav { width: 44px; height: 44px; background: rgba(0,0,0,.4); }
    .lb-img { max-width: 92vw; }
}
.lb-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    transform: scale(.86) translateY(20px);
    transition: transform .55s var(--spring);
    max-width: 90vw;
}
.lightbox.open .lb-content { transform: scale(1) translateY(0); }
.lb-img {
    max-width: 82vw; max-height: 68vh;
    width: auto; height: auto;
    border-radius: 18px;
    object-fit: contain;
    box-shadow: 0 48px 120px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06);
    display: block;
}
.lb-caption {
    margin-top: 28px; text-align: center;
    opacity: 0; transform: translateY(18px);
    transition: opacity .5s var(--spring) .22s, transform .5s var(--spring) .22s;
}
.lightbox.open .lb-caption { opacity: 1; transform: none; }
.lb-ornament {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; color: var(--gold); opacity: .4;
    line-height: 1; margin-bottom: 10px;
}
.lb-name {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 500; color: #fff;
    letter-spacing: -.01em; margin-bottom: 8px;
}
.lb-tag {
    display: block;
    font-size: .68rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold-light); font-weight: 400;
}

/* ─── ANIMATED ORB KEYFRAMES ─── */
@keyframes orbFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(45px,-35px) scale(1.15); }
    66%      { transform: translate(-28px,40px) scale(0.88); }
}
@keyframes orbFloat2 {
    0%,100% { transform: translate(0,0) scale(1.08); }
    40%      { transform: translate(-55px,28px) scale(0.87); }
    70%      { transform: translate(32px,-44px) scale(1.14); }
}
@keyframes orbFloat3 {
    0%,100% { transform: translate(0,0) scale(0.9); }
    50%      { transform: translate(60px,-38px) scale(1.12); }
}
@keyframes orbBreath {
    0%,100% { opacity: .6; transform: scale(1); }
    50%      { opacity: 1;  transform: scale(1.08); }
}

/* ─── STATEMENT — animated orbs ─── */
.statement::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,135,74,.10) 0%, transparent 68%);
    filter: blur(70px);
    top: -160px; right: 5%;
    animation: orbFloat1 14s ease-in-out infinite;
}
.statement::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(80,30,10,.14) 0%, transparent 68%);
    filter: blur(90px);
    bottom: -80px; left: 3%;
    animation: orbFloat2 18s ease-in-out infinite reverse;
}

/* ─── NUMBERS — replace centre-line orb ─── */
/* ─── GALLERY — animated orbs ─── */
.gallery::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,135,74,.07) 0%, transparent 65%);
    filter: blur(100px);
    top: -200px; left: -100px;
    animation: orbFloat2 16s ease-in-out infinite;
}
.gallery::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(30,15,60,.15) 0%, transparent 68%);
    filter: blur(80px);
    bottom: -80px; right: -60px;
    animation: orbFloat3 20s ease-in-out infinite;
}

/* ─── RESERVE — animated orbs ─── */
.reserve::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(201,135,74,.09) 0%, transparent 65%);
    filter: blur(80px);
    top: -100px; right: 0%;
    animation: orbFloat1 13s ease-in-out infinite reverse;
}
.reserve::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(60,20,80,.12) 0%, transparent 70%);
    filter: blur(90px);
    bottom: -60px; left: -80px;
    animation: orbFloat2 17s ease-in-out infinite;
}

/* ─── APP-SOCIAL — animated orbs ─── */
.app-social { position: relative; overflow: hidden; }
.app-social::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 550px; height: 550px;
    background: radial-gradient(circle, rgba(201,135,74,.09) 0%, transparent 65%);
    filter: blur(90px);
    top: -80px; left: 25%;
    animation: orbBreath 10s ease-in-out infinite;
}
.app-social::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(20,60,100,.12) 0%, transparent 68%);
    filter: blur(70px);
    bottom: 20%; right: 10%;
    animation: orbFloat3 15s ease-in-out infinite reverse;
}
.app-block, .social-block { position: relative; z-index: 1; }

/* ─── FOOTER — animated orbs ─── */
.footer { position: relative; overflow: hidden; }
.footer::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,135,74,.06) 0%, transparent 65%);
    filter: blur(100px);
    top: -100px; left: 10%;
    animation: orbFloat2 20s ease-in-out infinite;
}
.footer-top, .footer-bottom, .ft-brand, .ft-col { position: relative; z-index: 1; }

/* ─── NUMBERS — override old centre-line ::before with orb ─── */
.numbers::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,135,74,.08) 0%, transparent 65%);
    filter: blur(90px);
    top: -150px; right: -100px;
    left: auto; transform: none;
    animation: orbFloat1 16s ease-in-out infinite;
}
.numbers::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(20,10,50,.15) 0%, transparent 68%);
    filter: blur(80px);
    bottom: -60px; left: -60px;
    animation: orbFloat2 19s ease-in-out infinite reverse;
}
.num-gold-rule, .numbers-inner { position: relative; z-index: 1; }

/* ─── DELIVERY & EVENTS SECTION ─── */
.delivery {
    background: var(--near-black);
    padding: 140px 0;
    position: relative; overflow: hidden;
}
.delivery::before {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,135,74,.09) 0%, transparent 65%);
    filter: blur(90px);
    top: -200px; right: -80px;
    animation: orbFloat1 15s ease-in-out infinite;
}
.delivery::after {
    content: '';
    position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(50,20,80,.12) 0%, transparent 68%);
    filter: blur(80px);
    bottom: -80px; left: -60px;
    animation: orbFloat2 19s ease-in-out infinite reverse;
}
.delivery-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 24px;
    position: relative; z-index: 1;
}
.delivery-head {
    text-align: center; margin-bottom: 80px;
    opacity: 0; transform: translateY(25px);
    transition: opacity .9s var(--spring), transform .9s var(--spring);
}
.delivery-head.vis { opacity: 1; transform: none; }
.delivery-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 500; color: #fff;
    line-height: 1.1; letter-spacing: -.03em;
}
.delivery-head h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 300; color: var(--gold-light);
}
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.dlv-card {
    padding: 52px 48px;
    border-radius: 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    opacity: 0; transform: translateY(32px);
    transition: opacity 1s var(--spring) var(--rd,0s),
                transform 1s var(--spring) var(--rd,0s),
                border-color .4s var(--ease);
    position: relative; overflow: hidden;
}
.dlv-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px;
    background: radial-gradient(ellipse at 60% 0%, rgba(201,135,74,.06) 0%, transparent 60%);
    pointer-events: none;
}
.dlv-card.vis { opacity: 1; transform: none; }
.dlv-card:hover { border-color: rgba(201,135,74,.22); transform: translateY(-5px); }
.dlv-card.featured {
    background: rgba(201,135,74,.05);
    border-color: rgba(201,135,74,.2);
}
.dlv-card.featured::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.dlv-icon {
    width: 58px; height: 58px; border-radius: 16px;
    background: rgba(201,135,74,.1);
    border: 1px solid rgba(201,135,74,.22);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-light); margin-bottom: 28px; flex-shrink: 0;
}
.dlv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 500; color: #fff; line-height: 1.15;
    letter-spacing: -.02em; margin-bottom: 18px;
}
.dlv-card p {
    font-size: .93rem; color: rgba(255,255,255,.58);
    line-height: 1.82; max-width: 420px; margin-bottom: 28px; font-weight: 300;
}
.dlv-tags {
    display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.dlv-tags span {
    padding: 6px 14px; border-radius: 50px;
    font-size: .68rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.38);
    transition: all .3s var(--ease);
}
.dlv-card.featured .dlv-tags span {
    background: rgba(201,135,74,.08);
    border-color: rgba(201,135,74,.22);
    color: var(--gold-light);
}
.pill-btn.ghost-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent;
    border: 1.5px solid rgba(201,135,74,.5);
    color: var(--gold-light);
    padding: 13px 30px; border-radius: 50px;
    font-size: .8rem; font-weight: 600; letter-spacing: .3px;
    transition: all .35s var(--spring); cursor: pointer;
}
.pill-btn.ghost-gold:hover {
    background: rgba(201,135,74,.12);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 4px 20px rgba(201,135,74,.2);
}

/* Prestige strip */
.dlv-prestige {
    grid-column: 1 / -1;
    display: flex; align-items: center; gap: 32px;
    padding: 28px 48px;
    border-radius: 20px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.05);
    opacity: 0; transform: translateY(20px);
    transition: opacity 1s var(--spring) var(--rd,.25s), transform 1s var(--spring) var(--rd,.25s);
    flex-wrap: wrap;
}
.dlv-prestige.vis { opacity: 1; transform: none; }
.dlv-prestige-label {
    font-size: .66rem; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,.18); white-space: nowrap; flex-shrink: 0;
}
.dlv-prestige-rule {
    width: 1px; height: 32px; background: rgba(255,255,255,.07); flex-shrink: 0;
}
.dlv-clients {
    display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.dlv-client {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-style: italic;
    color: rgba(255,255,255,.28);
    transition: color .3s;
    cursor: default;
}
.dlv-client:hover { color: var(--gold-light); }

/* Delivery phone CTA button */
.dlv-phone-cta {
    display: inline-flex; align-items: center; gap: 11px;
    font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em;
    color: #fff;
    background: linear-gradient(135deg, rgba(201,135,74,.2), rgba(201,135,74,.08));
    border: 1.5px solid rgba(201,135,74,.4);
    padding: 16px 28px; border-radius: 50px;
    margin-bottom: 22px;
    transition: all .35s var(--spring);
    animation: dlvPhonePulse 2.5s ease-in-out infinite;
}
.dlv-phone-cta:hover {
    background: rgba(201,135,74,.25);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 6px 28px rgba(201,135,74,.3);
    animation: none;
}
@keyframes dlvPhonePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,135,74,.3); }
    50%      { box-shadow: 0 0 0 8px rgba(201,135,74,0); }
}
.dlv-uber-secondary {
    display: flex; align-items: center; gap: 10px;
    opacity: .45; margin-top: 4px;
}
.dlv-uber-label {
    font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.5);
}
.dlv-uber-logo { display: flex; align-items: center; }

@media (max-width: 768px) {
    .delivery-grid { grid-template-columns: 1fr; }
    .dlv-card { padding: 40px 28px; }
    .dlv-prestige { gap: 16px; padding: 24px 28px; }
    .dlv-prestige-rule { display: none; }
}

/* ─── SCROLL ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

[data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s var(--spring) var(--rd,0s), transform .9s var(--spring) var(--rd,0s);
}
[data-reveal].vis { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-body { padding: 0 48px 72px; }
    .story-row { gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-btn-ghost { display: none; }
    .nav-btn-long { display: none; }
    .nav-btn { padding: 9px 16px; font-size: .74rem; }
    .nav-burger { display: flex; }
    .nav-links.open {
        display: flex; position: fixed; inset: 0; top: 52px;
        background: rgba(255,255,255,.95);
        backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 8px;
    }
    .nav-links.open > a { font-size: 1.2rem; color: var(--off-black) !important; padding: 12px 24px; text-shadow: none !important; }
    .nav-links.open .nav-mobile-actions a { text-shadow: none !important; }
    .nav-links.open .nav-mobile-actions { display: flex; }

    .hero-body { padding: 0 24px 64px; }
    .story { padding: 80px 0; }
    .story-rows { gap: 64px; }
    .story-row, .story-row.reverse { grid-template-columns: 1fr; gap: 22px; }
    .story-row.reverse .story-media { order: 0; }
    .story-row.reverse .story-copy { order: 0; }

    .numbers-inner { grid-template-columns: 1fr; }
    .num-divider { display: none; }
    .num-item { padding: 32px 24px; }
    .num-val { font-size: 4.5rem; }

    .specs-scroll { padding: 8px 24px 40px; }
    .specs-nav { padding: 0 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { height: 320px; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 160px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .mlist { grid-template-columns: 1fr; }
    .rf-row { grid-template-columns: 1fr; }
    .reserve-head h2 { font-size: 2rem; }
    .community { padding: 90px 20px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; }
    .gi.wide { grid-column: span 2; }
    .hero-body { padding: 0 20px 56px; }
    .ht-line { font-size: 2.8rem; }
    .ht-line.italic { font-size: 3.2rem; }
    .stmt-title { font-size: 2.2rem; }
    .specs-scroll { padding: 8px 16px 40px; }
    .spec-card { min-width: 260px; }
}

/* ─── PREFERS REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    html { scroll-behavior: auto; }
    [data-reveal], .specs-head, .gallery-head, .menu-head, .reserve-head,
    .contact-info, .contact-map, .num-item, .spec-card, .gi, .pq-content,
    .community-head, .com-card, .delivery-head, .dlv-card, .dlv-prestige,
    .story-row {
        opacity: 1 !important; transform: none !important;
    }
    .hero-eyebrow, .ht-line, .hero-sub, .hero-actions, .hero-scroll-hint { opacity: 1 !important; }
    .statement { clip-path: none !important; }
    .statement::before, .statement::after,
    .numbers::before, .numbers::after,
    .gallery::before, .gallery::after,
    .reserve::before, .reserve::after,
    .app-social::before, .app-social::after,
    .delivery::before, .delivery::after,
    .footer::before { animation: none !important; }
    .pre-logo { animation: none !important; opacity: 1; }
    .scroll-dot { animation: none !important; }
}
