@font-face {
    font-family: "Cormorant Garamond";
    src: url("../assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
}

:root {
    --lov-night: #090707;
    --lov-night-soft: #120a0b;
    --lov-oxblood: #760d18;
    --lov-ruby: #a51120;
    --lov-candle: #f0e3c5;
    --lov-cream: #f7f0df;
    --lov-gold: #c8a860;
    --lov-gold-bright: #e0c77f;
    --lov-red-texture: url("../assets/textures/red-velvet.webp");
    --lov-gold-texture: url("../assets/textures/gold-leaf.webp");
    --lov-text: #f7f0df;
    --lov-muted: rgba(247, 240, 223, 0.66);
    --lov-border: rgba(240, 227, 197, 0.2);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --page-pad: clamp(20px, 4vw, 72px);
    --section-space: clamp(88px, 12vw, 180px);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--lov-night); }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--lov-night);
    color: var(--lov-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img, video { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

:focus-visible {
    outline: 2px solid var(--lov-gold-bright);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    inset-block-start: 12px;
    inset-inline-start: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    padding: 12px 18px;
    background-color: var(--lov-gold);
    background-image: var(--lov-gold-texture);
    background-position: center;
    background-size: cover;
    color: var(--lov-night);
    transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.page-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 110;
    height: 2px;
    background: transparent;
}
.page-progress span { display: block; width: 0; height: 100%; background-color: var(--lov-gold); background-image: var(--lov-gold-texture); background-position: center; background-size: cover; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 90px;
    padding: 10px var(--page-pad);
    border-block-end: 1px solid transparent;
    transition: background 300ms var(--ease), min-height 300ms var(--ease), border-color 300ms ease;
}
.site-header.is-scrolled,
.site-header--solid {
    min-height: 74px;
    background: rgba(22, 13, 12, 0.9);
    border-color: var(--lov-border);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}
.brand { justify-self: start; width: 76px; height: 68px; display: grid; place-items: center; }
.brand img { width: 64px; height: 64px; object-fit: contain; }
.desktop-nav { display: none; }
.desktop-nav a {
    position: relative;
    padding: 12px 0;
    color: rgba(247, 240, 223, 0.78);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 160ms ease;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 7px;
    height: 1px;
    background: var(--lov-gold-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease);
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--lov-cream); }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.language-switcher { display: none; }
.language-switcher button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(247,240,223,0.54);
    font-size: 0.64rem;
    letter-spacing: 0.06em;
    cursor: pointer;
}
.language-switcher button[aria-pressed="true"] { color: var(--lov-gold-bright); }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.98); }
.button--gold,
.button--cream { background-color: var(--lov-gold); background-image: var(--lov-gold-texture); background-size: cover; color: var(--lov-night); }
.button--gold:hover,
.button--cream:hover { filter: brightness(1.08) saturate(1.04); }
.button--outline { border-color: rgba(224,199,127,0.58); color: var(--lov-gold-bright); }
.button--outline:hover { border-color: var(--lov-gold-bright); background-color: var(--lov-gold); background-image: var(--lov-gold-texture); background-size: cover; color: var(--lov-night); }
.button--ghost { border-color: rgba(247,240,223,0.42); }
.button--ghost:hover { border-color: var(--lov-gold-bright); background-color: var(--lov-gold); background-image: var(--lov-gold-texture); background-position: center; background-size: cover; color: var(--lov-night); }

.menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}
.menu-toggle span { position: absolute; width: 27px; height: 1px; background: var(--lov-cream); box-shadow: 0 1px 10px rgba(0,0,0,0.58); transition: transform 240ms var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    align-items: end;
    background: rgba(22,13,12,0.98);
    transform: translateY(-102%);
    visibility: hidden;
    transition: transform 420ms var(--ease), visibility 420ms;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu-inner { padding: 120px 24px 40px; }
.mobile-menu nav { display: grid; margin: 22px 0 42px; }
.mobile-menu nav a { padding: 10px 0; font-family: var(--font-display); font-size: clamp(3.4rem, 8vw, 8rem); line-height: 0.88; border-block-end: 1px solid var(--lov-border); }

.eyebrow, .section-number {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    line-height: 1.4;
    text-transform: uppercase;
}
.eyebrow { color: var(--lov-gold-bright); }
.section-number { color: rgba(247,240,223,0.72); }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--lov-night); }
.hero-photo, .hero-photo video, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo video { object-fit: cover; object-position: 50% 47%; }
.hero-shade {
    background:
        linear-gradient(90deg, rgba(22,13,12,0.88) 0%, rgba(22,13,12,0.34) 48%, rgba(22,13,12,0.1) 74%),
        linear-gradient(180deg, rgba(22,13,12,0.6) 0%, transparent 28%, rgba(22,13,12,0.76) 100%);
}
.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto 1fr auto;
    gap: 24px;
    align-items: end;
    padding: clamp(120px, 15vh, 180px) var(--page-pad) 50px;
}
.hero-meta { grid-column: 1 / span 3; grid-row: 1; align-self: start; padding-block-start: 5vh; }
.hero-note { margin-block-start: 20px; color: var(--lov-muted); font-size: 0.78rem; line-height: 1.85; }
.hero-copy { grid-column: 1 / span 10; grid-row: 2; align-self: end; max-width: 1200px; }
.hero-pretitle { margin-block-end: 16px; color: var(--lov-gold-bright); font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 2rem); font-style: italic; }
.hero h1 {
    max-width: 1100px;
    font-family: var(--font-display);
    font-size: clamp(5.4rem, 12.2vw, 12rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.69;
    text-wrap: balance;
}
.hero h1 em { color: var(--lov-gold-bright); font-weight: 400; }
.hero-cta-row { display: flex; align-items: center; gap: 30px; margin-block-start: clamp(38px, 6vh, 72px); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 11px 0;
    border-block-end: 1px solid currentColor;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.text-link span:last-child { transition: transform 180ms var(--ease); }
.text-link:hover span:last-child { transform: translate(3px, -3px); }
.hero-scroll { grid-column: 11 / 13; grid-row: 3; justify-self: end; display: flex; gap: 16px; align-items: center; color: var(--lov-muted); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; }

.ticker { overflow: hidden; border-block: 1px solid rgba(224,199,127,0.48); background-color: var(--lov-gold); background-image: var(--lov-gold-texture); background-size: cover; color: var(--lov-night); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; padding: 15px 0; animation: ticker 26s linear infinite; }
.ticker span { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; }
.ticker i { font-size: 0.5rem; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { position: relative; isolation: isolate; padding: var(--section-space) var(--page-pad); }
.story { background: var(--lov-night); }
.story > .section-number { margin-block-end: 52px; }
.story-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(42px, 9vw, 150px); align-items: center; }
.story-copy h2, .section-heading h2, .motion-copy h2, .gallery-head h2, .reviews-copy h2, .faq h2, .visit h2, .menu-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 7.2vw, 8.4rem);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.85;
}
.story-copy h2 { margin-block-start: 20px; }
.story-body { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-block-start: 46px; color: var(--lov-muted); font-size: 0.84rem; line-height: 1.9; }
.story-figure { position: relative; }
.story-figure::before { content: ""; position: absolute; inset: -18px 22px 18px -18px; z-index: 0; border: 1px solid rgba(200,168,96,0.32); }
.story-figure picture { position: relative; z-index: 1; display: block; aspect-ratio: 4/3; overflow: hidden; }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure figcaption { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; padding-block-start: 18px; color: var(--lov-muted); font-size: 0.66rem; letter-spacing: 0.09em; text-transform: uppercase; }
.story-figure figcaption span:first-child { color: var(--lov-gold-bright); }

.experience {
    background-color: var(--lov-oxblood);
    background-image: linear-gradient(rgba(50,4,10,0.26), rgba(9,7,7,0.62)), var(--lov-red-texture);
    background-size: cover;
    color: var(--lov-text);
}
.experience .section-number { color: rgba(247,240,223,0.82); }
.experience .eyebrow { color: var(--lov-gold-bright); }
.section-heading { max-width: 1150px; margin-block-end: clamp(54px, 8vw, 110px); }
.section-heading .eyebrow { margin: 28px 0 18px; }
.section-heading h2 em { color: var(--lov-gold-bright); font-weight: 400; }
.chapter-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; grid-template-rows: clamp(450px, 50vw, 840px) clamp(440px, 42vw, 720px); gap: 8px; }
.chapter-grid > *, .menu-preview > * { min-width: 0; }
.chapter { position: relative; overflow: hidden; min-height: 440px; background: var(--lov-night); color: var(--lov-cream); }
.chapter--wide { grid-column: 1 / 3; }
.chapter img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease), filter 500ms ease; }
.chapter--wide img { object-position: 50% 45%; }
.chapter--portrait img { object-position: 50% 38%; }
.chapter::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(22,13,12,0.88) 100%); }
.chapter-overlay { position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(26px, 4vw, 58px); }
.chapter-overlay > span { font-size: 0.64rem; letter-spacing: 0.17em; color: var(--lov-gold-bright); }
.chapter-overlay h3 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 6rem); font-weight: 400; line-height: 0.9; }
.chapter-overlay p { max-width: 470px; margin-block-start: 15px; color: rgba(247,240,223,0.72); font-size: 0.78rem; }
.chapter:hover img { transform: scale(1.045); filter: saturate(1.07); }

