/* ==========================================================================
   KISH PERSIAN RESTAURANT — main stylesheet
   Black & gold, drawn from the restaurant's own brand (rose-gold wordmark,
   Persian miniature florals). Conventional best-practice restaurant layout:
   utility bar, sticky split navigation with a centred wordmark, full-bleed
   parallax hero with an inline reservation bar, then a narrative homepage.
   No framework, no build step.
   --------------------------------------------------------------------------
   01 Tokens          06 Hero & page headers    11 Gallery & lightbox
   02 Base & reset    07 Sections & cards       12 Contact, auth, legal, FAQ
   03 Typography      08 Menus & basket         13 Footer & mobile dock
   04 Controls        09 Branches & map         14 Utilities & motion
   05 Header & nav    10 Booking, offers, events
   ========================================================================== */

/* 01  Tokens ============================================================= */
:root {
    --night:      #0a0908;
    --panel:      #121110;
    --panel-2:    #1a1816;
    --panel-3:    #232019;

    --gold:       #c8a45d;
    --gold-hi:    #ebd3a0;
    --gold-deep:  #8f7233;
    --rose:       #d7a98c;
    --brass:      linear-gradient(120deg, #8f7233 0%, #ebd3a0 46%, #c8a45d 100%);

    --cream:      #f2eee7;
    --body:       #b3aca1;
    --muted:      #837b70;
    --faint:      #56504a;

    --line:       rgba(200, 164, 93, .22);
    --line-2:     rgba(242, 238, 231, .09);

    /* Prata (display serif) + Jost (letterspaced micro-labels) + Manrope (text).
       Deliberately not the Fraunces/Urbanist/Cormorant stack used elsewhere. */
    --serif:      "Prata", "Playfair Display", Georgia, serif;
    --sc:         "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
    --sans:       "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

    --shell:      1300px;
    --gut:        clamp(20px, 4vw, 56px);
    --sec-y:      clamp(66px, 8.5vw, 132px);
    --util-h:     40px;
    --hdr-h:      92px;
    --hdr-h-sm:   68px;

    --ease:       cubic-bezier(.22, .61, .36, 1);
    --ease-out:   cubic-bezier(.16, 1, .3, 1);

    --lift:       0 26px 60px -34px rgba(0, 0, 0, .95);
    --glow:       0 18px 46px -24px rgba(200, 164, 93, .5);
}

@media (max-width: 900px) { :root { --util-h: 0px; --hdr-h: 68px; } }

/* 02  Base & reset ====================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--hdr-h) + 24px);
}

body {
    margin: 0;
    background: var(--night);
    color: var(--body);
    font-family: var(--sans);
    font-size: 16.5px;
    font-weight: 400;
    letter-spacing: -.004em;
    line-height: 1.75;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.is-locked { overflow: hidden; }

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold-hi); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }
hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
::selection { background: var(--gold); color: #0a0908; }
:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }

* { scrollbar-width: thin; scrollbar-color: #3b3225 var(--night); }
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-track { background: var(--night); }
*::-webkit-scrollbar-thumb { background: #3b3225; border-radius: 10px; }
*::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* 03  Typography ======================================================== */
h1, h2, h3, h4, h5 {
    font-family: var(--serif);
    color: var(--cream);
    font-weight: 400;
    line-height: 1.14;
    margin: 0 0 .5em;
    letter-spacing: .002em;
}
h1 { font-size: clamp(2.35rem, 5.1vw, 4.15rem); line-height: 1.08; letter-spacing: -.012em; }
h2 { font-size: clamp(1.82rem, 3.4vw, 2.85rem); letter-spacing: -.008em; }
h3 { font-size: clamp(1.28rem, 2.05vw, 1.72rem); letter-spacing: -.004em; }
h4 { font-size: clamp(1.06rem, 1.4vw, 1.2rem); }
h5 { font-size: 1rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; }

/* Small-caps letterspaced label — used above every heading */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sc);
    font-size: .78rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after {
    content: "";
    width: 30px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }
.eyebrow--solo::before, .eyebrow--solo::after { display: none; }

/* Twin gold rules with a diamond — the site's signature divider */
.flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--gold);
}
.flourish::before, .flourish::after {
    content: "";
    height: 1px; flex: 1;
    max-width: 190px;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.flourish i { width: 6px; height: 6px; transform: rotate(45deg); border: 1px solid var(--gold); display: block; }

.sec-head { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 4.6vw, 68px); }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p { color: var(--muted); font-size: 1.03rem; }
.sec-head--left { text-align: left; margin-inline: 0; }

.lead { font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 1.72; color: var(--cream); font-weight: 300; }
.dim { color: var(--muted); }
.gold { color: var(--gold); }
.serif { font-family: var(--serif); }

.price {
    font-family: var(--serif);
    font-size: 1.24rem;
    color: var(--gold-hi);
    white-space: nowrap;
}

/* 04  Controls ========================================================== */
.btn {
    --bd: rgba(200, 164, 93, .5);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 16px 34px;
    border: 1px solid var(--bd);
    border-radius: 2px;
    background: transparent;
    color: var(--cream);
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    white-space: nowrap;
    transition: color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.btn::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: var(--brass);
    transform: translateY(101%);
    transition: transform .5s var(--ease-out);
}
.btn:hover, .btn:focus-visible { color: #0a0908; border-color: transparent; transform: translateY(-2px); box-shadow: var(--glow); }
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:active { transform: translateY(0); }

.btn--gold { border-color: transparent; color: #0a0908; background: var(--brass); }
.btn--gold::before { background: var(--cream); }
.btn--ghost { --bd: rgba(242, 238, 231, .22); }
.btn--sm { padding: 11px 22px; font-size: .68rem; letter-spacing: .16em; }
.btn--lg { padding: 19px 44px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .35; pointer-events: none; }

.tlink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sc);
    font-size: .76rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}
.tlink svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.tlink:hover svg { transform: translateX(6px); }

/* Fields */
.field { margin-bottom: 22px; }
.field > label {
    display: block;
    font-family: var(--sc);
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 9px;
}
.field .req { color: var(--gold); }

.input, .select, .textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(242, 238, 231, .035);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    color: var(--cream);
    font-family: var(--sans);
    font-size: .96rem;
    font-weight: 300;
    appearance: none;
    transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.textarea { min-height: 124px; resize: vertical; line-height: 1.7; }
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: rgba(200, 164, 93, .6);
    background: rgba(200, 164, 93, .06);
    box-shadow: 0 0 0 3px rgba(200, 164, 93, .1);
}
.select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a45d' stroke-width='1.7' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 15px;
    padding-right: 40px;
    cursor: pointer;
}
.select option { background: var(--panel-2); color: var(--cream); }
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(70%) sepia(38%) saturate(500%) hue-rotate(3deg); cursor: pointer; }

.fgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(16px, 2.4vw, 28px); }
.fgrid .f-full { grid-column: 1 / -1; }
@media (max-width: 620px) { .fgrid { grid-template-columns: 1fr; } }

.check { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--muted); cursor: pointer; line-height: 1.6; }
.check input {
    appearance: none;
    width: 17px; height: 17px; flex: 0 0 17px;
    margin-top: 4px;
    border: 1px solid rgba(200, 164, 93, .5);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    transition: background .25s, border-color .25s;
}
.check input:checked { background: var(--gold); border-color: var(--gold); }
.check input:checked::after {
    content: "";
    display: block;
    width: 4px; height: 9px;
    margin: 1px auto 0;
    border: solid #0a0908;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.fnote { font-size: .82rem; color: var(--faint); margin-top: 14px; }
.fstatus {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    border: 1px solid rgba(200, 164, 93, .4);
    border-left-width: 3px;
    background: rgba(200, 164, 93, .07);
    color: var(--gold-hi);
    font-size: .9rem;
}
.fstatus.is-on { display: block; }

/* Layout primitives */
.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gut); }
.shell--tight { max-width: 900px; }
.shell--wide { max-width: 1560px; }

