/* ============================================================
   AVANT GARDE · DESIGN SYSTEM
   Cormorant Garamond · Inter Tight · JetBrains Mono
   Mobile-first · Dark · Brass · Bordeaux
   ============================================================ */

:root {
  --ink:        #080808;
  --ink-2:      #0e0e0e;
  --ink-3:      #141414;
  --ink-4:      #1a1a1a;
  --bone:       #f0e9dc;
  --bone-dim:   #ccc5b8;
  --bone-faint: #7e786c;
  --line:             rgba(240,233,220,.09);
  --line-strong:      rgba(240,233,220,.22);
  --line-brass:       rgba(196,154,98,.38);
  --brass:      #c49a62;
  --brass-warm: #dabb88;
  --brass-deep: #7a5e36;
  --bordeaux:   #8b1f38;
  --bordeaux-warm: #b02a4a;
  --bordeaux-glow: rgba(139,31,56,.24);
  --bottle:     #2d3a2e;
  --serif: "Cormorant Garamond","Times New Roman",serif;
  --sans:  "Inter Tight",system-ui,-apple-system,sans-serif;
  --mono:  "JetBrains Mono",ui-monospace,monospace;
  --pad:    20px;
  --pad-lg: 72px;
  --max:    1360px;
  --bar-h:  64px;
  --t-fast: .26s ease;
  --t-base: .44s cubic-bezier(.2,.7,.2,1);
  --t-slow: .8s  cubic-bezier(.2,.7,.2,1);
  --glow-brass: 0 0 32px rgba(196,154,98,.18);
  --glow-wine:  0 0 32px rgba(139,31,56,.26);
}

/* ── Reset ──────────────────────────────────────────────── */
*, ::before, ::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}
@media (min-width: 880px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--brass); color: var(--ink); }
:focus-visible {
  outline: 1px solid var(--brass-warm);
  outline-offset: 4px;
}
body.menu-open { overflow: hidden; }

/* ── Grain overlay ──────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; opacity: .042; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNDAnIGhlaWdodD0nMjQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDEgMCAwIDAgMCAxIDAgMCAwIDAgMSAwIDAgMCAxIDAnLz48L2ZpbHRlcj48cmVjdCB3aWR0aD0nMTAwJScgaGVpZ2h0PScxMDAlJyBmaWx0ZXI9J3VybCgjbiknLz48L3N2Zz4=");
}

/* ── Layout helpers ─────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
@media (min-width: 880px) { .wrap { padding: 0 var(--pad-lg); } }

.label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--bone-dim);
}
.label.brass { color: var(--brass); }
.label.wine  { color: var(--bordeaux-warm); }

.rule       { height: 1px; background: var(--line);        border: 0; margin: 0; }
.rule-strong{ height: 1px; background: var(--line-strong); border: 0; margin: 0; }

.cap-mark {
  display: inline-block; width: .7em; height: .42em;
  border-top: 1.4px solid currentcolor; border-right: 1.4px solid currentcolor;
  transform: rotate(-45deg); vertical-align: .1em;
}

/* ── Avant mark (^) motif ───────────────────────────────── */
/* Before section heading labels */
.sec-head .num::before {
  content: "^";
  font-family: var(--mono); font-size: .9em;
  color: var(--brass); opacity: .55;
  margin-right: .55em; letter-spacing: 0;
}
/* Before menu category labels */
.menu-cat-head .num::before {
  content: "^";
  font-family: var(--mono); font-size: .9em;
  color: var(--brass); opacity: .55;
  margin-right: .4em; letter-spacing: 0;
}
/* Before reserve / subscribe label */
.reserve .label::before {
  content: "^  ";
  font-family: var(--mono);
  color: var(--brass); opacity: .65;
}
/* Above the page-hero corner doc tag */
.page-hero .corner::before {
  content: "^";
  display: block;
  font-family: var(--mono); font-size: 13px;
  color: var(--brass); opacity: .6;
  letter-spacing: .3em;
  margin-bottom: 10px;
}
/* Above footer logo */
.colo-mark::before {
  content: "^";
  display: block;
  font-family: var(--mono); font-size: 12px;
  color: var(--brass); opacity: .6;
  letter-spacing: .3em;
  margin-bottom: 14px;
}

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s, transform 1s; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 260;
  padding: 20px var(--pad);
  padding-top:    calc(20px + env(safe-area-inset-top));
  padding-left:   calc(var(--pad) + env(safe-area-inset-left));
  padding-right:  calc(var(--pad) + env(safe-area-inset-right));
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled, .nav.solid {
  background: rgba(8,8,8,.84);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
          backdrop-filter: blur(20px) saturate(1.2);
  border-bottom-color: var(--line);
  padding: 13px var(--pad);
  padding-top:    calc(13px + env(safe-area-inset-top));
  padding-left:   calc(var(--pad) + env(safe-area-inset-left));
  padding-right:  calc(var(--pad) + env(safe-area-inset-right));
}
@media (min-width: 880px) {
  .nav {
    padding: 24px var(--pad-lg);
    padding-top:   calc(24px + env(safe-area-inset-top));
    padding-left:  calc(var(--pad-lg) + env(safe-area-inset-left));
    padding-right: calc(var(--pad-lg) + env(safe-area-inset-right));
  }
  .nav.scrolled, .nav.solid {
    padding: 15px var(--pad-lg);
    padding-top:   calc(15px + env(safe-area-inset-top));
    padding-left:  calc(var(--pad-lg) + env(safe-area-inset-left));
    padding-right: calc(var(--pad-lg) + env(safe-area-inset-right));
  }
}

.nav .mark { display: flex; align-items: center; }
.nav .mark img { width: auto; opacity: 1; transition: opacity .3s; }
.nav .mark img.brand-home { height: 28px; }
.nav .mark img.brand-inner {
  height: 36px;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.55));
}
@media (min-width: 1000px) {
  .nav .mark img.brand-inner { height: 40px; }
}
.nav .mark:hover img { opacity: 1; }

.nav-links { display: none; gap: 36px; align-items: center; }
@media (min-width: 1000px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--sans); font-size: 10.5px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--bone-dim);
  transition: color var(--t-fast); position: relative; padding: 8px 0;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--bone); }
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width .35s, left .35s;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 16px; left: calc(50% - 8px); }

.nav-cta {
  display: none; padding: 11px 24px;
  border: 1px solid var(--brass); color: var(--brass);
  font-family: var(--sans); font-size: 9.5px; letter-spacing: .36em; text-transform: uppercase;
  position: relative; overflow: hidden; transition: color .4s;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--brass); transform: translateY(101%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1); z-index: -1;
}
.nav-cta:hover { color: var(--ink); }
.nav-cta:hover::before { transform: translateY(0); }
@media (min-width: 1000px) { .nav-cta { display: inline-block; } }

/* Hamburger — bulletproof: solid background, thick brass lines, no opacity tricks */
.menu-btn {
  display: flex !important;
  flex-direction: column; gap: 6px;
  width: 36px; height: 36px;
  padding: 8px;
  z-index: 270;
  align-items: center; justify-content: center;
  position: relative;
  border: 1.5px solid var(--brass);
  background: #0a0807;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(196,154,98,.3);
  -webkit-appearance: none;
  appearance: none;
  transform: translateZ(0);
  will-change: transform;
}
.menu-btn:hover, .menu-btn:active {
  background: #14100c; border-color: var(--brass-warm);
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--brass);
  border-radius: 1px;
  transition: transform .35s, opacity .25s, background .25s;
}
.menu-btn:hover span, .menu-btn:active span { background: var(--brass-warm); }
.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 1000px) { .menu-btn { display: none !important; } }
@media (max-width: 999px) {
  .menu-btn {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top));
    right: calc(var(--pad) + env(safe-area-inset-right));
    color: var(--brass-warm);
  }
  /* Mobile icon drawn with CSS lines (no font glyph dependency). */
  .menu-btn span { display: none; }
  .menu-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    box-shadow: 0 -4px 0 currentColor, 0 4px 0 currentColor;
  }
  .menu-btn::after {
    content: none;
  }
  .menu-btn.open::before { content: none; }
  .menu-btn.open::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: none;
  }
  .menu-btn.open {
    color: var(--brass-warm);
  }
  .menu-btn.open::before,
  .menu-btn.open::after {
    background: currentColor;
  }
  .menu-btn.open::after {
    box-shadow: none;
  }
  .menu-btn.open::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

/* Home header starts transparent; force strong button contrast before scroll. */
.nav:not(.scrolled):not(.solid) .menu-btn {
  background: rgba(6, 6, 6, .88);
  border-color: var(--brass-warm);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35), 0 8px 24px rgba(0,0,0,.45);
}
.nav:not(.scrolled):not(.solid) .menu-btn span {
  background: var(--brass-warm);
}

/* ══════════════════════════════════════════════════════════
   MOBILE SHEET
   ══════════════════════════════════════════════════════════ */