.menu-preview { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(48px, 9vw, 150px); background: var(--lov-night); color: var(--lov-text); }
.menu-intro { position: sticky; top: 130px; align-self: start; }
.menu-intro .section-number { color: rgba(247,240,223,0.72); }
.menu-intro .eyebrow { margin-block-start: 26px; color: var(--lov-gold-bright); }
.menu-intro h2 { margin: 18px 0 30px; font-family: var(--font-display); font-size: clamp(4rem, 7vw, 8rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.79; }
.menu-intro > p { max-width: 470px; color: var(--lov-muted); font-size: 0.8rem; line-height: 1.9; }
.menu-intro .button { margin-block-start: 34px; }
.menu-list { border-block-start: 1px solid var(--lov-border); }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 28px 0; border-block-end: 1px solid var(--lov-border); }
.menu-row h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3.1rem); font-weight: 500; line-height: 1; }
.menu-row p { margin-block-start: 7px; color: var(--lov-muted); font-size: 0.72rem; }
.menu-row > span { align-self: start; color: var(--lov-gold-bright); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; }

.motion { display: grid; grid-template-columns: 6fr 5fr; gap: clamp(42px, 9vw, 150px); align-items: center; background-color: var(--lov-oxblood); background-image: linear-gradient(rgba(9,7,7,0.32), rgba(9,7,7,0.72)), var(--lov-red-texture); background-size: cover; }
.motion-media { position: relative; width: min(100%, 660px); aspect-ratio: 9/12; overflow: hidden; }
.motion-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(247,240,223,0.14); }
.motion-media video { width: 100%; height: 100%; object-fit: cover; }
.media-toggle { position: absolute; z-index: 3; inset: auto 20px 20px auto; min-width: 110px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 17px; border: 1px solid rgba(247,240,223,0.42); border-radius: 999px; background: rgba(22,13,12,0.64); backdrop-filter: blur(10px); cursor: pointer; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }
.motion-copy .section-number { margin-block-end: 34px; }
.motion-copy h2 { margin-block-start: 20px; }
.motion-copy h2 em { color: var(--lov-gold-bright); font-weight: 400; }
.motion-copy > p { max-width: 510px; margin: 34px 0; color: rgba(247,240,223,0.72); font-size: 0.86rem; line-height: 1.9; }