.sec { padding-block: var(--sec-y); position: relative; }
.sec--half { padding-block: clamp(44px, 5.4vw, 78px); }
.sec--panel { background: var(--panel); }
.sec--edge { border-top: 1px solid var(--line-2); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 34px); }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1080px) { .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 940px)  { .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 82px);
    align-items: center;
}
.split--wide-l { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
.split--wide-r { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
@media (max-width: 940px) { .split, .split--wide-l, .split--wide-r { grid-template-columns: 1fr; } }

.split--flip > *:first-child { order: 2; }
@media (max-width: 940px) { .split--flip > *:first-child { order: 0; } }

.pinned { position: sticky; top: calc(var(--hdr-h) + 30px); }
@media (max-width: 940px) { .pinned { position: static; } }

/* Heading column beside a scrolling column */
.pin { display: grid; grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); gap: clamp(28px, 4.6vw, 76px); align-items: start; }
.pin__side { position: sticky; top: calc(var(--hdr-h) + 30px); }
@media (max-width: 940px) { .pin { grid-template-columns: 1fr; } .pin__side { position: static; } }

/* Numbered row list (values, timelines) */
.irow {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) minmax(0, 1.15fr);
    gap: clamp(14px, 2.6vw, 40px);
    align-items: baseline;
    padding: clamp(22px, 2.8vw, 34px) 0;
    border-top: 1px solid var(--line-2);
    transition: background .45s var(--ease), padding-left .45s var(--ease);
}
.irow:last-child { border-bottom: 1px solid var(--line-2); }
.irow:hover { background: rgba(200, 164, 93, .04); padding-left: 12px; }
.irow__n { font-family: var(--serif); font-size: 1.15rem; color: var(--gold); }
.irow h3 { margin: 0; }
.irow p { color: var(--muted); margin: 0; font-size: .94rem; }
@media (max-width: 860px) {
    .irow { grid-template-columns: 52px minmax(0, 1fr); }
    .irow p { grid-column: 2; margin-top: 9px; }
}

/* Bordered info grid (contact details, bespoke options) */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-2); }
.tiles li { padding: clamp(24px, 3vw, 40px) clamp(14px, 2vw, 28px); border-left: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); }
.tiles li:first-child { border-left: 0; padding-left: 0; }
.tiles svg { width: 18px; height: 18px; color: var(--gold); margin-bottom: 18px; }
.tiles h4 { margin: 0 0 8px; font-family: var(--sc); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.tiles p, .tiles a { color: var(--cream); font-family: var(--serif); font-size: 1.12rem; margin: 0; line-height: 1.45; }
.tiles a:hover { color: var(--gold-hi); }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } .tiles li:nth-child(3) { border-left: 0; padding-left: 0; } }
@media (max-width: 520px) { .tiles { grid-template-columns: 1fr; } .tiles li { border-left: 0; padding-left: 0; } }

/* Parallax: layers are 150% tall with a 25% bleed, so data-plx up to 14 is safe */
.plx { position: relative; overflow: hidden; }
.plx__layer { position: absolute; top: -25%; left: 0; width: 100%; height: 150%; will-change: transform; }
.plx__layer img { width: 100%; height: 100%; object-fit: cover; }
.plx__veil { position: absolute; inset: 0; }
.veil-deep { background: linear-gradient(180deg, rgba(10,9,8,.9), rgba(10,9,8,.66) 45%, rgba(10,9,8,.94)); }
.veil-soft { background: linear-gradient(180deg, rgba(10,9,8,.62), rgba(10,9,8,.84)); }
.veil-side { background: linear-gradient(90deg, rgba(10,9,8,.95) 10%, rgba(10,9,8,.5) 60%, rgba(10,9,8,.85)); }

.band { position: relative; overflow: hidden; }
.band__in { position: relative; z-index: 2; padding-block: clamp(80px, 12vw, 180px); }

/* 05  Header & navigation =============================================== */
.util {
    background: #060606;
    border-bottom: 1px solid rgba(242, 238, 231, .05);
    font-size: .78rem;
    color: var(--muted);
    position: relative;
    z-index: 60;
}
.util__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: var(--util-h); }
.util ul { display: flex; align-items: center; gap: 24px; }
.util li { display: inline-flex; align-items: center; gap: 8px; }
.util svg { width: 13px; height: 13px; color: var(--gold); flex: 0 0 auto; }
.util a { color: var(--muted); }
.util a:hover { color: var(--gold-hi); }
.util__soc { display: flex; gap: 12px; padding-left: 6px; border-left: 1px solid rgba(242,238,231,.1); margin-left: 4px; }
.util__soc a { display: grid; place-items: center; }
.util__soc svg { width: 14px; height: 14px; color: var(--muted); }
.util__soc a:hover svg { color: var(--gold); }
@media (max-width: 900px) { .util { display: none; } }
/* Tighten the utility bar before dropping it, so it survives small laptops. */
@media (max-width: 1180px) {
    .util { font-size: .84rem; }
    .util ul { gap: 16px; }
    .util__in { gap: 14px; }
}

.hdr {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 9, 8, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.hdr.is-stuck { background: rgba(7, 6, 6, .97); border-bottom-color: var(--line); box-shadow: 0 14px 40px -30px #000; }

.hdr__in {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(14px, 2vw, 34px);
    min-height: var(--hdr-h);
    transition: min-height .4s var(--ease);
}
.hdr.is-stuck .hdr__in { min-height: 72px; }

.hdr__side { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hdr__side--l { justify-content: flex-start; }
.hdr__side--r { justify-content: flex-end; }

.hdr__brand { justify-self: center; display: block; flex: 0 0 auto; }
.hdr__brand img { height: 62px; width: auto; transition: height .4s var(--ease); }
.hdr.is-stuck .hdr__brand img { height: 48px; }

.nav { display: flex; align-items: center; gap: clamp(4px, .8vw, 12px); }
/* Burger — mobile only. Specificity has to beat the .burger base rule below,
   which sets display:flex and comes later in the sheet. */
.hdr .hdr__mob { display: none; }
.hdr__bag { flex: 0 0 auto; margin-left: 8px; }
@media (max-width: 1000px) { .hdr__bag { width: 40px; height: 40px; margin-left: 4px; } }
.nav__i { position: relative; }
.nav__a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 10px;
    color: var(--body);
    font-family: var(--sc);
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
}
.nav__a::after {
    content: "";
    position: absolute;
    left: 10px; right: 10px; bottom: 5px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease);
}
.nav__a:hover, .nav__i.on > .nav__a { color: var(--gold-hi); }
.nav__a:hover::after, .nav__i.on > .nav__a::after { transform: scaleX(1); transform-origin: left; }
.nav__c { width: 11px; height: 11px; opacity: .75; transition: transform .35s var(--ease); }
.nav__i:hover .nav__c { transform: rotate(180deg); }

.nav__sub {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 218px;
    background: #0d0c0b;
    border: 1px solid var(--line);
    padding: 8px;
    box-shadow: var(--lift);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
}
.nav__i:hover > .nav__sub, .nav__i:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__sub a {
    display: block;
    padding: 11px 14px;
    color: var(--body);
    font-size: .86rem;
    letter-spacing: .04em;
    transition: background .25s, color .25s, padding-left .25s;
}
.nav__sub a:hover { background: rgba(200, 164, 93, .1); color: var(--gold-hi); padding-left: 20px; }

.nav .btn { margin-left: 10px; }

.iconbtn {
    position: relative;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    transition: border-color .3s, color .3s, background .3s;
}
.iconbtn:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(200, 164, 93, .08); }
.iconbtn svg { width: 18px; height: 18px; }
.iconbtn__n {
    position: absolute;
    top: -7px; right: -7px;
    min-width: 20px; height: 20px;
    padding: 0 5px;
    display: none; place-items: center;
    background: var(--gold);
    color: #0a0908;
    font-size: .66rem;
    font-weight: 600;
    border-radius: 20px;
    line-height: 1;
}
.iconbtn__n.is-on { display: grid; }