.sheet {
  position: fixed; inset: 0; z-index: 120;
  background: #020202;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .55s cubic-bezier(.7,0,.2,1), opacity .35s ease, visibility 0s linear .55s;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--pad) 36px;
  padding-top: calc(96px + env(safe-area-inset-top));
  padding-bottom: calc(36px + env(safe-area-inset-bottom));
}
.sheet-brand {
  position: absolute;
  left: var(--pad);
  top: calc(20px + env(safe-area-inset-top));
  display: inline-flex;
  align-items: center;
}
.sheet-brand img {
  height: 42px;
  width: auto;
  opacity: 1;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,.55));
}
@media (min-width: 1000px) {
  .sheet-brand img { height: 50px; }
}
.sheet.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .55s cubic-bezier(.7,0,.2,1), opacity .35s ease;
}
.sheet ol { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.sheet li { border-bottom: 1px solid var(--line); overflow: hidden; }
.sheet a {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 8vw, 54px);
  color: var(--bone); display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px; padding: 16px 0; min-height: 60px;
  transition: color .25s, transform .35s;
}
.sheet a:hover { color: var(--brass); transform: translateX(6px); }
.sheet a small {
  font-family: var(--mono); font-style: normal; font-size: 9px;
  letter-spacing: .22em; color: var(--bone-faint);
}
.sheet .foot {
  margin-top: 36px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; color: var(--bone-dim); line-height: 2; text-transform: uppercase;
}
.sheet .foot a { font-family: inherit; font-size: inherit; font-style: normal; color: var(--brass); display: inline; }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 50% 32%, rgba(196,154,98,.54) 0%, rgba(196,154,98,0) 62%),
    radial-gradient(60% 50% at 82% 72%, rgba(139,31,56,.42) 0%, rgba(139,31,56,0) 64%),
    radial-gradient(40% 40% at 12% 60%, rgba(139,31,56,.22) 0%, rgba(139,31,56,0) 60%),
    radial-gradient(50% 50% at 18% 80%, rgba(45,58,46,.28) 0%, transparent 66%),
    linear-gradient(#1a0a0e 0%, #0a0504 60%, #050203 100%);
}
.photo-surface {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.photo-surface::before {
  pointer-events: none;
}
.hero-bg.photo-surface {
  background-image:
    linear-gradient(rgba(5,3,3,.28), rgba(5,3,3,.78)),
    url("/images/avant1.webp");
  background-position: center bottom;
  background-size: cover;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255,196,128,.2)   0px, transparent 1.2%),
    radial-gradient(circle at 78% 18%, rgba(255,196,128,.14)  0px, transparent 1.5%),
    radial-gradient(circle at 32% 72%, rgba(255,196,128,.16)  0px, transparent 1%),
    radial-gradient(circle at 88% 62%, rgba(255,196,128,.11)  0px, transparent 1.3%),
    radial-gradient(circle at  8% 48%, rgba(255,196,128,.09)  0px, transparent 1.6%),
    radial-gradient(circle at 62% 88%, rgba(255,196,128,.13)  0px, transparent 1.1%);
  filter: blur(2px);
  animation: flicker 8s ease-in-out infinite;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(8,8,8,0) 32%, rgba(8,8,8,.94) 100%);
}
@keyframes flicker {
  0%, 100% { opacity: .85; }
  35%       { opacity: 1; }
  50%       { opacity: .68; }
  72%       { opacity: .94; }
}

.hero-mark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  text-align: center; z-index: 2; width: 92%;
  animation: markIn 1.6s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes markIn {
  0%   { opacity: 0; transform: translate(-50%,-44%); }
  100% { opacity: 1; transform: translate(-50%,-50%); }
}
.hero-mark img.logo {
  max-width: min(870px,96vw); width: 100%; margin: 0 auto;
  filter: drop-shadow(0 2px 32px rgba(0,0,0,.7));
}
@media (min-width: 1000px) {
  .hero-mark img.logo { max-width: min(940px,96vw); }
}
.hero-mark .lede {
  margin-top: 44px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(30px,5.2vw,60px); line-height: 1.05; letter-spacing: -.012em;
  color: var(--bone); text-wrap: pretty;
}
.hero-mark .ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-top: 22px;
  color: var(--brass); font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .44em; text-transform: uppercase;
}
.hero-mark .ornament .ln { width: 44px; height: 1px; background: currentcolor; opacity: .55; }

.hero-foot {
  position: relative; z-index: 3; padding: 0 var(--pad) 36px;
  display: flex; flex-direction: column; gap: 16px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--bone-dim);
}
.hero-foot .row {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 12px 20px; align-items: baseline;
}
.hero-foot .row b { color: var(--bone); font-weight: 500; }
.hero-edition { color: var(--brass); letter-spacing: .32em; }
.hero-scroll {
  display: none; align-items: center; gap: 10px;
  font-size: 9px; letter-spacing: .32em; align-self: center;
}
.hero-scroll .ln { width: 28px; height: 1px; background: var(--bone-dim); }
@media (min-width: 880px) {
  .hero-foot { padding: 0 var(--pad-lg) 48px; gap: 22px; }
  .hero-scroll { display: inline-flex; }
}
@media (max-width: 599px) {
  .hero { min-height: 620px; }
  .hero-mark { width: 100%; }
  .hero-mark img.logo { max-width: 78vw; }
  .hero-mark .lede { padding: 0 22px; }
  .hero-foot .row span:nth-child(2) { display: none; }
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  padding: 148px var(--pad) 72px;
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(196,154,98,.16), transparent 60%),
    radial-gradient(60% 50% at 86% 78%, rgba(139,31,56,.18), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
}
@media (min-width: 880px) { .page-hero { padding: 200px var(--pad-lg) 120px; } }
.page-hero .wrap { position: relative; z-index: 2; }

/* Page-specific hero backgrounds */
.page-hero-gallery {
  background:
    radial-gradient(72% 56% at 76% 18%, rgba(196,154,98,.28), transparent 62%),
    radial-gradient(52% 44% at 14% 78%, rgba(45,58,46,.30), transparent 64%),
    linear-gradient(180deg, #0d0d0d 0%, #070707 100%) !important;
}

.page-hero-kitchen {
  background:
    radial-gradient(70% 54% at 18% 18%, rgba(176,42,74,.48), transparent 60%),
    radial-gradient(52% 46% at 86% 70%, rgba(139,31,56,.42), transparent 62%),
    linear-gradient(180deg, #1f0b12 0%, #12060b 100%) !important;
}

.page-hero .crumb {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--bone-dim); margin-bottom: 28px;
}
.page-hero .crumb a:hover { color: var(--bone); }
.page-hero .crumb .sep { color: var(--brass); }

.page-hero h1 {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(52px,9.5vw,128px); line-height: .92;
  letter-spacing: -.018em; margin: 0 0 24px; color: var(--bone);
  text-wrap: balance; max-width: 18ch;
}
.page-hero h1 .roman { font-style: normal; }

.page-hero .sub {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(15px,1.7vw,18px); color: var(--bone-dim);
  max-width: 48ch; line-height: 1.58;
}
.page-hero .corner {
  position: absolute; right: var(--pad-lg); top: 160px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--bone-dim); text-align: right;
  line-height: 2; display: none;
}
@media (min-width: 1000px) { .page-hero .corner { display: block; } }

/* ══════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ══════════════════════════════════════════════════════════ */
section.block { padding: 88px 0; position: relative; }
@media (min-width: 880px) { section.block { padding: 160px 0; } }

/* Home section contrast */
.block-kitchen {
  background: #0a0608;
}

.block-kitchen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 60% at 20% 20%, rgba(176,42,74,.36), transparent 62%),
    radial-gradient(50% 46% at 84% 72%, rgba(139,31,56,.30), transparent 64%),
    linear-gradient(180deg, rgba(80,18,34,.28) 0%, rgba(18,6,10,.40) 100%);
}

.block-gallery {
  background: #06090a;
}

.block-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(66% 54% at 76% 18%, rgba(45,58,46,.34), transparent 62%),
    radial-gradient(48% 44% at 14% 76%, rgba(196,154,98,.18), transparent 64%),
    linear-gradient(180deg, rgba(8,24,28,.34) 0%, rgba(6,12,14,.40) 100%);
}

.block-kitchen > .wrap,
.block-gallery > .wrap {
  position: relative;
  z-index: 1;
}

.sec-head { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 44px; }
.sec-head .num { font-family: var(--mono); font-size: 9.5px; letter-spacing: .26em; color: var(--brass); }
.sec-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px,6vw,68px); line-height: 1;
  letter-spacing: -.012em; margin: 0; color: var(--bone); text-wrap: balance;
}
.sec-head h2 em { font-style: italic; color: var(--bone-dim); font-weight: 300; }
@media (min-width: 880px) {
  .sec-head { grid-template-columns: 200px 1fr; gap: 48px; align-items: baseline; margin-bottom: 80px; }
}