.artists { background: var(--lov-night); }
.artists-head { display: grid; grid-template-columns: minmax(180px, 2fr) minmax(420px, 6fr) minmax(230px, 3fr); gap: clamp(30px, 5vw, 80px); align-items: end; margin-block-end: clamp(58px, 8vw, 110px); }
.artists-head .section-number { margin-block-end: 24px; }
.artists-head h2 { font-family: var(--font-display); font-size: clamp(3.8rem, 7.5vw, 8.5rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.78; }
.artists-head h2 em { color: var(--lov-gold-bright); font-weight: 400; }
.artists-head > p { max-width: 380px; color: var(--lov-muted); font-size: 0.72rem; line-height: 1.8; }
.artist-duo { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 8px; align-items: start; }
.artist-card { position: relative; min-width: 0; aspect-ratio: 4 / 5; overflow: hidden; background: var(--lov-oxblood); }
.artist-card--motion { margin-block-start: clamp(48px, 8vw, 132px); }
.artist-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,7,7,0.04) 38%, rgba(9,7,7,0.94) 100%); pointer-events: none; }
.artist-card-media,
.artist-card picture,
.artist-card img { width: 100%; height: 100%; }
.artist-card img,
.artist-card video { object-fit: cover; filter: saturate(0.88) contrast(1.04); transition: transform 900ms var(--ease), filter 350ms ease; }
.artist-card:hover img,
.artist-card:hover video { transform: scale(1.025); filter: saturate(1) contrast(1.02); }
.artist-card-caption { position: absolute; z-index: 2; inset: auto clamp(20px, 3vw, 46px) clamp(22px, 3vw, 44px); }
.artist-card-caption > span { color: var(--lov-gold-bright); font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; }
.artist-card-caption h3 { margin-block-start: 10px; font-family: var(--font-display); font-size: clamp(3.4rem, 7vw, 8rem); font-weight: 400; letter-spacing: -0.055em; line-height: 0.78; }
.artist-card--poster .artist-card-caption > span,
.artist-card--poster .artist-card-caption h3 { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.artist-card--poster .artist-links { justify-content: flex-end; margin-block-start: 0; }
.artist-links { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-block-start: 20px; }
.artist-links a { padding-block-end: 4px; border-block-end: 1px solid rgba(224,199,127,0.5); color: var(--lov-gold-bright); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: border-color 160ms ease, filter 160ms ease; }
.artist-links a:hover { border-color: var(--lov-cream); filter: brightness(1.2); }
.artists-instagram { margin: 30px 0 0 auto; }

.lineup-archive { background-color: var(--lov-oxblood); background-image: linear-gradient(rgba(9,7,7,0.42), rgba(9,7,7,0.76)), var(--lov-red-texture); background-position: center; background-size: cover; }
.lineup-head { display: grid; grid-template-columns: minmax(180px, 2fr) minmax(420px, 6fr) minmax(230px, 3fr); gap: clamp(30px, 5vw, 80px); align-items: end; margin-block-end: clamp(66px, 9vw, 130px); }
.lineup-head .section-number { margin-block-end: 24px; }
.lineup-head h2 { font-family: var(--font-display); font-size: clamp(3.8rem, 7.5vw, 8.5rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.78; }
.lineup-head h2 em { color: var(--lov-gold-bright); font-weight: 400; }
.lineup-head > p { max-width: 420px; color: rgba(247,240,223,0.72); font-size: 0.76rem; line-height: 1.85; }
.lineup-filmstrip { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: minmax(110px, 10vw); gap: 8px; margin-block-end: clamp(70px, 9vw, 130px); }
.lineup-frame { position: relative; grid-column: span 4; grid-row: span 3; overflow: hidden; background: var(--lov-night); }
.lineup-frame--tall { grid-column: span 3; grid-row: span 5; }
.lineup-frame--wide { grid-column: span 5; grid-row: span 4; margin-block-start: clamp(36px, 5vw, 78px); }
.lineup-frame picture,
.lineup-frame img { width: 100%; height: 100%; }
.lineup-frame img { object-fit: cover; filter: saturate(0.82); transition: transform 850ms var(--ease), filter 300ms ease; }
.lineup-frame:hover img { transform: scale(1.035); filter: saturate(1); }
.lineup-frame figcaption { position: absolute; inset: auto 12px 12px; width: max-content; padding: 6px 9px; background: rgba(9,7,7,0.78); color: var(--lov-gold-bright); font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase; }
.lineup-current { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(42px, 8vw, 130px); }
.lineup-label { color: var(--lov-gold-bright); font-size: 0.61rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.name-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-block-start: 22px; border-block-start: 1px solid rgba(247,240,223,0.2); }
.name-list > a, .name-list > div { min-height: 84px; display: grid; align-content: center; gap: 6px; padding: 12px 16px 12px 0; border-block-end: 1px solid rgba(247,240,223,0.2); }
.name-list > a:nth-child(odd), .name-list > div:nth-child(odd) { border-inline-end: 1px solid rgba(247,240,223,0.2); }
.name-list > a:nth-child(even), .name-list > div:nth-child(even) { padding-inline-start: 16px; }
.name-list strong { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 2.2rem); font-weight: 500; line-height: 0.95; }
.name-list span { color: rgba(247,240,223,0.62); font-size: 0.58rem; letter-spacing: 0.1em; text-align: right; text-transform: uppercase; }
.name-list > a { transition: color 180ms ease, transform 180ms var(--ease); }
.name-list > a:hover { color: var(--lov-gold-bright); transform: translateX(4px); }
.guest-archive { display: grid; grid-template-columns: minmax(230px, 3fr) minmax(0, 9fr); gap: clamp(44px, 7vw, 110px); margin-block-start: clamp(88px, 12vw, 180px); }
.guest-archive-intro { align-self: start; position: sticky; top: 130px; }
.guest-archive-intro > p:nth-child(2) { max-width: 390px; margin: 22px 0 30px; color: rgba(247,240,223,0.68); font-size: 0.74rem; line-height: 1.8; }
.guest-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; border-block-start: 1px solid rgba(247,240,223,0.24); border-inline-start: 1px solid rgba(247,240,223,0.2); }
.guest-list li { display: grid; grid-template-columns: 28px minmax(0, 1fr); align-items: center; gap: 10px; min-height: 126px; padding: 14px; border-block-end: 1px solid rgba(247,240,223,0.2); border-inline-end: 1px solid rgba(247,240,223,0.2); }
.guest-list li > span { color: rgba(247,240,223,0.46); font-size: 0.58rem; letter-spacing: 0.14em; }
.guest-list a { display: grid; gap: 9px; transition: color 180ms ease, transform 180ms var(--ease); }
.guest-list a:hover { color: var(--lov-gold-bright); transform: translateX(5px); }
.guest-list strong { font-family: var(--font-display); font-size: clamp(1.65rem, 2.5vw, 3rem); font-weight: 400; line-height: 0.88; }
.guest-list small { color: rgba(247,240,223,0.56); font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; }
.lineup-footnote { max-width: 680px; margin-block-start: 38px; color: rgba(247,240,223,0.56); font-size: 0.66rem; line-height: 1.75; }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero-pretitle,
    .hero h1 em,
    .section-heading h2 em,
    .motion-copy h2 em,
    .artists-copy h2 em,
    .artists-head h2 em,
    .lineup-head h2 em,
    .gallery-head h2 em,
    .reviews-copy h2 em,
    .visit-content h2 em,
    .menu-hero-copy h1 em {
        background-color: var(--lov-gold);
        background-image: linear-gradient(rgba(224,199,127,0.24), rgba(224,199,127,0.24)), var(--lov-gold-texture);
        background-position: center;
        background-size: 180% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.gallery { background: var(--lov-night); }
.gallery-head { max-width: 1100px; margin-block-end: 64px; }
.gallery-head .section-number { margin-block-end: 28px; }
.gallery-head h2 em { color: var(--lov-gold-bright); font-weight: 400; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(160px, 12vw); gap: 8px; }
.gallery-item { overflow: hidden; grid-column: span 4; grid-row: span 2; }
.gallery-item--tall { grid-column: span 4; grid-row: span 4; }
.gallery-item--wide { grid-column: span 8; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }

.reviews { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); min-height: 920px; background: var(--lov-night); }
.reviews-photo { position: relative; min-height: 920px; overflow: hidden; }
.reviews-photo picture, .reviews-photo img { width: 100%; height: 100%; }
.reviews-photo img { position: absolute; inset: 0; object-fit: cover; object-position: 54% 48%; filter: saturate(0.9) contrast(1.04); }
.reviews-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,13,12,0.06) 35%, rgba(22,13,12,0.78) 100%); }
.reviews-photo figcaption { position: absolute; z-index: 1; inset: auto 26px 24px; color: rgba(247,240,223,0.76); font-size: 0.58rem; letter-spacing: 0.16em; }
.reviews-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(86px, 8vw, 150px) var(--page-pad); background-color: var(--lov-oxblood); background-image: linear-gradient(rgba(22,13,12,0.38), rgba(22,13,12,0.66)), var(--lov-red-texture); background-position: center; background-size: cover; }
.reviews-copy .eyebrow { margin: 40px 0 14px; }
.reviews-copy h2 { margin-bottom: 54px; }
.rating-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-block: 1px solid rgba(247,240,223,0.3); }
.rating-strip a { min-height: 132px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 22px; padding: 22px 18px 22px 0; border-inline-end: 1px solid rgba(247,240,223,0.3); transition: color 180ms ease, background 180ms ease; }
.rating-strip a:last-child { padding-inline-start: 22px; border-inline-end: 0; }
.rating-strip a:hover { color: var(--lov-gold-bright); }
.rating-strip strong { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 400; line-height: 0.8; }
.rating-strip span { display: grid; gap: 7px; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.rating-strip small { color: rgba(247,240,223,0.62); font-size: 0.52rem; font-weight: 400; line-height: 1.55; letter-spacing: 0.06em; text-transform: none; }
.review-stack { border-block-end: 1px solid rgba(247,240,223,0.3); }
.review-stack blockquote { padding: 28px 0; border-block-end: 1px solid rgba(247,240,223,0.22); }
.review-stack blockquote:last-child { border-block-end: 0; }
.review-stack blockquote p { max-width: 740px; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3.1rem); line-height: 1.05; }
.review-stack footer { margin-top: 12px; color: rgba(247,240,223,0.64); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }
.reviews-note { max-width: 720px; margin-top: 24px; color: rgba(247,240,223,0.58); font-size: 0.62rem; line-height: 1.75; }