.burger {
    width: 44px; height: 44px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
}
.burger span { display: block; width: 19px; height: 1.5px; background: var(--cream); transition: transform .4s var(--ease), opacity .25s; }
.burger.on span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* The header nav is a desktop/tablet component: it compresses rather than
   collapsing, so the burger + drawer only ever appear on real mobile widths. */
@media (max-width: 1180px) {
    .hdr__in { gap: clamp(8px, 1.2vw, 18px); }
    .nav { gap: 2px; }
    .nav__a { padding: 12px 7px; font-size: .76rem; letter-spacing: .1em; }
    .nav__a::after { left: 7px; right: 7px; }
    .hdr__brand img { height: 54px; }
}
@media (max-width: 1000px) {
    .nav__a { padding: 12px 5px; font-size: .71rem; letter-spacing: .06em; }
    .nav__a::after { left: 5px; right: 5px; }
    .nav__c { width: 9px; height: 9px; }
    .hdr__brand img { height: 46px; }
    .hdr.is-stuck .hdr__brand img { height: 42px; }
}

@media (max-width: 900px) {
    .nav { display: none; }
    .hdr .hdr__mob { display: flex; }
    .hdr__brand img { height: 46px; }
    .hdr.is-stuck .hdr__brand img { height: 42px; }
}

/* Mobile drawer — never rendered above the mobile breakpoint */
@media (min-width: 901px) { .drawer { display: none; } }

.scrim {
    position: fixed; inset: 0; z-index: 400;
    background: rgba(4, 4, 4, .78);
    backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity .45s var(--ease), visibility .45s;
}
.scrim.is-on { opacity: 1; visibility: visible; }

.drawer {
    position: fixed; top: 0; right: 0;
    height: 100dvh;
    width: min(420px, 90vw);
    background: #0b0a09;
    border-left: 1px solid var(--line);
    z-index: 500;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out);
    display: flex; flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}
.drawer.is-on { transform: translateX(0); }
.drawer__hd {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line-2);
    position: sticky; top: 0; background: #0b0a09; z-index: 2;
}
.drawer__hd img { height: 44px; }
.drawer__bd { padding: 12px 24px 34px; }

.mnav__i { border-bottom: 1px solid rgba(242, 238, 231, .06); }
.mnav__a {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    width: 100%;
    padding: 16px 2px;
    background: none; border: 0;
    color: var(--cream);
    font-family: var(--sc);
    font-size: .95rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: left;
    cursor: pointer;
}
.mnav__a svg { width: 14px; height: 14px; color: var(--gold); transition: transform .3s var(--ease); }
.mnav__i.on > .mnav__a svg { transform: rotate(180deg); }
.mnav__i.cur > .mnav__a { color: var(--gold-hi); }
.mnav__sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.mnav__i.on .mnav__sub { max-height: 280px; }
.mnav__sub a {
    display: block;
    padding: 12px 0 12px 18px;
    color: var(--muted);
    font-size: .88rem;
    border-left: 1px solid var(--line);
}
.mnav__sub a:hover { color: var(--gold-hi); border-left-color: var(--gold); }

.drawer__cta { display: grid; gap: 10px; margin-top: 26px; }
.drawer__meta { margin-top: 30px; display: grid; gap: 13px; font-size: .89rem; color: var(--muted); }
.drawer__meta li { display: flex; gap: 12px; align-items: flex-start; }
.drawer__meta svg { width: 15px; height: 15px; color: var(--gold); margin-top: 4px; flex: 0 0 auto; }
.drawer__soc { display: flex; gap: 10px; margin-top: 24px; }
.drawer__soc a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 2px; }
.drawer__soc a:hover { border-color: var(--gold); background: rgba(200, 164, 93, .08); }
.drawer__soc svg { width: 15px; height: 15px; }

/* 06  Hero & page headers ============================================== */
.hero {
    position: relative;
    min-height: clamp(600px, 94svh, 940px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: #000;
}
.hero__layer { position: absolute; top: -25%; left: 0; width: 100%; height: 150%; will-change: transform; }
.hero__layer img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(10,9,8,.78) 0%, rgba(10,9,8,.3) 32%, rgba(10,9,8,.8) 76%, var(--night) 100%),
        radial-gradient(ellipse at 50% 45%, transparent 26%, rgba(0,0,0,.62) 100%);
}
/* Persian floral corner ornament, taken from the restaurant's own artwork */
.hero__orn {
    position: absolute;
    right: -2%; top: 8%;
    width: min(30vw, 380px);
    z-index: 2;
    opacity: .5;
    mix-blend-mode: screen;
    pointer-events: none;
}
@media (max-width: 900px) { .hero__orn { display: none; } }

.hero__in { position: relative; z-index: 3; text-align: center; padding-block: clamp(120px, 17vh, 190px) clamp(30px, 5vh, 54px); }
.hero__t { margin: 0 0 22px; text-shadow: 0 10px 44px rgba(0, 0, 0, .8); }
.hero__t em { font-style: normal; color: var(--gold-hi); }
.hero__p { color: rgba(242, 238, 231, .84); max-width: 56ch; margin-inline: auto; font-size: clamp(1rem, 1.4vw, 1.14rem); }
.hero__b { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }

/* Inline reservation bar — a standard conversion pattern on restaurant sites */
.resbar {
    position: relative;
    z-index: 4;
    background: rgba(10, 9, 8, .9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.resbar__in {
    display: grid;
    grid-template-columns: auto repeat(4, minmax(0, 1fr)) auto;
    align-items: center;
    gap: clamp(12px, 1.6vw, 24px);
    padding-block: 18px;
}
.resbar__lb { font-family: var(--sc); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.resbar .field { margin: 0; }
.resbar .field > label { font-size: .66rem; margin-bottom: 5px; letter-spacing: .16em; }
.resbar .input, .resbar .select { padding: 10px 12px; font-size: .9rem; background: rgba(242,238,231,.05); }
.resbar .select { padding-right: 34px; background-position: right 10px center; }
@media (max-width: 1100px) {
    .resbar__in { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .resbar__lb { grid-column: 1 / -1; }
    .resbar .btn { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .resbar__in { grid-template-columns: 1fr; } }

.hero__cue {
    position: absolute;
    left: 50%; bottom: 118px;
    transform: translateX(-50%);
    z-index: 3;
    font-family: var(--sc);
    font-size: .68rem;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--muted);
    display: grid; justify-items: center; gap: 10px;
}
.hero__cue::after {
    content: "";
    width: 1px; height: 42px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity: .25; transform: scaleY(.4); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } }
@media (max-width: 1100px) { .hero__cue { display: none; } }

/* Inner page header */
.phead { position: relative; overflow: hidden; background: var(--panel); border-bottom: 1px solid var(--line-2); }
.phead__layer { position: absolute; top: -25%; left: 0; width: 100%; height: 150%; will-change: transform; }
.phead__layer img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.phead::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.72), rgba(10,9,8,.9)); }
.phead__in { position: relative; z-index: 2; text-align: center; padding-block: clamp(74px, 10vw, 142px) clamp(50px, 6vw, 84px); }
.phead h1 { margin-bottom: 14px; }
.phead p { color: var(--body); max-width: 60ch; margin-inline: auto; }

.crumbs { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; margin-top: 24px; font-family: var(--sc); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); }
.crumbs li + li::before { content: "/"; margin-right: 11px; color: var(--gold-deep); }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }

/* 07  Sections & cards ================================================= */
/* Three action cards under the hero */
.acard {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--line-2);
    border-radius: 2px;
    aspect-ratio: 5 / 4;
    transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.acard:hover { border-color: rgba(200, 164, 93, .5); transform: translateY(-6px); box-shadow: var(--lift); }