/* ── Marquee ────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 28px 0; background: var(--ink);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: scroll 60s linear infinite;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px,3vw,34px); color: var(--bone); white-space: nowrap;
}
.marquee-track span { display: flex; align-items: center; gap: 48px; }
.marquee-track .dot { width: 6px; height: 6px; background: var(--brass); border-radius: 50%; transform: rotate(45deg); }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Placeholder figures ────────────────────────────────── */
.ph {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-2);
}
.ph.photo-surface,
.gframe.photo-surface {
  background-blend-mode: soft-light, normal;
}
.ph.photo-surface::before,
.gframe.photo-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,3,3,.06), rgba(5,3,3,.48)),
    radial-gradient(70% 60% at 50% 36%, rgba(196,154,98,.16), transparent 72%);
  opacity: .76;
  transition: opacity .4s;
}
.ph.photo-surface:hover::before,
.gframe.photo-surface:hover::before { opacity: .92; }
.ph[data-photo="candle"] {
  background-image:
    linear-gradient(rgba(8,5,4,.18), rgba(8,5,4,.72)),
    url("/images/home/candle.svg");
}
.ph[data-photo="kitchen"] {
  background-image:
    linear-gradient(rgba(8,8,7,.18), rgba(8,8,7,.7)),
    url("/images/home/kitchen-pass.svg");
}
.gframe[data-photo="bar"] {
  background-image:
    linear-gradient(rgba(8,5,4,.06), rgba(8,5,4,.58)),
    url("/images/home/bar-room.svg");
}
.gframe[data-photo="vermouth"] {
  background-image:
    linear-gradient(rgba(8,4,5,.08), rgba(8,4,5,.62)),
    url("/images/home/vermouth-service.svg");
}
.gframe[data-photo="shelf"] {
  background-image:
    linear-gradient(rgba(5,8,6,.08), rgba(5,8,6,.64)),
    url("/images/home/back-shelf.svg");
}
.gframe[data-photo="banquette"] {
  background-image:
    linear-gradient(rgba(5,5,5,.08), rgba(5,5,5,.68)),
    url("/images/home/banquette.svg");
}
.gframe[data-photo="closing"] {
  background-image:
    linear-gradient(rgba(8,8,7,.08), rgba(8,8,7,.68)),
    url("/images/home/closing-hour.svg");
}
.ph::after {
  content: attr(data-cap); position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bone); opacity: .72;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.ph-amber {
  background:
    radial-gradient(80% 60% at 50% 35%, rgba(196,154,98,.54), transparent 66%),
    radial-gradient(40% 60% at 50% 80%, rgba(255,196,128,.22), transparent 72%),
    linear-gradient(#1f1409 0%, #0a0504 80%);
}
.ph-vermouth {
  background:
    radial-gradient(70% 60% at 60% 40%, rgba(107,31,37,.54), transparent 72%),
    linear-gradient(#1a0a0c, #050202);
}
.ph-bottle {
  background:
    radial-gradient(60% 60% at 30% 50%, rgba(45,58,46,.54), transparent 76%),
    linear-gradient(#0d1410, #050706);
}
.ph-stone {
  background:
    radial-gradient(70% 80% at 50% 30%, rgba(240,233,220,.14), transparent 72%),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.ph-night {
  background:
    radial-gradient(80% 100% at 90% 10%, rgba(196,154,98,.28), transparent 62%),
    linear-gradient(#0a0a0a, #030303);
}
.ph-velvet {
  background:
    radial-gradient(60% 70% at 80% 20%, rgba(139,31,56,.6), transparent 72%),
    radial-gradient(40% 50% at 30% 70%, rgba(196,154,98,.16), transparent 72%),
    linear-gradient(#14080a, #050303);
}
.ph-wine {
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(139,31,56,.7), transparent 68%),
    radial-gradient(40% 40% at 80% 70%, rgba(176,42,74,.3), transparent 72%),
    linear-gradient(#1a070d 0%, #060204 100%);
}

/* — candle on dark — used in Concept (sense of place, not another drink) — */
.ph-candle {
  background:
    radial-gradient(60% 50% at 50% 32%, rgba(255,180,90,.32), transparent 62%),
    radial-gradient(40% 35% at 50% 62%, rgba(196,154,98,.16), transparent 70%),
    radial-gradient(80% 80% at 50% 100%, rgba(20,8,4,.9), transparent 70%),
    linear-gradient(180deg, #14080a 0%, #0a0504 60%, #050203 100%);
}
.ph-candle::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255,196,128,.16) 0px, transparent 1.2%),
    radial-gradient(circle at 82% 28%, rgba(255,196,128,.12) 0px, transparent 1.4%),
    radial-gradient(circle at 30% 78%, rgba(255,196,128,.10) 0px, transparent 1.1%),
    radial-gradient(circle at 76% 68%, rgba(255,196,128,.08) 0px, transparent 1.3%);
  filter: blur(2px);
  animation: flicker 9s ease-in-out infinite;
  pointer-events: none;
}
.ph-candle .candle {
  position: absolute;
  left: 50%; top: 56%;
  transform: translate(-50%, -50%);
  width: 14%;
  height: 56%;
}
.ph-candle .flame {
  position: absolute;
  left: 50%; top: -16%;
  transform: translateX(-50%);
  width: 70%; aspect-ratio: 3 / 5;
  background:
    radial-gradient(60% 80% at 50% 62%, rgba(255,238,200,.96), transparent 70%),
    radial-gradient(60% 100% at 50% 38%, rgba(255,180,90,.92), transparent 80%),
    radial-gradient(54% 60% at 50% 18%, rgba(180,80,40,.88), transparent 72%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: blur(.6px);
  box-shadow:
    0 0 24px rgba(255,180,90,.7),
    0 0 60px rgba(255,140,60,.5),
    0 0 140px rgba(180,60,30,.36);
  transform-origin: 50% 100%;
  animation: candle-flicker 1.8s ease-in-out infinite;
}
.ph-candle .wax {
  position: absolute; left: 0; right: 0; top: 0; bottom: 22%;
  background:
    linear-gradient(180deg, #f3e6c9 0%, #ddc8a0 50%, #b89865 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow:
    inset 3px 0 6px rgba(255,238,210,.55),
    inset -3px 0 6px rgba(70,36,18,.5),
    inset 0 6px 8px rgba(255,210,160,.6),
    inset 0 -3px 5px rgba(50,24,12,.5);
}
.ph-candle .wax::before {
  content: ""; position: absolute;
  left: 18%; top: 8%; width: 14%; height: 60%;
  background: linear-gradient(180deg, rgba(255,240,210,.5), transparent 90%);
  border-radius: 50% / 30%;
  filter: blur(1px);
}
.ph-candle .wax::after {
  content: ""; position: absolute;
  left: -6%; top: 88%; width: 30%; height: 16%;
  background: linear-gradient(180deg, #ddc8a0 30%, #a07c4a 100%);
  border-radius: 0 0 60% 40% / 0 0 100% 70%;
  filter: blur(.4px);
}
.ph-candle .holder {
  position: absolute; left: -50%; right: -50%; bottom: 0;
  height: 22%;
  background:
    linear-gradient(180deg,
      rgba(255,220,170,.5) 0%,
      var(--brass) 18%,
      var(--brass-deep) 65%,
      #2a1d10 100%);
  border-top: 1px solid var(--brass-warm);
  border-radius: 1px 1px 5px 5px;
  box-shadow:
    inset 3px 0 5px rgba(255,222,180,.5),
    inset -3px 0 5px rgba(28,14,6,.65),
    0 6px 22px rgba(255,180,90,.18),
    0 12px 36px rgba(0,0,0,.7);
}
.ph-candle .holder::before {
  content: ""; position: absolute;
  left: 8%; right: 8%; top: 18%;
  height: 1px; background: rgba(255,222,180,.4);
}
@keyframes candle-flicker {
  0%, 100% { transform: translateX(-50%) scaleY(1)    scaleX(1);   opacity: .96; }
  18%      { transform: translateX(-50%) scaleY(1.08) scaleX(.94); opacity: 1;   }
  37%      { transform: translateX(-48%) scaleY(.94)  scaleX(1.04); opacity: .9;  }
  58%      { transform: translateX(-52%) scaleY(1.06) scaleX(.97); opacity: .98; }
  76%      { transform: translateX(-50%) scaleY(.97)  scaleX(1.02); opacity: .93; }
}

/* — marble pass, used in Kitchen — */
.ph-marble {
  background:
    radial-gradient(60% 50% at 28% 22%, rgba(240,233,220,.18), transparent 68%),
    radial-gradient(40% 30% at 78% 70%, rgba(196,154,98,.10), transparent 70%),
    linear-gradient(135deg, #1f1f1d 0%, #131312 50%, #060606 100%);
}
.ph-marble::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(122deg, transparent 36%, rgba(240,233,220,.07) 37%, transparent 39%),
    linear-gradient(118deg, transparent 60%, rgba(240,233,220,.05) 61%, transparent 62%),
    linear-gradient(152deg, transparent 24%, rgba(196,154,98,.06) 25%, transparent 27%),
    linear-gradient(98deg,  transparent 78%, rgba(240,233,220,.04) 79%, transparent 80%);
  filter: blur(.6px);
}
.ph .glass {
  position: absolute; left: 50%; top: 55%; transform: translate(-50%,-50%);
  width: 46%; height: 60%;
  background:
    radial-gradient(50% 22% at 50% 28%, rgba(10,10,10,.85), transparent 62%),
    radial-gradient(8% 32% at 50% 72%, rgba(10,10,10,.7), transparent 60%);
  filter: blur(.4px);
}
.ph .liquid {
  position: absolute; left: 50%; top: 32%; transform: translate(-50%,-50%);
  width: 26%; height: 13%;
  background: radial-gradient(100% 100% at 50% 30%, #d4ad7a, #5b2e10 80%);
  border-radius: 50%; box-shadow: 0 0 28px rgba(255,196,128,.45);
}
.ph .plate {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,233,220,.14) 0%, rgba(240,233,220,.04) 60%, transparent 70%);
  box-shadow: 0 0 0 1px rgba(240,233,220,.06);
}
.ph .plate::before {
  content: ""; position: absolute; left: 32%; top: 38%; width: 36%; height: 18%;
  background: radial-gradient(#d4ad7a 0%, #6b1f25 80%);
  border-radius: 50%; filter: blur(.6px); transform: rotate(-12deg);
}

/* ── Editorial ──────────────────────────────────────────── */
.editorial { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 880px) {
  .editorial { grid-template-columns: 5fr 6fr; gap: 88px; align-items: start; }
  .editorial.flip { grid-template-columns: 6fr 5fr; }
}
.editorial figure { aspect-ratio: 4 / 5; margin: 0; }

.editorial-body p { margin: 0 0 22px; color: var(--bone-dim); font-size: 16px; line-height: 1.72; text-wrap: pretty; }
.editorial-body p.dropcap::first-letter,
.editorial-body p.lede::first-letter {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 5em; line-height: .84;
  float: left; padding: 6px 14px 0 0; color: var(--brass);
}
.pullquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px,3.6vw,38px); line-height: 1.2; color: var(--bone);
  margin: 36px 0; padding: 24px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-wrap: balance;
}
.pullquote::before { content: "\201C\00A0"; color: var(--bordeaux-warm); }
.pullquote::after  { content: "\00A0\201D"; color: var(--bordeaux-warm); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 18px 44px;
  font-family: var(--sans); font-weight: 400; font-size: 10.5px;
  letter-spacing: .34em; text-transform: uppercase;
  border: 1px solid var(--brass); position: relative; overflow: hidden;
  min-height: 52px; transition: color .4s, box-shadow .4s;
}
.btn-primary { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-primary::before, .btn-ghost::before {
  content: ""; position: absolute; inset: 0;
  background: var(--brass); transform: translateY(101%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1); z-index: -1;
}
.btn-primary:hover { color: var(--ink); box-shadow: var(--glow-brass); }
.btn-primary:hover::before { transform: translateY(0); }
.btn-ghost { color: var(--brass); }
.btn-ghost:hover { color: var(--ink); box-shadow: var(--glow-brass); }
.btn-ghost:hover::before { transform: translateY(0); }

.arrow-r {
  display: inline-block; width: 22px; height: 1px; background: currentcolor; position: relative;
}
.arrow-r::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentcolor; border-right: 1px solid currentcolor;
  transform: rotate(45deg);
}

.link-italic {
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--bone);
  border-bottom: 1px solid var(--bone-dim); padding-bottom: 3px;
  transition: color var(--t-fast), border-color var(--t-fast), letter-spacing var(--t-fast);
}
.link-italic:hover { color: var(--brass); border-bottom-color: var(--brass); letter-spacing: .006em; }

.chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 20px;
  border: 1px solid var(--line-strong); color: var(--bone-dim);
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  transition: color .3s, border-color .3s, background .3s;
  min-height: 44px;
}
.chip:hover { color: var(--bone); border-color: var(--brass); background: rgba(196,154,98,.06); }

.list-foot {
  margin-top: 36px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}

/* ══════════════════════════════════════════════════════════
   COCKTAIL / ITEM LIST GRID
   ══════════════════════════════════════════════════════════ */
.list-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .list-grid { grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
}
.list-item {
  padding: 32px 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding .4s, background .4s;
}
@media (min-width: 720px) {
  .list-item { padding: 44px 36px; border-right: 1px solid var(--line); }
  .list-item:nth-child(2n) { border-right: 0; }
}
.list-item:hover { padding-left: 8px; background: rgba(196,154,98,.022); }
@media (min-width: 720px) { .list-item:hover { padding-left: 40px; } }

.list-item .top { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-bottom: 8px; }
.list-item .name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px,3.6vw,36px); line-height: 1.1;
  color: var(--bone); letter-spacing: -.006em; margin: 0;
}
.list-item .price { font-family: var(--mono); font-size: 11px; letter-spacing: .24em; color: var(--brass); flex-shrink: 0; }
.list-item .note { font-size: 14px; color: var(--bone-dim); line-height: 1.58; margin: 0 0 10px; max-width: 48ch; }
.list-item .build {
  font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bone-faint); overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .55s, opacity .35s, margin .4s;
}
.list-item:hover .build,
.list-item:focus-within .build { max-height: 60px; opacity: 1; margin-top: 6px; }
.list-item .num {
  position: absolute; top: 32px; right: 0;
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em; color: var(--bone-faint);
}
@media (min-width: 720px) { .list-item .num { right: 36px; top: 44px; } }

/* ══════════════════════════════════════════════════════════
   MENU SECTIONS (food + cocktail pages)
   ══════════════════════════════════════════════════════════ */
.menu-section { padding: 64px 0; border-bottom: 1px solid var(--line); }
.menu-section:last-of-type { border-bottom: 0; }
@media (min-width: 880px) { .menu-section { padding: 96px 0; } }

.menu-cat-head { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 36px; }
.menu-cat-head .num {
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--brass);
  display: flex; align-items: center; gap: 14px;
}
.menu-cat-head .num::after { content: ""; flex: 1; height: 1px; background: var(--line-brass); max-width: 120px; }
.menu-cat-head h2 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(34px,5vw,58px); line-height: 1.04;
  margin: 0; color: var(--bone); letter-spacing: -.012em;
}
.menu-cat-head .desc { margin-top: 6px; max-width: 52ch; color: var(--bone-dim); font-size: 14px; line-height: 1.62; }