.faq { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(48px, 9vw, 150px); }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro .eyebrow { margin: 28px 0 16px; }
.faq-list { border-block-start: 1px solid var(--lov-border); }
.faq details { border-block-end: 1px solid var(--lov-border); }
.faq summary { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: clamp(1.65rem, 2.5vw, 2.8rem); line-height: 1; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--lov-gold-bright); font-family: var(--font-body); font-size: 1.3rem; font-style: normal; transition: transform 200ms var(--ease); }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { max-width: 720px; padding: 0 50px 32px 0; color: var(--lov-muted); font-size: 0.82rem; line-height: 1.9; }

.visit { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; padding-block: 110px; }
.visit-photo, .visit-photo img, .visit-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.visit-photo img { object-fit: cover; object-position: 50% 45%; }
.visit-shade { background: linear-gradient(90deg, rgba(22,13,12,0.94) 0%, rgba(22,13,12,0.66) 55%, rgba(22,13,12,0.3) 100%); }
.visit-content { position: relative; z-index: 2; width: 100%; }
.visit-content h2 { margin: 18px 0 40px; }
.visit-content h2 em { color: var(--lov-gold-bright); font-weight: 400; }
.visit-details { display: grid; grid-template-columns: repeat(2, minmax(230px, 1fr)); max-width: 700px; gap: 44px; color: rgba(247,240,223,0.74); font-size: 0.82rem; }
.visit-details a { transition: color 150ms ease; }
.visit-details a:hover { color: var(--lov-gold-bright); }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block-start: 42px; }