.acard img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.acard:hover img { transform: scale(1.07); }
.acard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.15) 20%, rgba(10,9,8,.92)); }
.acard__b { position: absolute; inset: auto 0 0 0; z-index: 2; padding: clamp(20px, 2.4vw, 32px); text-align: center; }
.acard__b h3 { margin: 0 0 6px; }
.acard__b span { font-family: var(--sc); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.acard__b .tlink { margin-top: 14px; opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.acard:hover .tlink { opacity: 1; transform: translateY(0); }

/* Framed figure */
.figure { position: relative; }
.figure__i { position: relative; overflow: hidden; border-radius: 2px; }
.figure__i img { width: 100%; transition: transform 1.5s var(--ease); }
.figure:hover .figure__i img { transform: scale(1.04); }
.figure::after {
    content: "";
    position: absolute;
    inset: clamp(12px, 2vw, 26px) calc(clamp(12px, 2vw, 26px) * -1) calc(clamp(12px, 2vw, 26px) * -1) clamp(12px, 2vw, 26px);
    border: 1px solid var(--line);
    pointer-events: none;
}
.figure__cap {
    position: absolute; left: 0; bottom: 0; z-index: 3;
    background: var(--night);
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
    padding: 13px 22px;
    font-family: var(--sc);
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}
@media (max-width: 700px) { .figure::after { display: none; } }

/* Dish card — the studio photography is shot on black, so no heavy frame */
.dish {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.dish:hover { border-color: rgba(200, 164, 93, .45); transform: translateY(-5px); box-shadow: var(--lift); }
.dish__i { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.dish__i img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.dish:hover .dish__i img { transform: scale(1.06); }
.dish__b { padding: clamp(20px, 2.2vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dish__k { font-family: var(--sc); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.dish__b h3 { margin: 0; font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
.dish__b p { color: var(--muted); font-size: .92rem; margin: 0; }
.dish__f { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 13px;
    border: 1px solid var(--line);
    border-radius: 40px;
    font-family: var(--sc);
    font-size: .68rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(200, 164, 93, .07);
}
.pill--gold { background: var(--brass); color: #0a0908; border-color: transparent; }
.pill--live { color: #86d3a3; border-color: rgba(90, 190, 130, .38); background: rgba(90, 190, 130, .08); }
.pill--off { color: var(--muted); border-color: var(--line-2); background: transparent; }
.pill--f { position: absolute; top: 14px; left: 14px; z-index: 3; backdrop-filter: blur(6px); }
.pill--fr { position: absolute; top: 14px; right: 14px; z-index: 3; backdrop-filter: blur(6px); }

.tagline { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--muted); }
.tagline svg { width: 13px; height: 13px; color: var(--gold); }

.meta { display: grid; gap: 11px; }
.meta li { display: flex; gap: 13px; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.meta svg { width: 15px; height: 15px; color: var(--gold); margin-top: 5px; flex: 0 0 auto; }
.meta strong { color: var(--cream); font-weight: 600; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats li { text-align: center; padding: clamp(24px, 3vw, 40px) clamp(12px, 2vw, 26px); border-left: 1px solid var(--line-2); }
.stats li:first-child { border-left: 0; }
.stats b { display: block; font-family: var(--serif); font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1; color: var(--gold-hi); margin-bottom: 14px; font-weight: 400; }
.stats b i { font-style: normal; }
.stats strong { display: block; font-family: var(--sc); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); margin-bottom: 8px; }
.stats p { font-size: .85rem; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } .stats li:nth-child(3) { border-left: 0; } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } .stats li { border-left: 0; border-top: 1px solid var(--line-2); } }

/* Testimonial */
.quote { background: var(--panel); border: 1px solid var(--line-2); border-radius: 2px; padding: clamp(26px, 3vw, 38px); height: 100%; display: flex; flex-direction: column; }
.quote__s { display: flex; gap: 4px; color: var(--gold); margin-bottom: 18px; }
.quote__s svg { width: 14px; height: 14px; }
.quote p { font-family: var(--serif); font-size: clamp(1.08rem, 1.5vw, 1.28rem); line-height: 1.6; color: var(--cream); }
.quote__by { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line-2); font-family: var(--sc); font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.quote__by small { display: block; letter-spacing: .04em; text-transform: none; color: var(--faint); font-size: .82rem; margin-top: 5px; font-family: var(--sans); }

/* Ticker */
.ticker { overflow: hidden; border-block: 1px solid var(--line-2); background: var(--panel); }
.ticker__t { display: flex; width: max-content; animation: run 40s linear infinite; }
.ticker:hover .ticker__t { animation-play-state: paused; }
.ticker__x { display: inline-flex; align-items: center; gap: 26px; padding: 17px 26px; font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.4rem); color: var(--muted); white-space: nowrap; }
.ticker__x i { font-style: normal; color: var(--gold); font-size: .5em; transform: rotate(45deg); display: inline-block; width: 6px; height: 6px; border: 1px solid currentColor; }
@keyframes run { to { transform: translateX(-50%); } }

/* Newsletter */
.news { border: 1px solid var(--line); background: var(--panel); padding: clamp(30px, 4vw, 56px); text-align: center; }
.news form { display: flex; gap: 12px; max-width: 520px; margin: 26px auto 0; }
.news .input { text-align: center; }
@media (max-width: 560px) { .news form { flex-direction: column; } }

/* 08  Menus & basket ================================================== */
.pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.pick__c {
    display: block;
    padding: clamp(28px, 3.4vw, 44px);
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.pick__c:hover { border-color: rgba(200, 164, 93, .5); transform: translateY(-5px); }
.pick__c h3 { margin: 14px 0 10px; }
.pick__c p { color: var(--muted); font-size: .92rem; }

/* Sticky category tabs */
.mbar {
    position: sticky;
    top: var(--hdr-h);
    z-index: 60;
    background: rgba(10, 9, 8, .97);
    backdrop-filter: blur(12px);
    border-block: 1px solid var(--line-2);
}
.mbar__in { display: flex; align-items: center; gap: 20px; }
.mbar__k { display: flex; gap: 4px; flex: 0 0 auto; padding: 12px 0; }
.mbar__k button {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--line-2);
    border-radius: 40px;
    background: transparent;
    color: var(--muted);
    font-family: var(--sc);
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s var(--ease);
}
.mbar__k button svg { width: 14px; height: 14px; }
.mbar__k button.on { background: var(--brass); border-color: transparent; color: #0a0908; }
.mbar__d { width: 1px; align-self: stretch; background: var(--line-2); flex: 0 0 auto; }
.mbar__c { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 12px 0; }
.mbar__c::-webkit-scrollbar { display: none; }
.mbar__c button {
    white-space: nowrap;
    padding: 10px 16px;
    border: 0; background: transparent;
    color: var(--muted);
    font-family: var(--sans);
    font-size: .88rem;
    cursor: pointer;
    position: relative;
    transition: color .3s;
}
.mbar__c button sup { font-size: .64rem; color: var(--faint); margin-left: 5px; }
.mbar__c button::after {
    content: ""; position: absolute;
    left: 16px; right: 16px; bottom: 2px; height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .4s var(--ease);
}
.mbar__c button:hover { color: var(--cream); }
.mbar__c button.on { color: var(--gold-hi); }
.mbar__c button.on::after { transform: scaleX(1); }
@media (max-width: 760px) {
    .mbar__in { flex-direction: column; align-items: stretch; gap: 0; }
    .mbar__d { display: none; }
    .mbar__k { justify-content: center; padding-bottom: 8px; border-bottom: 1px solid var(--line-2); }
}

.kpane { display: none; }
.kpane.on { display: block; }
.cpane { display: none; }
.cpane.on { display: block; animation: fadeup .5s var(--ease) both; }
@keyframes fadeup { from { opacity: 0; transform: translateY(14px); } }

.chead { text-align: center; margin-bottom: clamp(32px, 4vw, 54px); }
.chead h2 { margin: 0 0 12px; }
.chead p { color: var(--muted); max-width: 56ch; margin-inline: auto; }

/* Dine-in carte: two typographic columns with leaders, no photographs */
.carte { columns: 2; column-gap: clamp(34px, 5vw, 80px); }
@media (max-width: 900px) { .carte { columns: 1; } }
.carte__i { break-inside: avoid; padding: 20px 0; border-bottom: 1px dotted rgba(242, 238, 231, .13); }
.carte__t { display: flex; align-items: baseline; gap: 12px; }
.carte__n { font-family: var(--serif); font-size: 1.24rem; color: var(--cream); margin: 0; font-weight: 400; line-height: 1.3; }
.carte__l { flex: 1; border-bottom: 1px dotted rgba(242, 238, 231, .2); transform: translateY(-6px); min-width: 16px; }
.carte__p { font-family: var(--serif); font-size: 1.18rem; color: var(--gold-hi); white-space: nowrap; }
.carte__d { color: var(--muted); font-size: .89rem; margin: 7px 0 0; max-width: 48ch; }
.carte__m { display: flex; flex-wrap: wrap; gap: 7px 16px; margin-top: 10px; }
.carte__s { font-family: var(--sc); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-left: 10px; }

/* Online ordering: a proper product grid — the photography deserves it */
.ogrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.ocard { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line-2); border-radius: 2px; overflow: hidden; transition: border-color .4s var(--ease), transform .4s var(--ease); }
.ocard:hover { border-color: rgba(200, 164, 93, .42); transform: translateY(-4px); }
.ocard__i { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #000; }
.ocard__i img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.ocard:hover .ocard__i img { transform: scale(1.06); }
.ocard__b { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ocard__h { display: flex; align-items: baseline; gap: 10px; }
.ocard__n { font-family: var(--serif); font-size: 1.16rem; color: var(--cream); margin: 0; font-weight: 400; line-height: 1.3; }
.ocard__p { font-family: var(--serif); font-size: 1.1rem; color: var(--gold-hi); margin-left: auto; white-space: nowrap; }
.ocard__d { color: var(--muted); font-size: .86rem; margin: 0; }
.ocard__m { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.ocard__f { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 10px; }
.ocard__f .btn { flex: 1; }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 2px; flex: 0 0 auto; }
.qty button { width: 34px; height: 38px; display: grid; place-items: center; border: 0; background: transparent; color: var(--gold); cursor: pointer; transition: background .25s; }
.qty button:hover { background: rgba(200, 164, 93, .12); }
.qty svg { width: 12px; height: 12px; }
.qty input { width: 34px; border: 0; background: transparent; color: var(--cream); text-align: center; font-family: var(--sans); font-size: .9rem; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.mode { display: inline-flex; border: 1px solid var(--line-2); border-radius: 40px; padding: 4px; }
.mode button {
    padding: 10px 24px;
    border: 0; border-radius: 40px;
    background: transparent;
    color: var(--muted);
    font-family: var(--sc);
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, color .3s;
}
.mode button.on { background: var(--brass); color: #0a0908; }

/* Basket drawer */
.basket {
    position: fixed; top: 0; right: 0;
    height: 100dvh;
    width: min(440px, 94vw);
    background: #0b0a09;
    border-left: 1px solid var(--line);
    z-index: 500;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out);
    display: flex; flex-direction: column;
}
.basket.is-on { transform: translateX(0); }
.basket__hd { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line-2); }
.basket__hd h4 { margin: 0; font-family: var(--serif); font-size: 1.5rem; }
.basket__bd { flex: 1; overflow-y: auto; padding: 8px 26px; }
.basket__mt { text-align: center; padding: 70px 10px; color: var(--muted); }
.basket__mt svg { width: 46px; height: 46px; color: var(--gold-deep); margin: 0 auto 20px; }

.bl { display: grid; grid-template-columns: 62px minmax(0, 1fr) auto; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line-2); align-items: start; }
.bl__i { width: 62px; height: 62px; overflow: hidden; border-radius: 2px; background: #000; }
.bl__i img { width: 100%; height: 100%; object-fit: cover; }
.bl__n { font-family: var(--serif); font-size: 1.04rem; color: var(--cream); margin: 0 0 4px; }
.bl__s { color: var(--muted); font-size: .8rem; }
.bl__p { font-family: var(--serif); font-size: 1rem; color: var(--gold-hi); white-space: nowrap; }
.bl__x { background: none; border: 0; color: var(--faint); cursor: pointer; font-size: .74rem; padding: 0; margin-top: 7px; }
.bl__x:hover { color: #cf7c7c; }

.basket__ft { border-top: 1px solid var(--line); padding: 22px 26px calc(22px + env(safe-area-inset-bottom)); background: var(--night); }
.basket__r { display: flex; justify-content: space-between; font-size: .88rem; color: var(--muted); padding: 5px 0; }
.basket__r--t { color: var(--cream); font-family: var(--serif); font-size: 1.24rem; padding-top: 15px; margin-top: 11px; border-top: 1px solid var(--line-2); }
.basket__r--t span:last-child { color: var(--gold-hi); }

/* Toasts */
.toasts { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 900; display: grid; gap: 10px; width: min(430px, 92vw); }
.toast { background: var(--panel-2); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 2px; padding: 15px 20px; color: var(--cream); font-size: .89rem; box-shadow: var(--lift); animation: tin .4s var(--ease) both; }
.toast.out { animation: tout .35s var(--ease) both; }
@keyframes tin { from { opacity: 0; transform: translateY(20px); } }
@keyframes tout { to { opacity: 0; transform: translateY(14px); } }

/* 09  Branches & map ================================================== */
.map-shell { height: clamp(330px, 46vw, 520px); border: 1px solid var(--line); overflow: hidden; background: var(--panel-2); }
.map-shell .leaflet-container { height: 100%; background: #0c0b0a; font-family: var(--sans); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--panel-2); color: var(--cream); border: 1px solid var(--line); border-radius: 2px; }
.leaflet-popup-content { margin: 15px 18px; font-size: .87rem; }
.leaflet-popup-content b { color: var(--gold-hi); font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.leaflet-container a.leaflet-popup-close-button { color: var(--muted); }
.leaflet-control-attribution { background: rgba(0,0,0,.65) !important; color: var(--faint) !important; }
.leaflet-control-attribution a { color: var(--muted) !important; }
.leaflet-bar a { background: var(--panel-2) !important; color: var(--cream) !important; border-color: var(--line) !important; }
.map-fallback { display: grid; place-items: center; height: 100%; text-align: center; padding: 30px; color: var(--muted); }

.searchbar { position: relative; display: block; max-width: 620px; margin-inline: auto; }
.searchbar > svg {
    position: absolute; left: 21px; top: 50%; transform: translateY(-50%);
    width: 17px; height: 17px; color: var(--gold); pointer-events: none; z-index: 2;
}
.searchbar input {
    width: 100%;
    padding: 14px 22px 14px 50px;
    background: rgba(242, 238, 231, .035);
    border: 1px solid var(--line-2);
    border-radius: 40px;
    color: var(--cream);
    font-family: var(--sans);
    font-size: .96rem;
    appearance: none;
    transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.searchbar input::placeholder { color: var(--faint); }
.searchbar input:focus {
    outline: none;
    border-color: rgba(200, 164, 93, .6);
    background: rgba(200, 164, 93, .06);
    box-shadow: 0 0 0 3px rgba(200, 164, 93, .1);
}
.searchbar .btn { border-radius: 40px; padding-inline: 26px; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.fbtn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--line-2);
    border-radius: 40px;
    background: transparent;
    color: var(--muted);
    font-family: var(--sc);
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .35s var(--ease);
}
.fbtn svg { width: 13px; height: 13px; }
.fbtn:hover { border-color: var(--line); color: var(--cream); }
.fbtn.on, .fbtn.is-active { background: var(--brass); border-color: transparent; color: #0a0908; }

.bcard { display: flex; flex-direction: column; height: 100%; background: var(--panel); border: 1px solid var(--line-2); border-radius: 2px; overflow: hidden; transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease); }
.bcard:hover { border-color: rgba(200, 164, 93, .45); transform: translateY(-5px); box-shadow: var(--lift); }
.bcard__i { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.bcard__i img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.bcard:hover .bcard__i img { transform: scale(1.06); }
.bcard__b { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.bcard__b h3 { margin: 0; }
.bcard__f { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); display: flex; gap: 10px; flex-wrap: wrap; }

.amen { display: flex; flex-wrap: wrap; gap: 7px; }
.amen span { display: inline-flex; align-items: center; gap: 6px; font-size: .74rem; color: var(--muted); padding: 5px 11px; border: 1px solid var(--line-2); border-radius: 40px; }
.amen svg { width: 12px; height: 12px; color: var(--gold); }

.empty { display: none; text-align: center; padding: 70px 20px; color: var(--muted); }
.empty.is-on { display: block; }
.empty svg { width: 46px; height: 46px; color: var(--gold-deep); margin: 0 auto 20px; }

/* 10  Booking, offers, events, rooms =================================== */
.panel { background: var(--panel); border: 1px solid var(--line-2); border-radius: 2px; padding: clamp(24px, 3.2vw, 44px); }

.bookwrap { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.bookwrap__f { padding: clamp(26px, 3.6vw, 52px); background: var(--panel); }
.bookwrap__a { position: relative; min-height: 340px; }
.bookwrap__a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bookwrap__a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.5), rgba(10,9,8,.92)); }
.bookwrap__ab { position: relative; z-index: 2; padding: clamp(26px, 3.4vw, 44px); height: 100%; display: flex; flex-direction: column; justify-content: flex-end; gap: 18px; }
@media (max-width: 980px) { .bookwrap { grid-template-columns: 1fr; } .bookwrap__a { min-height: 260px; order: -1; } }

.hours { display: grid; }
.hours li { display: flex; align-items: baseline; gap: 12px; padding: 11px 0; border-bottom: 1px dotted rgba(242,238,231,.1); font-size: .93rem; }
.hours li:last-child { border-bottom: 0; }
.hours .d { color: var(--cream); }
.hours .fill { flex: 1; border-bottom: 1px dotted rgba(242,238,231,.14); transform: translateY(-4px); }
.hours .t { color: var(--gold-hi); font-variant-numeric: tabular-nums; }

.steps { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 32px; }
.step { display: flex; gap: 12px; align-items: center; font-family: var(--sc); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.step b { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); font-family: var(--serif); font-size: .9rem; font-weight: 400; }

/* Offers — printed set-menu cards, not image/copy split cards ------------- */
.setmenus { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(16px, 2vw, 26px); }

.setcard {
    position: relative;
    display: flex; flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: 2px;
    transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}
.setcard:hover { border-color: rgba(200, 164, 93, .5); transform: translateY(-4px); box-shadow: var(--lift); }
/* Hairline inner frame — the printed-card cue */
.setcard::after {
    content: ""; position: absolute; inset: 9px; pointer-events: none;
    border: 1px solid rgba(200, 164, 93, .16);
    transition: border-color .45s var(--ease);
}
.setcard:hover::after { border-color: rgba(200, 164, 93, .34); }

/* __top stays unclipped so the index medallion can straddle its edge;
   the photograph is clipped by the inner frame instead. */
.setcard__top { position: relative; height: 138px; }
.setcard__ph { position: absolute; inset: 0; overflow: hidden; background: #000; }
.setcard__top img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .55; filter: grayscale(.5) contrast(1.06);
    transition: opacity .7s var(--ease), filter .7s var(--ease), transform 1.4s var(--ease);
}
.setcard:hover .setcard__top img { opacity: .92; filter: none; transform: scale(1.05); }
.setcard__ph::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,9,8,.35) 0%, rgba(18,17,16,.2) 45%, var(--panel) 100%);
}
.setcard__badge {
    position: absolute; z-index: 3; top: 18px; left: 18px;
    font-family: var(--sc); font-size: .64rem; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-hi);
    padding: 6px 11px;
    background: rgba(10, 9, 8, .72);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.setcard__no {
    position: absolute; z-index: 3; left: 50%; bottom: -21px;
    transform: translateX(-50%);
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--panel);
    font-family: var(--serif); font-size: .96rem; color: var(--gold);
}

.setcard__b {
    flex: 1;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
    padding: 42px clamp(20px, 2.4vw, 32px) clamp(22px, 2.4vw, 30px);
}
.setcard__b h3 { margin: 0 0 12px; }
.setcard__d { font-size: .92rem; color: var(--muted); margin: 0 0 20px; max-width: 34ch; }

/* Courses run on as one line of serif, separated by gold lozenges — reads
   like the inside of a menu card rather than a feature checklist. */
.carte-l {
    font-family: var(--serif);
    font-size: .96rem; line-height: 1.85;
    color: var(--cream);
    max-width: 36ch;
    margin: 0 0 24px;
}
.carte-l li { display: inline; }
.carte-l li + li::before {
    content: "\25c6";
    color: var(--gold-deep);
    font-size: .5em;
    vertical-align: .34em;
    margin: 0 9px;
}

.plate {
    margin-top: auto;
    width: 100%;
    display: grid; justify-items: center; gap: 5px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.plate .was { color: var(--faint); text-decoration: line-through; font-size: .84rem; }
.plate .now { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem); color: var(--gold-hi); line-height: 1; }
.plate .save { font-family: var(--sc); font-size: .66rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #86d3a3; }
.setcard__note { font-size: .78rem; color: var(--faint); margin: 16px 0 20px; }
.setcard .btn { width: 100%; }

/* The lead offer takes the full row and puts the photograph behind it. */
.setcard--lead { grid-column: 1 / -1; }
@media (min-width: 900px) {
    .setcard--lead { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
    .setcard--lead .setcard__top { height: auto; min-height: 400px; }
    .setcard--lead .setcard__top img { opacity: .86; filter: grayscale(.15); }
    .setcard--lead .setcard__ph::after { background: linear-gradient(90deg, rgba(10,9,8,.4), rgba(18,17,16,.55) 70%, var(--panel)); }
    .setcard--lead .setcard__no { left: auto; right: -21px; bottom: auto; top: 50%; transform: translateY(-50%); }
    .setcard--lead .setcard__b { padding: clamp(34px, 3.4vw, 54px); align-items: flex-start; text-align: left; }
    .setcard--lead .setcard__b h3 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
    .setcard--lead .carte-l, .setcard--lead .setcard__d { max-width: 42ch; }
    .setcard--lead .carte-l { font-size: 1.04rem; }
    .setcard--lead .plate { justify-items: start; grid-auto-flow: column; justify-content: start; align-items: baseline; gap: 16px; }
    .setcard--lead .plate .now { font-size: clamp(2.4rem, 3.6vw, 3.2rem); }
    .setcard--lead .setcard .btn, .setcard--lead .btn { width: auto; }
}

/* Events — a typographic agenda, not a grid of dated cards ---------------- */
.agenda { border-top: 1px solid var(--line-2); }

.agenda__i {
    position: relative;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 3vw, 48px);
    padding: clamp(24px, 2.6vw, 34px) 0;
    border-bottom: 1px solid var(--line-2);
    transition: border-color .4s var(--ease);
}
.agenda__i::before {
    content: ""; position: absolute; z-index: 0;
    inset: 0 calc(var(--gut) * -.5);
    background: linear-gradient(90deg, rgba(200,164,93,.07), rgba(200,164,93,0) 65%);
    opacity: 0; transition: opacity .45s var(--ease);
}
.agenda__i:hover::before { opacity: 1; }
.agenda__i:hover { border-bottom-color: var(--line); }
.agenda__i > * { position: relative; z-index: 1; }

.agenda__d { text-align: center; border-right: 1px solid var(--line-2); padding-right: clamp(14px, 2vw, 26px); }
.agenda__d b {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: .95;
    font-weight: 400;
    color: var(--gold-hi);
}
.agenda__d span {
    display: block; margin-top: 8px;
    font-family: var(--sc); font-size: .68rem; font-weight: 500;
    letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}

.agenda__m { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-bottom: 12px; }
.agenda__m span { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sc); font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.agenda__m svg { width: 12px; height: 12px; color: var(--gold); }

.agenda__t { margin: 0 0 10px; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.agenda__t a { color: var(--cream); }
.agenda__i:hover .agenda__t a { color: var(--gold-hi); }
.agenda__x { font-size: .93rem; color: var(--muted); margin: 0; max-width: 62ch; }

/* Photograph sits back in greyscale and comes forward on hover. */
.agenda__p {
    width: 190px; height: 122px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--line-2);
    transition: border-color .5s var(--ease);
}
.agenda__p img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: .4; filter: grayscale(1);
    transition: opacity .55s var(--ease), filter .55s var(--ease), transform 1.2s var(--ease);
}
.agenda__i:hover .agenda__p { border-color: var(--line); }
.agenda__i:hover .agenda__p img { opacity: 1; filter: none; transform: scale(1.05); }

.agenda__go {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--sc); font-size: .72rem; font-weight: 500;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold);
    margin-top: 16px;
}
.agenda__go svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.agenda__i:hover .agenda__go svg { transform: translateX(6px); }

@media (max-width: 1080px) { .agenda__p { width: 150px; height: 100px; } }
@media (max-width: 900px) {
    .agenda__i { grid-template-columns: 92px minmax(0, 1fr); }
    .agenda__p { grid-column: 1 / -1; width: 100%; height: 190px; margin-top: 4px; }
    .agenda__p img { opacity: .85; filter: none; }
}
@media (max-width: 520px) {
    .agenda__i { grid-template-columns: 1fr; gap: 14px; }
    .agenda__d { text-align: left; border-right: 0; border-left: 2px solid var(--gold-deep); padding: 0 0 0 14px; display: flex; align-items: baseline; gap: 12px; }
    .agenda__d span { margin-top: 0; }
    .agenda__p { height: 160px; }
}

/* Next-up feature at the head of the events page */
.enext { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(24px, 3.6vw, 56px); align-items: center; }
.enext__i { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #000; border: 1px solid var(--line-2); }
.enext__i img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.enext:hover .enext__i img { transform: scale(1.04); }
.enext__i::after { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(242,238,231,.14); pointer-events: none; }
.enext__d { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--gold-hi); margin: 0 0 18px; }
.enext__d small { font-family: var(--sc); font-size: .72rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 12px; }
@media (max-width: 860px) { .enext { grid-template-columns: 1fr; } .enext__i { aspect-ratio: 16 / 10; } }

/* Event detail — the reservation "ticket" */
.ticket { position: relative; background: var(--panel); border: 1px solid var(--line); padding: clamp(22px, 2.6vw, 32px); }
.ticket::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--brass); }
.ticket__d { font-family: var(--serif); font-size: 1.9rem; line-height: 1; color: var(--gold-hi); margin-bottom: 6px; }
.ticket__l { display: grid; margin: 22px 0; }
.ticket__l li { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px dotted rgba(242,238,231,.12); font-size: .92rem; }
.ticket__l li:last-child { border-bottom: 0; }
.ticket__l b { font-family: var(--sc); font-size: .68rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.ticket__l .fill { flex: 1; border-bottom: 1px dotted rgba(242,238,231,.14); transform: translateY(-4px); }
.ticket__l span:last-child { color: var(--cream); text-align: right; }
.ticket__p { text-align: center; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.3rem; color: var(--gold-hi); margin-bottom: 20px; }

.ulink { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sc); font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ulink svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.ulink:hover svg { transform: translateX(5px); }

/* Events */
.ecard { display: flex; flex-direction: column; height: 100%; background: var(--panel); border: 1px solid var(--line-2); border-radius: 2px; overflow: hidden; transition: border-color .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease); }
.ecard:hover { border-color: rgba(200, 164, 93, .45); transform: translateY(-5px); box-shadow: var(--lift); }
.ecard__i { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.ecard__i img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.ecard:hover .ecard__i img { transform: scale(1.06); }
.datechip { position: absolute; left: 14px; bottom: 14px; z-index: 3; background: rgba(10, 9, 8, .9); border: 1px solid var(--line); padding: 9px 15px; text-align: center; backdrop-filter: blur(6px); }
.datechip b { display: block; font-family: var(--serif); font-size: 1.6rem; line-height: 1; color: var(--gold-hi); font-weight: 400; }
.datechip span { font-family: var(--sc); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.ecard__b { padding: clamp(22px, 2.4vw, 28px); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ecard__b h3 { margin: 0; font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
.ecard__f { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.elist .ecard { flex-direction: row; }
.elist .ecard__i { flex: 0 0 300px; aspect-ratio: auto; min-height: 240px; }
@media (max-width: 760px) { .elist .ecard { flex-direction: column; } .elist .ecard__i { flex: auto; aspect-ratio: 16 / 10; min-height: 0; } }

/* Rooms */
.room__g { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: #000; }
.room__g > img { width: 100%; height: 100%; object-fit: cover; transition: opacity .35s var(--ease); }
.room__th { position: absolute; left: 14px; bottom: 14px; display: flex; gap: 7px; z-index: 3; }
.room__th button { width: 46px; height: 34px; padding: 0; border: 1px solid rgba(242,238,231,.3); overflow: hidden; background: none; cursor: pointer; opacity: .6; transition: opacity .3s, border-color .3s; }
.room__th button.on, .room__th button:hover { opacity: 1; border-color: var(--gold); }
.room__th img { width: 100%; height: 100%; object-fit: cover; }
.room__rate { font-family: var(--serif); font-size: 1.7rem; color: var(--gold-hi); line-height: 1; }
.room__rate small { display: block; font-family: var(--sc); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 7px; }

/* 11  Gallery & lightbox ============================================== */
.gal { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; grid-auto-flow: dense; }
.gal__i { position: relative; overflow: hidden; border-radius: 2px; cursor: zoom-in; background: #000; aspect-ratio: 4 / 3; border: 1px solid var(--line-2); }
.gal__i--w { grid-column: span 2; aspect-ratio: 8 / 3; }
.gal__i--t { grid-row: span 2; aspect-ratio: 4 / 6.2; }
@media (max-width: 620px) { .gal__i--w { grid-column: span 1; aspect-ratio: 4/3; } .gal__i--t { grid-row: span 1; aspect-ratio: 4/3; } }
.gal__i img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gal__i:hover img { transform: scale(1.06); }
.gal__i::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,9,8,.92)); opacity: 0; transition: opacity .4s; }
.gal__i:hover::after { opacity: 1; }
.gal__c { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 20px; opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.gal__i:hover .gal__c { opacity: 1; transform: translateY(0); }
.gal__c h4 { margin: 5px 0 0; font-family: var(--serif); font-size: 1.08rem; }
.gal__c span { font-family: var(--sc); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.strip a { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.strip a:hover img { transform: scale(1.1); }
.strip a::after { content: ""; position: absolute; inset: 0; background: rgba(200,164,93,.22); opacity: 0; transition: opacity .4s; }
.strip a:hover::after { opacity: 1; }
@media (max-width: 900px) { .strip { grid-template-columns: repeat(3, 1fr); } }

.lightbox { position: fixed; inset: 0; z-index: 800; background: rgba(4, 4, 4, .97); display: none; place-items: center; padding: clamp(16px, 4vw, 56px); }
.lightbox.is-on { display: grid; animation: fade .3s var(--ease); }
.lightbox img { max-width: 100%; max-height: 82vh; border: 1px solid var(--line); }
.lightbox__c { text-align: center; margin-top: 20px; color: var(--muted); font-family: var(--sc); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; }
.lightbox__b { position: absolute; width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line-2); background: rgba(10,9,8,.85); color: var(--cream); cursor: pointer; transition: border-color .3s, background .3s; }
.lightbox__b:hover { border-color: var(--gold); background: rgba(200,164,93,.12); }
.lightbox__b svg { width: 20px; height: 20px; }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: clamp(10px, 3vw, 36px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px, 3vw, 36px); top: 50%; transform: translateY(-50%); }
@keyframes fade { from { opacity: 0; } }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 700; display: none; place-items: center; padding: 20px; background: rgba(4,4,4,.88); backdrop-filter: blur(4px); }
.modal.is-on { display: grid; animation: fade .28s var(--ease); }
.modal__b { width: min(540px, 100%); max-height: 88vh; overflow-y: auto; background: var(--panel); border: 1px solid var(--line); padding: clamp(26px, 3.4vw, 42px); animation: pop .4s var(--ease) both; }
.modal__h { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.modal__h h4 { margin: 6px 0 0; font-family: var(--serif); font-size: 1.6rem; }
@keyframes pop { from { opacity: 0; transform: translateY(22px); } }

/* 12  Contact, auth, legal, FAQ ======================================= */
.itile { display: flex; gap: 18px; padding: clamp(22px, 2.6vw, 32px); background: var(--panel); border: 1px solid var(--line-2); border-radius: 2px; height: 100%; transition: border-color .35s; }
.itile:hover { border-color: rgba(200, 164, 93, .4); }
.itile__ic { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold); }
.itile__ic svg { width: 19px; height: 19px; }
.itile h4 { margin: 0 0 6px; }
.itile p, .itile a { color: var(--muted); font-size: .93rem; margin: 0; }
.itile a:hover { color: var(--gold-hi); }

.auth { width: min(480px, 100%); margin-inline: auto; }
.auth__t { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: rgba(0,0,0,.4); border: 1px solid var(--line-2); margin-bottom: 32px; }
.auth__t button { padding: 13px 10px; border: 0; background: transparent; color: var(--muted); font-family: var(--sc); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: background .3s, color .3s; }
.auth__t button.on { background: var(--brass); color: #0a0908; }
.auth__p { display: none; }
.auth__p.on { display: block; animation: fadeup .4s var(--ease) both; }

.prose { max-width: 76ch; }
.prose h2 { margin-top: 2.3em; font-size: clamp(1.5rem, 2.3vw, 2rem); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose ul { display: grid; gap: 11px; margin: 1.1em 0; }
.prose ul li { display: flex; gap: 14px; }
.prose ul li::before { content: ""; width: 5px; height: 5px; transform: rotate(45deg); border: 1px solid var(--gold); margin-top: 12px; flex: 0 0 5px; }
.prose a { text-decoration: underline; text-underline-offset: 4px; }

.toc { position: sticky; top: calc(var(--hdr-h) + 26px); background: var(--panel); border: 1px solid var(--line-2); padding: 24px; }
.toc h4 { font-family: var(--sc); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.toc a { display: block; padding: 8px 0; font-size: .88rem; color: var(--muted); border-bottom: 1px solid var(--line-2); }
.toc a:hover { color: var(--gold-hi); }
@media (max-width: 940px) { .toc { position: static; margin-bottom: 34px; } }

.legal { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(26px, 4vw, 60px); align-items: start; }
@media (max-width: 940px) { .legal { grid-template-columns: 1fr; } }

.faq__i { border: 1px solid var(--line-2); border-radius: 2px; background: var(--panel); margin-bottom: 10px; transition: border-color .3s; }
.faq__i.on { border-color: rgba(200, 164, 93, .4); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 24px; background: none; border: 0; color: var(--cream); font-family: var(--serif); font-size: clamp(1.06rem, 1.5vw, 1.24rem); text-align: left; cursor: pointer; }
.faq__q svg { width: 15px; height: 15px; color: var(--gold); flex: 0 0 auto; transition: transform .4s var(--ease); }
.faq__i.on .faq__q svg { transform: rotate(135deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a-in { padding: 0 24px 24px; color: var(--muted); font-size: .93rem; }

/* 13  Footer & mobile dock ============================================ */
.foot { background: #060606; border-top: 1px solid var(--line); position: relative; }
.foot__top { padding-block: clamp(50px, 6.5vw, 90px); }
.foot__g { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: clamp(24px, 3.4vw, 56px); }
@media (max-width: 1000px) { .foot__g { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .foot__g { grid-template-columns: 1fr; } }
.foot__brand img { height: 92px; margin-bottom: 22px; }
.foot__brand p { color: var(--muted); font-size: .92rem; max-width: 36ch; }
.foot__t { font-family: var(--sc); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot__l { display: grid; gap: 11px; }
.foot__l a { color: var(--muted); font-size: .92rem; display: inline-flex; align-items: center; gap: 0; transition: color .3s, gap .3s; }
.foot__l a::before { content: ""; width: 0; height: 1px; background: var(--gold); transition: width .35s var(--ease); }
.foot__l a:hover { color: var(--gold-hi); gap: 10px; }
.foot__l a:hover::before { width: 13px; }
.foot__soc { display: flex; gap: 10px; margin-top: 24px; }
.foot__soc a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-2); border-radius: 2px; color: var(--muted); transition: all .35s var(--ease); }
.foot__soc a:hover { border-color: var(--gold); color: var(--gold-hi); background: rgba(200,164,93,.08); transform: translateY(-3px); }
.foot__soc svg { width: 16px; height: 16px; }

.foot__flourish { padding-block: 4px; }
.foot__bot { border-top: 1px solid var(--line-2); padding-block: 24px; }
.foot__bi { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .82rem; color: var(--faint); }
.foot__bi a { color: var(--muted); }
.foot__bi nav { display: flex; gap: 24px; flex-wrap: wrap; }

.dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 290; display: none; background: rgba(10,9,8,.97); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom); }
.dock__in { display: grid; grid-template-columns: repeat(4, 1fr); }
.dock a { display: grid; justify-items: center; gap: 6px; padding: 11px 4px; color: var(--muted); font-family: var(--sc); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; border-right: 1px solid var(--line-2); }
.dock a:last-child { border-right: 0; }
.dock a svg { width: 17px; height: 17px; }
.dock a.key { color: var(--gold); }
@media (max-width: 860px) { .dock { display: block; } body { padding-bottom: 68px; } }

.totop { position: fixed; right: 20px; bottom: 22px; z-index: 280; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 2px; background: rgba(10,9,8,.92); color: var(--gold); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .45s var(--ease); }
.totop.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--gold); color: #0a0908; }
.totop svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .totop { bottom: 84px; } }

/* 14  Utilities & motion ============================================== */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv[data-d="1"] { transition-delay: .09s; }
.rv[data-d="2"] { transition-delay: .18s; }
.rv[data-d="3"] { transition-delay: .27s; }
.rv[data-d="4"] { transition-delay: .36s; }
.rv[data-d="5"] { transition-delay: .45s; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; top: -90px; left: 16px; z-index: 999; background: var(--gold); color: #0a0908; padding: 13px 24px; font-family: var(--sc); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; transition: top .3s var(--ease); }
.skip:focus { top: 12px; color: #0a0908; }

.fx { display: flex; } .fw { flex-wrap: wrap; }
.ac { align-items: center; } .jb { justify-content: space-between; } .jc { justify-content: center; }
.gp1 { gap: 12px; } .gp2 { gap: 22px; } .gp3 { gap: 34px; }
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; }
.mt1 { margin-top: 12px; } .mt2 { margin-top: 24px; } .mt3 { margin-top: 38px; } .mt4 { margin-top: 60px; }
.mb1 { margin-bottom: 12px; } .mb2 { margin-bottom: 24px; } .mb3 { margin-bottom: 38px; } .mb4 { margin-bottom: 60px; }
.tc { text-align: center; }
.is-hidden { display: none !important; }
.wfull { width: 100%; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .rv { opacity: 1; transform: none; }
    [data-plx], .hero__layer, .plx__layer, .phead__layer { transform: none !important; }
}

@media print {
    body { background: #fff; color: #111; padding: 0; }
    .util, .hdr, .drawer, .scrim, .foot, .dock, .totop, .basket, .hero__cue, .btn, .resbar { display: none !important; }
    h1, h2, h3, h4 { color: #111; }
}