.menu-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.menu-list li {
  padding: 22px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto; gap: 14px 24px;
  align-items: baseline; position: relative;
  transition: padding .35s, background .35s;
}
.menu-list li:hover { padding-left: 8px; background: rgba(196,154,98,.022); }
.menu-list .dish-name {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px,2.4vw,25px); color: var(--bone); line-height: 1.2;
}
.menu-list .dish-desc { grid-column: 1 / -1; font-size: 13px; color: var(--bone-dim); line-height: 1.58; max-width: 60ch; margin: 0; }
.menu-list .px { font-family: var(--mono); font-size: 11px; letter-spacing: .24em; color: var(--brass); white-space: nowrap; }
.menu-list .leader { display: none; }
@media (min-width: 720px) {
  .menu-list li { grid-template-columns: auto 1fr auto; gap: 0 18px; }
  .menu-list .leader { display: block; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
  .menu-list .dish-desc { grid-column: 1 / 4; margin-top: 6px; }
}

.menu-meta {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr; gap: 20px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--bone-dim); line-height: 1.85;
}
.menu-meta b { color: var(--bone); font-weight: 500; }
@media (min-width: 880px) { .menu-meta { grid-template-columns: repeat(3,1fr); gap: 40px; } }

/* ══════════════════════════════════════════════════════════
   COCKTAIL LIST · editorial run (CocktailMenu.cshtml)
   ══════════════════════════════════════════════════════════ */
.ck-list {
  list-style: none; margin: 48px 0 0; padding: 0;
}
.ck-item {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border-top: 1px solid var(--line);
  transition: border-color .3s;
  overflow: hidden;
}
.ck-item:last-child { border-bottom: 1px solid var(--line); }
.ck-item:hover { border-top-color: var(--line-brass); }

@media (min-width: 700px) {
  .ck-item               { flex-direction: row; min-height: 340px; }
  .ck-item:nth-child(even) { flex-direction: row-reverse; }
}

.ck-body {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
  padding: 36px 0 36px;
}
@media (min-width: 700px)  { .ck-body { padding: 40px 48px 40px 0; } }
@media (min-width: 700px) .ck-item:nth-child(even) .ck-body { padding: 40px 0 40px 48px; }

.ck-n {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass);
}
.ck-top {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 20px;
}
.ck-name {
  margin: 0;
  font-family: var(--serif); font-weight: 300; font-style: normal;
  font-size: clamp(28px, 3.8vw, 48px); line-height: 1.0;
  color: var(--bone); letter-spacing: -.012em;
}
.ck-name em { font-style: italic; color: var(--bone-dim); }
.ck-price {
  flex-shrink: 0;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .22em; color: var(--brass);
}
.ck-note {
  margin: 0;
  font-size: 14px; line-height: 1.65; color: var(--bone-dim);
  max-width: 52ch;
}
.ck-build {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--bone-faint);
}
.ck-allergens {
  margin-top: 14px;
  padding: 6px 0 6px 10px;
  border-left: 1px solid var(--line-brass);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .08em; color: var(--bone-faint);
  line-height: 1.6;
}
.ck-allergens b {
  display: inline-block; margin-right: 7px;
  font-weight: 500; font-size: 7.5px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass);
}
.ck-photo {
  width: 100%; height: 260px; flex-shrink: 0;
  background-size: cover; background-position: center;
}
@media (min-width: 700px)  { .ck-photo { width: 340px; height: auto; } }
@media (min-width: 1024px) { .ck-photo { width: 420px; } }

.ck-photo-break {
  height: 360px; margin: 64px 0; border-radius: 2px;
}
@media (min-width: 880px) { .ck-photo-break { height: 480px; } }