.venue-family { padding: 100px var(--page-pad); background-color: var(--lov-oxblood); background-image: linear-gradient(rgba(9,7,7,0.32), rgba(9,7,7,0.68)), var(--lov-red-texture); background-size: cover; color: var(--lov-text); }
.family-heading { display: grid; grid-template-columns: 4fr 4fr 4fr; gap: 30px; align-items: end; margin-block-end: 50px; }
.family-heading .eyebrow { color: var(--lov-gold-bright); }
.family-heading h2 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 6rem); font-weight: 400; line-height: 0.9; }
.family-heading > p { color: var(--lov-muted); font-size: 0.74rem; line-height: 1.8; }
.family-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(224,199,127,0.28); }
.family-card { min-height: 250px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: var(--lov-cream); transition: transform 260ms var(--ease), filter 220ms ease; }
.family-card > span { margin-block-end: auto; color: rgba(247,240,223,0.86); font-size: 0.64rem; letter-spacing: 0.16em; }
.family-card strong { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 4.8rem); font-weight: 400; line-height: 0.85; }
.family-card small { margin-block-start: 14px; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; }
.family-card--active { background: var(--lov-night); }
.family-card--cdf { background-color: var(--lov-oxblood); background-image: linear-gradient(rgba(9,7,7,0.2), rgba(9,7,7,0.54)), var(--lov-red-texture); background-size: cover; }
.family-card--club { background: var(--lov-night); }
.family-card:hover { position: relative; z-index: 2; transform: translateY(-5px); filter: brightness(1.08); }