.classics-note {
  margin-top: 64px; padding: 32px 36px;
  border: 1px solid var(--line-brass);
  background: linear-gradient(135deg, rgba(196,154,98,.04) 0%, transparent 60%);
}
.cn-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--brass); margin: 0 0 16px;
}
.cn-body {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2.4vw, 26px); line-height: 1.52;
  color: var(--bone); margin: 0 0 16px;
}
.cn-sub {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--bone-faint); margin: 0; line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════
   COCKTAIL GRID · all cocktails get photos (dense, gridded)
   ══════════════════════════════════════════════════════════ */
.cocktail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px;
  margin-top: 8px;
}
@media (min-width: 560px)  { .cocktail-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px 20px; } }
@media (min-width: 880px)  { .cocktail-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 22px; } }
@media (min-width: 1200px) { .cocktail-grid { grid-template-columns: repeat(4, 1fr); gap: 44px 28px; } }

.cocktail-card {
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.cocktail-card:hover, .cocktail-card:focus-within { transform: translateY(-2px); }

.cocktail-photo {
  aspect-ratio: 1 / 1; margin: 0;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color .4s, box-shadow .4s;
}
.cocktail-card:hover .cocktail-photo,
.cocktail-card:focus-within .cocktail-photo {
  border-color: var(--line-brass);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
}
.cocktail-photo::after {
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}
.cocktail-card:hover .cocktail-photo::after,
.cocktail-card:focus-within .cocktail-photo::after { opacity: .85; transform: none; }

.cocktail-meta { display: flex; flex-direction: column; gap: 6px; }
.cocktail-meta .num {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .28em; color: var(--brass);
}
.cocktail-meta .top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
}
.cocktail-meta .name {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.8vw, 21px); line-height: 1.12;
  color: var(--bone); letter-spacing: -.004em;
}
.cocktail-meta .price {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; color: var(--brass);
  white-space: nowrap; flex-shrink: 0;
}
.cocktail-meta .note {
  margin: 0;
  font-size: 12.5px; color: var(--bone-dim); line-height: 1.5;
}
.cocktail-meta .build {
  margin-top: 2px;
  font-family: var(--mono); font-size: 8.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--bone-faint);
  line-height: 1.55;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s, opacity .35s, margin .35s;
}
.cocktail-card:hover .cocktail-meta .build,
.cocktail-card:focus-within .cocktail-meta .build {
  max-height: 80px; opacity: 1; margin-top: 6px;
}

/* ══════════════════════════════════════════════════════════
   DISH FEATURE · one photographed sample per food section
   FoodMenu only. Photo + body in a 2-col split (desktop),
   stacked on mobile. `.flip` alternates the photo side.
   ══════════════════════════════════════════════════════════ */
.dish-feature {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin: 0 0 32px;
}
@media (min-width: 720px) {
  .dish-feature {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: center;
    margin: 0 0 48px;
  }
  .dish-feature.flip { grid-template-columns: 7fr 5fr; }
  .dish-feature.flip .dish-feature-photo { order: 2; }
}

.dish-feature-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-brass);
  position: relative; overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(196,154,98,.10),
    0 18px 60px rgba(0,0,0,.5);
}
/* Always-visible caption on featured plates */
.dish-feature-photo::after {
  opacity: 1; transform: none;
  font-size: 10px; letter-spacing: .26em;
  left: 16px; bottom: 14px;
  color: var(--bone);
}
.dish-feature-photo::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.18) 0%, transparent 32%, transparent 58%, rgba(0,0,0,.6) 100%);
  pointer-events: none;
}

.dish-feature-body {
  display: flex; flex-direction: column; gap: 12px;
}
.dish-feature-body .num {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .32em; text-transform: uppercase; color: var(--brass);
}
.dish-feature-body .num::before {
  content: "^"; color: var(--brass); opacity: .55;
  margin-right: .55em; font-size: .9em;
}
.dish-feature-body .top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  margin-top: 4px;
}
.dish-feature-body .name {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.6vw, 38px); line-height: 1.02;
  color: var(--bone); letter-spacing: -.01em;
}
.dish-feature-body .price {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: .24em; color: var(--brass);
  white-space: nowrap; flex-shrink: 0;
}
.dish-feature-body .note {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(15px, 1.7vw, 18px); line-height: 1.5;
  color: var(--bone-dim); max-width: 44ch;
}

/* ── Image breaks between menu sections ─────────────────── */

/* Sits between/after .menu-section blocks. Bone-dim border, soft brass-edged */
.menu-break {
  display: block; margin: 56px 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
}
@media (min-width: 880px) { .menu-break { margin: 88px 0; aspect-ratio: 21 / 8; } }

/* Hero variant — slightly brass-bordered, larger, captioned always-on */
.menu-break.hero {
  aspect-ratio: 16 / 9;
  border-color: var(--line-brass);
  box-shadow:
    inset 0 0 0 1px rgba(196,154,98,.16),
    0 18px 60px rgba(0,0,0,.5);
}
.menu-break.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,.18) 0%, transparent 32%, transparent 58%, rgba(0,0,0,.62) 100%);
  z-index: 1;
}
.menu-break.hero::after {
  /* override the base .ph::after default opacity so caption is always visible */
  opacity: 1; transform: none;
  font-size: 11px; letter-spacing: .28em;
  left: 22px; bottom: 22px;
  color: var(--bone);
}
.menu-break .g-num {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em;
  color: var(--brass); opacity: .9;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

/* "Band" wrapper for the hero image right under page-hero — gives it the
   same wrap padding as the rest of the page without a section heading. */
.menu-image-band { padding: 32px 0 0; }
@media (min-width: 880px) { .menu-image-band { padding: 48px 0 0; } }

/* Paired image break — two frames side-by-side on tablet+, stacked on mobile */
.menu-break-pair {
  margin: 56px 0;
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
.menu-break-pair > figure {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
@media (min-width: 720px) {
  .menu-break-pair { grid-template-columns: 1fr 1fr; gap: 16px; }
  .menu-break-pair > figure { aspect-ratio: 1 / 1; }
}
@media (min-width: 880px) { .menu-break-pair { margin: 88px 0; } }

/* ── Kitchen tabs ────────────────────────────────────────── */
.kitchen-nav {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line-brass);
  margin-bottom: 56px;
}
.ktab {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--bone-faint); background: none; border: none;
  padding: 14px 20px 13px; cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .18s, border-color .18s;
}
.ktab:hover { color: var(--bone); }
.ktab.active { color: var(--brass); border-bottom-color: var(--brass); }
@media (min-width: 560px) { .ktab { padding: 14px 28px 13px; } }

/* Photo strip — five frames, now sits after the panel header */
.photo-strip {
  margin: 0 0 56px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
}
.photo-strip > figure {
  margin: 0; position: relative; overflow: hidden;
  border: 1px solid var(--line-brass);
  aspect-ratio: 2 / 3;
  background-size: cover; background-position: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
@media (max-width: 719px) {
  .photo-strip {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 10px; padding-bottom: 8px; scrollbar-width: none;
    margin-left: calc(var(--wrap-pad, 24px) * -1);
    margin-right: calc(var(--wrap-pad, 24px) * -1);
    padding-left: var(--wrap-pad, 24px);
    padding-right: var(--wrap-pad, 24px);
  }
  .photo-strip::-webkit-scrollbar { display: none; }
  .photo-strip > figure {
    flex: 0 0 72vw; aspect-ratio: 3 / 2; scroll-snap-align: start;
  }
}
@media (min-width: 720px) and (max-width: 879px) {
  .photo-strip { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .photo-strip > figure { aspect-ratio: 3 / 2; }
}
@media (min-width: 880px) { .photo-strip { margin-bottom: 72px; gap: 14px; } }

/* ══════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════ */
.gallery { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; gap: 12px; }
  .gallery-hero { grid-column: span 6; grid-row: span 3; }
  .gallery-wide { grid-column: span 4; grid-row: span 2; }
  .gallery-small { grid-column: span 2; grid-row: span 2; }
}
.gframe {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4 / 3; transition: transform .8s cubic-bezier(.2,.7,.2,1); cursor: pointer;
}
@media (min-width: 880px) { .gframe { aspect-ratio: auto; } }
/* neutralize the desktop inline spans on smaller viewports */
@media (max-width: 879px) {
  .gallery .gframe[style] { grid-column: auto !important; grid-row: auto !important; }
  .gallery .gframe.gallery-hero { grid-column: 1 / -1 !important; }
}
.gframe::after {
  content: attr(data-cap); position: absolute; left: 14px; bottom: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--bone); opacity: .78;
  transition: opacity .4s;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.gframe:hover::after { opacity: 1; }
.gframe::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,.55));
  opacity: 0; transition: opacity .4s;
}
.gframe:hover::before { opacity: 1; }
.gframe:hover { transform: scale(1.014); }
.gframe .num,
.gframe .g-num {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .2em;
  color: var(--bone); opacity: .5; text-shadow: 0 1px 4px rgba(0,0,0,.7);
  z-index: 2;
}

/* — Gallery hero frame (panoramic, brass-edged) — */
.gframe.gallery-hero {
  border-color: var(--line-brass);
  box-shadow:
    inset 0 0 0 1px rgba(196,154,98,.18),
    0 18px 60px rgba(0,0,0,.55),
    0 0 80px rgba(196,154,98,.08);
}
.gframe.gallery-hero::before {
  background:
    linear-gradient(rgba(0,0,0,.18) 0%, transparent 32%, transparent 58%, rgba(0,0,0,.62) 100%);
  opacity: 1;
}
.gframe.gallery-hero .g-num {
  font-size: 11px; letter-spacing: .3em; color: var(--brass);
  opacity: .9; top: 18px; right: 20px;
}
.gframe.gallery-hero::after {
  font-size: 11px; letter-spacing: .28em; left: 22px; bottom: 22px;
  opacity: 1; transform: none; color: var(--bone);
}

/* ══════════════════════════════════════════════════════════
   GALLERY · section heads & credit (Gallery.cshtml)
   ══════════════════════════════════════════════════════════ */
.gallery-head {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin: 0 0 28px;
}
.gallery-head .num {
  font-family: var(--mono); font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--brass);
  display: flex; align-items: center; gap: 14px;
}
.gallery-head .num::after {
  content: ""; flex: 1; height: 1px; background: var(--line-brass); max-width: 100px;
}
.gh-body { position: relative; }
.gh-body h2 {
  margin: 0 0 8px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.8vw, 44px); line-height: 1.02;
  color: var(--bone); letter-spacing: -.01em;
}
.gh-body p {
  margin: 0; max-width: 56ch;
  font-size: 14px; color: var(--bone-dim); line-height: 1.62;
}
.gh-count {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--bone-faint);
}
@media (min-width: 880px) {
  .gallery-head {
    grid-template-columns: 200px 1fr;
    gap: 48px; align-items: baseline;
    margin: 0 0 40px;
  }
  /* push the frame-count to the right edge of the body column on desktop */
  .gh-body { display: grid; grid-template-columns: 1fr auto; gap: 0 32px; align-items: end; }
  .gh-body h2  { grid-column: 1; grid-row: 1; }
  .gh-body p   { grid-column: 1; grid-row: 2; }
  .gh-count    { grid-column: 2; grid-row: 1 / 3; align-self: end; margin-top: 0; }
}
/* Vertical rhythm between successive gallery groups */
.gallery + .gallery-head { margin-top: 80px; }
@media (min-width: 880px) { .gallery + .gallery-head { margin-top: 120px; } }

.gallery-credit {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 64px 0 16px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--bone-faint); text-align: center;
}
.gallery-credit .ln {
  flex: 1; height: 1px; background: var(--line-brass); max-width: 100px;
}
@media (max-width: 599px) {
  .gallery-credit { font-size: 8.5px; letter-spacing: .22em; gap: 10px; }
  .gallery-credit .ln { max-width: 28px; }
}

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,.96);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox .stage {
  width: min(960px, 94vw); aspect-ratio: 4 / 3; position: relative;
  border: 1px solid var(--line-brass);
  box-shadow:
    inset 0 0 0 1px rgba(196,154,98,.10),
    0 30px 90px rgba(0,0,0,.6);
}
.lightbox .meta {
  position: fixed; left: 0; right: 0; bottom: 20px; padding: 0 28px;
  display: flex; justify-content: space-between; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--bone-dim);
}
.lightbox .meta .lb-cap { color: var(--bone); }
.lightbox .meta .lb-idx { color: var(--brass); }
.lightbox .close,
.lightbox .nav-arrow {
  position: absolute;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  background: rgba(8,6,4,.62);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
          backdrop-filter: blur(8px) saturate(1.2);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 22px; line-height: 1;
  transition: color .3s, border-color .3s, background .3s;
}
.lightbox .close { top: 22px; right: 22px; font-size: 18px; }
.lightbox .nav-arrow { top: 50%; transform: translateY(-50%); font-size: 28px; }
.lightbox .nav-arrow.prev { left: 22px; }
.lightbox .nav-arrow.next { right: 22px; }
.lightbox .nav-arrow:hover, .lightbox .close:hover,
.lightbox .nav-arrow:focus-visible, .lightbox .close:focus-visible {
  border-color: var(--brass); color: var(--brass); background: rgba(8,6,4,.86);
  outline: none;
}

/* ══════════════════════════════════════════════════════════
   EVENTS
   ══════════════════════════════════════════════════════════ */
.events-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) {
  .events-grid { grid-template-columns: repeat(3,1fr); border-left: 1px solid var(--line); }
}
.event {
  padding: 32px 0; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; transition: background .4s;
}
@media (min-width: 720px) { .event { padding: 44px 36px; border-right: 1px solid var(--line); } }
.event:hover { background: rgba(196,154,98,.036); }
.event .when { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--brass); }
.event .act {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px,3.8vw,38px); line-height: 1.04; color: var(--bone); margin: 0;
}
.event .blurb { font-size: 14px; color: var(--bone-dim); line-height: 1.58; flex: 1; max-width: 38ch; }
.event .tag { font-family: var(--mono); font-size: 9px; letter-spacing: .24em; color: var(--bone-faint); text-transform: uppercase; }

.event-row {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  padding: 48px 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 880px) { .event-row { grid-template-columns: 200px 5fr 4fr; gap: 48px; align-items: start; } }
.event-row .date { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; color: var(--brass); text-transform: uppercase; line-height: 1.9; }
.event-row .date b { color: var(--bone); font-weight: 500; display: block; font-size: 13px; }
.event-row h3 {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px,3.6vw,42px); line-height: 1.04; margin: 0 0 12px;
}
.event-row p { color: var(--bone-dim); font-size: 15px; line-height: 1.62; margin: 0 0 18px; max-width: 50ch; }
.event-row .meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--bone-dim); line-height: 1.95; padding-left: 0;
}
.event-row .meta b { color: var(--bone); font-weight: 500; }
.event-row .meta b.price { color: var(--bordeaux-warm); letter-spacing: .18em; }
@media (min-width: 880px) { .event-row .meta { padding-left: 36px; border-left: 1px solid var(--line); } }

/* ══════════════════════════════════════════════════════════
   RESERVE CTA SECTION
   ══════════════════════════════════════════════════════════ */
.reserve {
  position: relative; padding: 96px var(--pad);
  background:
    radial-gradient(60% 60% at 50% 0%,   rgba(196,154,98,.13), transparent 72%),
    radial-gradient(50% 50% at 90% 100%, rgba(139,31,56,.22),  transparent 70%),
    radial-gradient(40% 40% at  8% 100%, rgba(139,31,56,.14),  transparent 68%),
    linear-gradient(#0a0604 0%, #100508 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden;
}
@media (min-width: 880px) { .reserve { padding: 140px var(--pad-lg); } }
.reserve::before, .reserve::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; height: 52px;
}
.reserve::before { top: 0;    background: linear-gradient(var(--brass), var(--bordeaux)); }
.reserve::after  { bottom: 0; background: linear-gradient(var(--bordeaux), var(--brass)); }

.reserve-grid {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 56px;
}
@media (min-width: 880px) {
  .reserve-grid { grid-template-columns: 6fr 5fr; gap: 96px; align-items: start; }
}

.reserve-letter {}
.r-eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 24px;
}
.r-eyebrow::before {
  content: "^"; color: var(--brass); opacity: .65;
  margin-right: .55em;
}
.r-greeting {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(17px, 1.9vw, 22px); color: var(--bordeaux-warm);
  margin: 0 0 18px; letter-spacing: .01em;
}
.r-greeting em { font-style: italic; color: var(--bone); font-weight: 300; }
.r-body {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5.8vw, 58px); line-height: 1.06;
  letter-spacing: -.014em; color: var(--bone); margin: 0 0 32px;
  text-wrap: balance; max-width: 22ch;
}
.r-body em {
  font-style: italic; font-weight: 400; color: var(--brass-warm);
}
.r-signoff {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--bone-dim); margin: 0;
}
.r-signoff i { color: var(--bone-faint); }
.r-signoff .r-mark {
  color: var(--brass); font-style: normal; margin-right: 8px;
}

/* — Reservation card on the right — */
.reserve-card {
  position: relative;
  padding: 24px 24px 22px;
  border: 1px solid var(--line-brass);
  background: linear-gradient(180deg, rgba(196,154,98,.05) 0%, rgba(8,4,5,.55) 100%);
  box-shadow:
    0 30px 80px rgba(0,0,0,.5),
    inset 0 0 0 1px rgba(8,6,5,.5);
}
.reserve-card::before, .reserve-card::after {
  content: ""; position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--brass); border-radius: 50%;
  background: var(--ink);
}
.reserve-card::before { top: -6px; left: 22px; }
.reserve-card::after  { bottom: -6px; right: 22px; }

.card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-brass);
  margin-bottom: 8px;
}
.card-key {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--brass);
}
.card-num {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--bone-faint);
}

.card-spec { margin: 0 0 24px; }
.card-spec > div {
  display: grid; grid-template-columns: 1fr auto;
  gap: 14px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.card-spec > div:last-child { border-bottom: 0; }
.card-spec dt {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--bone-dim);
}
.card-spec dd {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 15.5px; color: var(--bone); text-align: right; line-height: 1.32;
}
.card-spec dd a {
  border-bottom: 1px solid var(--line-brass);
  transition: color .25s, border-color .25s;
}
.card-spec dd a:hover { color: var(--brass); border-color: var(--brass); }