.page-portals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--lov-night); border-block-start: 1px solid var(--lov-border); }
.page-portal { position: relative; min-height: clamp(420px, 48vw, 720px); overflow: hidden; border-inline-end: 1px solid var(--lov-border); }
.page-portal:last-child { border-inline-end: 0; }
.page-portal picture,
.page-portal > img,
.page-portal picture img { width: 100%; height: 100%; }
.page-portal > img,
.page-portal picture img { position: absolute; inset: 0; object-fit: cover; filter: saturate(0.82) brightness(0.68); transition: transform 900ms var(--ease), filter 400ms ease; }
.page-portal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,7,7,0.04) 28%, rgba(9,7,7,0.95) 100%); }
.page-portal > span { position: absolute; z-index: 1; inset: auto 26px 28px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 20px; }
.page-portal small { grid-column: 1 / -1; color: rgba(247,240,223,0.76); font-size: 0.55rem; letter-spacing: 0.16em; text-transform: uppercase; }
.page-portal strong { font-family: var(--font-display); font-size: clamp(2.5rem, 4.2vw, 5.3rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.82; }
.page-portal i { color: var(--lov-gold-bright); font-size: 1.3rem; font-style: normal; }
.page-portal:hover > img,
.page-portal:hover picture img { transform: scale(1.035); filter: saturate(1) brightness(0.78); }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .page-portal strong {
        background-color: var(--lov-gold);
        background-image: linear-gradient(rgba(224,199,127,0.22), rgba(224,199,127,0.22)), var(--lov-gold-texture);
        background-position: center;
        background-size: 180% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

.site-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 70px var(--page-pad) 30px; border-block-start: 1px solid var(--lov-border); background: var(--lov-night); color: var(--lov-text); }
.footer-brand img { width: 90px; height: 90px; object-fit: contain; }
.footer-brand p { color: var(--lov-muted); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-links, .footer-social { display: grid; align-content: start; gap: 10px; }
.footer-links a, .footer-social a { width: fit-content; color: var(--lov-muted); font-size: 0.74rem; transition: color 160ms ease; }
.footer-links a:hover, .footer-social a:hover { color: var(--lov-gold-bright); }
.footer-social a { display: inline-flex; align-items: center; gap: 10px; }
.footer-social img { width: 18px; height: 18px; filter: invert(1); }
.footer-note { grid-column: 1 / -1; padding-block-start: 28px; border-block-start: 1px solid var(--lov-border); color: rgba(247,240,223,0.7); font-size: 0.62rem; }
.floating-whatsapp { position: fixed; z-index: 170; inset: auto 22px 22px auto; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 22px; border: 1px solid var(--lov-gold); border-radius: 999px; background-color: var(--lov-gold); background-image: var(--lov-gold-texture); background-position: center; background-size: cover; color: var(--lov-night); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; transition: transform 180ms var(--ease), opacity 180ms ease; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp img { width: 25px; height: 25px; filter: brightness(0); }
.menu-open .floating-whatsapp { opacity: 0; pointer-events: none; }

.error-page {
    min-height: 100svh;
    display: grid;
    place-content: center;
    gap: 24px;
    padding: var(--page-pad);
    text-align: center;
}
.error-page h1 { max-width: 900px; font-family: var(--font-display); font-size: clamp(4rem, 10vw, 10rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.8; }
.error-page > p:not(.eyebrow) { color: var(--lov-muted); }
.error-page .button { justify-self: center; margin-block-start: 12px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Menu page */
.menu-page { background: var(--lov-night); color: var(--lov-text); }
.menu-page .site-header--solid { background: rgba(22,13,12,0.94); color: var(--lov-cream); }
.menu-hero { min-height: 100svh; display: grid; grid-template-columns: 7fr 5fr; background: var(--lov-night); color: var(--lov-cream); }
.menu-hero-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 150px var(--page-pad) 80px; }
.menu-hero-copy h1 { margin: 20px 0 36px; }
.menu-hero-copy h1 em { color: var(--lov-gold-bright); font-weight: 400; }
.menu-hero-copy > p:last-child { max-width: 620px; color: var(--lov-muted); font-size: 0.85rem; line-height: 1.9; }
.menu-hero-photo { min-height: 100svh; overflow: hidden; }
.menu-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-catalog { display: grid; grid-template-columns: 3fr 8fr; gap: clamp(46px, 8vw, 130px); background: var(--lov-night); }
.menu-notice { position: sticky; top: 120px; align-self: start; padding: 28px; border: 1px solid var(--lov-border); }
.menu-notice strong { font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.menu-notice p { margin: 16px 0 24px; color: var(--lov-muted); font-size: 0.72rem; line-height: 1.8; }
.menu-notice a { color: var(--lov-gold-bright); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.menu-sections { border-block-start: 1px solid var(--lov-border); }
.menu-section { padding: 52px 0; border-block-end: 1px solid var(--lov-border); }
.menu-section-title { display: flex; align-items: baseline; gap: 20px; margin-block-end: 28px; }
.menu-section-title span { color: var(--lov-gold-bright); font-size: 0.64rem; letter-spacing: 0.15em; }
.menu-section-title h2 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 5.8rem); font-weight: 400; line-height: 0.85; }
.menu-section li { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 10px 24px; padding: 18px 0; border-block-end: 1px dotted rgba(240,227,197,0.22); }
.menu-section li:last-child { border-block-end: 0; }
.menu-section li strong { font-family: var(--font-display); font-size: clamp(1.45rem, 2.3vw, 2.3rem); font-weight: 500; line-height: 1.15; }
.menu-section li small { grid-column: 1; color: var(--lov-muted); font-size: 0.7rem; }
.menu-section li b { grid-column: 2; grid-row: 1; color: var(--lov-gold-bright); font-size: 0.68rem; letter-spacing: 0.1em; }
.menu-cta { position: relative; min-height: 680px; display: grid; place-items: center; padding: 80px var(--page-pad); overflow: hidden; color: var(--lov-cream); }
.menu-cta picture, .menu-cta picture::after, .menu-cta img { position: absolute; inset: 0; width: 100%; height: 100%; }
.menu-cta picture::after { content: ""; background: rgba(22,13,12,0.72); }
.menu-cta img { object-fit: cover; }
.menu-cta > div { position: relative; z-index: 2; max-width: 880px; text-align: center; }
.menu-cta h2 { margin: 20px 0; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 9rem); font-weight: 400; line-height: 0.82; }
.menu-cta p { max-width: 580px; margin: 0 auto 30px; color: var(--lov-muted); font-size: 0.8rem; }

@media (max-width: 1100px) {
    .desktop-nav { display: none; }
    .site-header { grid-template-columns: auto 1fr; }
    .header-actions { grid-column: 2; }
    .menu-toggle { display: grid; }
    .header-book { display: none; }
    .story-grid, .motion, .menu-preview, .faq { grid-template-columns: 1fr; }
    .story-copy { max-width: 820px; }
    .story-figure { width: min(100%, 840px); margin-inline-start: auto; }
    .menu-intro, .faq-intro { position: static; max-width: 750px; }
    .chapter-grid { grid-template-rows: 600px 540px; }
    .motion-media { width: min(75vw, 620px); }
    .artists-head { grid-template-columns: minmax(170px, 1fr) minmax(0, 2fr); }
    .artists-head > p { grid-column: 2; }
    .family-heading { grid-template-columns: 1fr 1fr; }
    .family-heading > p { grid-column: 2; }
    .lineup-head { grid-template-columns: minmax(170px, 1fr) minmax(0, 2fr); }
    .lineup-head > p { grid-column: 2; }
    .menu-catalog { grid-template-columns: 1fr; }
    .menu-notice { position: static; max-width: 600px; }
}

@media (max-width: 760px) {
    :root { --page-pad: 20px; --section-space: 82px; }
    body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
    .site-header, .site-header.is-scrolled, .site-header--solid, .menu-page .site-header--solid { min-height: 72px; padding: 6px 16px; border-color: transparent; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .brand { width: 58px; height: 58px; }
    .brand img { width: 54px; height: 54px; }
    .language-switcher { display: none; }
    .hero-photo video { object-position: 50% 48%; }
    .hero-shade { background: linear-gradient(180deg, rgba(22,13,12,0.56) 0%, rgba(22,13,12,0.16) 38%, rgba(22,13,12,0.94) 100%); }
    .hero-grid { grid-template-columns: repeat(4, 1fr); padding-block-end: calc(96px + env(safe-area-inset-bottom)); }
    .hero-meta { grid-column: 1 / 5; padding-block-start: 2vh; }
    .hero-note { display: none; }
    .hero-copy { grid-column: 1 / 5; }
    .hero h1 { font-size: clamp(4.6rem, 22vw, 7.2rem); line-height: 0.73; }
    .hero-cta-row { align-items: flex-start; flex-direction: column; gap: 14px; margin-block-start: 34px; }
    .hero-cta-row .button { display: none; }
    .hero-scroll { display: none; }
    .story > .section-number { margin-block-end: 30px; }
    .story-body { grid-template-columns: 1fr; margin-block-start: 30px; }
    .story-figure::before { inset: -10px 10px 10px -10px; }
    .story-figure figcaption { flex-direction: column; gap: 4px; }
    .story-copy h2, .section-heading h2, .motion-copy h2, .gallery-head h2, .reviews-copy h2, .faq h2, .visit h2, .menu-hero h1 { font-size: clamp(3.5rem, 16vw, 5.8rem); }
    .chapter-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 76svh); max-height: none; }
    .chapter, .chapter--wide { grid-column: 1; min-height: 0; }
    .chapter-overlay p { max-width: 310px; }
    .menu-row { padding: 24px 0; }
    .menu-row h3 { font-size: 1.8rem; }
    .motion { gap: 48px; }
    .motion-media { width: 100%; aspect-ratio: 9/13; }
    .artists-head { grid-template-columns: 1fr; gap: 24px; }
    .artists-head > p { grid-column: auto; }
    .artists-head h2 { font-size: clamp(3.5rem, 16vw, 5.8rem); }
    .artist-duo { grid-template-columns: 1fr; }
    .artist-card--motion { margin-block-start: 0; }
    .artist-card-caption h3 { font-size: clamp(4rem, 18vw, 6.4rem); }
    .lineup-filmstrip { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; margin-inline: -20px; }
    .lineup-frame, .lineup-frame--tall, .lineup-frame--wide { grid-column: span 1; grid-row: span 1; margin-block-start: 0; }
    .lineup-frame--tall { grid-row: span 2; }
    .lineup-head { grid-template-columns: 1fr; gap: 24px; }
    .lineup-head > p { grid-column: auto; }
    .lineup-head h2 { font-size: clamp(4rem, 17vw, 6.3rem); }
    .lineup-current { grid-template-columns: 1fr; gap: 62px; }
    .guest-archive { grid-template-columns: 1fr; }
    .guest-archive-intro { position: static; }
    .guest-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .guest-list strong { font-size: clamp(1.7rem, 7vw, 2.8rem); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .gallery-item, .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
    .gallery-item--tall { grid-row: span 2; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item--wide img { object-position: 54% center; }
    .reviews { grid-template-columns: 1fr; min-height: 0; }
    .reviews-photo { min-height: 68svh; }
    .reviews-photo img { object-position: 58% center; }
    .reviews-copy { padding: 82px 20px; }
    .reviews-copy .eyebrow { margin-top: 32px; }
    .reviews-copy h2 { margin-bottom: 38px; }
    .rating-strip a { min-height: 118px; grid-template-columns: 1fr; gap: 12px; padding: 20px 16px 20px 0; }
    .rating-strip a:last-child { padding-inline-start: 16px; }
    .rating-strip strong { font-size: 3.8rem; }
    .review-stack blockquote p { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .faq summary { min-height: 82px; font-size: 1.55rem; }
    .faq details p { padding-inline-end: 10px; }
    .visit { min-height: 760px; }
    .visit-shade { background: rgba(22,13,12,0.75); }
    .visit-details { grid-template-columns: 1fr; gap: 22px; }
    .visit-actions { flex-direction: column; align-items: stretch; }
    .family-heading { grid-template-columns: 1fr; }
    .family-heading > p { grid-column: 1; }
    .family-grid { grid-template-columns: 1fr; }
    .family-card { min-height: 210px; }
    .page-portals { grid-template-columns: 1fr; }
    .page-portal { min-height: 64svh; border-inline-end: 0; border-block-end: 1px solid var(--lov-border); }
    .page-portal:last-child { border-block-end: 0; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .floating-whatsapp { inset: auto 16px calc(12px + env(safe-area-inset-bottom)); 16px; min-height: 56px; padding-inline: 18px; }
    .menu-hero { grid-template-columns: 1fr; min-height: auto; padding-block-start: 70px; }
    .menu-hero-copy { min-height: 68svh; padding: 92px 20px 56px; }
    .menu-hero-photo { min-height: 68svh; }
    .menu-section { padding: 40px 0; }
    .menu-section li { grid-template-columns: 1fr; }
    .menu-section li b { grid-column: 1; grid-row: auto; }
    .menu-cta { min-height: 620px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
    :root { --lov-muted: rgba(247,240,223,0.86); --lov-border: rgba(240,227,197,0.48); }
}