.card-foot {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line-brass);
}
.reserve-slots {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 22px;
}
@media (min-width: 520px) {
  .reserve-slots { grid-template-columns: repeat(3, 1fr); }
}
.slot-chip {
  min-height: 74px;
  padding: 13px 12px 12px;
  border: 1px solid var(--line);
  background: rgba(240,233,220,.025);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color .3s, background .3s, transform .3s;
}
.slot-chip:hover {
  border-color: var(--line-brass);
  background: rgba(196,154,98,.055);
  transform: translateY(-2px);
}
.slot-chip span {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.slot-chip strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--bone);
}
.card-foot .btn-primary,
.card-foot .btn-ghost {
  flex: 1 1 140px;
  padding: 14px 18px;
  min-height: 48px;
  font-size: 9.5px; letter-spacing: .3em;
}

/* ══════════════════════════════════════════════════════════
   CONTACT / FIND
   ══════════════════════════════════════════════════════════ */
.find-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 880px) { .find-grid { grid-template-columns: 5fr 6fr; gap: 88px; align-items: start; } }

.info-block { display: flex; flex-direction: column; gap: 32px; }
.info-block dl { margin: 0; }
.info-block dt { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.info-block dd { margin: 0; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 22px; color: var(--bone); line-height: 1.45; }
.info-block dd small { display: block; margin-top: 6px; font-family: var(--sans); font-style: normal; font-weight: 300; font-size: 13px; color: var(--bone-dim); }
.info-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.map {
  aspect-ratio: 5 / 4; border: 1px solid var(--line);
  background:
    radial-gradient(60% 60% at 35% 45%, rgba(196,154,98,.09), transparent 72%),
    linear-gradient(#0d0d0d, #040404);
  position: relative; overflow: hidden;
}
.map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,233,220,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,233,220,.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map svg.streets { position: absolute; inset: 0; width: 100%; height: 100%; stroke: rgba(240,233,220,.16); fill: none; stroke-width: 1; }
.map .pin { position: absolute; left: 42%; top: 48%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; pointer-events: none; }
.map .pin .cap-icon { width: 20px; height: 12px; border-top: 2px solid var(--brass); border-right: 2px solid var(--brass); transform: rotate(-45deg); }
.map .pin .ring { width: 10px; height: 10px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 6px rgba(196,154,98,.2), 0 0 0 14px rgba(196,154,98,.08); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(196,154,98,.2), 0 0 0 14px rgba(196,154,98,.08); }
  50%       { box-shadow: 0 0 0 10px rgba(196,154,98,.1), 0 0 0 22px rgba(196,154,98,.03); }
}
.map .pin .pin-label { margin-top: 18px; font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--bone); background: rgba(8,8,8,.72); padding: 4px 10px; border: 1px solid var(--brass); }
.map .scale { position: absolute; bottom: 14px; right: 14px; font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-dim); display: flex; align-items: center; gap: 8px; }
.map .scale::before { content: ""; width: 24px; height: 1px; background: var(--bone-dim); }

/* ── Forms ──────────────────────────────────────────────── */
.contact-form { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 640px; }
@media (min-width: 680px) { .contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } }
.field label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 12px 0; font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--bone);
  transition: border-color .3s; border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--brass); }
.field textarea { min-height: 120px; resize: vertical; font-family: var(--serif); font-style: italic; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg,transparent 50%,var(--brass) 50%), linear-gradient(135deg,var(--brass) 50%,transparent 50%);
  background-position: right 6px center, right 0 center;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 24px;
}
.field select option { background: var(--ink); color: var(--bone); }

/* ══════════════════════════════════════════════════════════
   PEOPLE GRID (about page)
   ══════════════════════════════════════════════════════════ */
.people-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 600px) { .people-grid { grid-template-columns: repeat(3,1fr); gap: 24px; } }
.person { display: flex; flex-direction: column; gap: 14px; }
.person figure { aspect-ratio: 4 / 5; margin: 0; }
.person .person-name { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--bone); }
.person p { font-size: 13px; color: var(--bone-dim); line-height: 1.58; margin-top: 8px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer.colophon { border-top: 1px solid var(--line); padding: 48px var(--pad) 72px; }
@media (min-width: 880px) { footer.colophon { padding: 88px var(--pad-lg) 64px; } }

/* ── Map band, candle-tinted (subtle, footer-scale) ─────── */
.colo-map {
  max-width: var(--max); margin: 0 auto 40px;
}
@media (min-width: 880px) { .colo-map { margin-bottom: 56px; } }

.colo-map-frame {
  position: relative;
  height: 180px;
  border: 1px solid var(--line);
  background: #0a0807;
  overflow: hidden;
}
@media (min-width: 720px)  { .colo-map-frame { height: 220px; } }
@media (min-width: 1100px) { .colo-map-frame { height: 260px; } }

.colo-map-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(.9) hue-rotate(200deg) saturate(.5) brightness(.92) contrast(1.04);
}
.colo-map-frame::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 50% 50%, transparent 0%, rgba(8,6,4,.22) 70%, rgba(8,6,4,.42) 100%);
  pointer-events: none;
}

/* small candle-pin marker */
.colo-map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -90%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none; z-index: 2;
}
.colo-map-pin .cap-mark {
  width: 12px; height: 8px;
  border-top: 1.5px solid var(--brass);
  border-right: 1.5px solid var(--brass);
  transform: rotate(-45deg);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.6));
}
.colo-map-pin .ring {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brass);
  box-shadow:
    0 0 0 3px rgba(196,154,98,.2),
    0 0 12px rgba(255,180,90,.5);
  animation: pulse 2.8s ease-in-out infinite;
}

/* compact CTA at the corner */
.colo-map-cta {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--bone);
  background: rgba(8,6,4,.7);
  backdrop-filter: blur(6px) saturate(1.2);
  border: 1px solid var(--line);
  transition: color .3s, border-color .3s;
}
.colo-map-cta:hover { color: var(--brass); border-color: var(--line-brass); }
.colo-map-cta .arrow-r { width: 14px; }

.colo-map-cap {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin-top: 14px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--bone-faint);
  text-align: center;
}
.colo-map-cap > span:nth-child(2) { color: var(--bone-dim); }
.colo-map-cap .ln {
  flex: 1; height: 1px; background: var(--line); max-width: 60px;
}
@media (max-width: 599px) {
  .colo-map-cap { font-size: 8.5px; letter-spacing: .2em; gap: 8px; }
  .colo-map-cap .ln { max-width: 20px; }
}

/* ── Footer grid ─────────────────────────────────────────
   Columns, in order:
     1) logo (img only)   2) Visit   3) Reach   4) Social   5) Wander
   Desktop is 5-col; mobile reflows.
   ──────────────────────────────────────────────────────── */
.colo-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px;
}

.colo-col h4 {
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 12px; font-weight: 500;
}
.colo-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.colo-col a, .colo-col span {
  font-family: var(--sans); font-weight: 300; font-size: 12.5px;
  letter-spacing: .04em; color: var(--bone-dim); transition: color .25s;
}
.colo-col a:hover { color: var(--bone); }

/* ─── MOBILE (< 880px) ─── */
@media (max-width: 879px) {
  /* 1) Logo — full-width, centered, separator below */
  .colo-grid > .colo-col:nth-child(1) {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .colo-grid > .colo-col:nth-child(1) img {
    height: 32px; width: auto; display: inline-block; opacity: .92;
  }

  /* 2 + 3) Visit & Reach — already in the 2-col grid by default */

  /* 4) Social — full-width row, horizontal links */
  .colo-grid > .colo-col:nth-child(4) {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .colo-grid > .colo-col:nth-child(4) h4 { margin-bottom: 14px; }
  .colo-grid > .colo-col:nth-child(4) ul {
    flex-direction: row;
    justify-content: center;
    gap: 28px;
  }

  /* 5) Wander — hidden on mobile (redundant with the hamburger sheet) */
  .colo-grid > .colo-col:nth-child(5) { display: none; }
}

/* ─── DESKTOP (≥ 880px) ─── */
@media (min-width: 880px) {
  .colo-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .colo-grid > .colo-col:nth-child(1) img {
    height: 56px; width: auto; opacity: .92;
  }
  .colo-col h4  { margin-bottom: 18px; }
  .colo-col ul  { gap: 10px; }
  .colo-col a,
  .colo-col span { font-size: 13px; }
}

/* ─── Bottom row ─── */
.colo-foot {
  max-width: var(--max); margin: 28px auto 0; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--bone-faint);
}
@media (max-width: 879px) {
  /* hide the "Set in Cormorant…" typographic credit on mobile */
  .colo-foot > span:nth-child(2) { display: none; }
}
@media (min-width: 880px) {
  .colo-foot { margin-top: 48px; padding-top: 32px; font-size: 9px; gap: 16px; letter-spacing: .24em; }
}
.top-link { display: inline-flex; align-items: center; gap: 10px; }

/* ══════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR
   ══════════════════════════════════════════════════════════ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  height: var(--bar-h);
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 10px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--bone-dim);
  transition: color .25s, background .25s;
}
.mobile-bar a:active { background: rgba(240,233,220,.04); }
.mobile-bar a + a { border-left: 1px solid var(--line); }
.mobile-bar a.primary { color: var(--brass); border-left: 1px solid rgba(139,31,56,.3); }
.mobile-bar a.primary:active { background: rgba(139,31,56,.1); }
@media (min-width: 880px) { .mobile-bar { display: none; } }

/* ══════════════════════════════════════════════════════════
   HERO · lede italic accent
   ══════════════════════════════════════════════════════════ */
.hero-mark .lede i { font-style: italic; color: var(--bone-dim); }

/* ══════════════════════════════════════════════════════════
   THE BAR · blended list (signature + the rest, one composition)
   ══════════════════════════════════════════════════════════ */
.bar-blend {
  position: relative; overflow: hidden;
  padding: 88px 0;
  background:
    radial-gradient(70% 60% at 22% 22%, rgba(196,154,98,.28), transparent 66%),
    radial-gradient(45% 55% at 86% 14%, rgba(139,31,56,.28), transparent 70%),
    radial-gradient(40% 40% at 14% 96%, rgba(45,58,46,.18), transparent 70%),
    linear-gradient(180deg, #100806 0%, #0a0504 60%, #050203 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 880px) { .bar-blend { padding: 140px 0; } }

.bar-head { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 44px; position: relative; z-index: 2; }
.bar-head .num { font-family: var(--mono); font-size: 9.5px; letter-spacing: .26em; color: var(--brass); }
.bar-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 6vw, 68px); line-height: 1;
  letter-spacing: -.012em; margin: 0; color: var(--bone); text-wrap: balance;
}
.bar-head h2 em { font-style: italic; color: var(--bone-dim); font-weight: 300; }
@media (min-width: 880px) {
  .bar-head { grid-template-columns: 200px 1fr; gap: 48px; align-items: baseline; margin-bottom: 72px; }
}

.sig-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 24% 32%, rgba(255,196,128,.18) 0px, transparent 1.3%),
    radial-gradient(circle at 78% 22%, rgba(255,196,128,.12) 0px, transparent 1.5%),
    radial-gradient(circle at 32% 78%, rgba(255,196,128,.14) 0px, transparent 1.1%),
    radial-gradient(circle at 86% 68%, rgba(255,196,128,.10) 0px, transparent 1.4%);
  filter: blur(2px); animation: flicker 9s ease-in-out infinite;
}

/* — The blended grid: stage on the left, one numbered list on the right — */
.blend-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 880px) {
  .blend-grid { grid-template-columns: 5fr 7fr; gap: 88px; align-items: start; }
  .blend-stage { position: sticky; top: 96px; align-self: start; }
}

.blend-quote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.9vw, 21px); line-height: 1.42;
  color: var(--bone-dim); margin: 28px 0 0; padding-left: 18px;
  border-left: 1px solid var(--line-brass);
  text-wrap: balance;
}
.blend-quote cite {
  display: block; margin-top: 12px;
  font-family: var(--mono); font-style: normal; font-size: 9.5px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--bone-faint);
}

/* — The list itself — */
.blend-list {
  list-style: none; margin: 0; padding: 0;
}
.blend-item {
  position: relative;
  padding: 28px 0 32px;
  transition: padding .4s, background .4s;
}
.blend-item .b-rule {
  height: 1px; background: var(--line);
  margin-bottom: 22px;
  transition: background .4s, height .4s;
}
.blend-item.featured .b-rule {
  background: linear-gradient(90deg, var(--brass), rgba(196,154,98,.05));
  height: 1px;
}
.blend-item:hover .b-rule { background: var(--line-brass); }
.blend-item:hover { background: rgba(196,154,98,.022); }

.b-num {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 10px;
}
.featured .b-num { color: var(--brass-warm); }

.b-top {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 18px; margin-bottom: 10px;
}
.b-name {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.6vw, 36px); line-height: 1.06;
  color: var(--bone); letter-spacing: -.008em;
}
.featured .b-name {
  font-weight: 300; font-size: clamp(40px, 6.8vw, 72px);
  line-height: .96; letter-spacing: -.018em;
}
.featured .b-name em {
  font-style: italic; font-weight: 400; color: var(--brass-warm);
}
.b-price {
  flex-shrink: 0;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .24em; color: var(--brass);
}
.featured .b-price { font-size: 13px; }

.b-note {
  margin: 0 0 14px;
  font-size: 14px; line-height: 1.62; color: var(--bone-dim);
  max-width: 56ch;
}
.featured .b-note {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(17px, 1.9vw, 21px); line-height: 1.5;
  color: var(--bone-dim); max-width: 44ch; margin-bottom: 22px;
}

/* — The build "ticket" that lives in the left stage column — */
.stage-ticket {
  margin-top: 24px;
  padding: 18px 20px 14px;
  border: 1px solid var(--line-brass);
  background:
    linear-gradient(180deg, rgba(196,154,98,.04) 0%, rgba(8,6,4,.4) 100%);
  position: relative;
}
.stage-ticket::before,
.stage-ticket::after {
  content: ""; position: absolute;
  width: 8px; height: 8px;
  border: 1px solid var(--brass); border-radius: 50%;
  background: var(--ink);
}
.stage-ticket::before { top: -5px;    left: 16px; }
.stage-ticket::after  { bottom: -5px; right: 16px; }
.ticket-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .34em; text-transform: uppercase; color: var(--brass);
  padding-bottom: 12px; margin-bottom: 6px;
  border-bottom: 1px solid var(--line-brass);
}
.ticket-num { color: var(--bone-faint); }
.ticket-spec { margin: 0; }
.ticket-spec > div {
  display: grid; grid-template-columns: 76px 1fr;
  gap: 14px; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.ticket-spec > div:last-child { border-bottom: 0; }
.ticket-spec dt {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--brass);
}
.ticket-spec dd {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 13.5px; color: var(--bone); line-height: 1.34;
}

.b-meta {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--bone-faint);
}

/* — Glass illustration — */
.sig-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(196,154,98,.32), transparent 66%),
    linear-gradient(180deg, #1a0e07 0%, #050302 100%);
  overflow: hidden;
}
.sig-stage::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 18% at 50% 18%, rgba(255,210,160,.25), transparent 70%);
  filter: blur(8px);
}
.sig-glass {
  position: absolute; left: 50%; top: 52%;
  transform: translate(-50%, -50%);
  width: 54%; aspect-ratio: 3 / 5;
}
.sig-glass .sig-liquid {
  position: absolute; left: 6%; right: 6%; top: 14%; height: 44%;
  background:
    linear-gradient(180deg,
      rgba(218,177,108,.92) 0%,
      rgba(176,108,52,.95) 38%,
      rgba(115,38,40,.96) 78%,
      rgba(56,18,18,.98) 100%);
  border-radius: 4px 4px 6px 6px / 4px 4px 50% 50%;
  box-shadow:
    inset 0 18px 24px rgba(255,220,170,.18),
    inset 0 -20px 26px rgba(20,8,4,.6),
    0 0 60px rgba(196,154,98,.35);
}
.sig-glass .sig-liquid::before {
  content: ""; position: absolute; left: 24%; top: -3px; right: 24%; height: 8px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(255,228,184,.6), transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,210,160,.4);
}
.sig-glass .sig-shine {
  position: absolute; left: 14%; top: 16%; width: 8%; height: 38%;
  background: linear-gradient(180deg, rgba(255,240,210,.5), transparent 80%);
  filter: blur(2px); border-radius: 50%;
}
.sig-glass .sig-stem {
  position: absolute; left: 49.4%; top: 58%; width: 1.2%; height: 26%;
  background: linear-gradient(180deg, rgba(240,233,220,.10), rgba(240,233,220,.04));
}
.sig-glass .sig-base {
  position: absolute; left: 30%; bottom: 0; width: 40%; height: 4%;
  background: radial-gradient(50% 100% at 50% 0%, rgba(240,233,220,.16), transparent 80%);
  border-radius: 50%;
}
.sig-caption {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--bone); opacity: .72;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}


/* ══════════════════════════════════════════════════════════
   ALMANAC · Z&aacute;kynthos, tonight  (field-notebook strip)
   ══════════════════════════════════════════════════════════ */
.almanac {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--ink) 0%, #050203 100%);
}
@media (min-width: 880px) { .almanac { padding: 96px 0; } }

.alm-head {
  display: flex; align-items: center; gap: 18px;
  justify-content: center;
  margin-bottom: 36px;
  color: var(--brass);
}
.alm-head .ln {
  flex: 1; height: 1px; background: var(--line-brass); max-width: 120px;
}
.alm-title {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .4em; text-transform: uppercase; color: var(--brass);
  white-space: nowrap;
}
@media (min-width: 880px) { .alm-head { margin-bottom: 56px; } .alm-head .ln { max-width: 180px; } }

.alm-row {
  margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.alm-field {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.alm-field dt {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--brass);
}
.alm-field dd {
  margin: 0;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px); color: var(--bone); line-height: 1.2;
}
.alm-sub {
  font-family: var(--mono); font-style: normal; font-size: 11px;
  letter-spacing: .22em; color: var(--bone-faint); margin-left: 6px;
}
@media (min-width: 880px) {
  .alm-row {
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .alm-field {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 32px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
    align-items: start;
  }
  .alm-field:first-child { padding-left: 0; }
  .alm-field:last-child  { border-right: 0; padding-right: 0; }
}

/* ── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation: none !important; transition-duration: .01ms !important; }
}
