/* ====================================================================
   Dissolved Solids / Soluble Solids - Option 3 (State Toggle)
   Single layout that flips between Soluble (light/day) and Dissolved
   (dark/night). All theme values live in CSS custom properties keyed
   on [data-state] at <html> root.
   ==================================================================== */

/* ---------- Base tokens (constant across states) ---------- */
:root {
  /* Dissolved Solids palette - sunlit cream, coral, turquoise pop */
  --d-bg:   #faf3df;     /* sunlit cream */
  --d-bg-2: #f3e8c8;     /* deeper sunlit cream */
  --d-fg:   #0e0e0d;     /* ink */
  --d-accent:   #ff6b4a; /* coral - primary pop */
  --d-accent-2: #4cb8b2; /* soft turquoise - secondary pop */

  /* Soluble Solids palette - midnight indigo, antique gold, deep ruby (tarot) */
  --s-bg:   #1a1232;     /* deep midnight indigo */
  --s-bg-2: #261d44;     /* lifted indigo */
  --s-fg:   #f3ecdf;     /* warm ivory cream */
  --s-accent:   #c9a44a; /* antique gold */
  --s-accent-2: #a23a3a; /* deep ruby / oxblood */

  --rule-ink:    rgba(14, 14, 13, .14);
  --rule-soft-ink:  rgba(14, 14, 13, .08);
  --rule-paper:  rgba(243, 236, 223, .16);
  --rule-soft-paper: rgba(243, 236, 223, .08);

  --muted-ink:   rgba(14, 14, 13, .55);
  --muted-paper: rgba(243, 236, 223, .62);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --pad-x: clamp(20px, 4vw, 80px);
  --max-w: 1400px;
}

/* ---------- Theme variables driven by data-state ---------- */
:root[data-state="soluble"] {
  --bg: var(--s-bg);
  --bg-2: var(--s-bg-2);
  --fg: var(--s-fg);
  --accent: var(--s-accent);
  --accent-2: var(--s-accent-2);
  --rule: var(--rule-paper);
  --rule-soft: var(--rule-soft-paper);
  --muted: var(--muted-paper);
  --ph-bg: var(--s-bg-2);
  --ph-stripe: rgba(243, 236, 223, .06);
  --btn-fg: var(--s-bg);
}

:root[data-state="dissolved"] {
  --bg: var(--d-bg);
  --bg-2: var(--d-bg-2);
  --fg: var(--d-fg);
  --accent: var(--d-accent);
  --accent-2: var(--d-accent-2);
  --rule: var(--rule-ink);
  --rule-soft: var(--rule-soft-ink);
  --muted: var(--muted-ink);
  --ph-bg: var(--d-bg-2);
  --ph-stripe: rgba(14, 14, 13, .07);
  --btn-fg: var(--d-bg);
}

/* The "invert" wrapper flips theme to the opposite state's palette.
   Used on the preview-other section. */
[data-state="soluble"] .invert {
  --bg: var(--d-bg);
  --bg-2: var(--d-bg-2);
  --fg: var(--d-fg);
  --accent: var(--d-accent);
  --accent-2: var(--d-accent-2);
  --rule: var(--rule-ink);
  --rule-soft: var(--rule-soft-ink);
  --muted: var(--muted-ink);
  --ph-bg: var(--d-bg-2);
  --ph-stripe: rgba(14, 14, 13, .07);
  --btn-fg: var(--d-bg);
}
[data-state="dissolved"] .invert {
  --bg: var(--s-bg);
  --bg-2: var(--s-bg-2);
  --fg: var(--s-fg);
  --accent: var(--s-accent);
  --accent-2: var(--s-accent-2);
  --rule: var(--rule-paper);
  --rule-soft: var(--rule-soft-paper);
  --muted: var(--muted-paper);
  --ph-bg: var(--s-bg-2);
  --ph-stripe: rgba(243, 236, 223, .06);
  --btn-fg: var(--s-bg);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px; /* clear sticky .bar when jumping to anchors */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-variation-settings: 'opsz' 20, 'SOFT' 20, 'WONK' 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}
img { max-width: 100%; height: auto; }

/* Fraunces: dial up the playful axes for big display moments */
.display,
.section-h,
.po-h,
.custom-h {
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
}
.tagline,
.lede,
.po-lede,
.custom-body {
  font-variation-settings: 'opsz' 36, 'SOFT' 50, 'WONK' 0;
}
.foot-k {
  font-variation-settings: 'opsz' 72, 'SOFT' 70, 'WONK' 1;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* Interaction polish: accessible focus + text selection */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}

/* Nav + footer link underline-on-hover (subtle) */
.nav a,
.foot a {
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}
.nav a:hover,
.foot a:hover { border-bottom-color: currentColor; opacity: 1; }

/* Content swap: show the variant that matches current state */
[data-state="soluble"] [data-show="dissolved"],
[data-state="dissolved"] [data-show="soluble"] { display: none !important; }

/* ---------- Placeholder image (.ph) ---------- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--ph-stripe) 0 1px, transparent 1px 8px),
    var(--ph-bg);
  border: 1px solid var(--rule-soft);
  display: flex; align-items: flex-end; justify-content: flex-start;
  transition: background-color .35s ease;
}
.ph .cap {
  font-family: var(--mono); font-size: 10px; letter-spacing: .04em;
  color: var(--muted); text-transform: uppercase;
  padding: 8px 10px;
}

/* ====================================================================
   Header: sticky toggle bar
   ==================================================================== */
/* Wide-screen gutters: cap bar-page content width so it doesn't stretch
   edge-to-edge on large monitors. Full-bg sections (.bar, .preview-other)
   stay edge-to-edge but auto-gutter their inner content via padding. */
.readout,
.hero,
.menu,
.gallery,
.custom-drinks,
.foot {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.bar {
  position: sticky; top: 0; z-index: 5;
  display: grid;
  /* 1fr auto 1fr keeps the toggle truly centered between brand and nav,
     even when brand image and nav links have different widths. */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  /* Full-width bg + border, content auto-gutters on wide screens. */
  padding: 12px max(var(--pad-x), calc((100vw - var(--max-w)) / 2));
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  transition: background .35s ease, border-color .35s ease;
}

/* Outlet brand logo (left of toggle) */
.brand {
  display: inline-flex; align-items: center;
  justify-self: start;
  transition: opacity .15s ease, transform .25s ease;
}
.brand img {
  display: block;
  height: 52px; width: auto;
  transition: filter .35s ease;
}
/* On the cream Dissolved theme, the ds-logo.png has a white square bg.
   Multiply blend drops the white and leaves the cube + droplet on paper. */
[data-state="dissolved"] .brand img { mix-blend-mode: multiply; }
/* On the dark Soluble theme, the ss-logo.jpg has a black square bg that
   doesn't quite match the ink background. Screen blend drops the black
   and leaves only the white wireframe. */
[data-state="soluble"] .brand img { mix-blend-mode: screen; }
.brand:hover { opacity: .82; transform: rotate(-3deg); }

.nav {
  display: flex; gap: 22px;
  justify-self: end;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
}
.nav a { transition: opacity .15s; }
.nav a:hover { opacity: .6; }

/* The switch */
.toggle {
  justify-self: center;
  position: relative;
  display: inline-flex; align-items: center;
  padding: 7px;
  border: 1.5px solid var(--fg);
  border-radius: 999px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color .35s ease, background .35s ease, box-shadow .25s ease;
}
.toggle:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, .08); }
.toggle .knob {
  position: absolute;
  top: 7px; bottom: 7px;
  left: 7px;
  width: calc(50% - 7px);
  background: var(--fg);
  border-radius: 999px;
  transition: left .55s cubic-bezier(.34, 1.56, .64, 1),
              background .35s ease,
              transform .25s ease;
}
.toggle:active .knob { transform: scaleX(1.06); }
[data-state="soluble"] .toggle .knob { left: 50%; }

.toggle .label {
  position: relative; z-index: 1;
  padding: 18px 56px;
  font-family: var(--mono); font-size: 15px;
  letter-spacing: .2em; text-transform: uppercase;
  min-width: 280px; text-align: center;
  transition: color .3s ease;
  white-space: nowrap;
  text-decoration: none;
}
a.label { cursor: pointer; }
a.label:hover { opacity: .8; }
[data-state="soluble"] .label-soluble { color: var(--bg); }
[data-state="soluble"] .label-dissolved { color: var(--fg); }
[data-state="dissolved"] .label-soluble { color: var(--fg); }
[data-state="dissolved"] .label-dissolved { color: var(--bg); }

/* ====================================================================
   Readout strip
   ==================================================================== */
.readout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  transition: border-color .35s ease, color .35s ease;
}
.readout-cell {
  padding: 14px var(--pad-x);
  display: flex; gap: 14px; align-items: center;
  border-right: 1px solid var(--rule);
}
.readout-cell:last-child { border-right: 0; }
.readout-cell .v { color: var(--fg); transition: color .35s ease; }

/* ====================================================================
   Hero
   ==================================================================== */
.hero {
  padding: 32px var(--pad-x) 56px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: start;
}
.hero-copy { min-width: 0; }
.eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  transition: color .35s ease;
}
.display {
  margin: 18px 0 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 12vw, 168px);
  line-height: .88;
  letter-spacing: -.025em;
}
.display i { color: var(--accent); transition: color .35s ease; }

.lede {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  max-width: 560px;
}
.lede b {
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  transition: color .35s ease;
}

/* Tagline (Dissolved Solids brand line) appears between h1 and lede */
.tagline {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--accent);
  transition: color .35s ease;
}

/* Soluble menu is an editorial block, not a list */
.menu-soluble {
  max-width: 760px;
  padding: 16px 0 8px;
}
.menu-soluble-body {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
}
.menu-soluble .hint-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}

/* Accolade badge: appears under hero h1 on Dissolved state */
.badge {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 11px 4px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color .35s ease, color .35s ease;
}

.hero-cta {
  margin-top: 36px;
  display: flex; gap: 18px; align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 22px;
  background: var(--fg);
  color: var(--btn-fg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .35s ease, color .35s ease, opacity .15s, transform .15s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-primary svg { flex: 0 0 auto; }

/* Instagram variant of btn-primary - iconic IG gradient so visitors recognise it instantly.
   Sized larger than btn-primary so the IG follow CTA stands out. */
.btn-ig {
  background: linear-gradient(135deg, #515BD4 0%, #8134AF 30%, #DD2A7B 55%, #FEDA77 90%);
  color: #ffffff;
  padding: 18px 30px;
  font-size: 13px;
  letter-spacing: .18em;
  min-height: 58px;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(221, 42, 123, .25);
  transition: opacity .15s, filter .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn-ig:hover {
  opacity: 1;
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(221, 42, 123, .38);
}
.btn-ig svg { width: 18px; height: 18px; }

.hint {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: .08em;
}
.hint-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.hint-link:hover { color: var(--fg); border-bottom-color: var(--rule); }

.hero-image .ph { aspect-ratio: 4 / 5; width: 100%; }
.hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-2);
}

/* ====================================================================
   Menu
   ==================================================================== */
.menu {
  padding: 72px var(--pad-x);
  border-top: 1px solid var(--rule);
  transition: border-color .35s ease;
}
.menu-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px; gap: 24px;
}
.section-h {
  margin: 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1; letter-spacing: -.02em;
}
.section-h i { font-style: italic; }
.menu-stamp {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.menu-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
.menu-col-head {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fg);
  transition: border-color .35s ease;
}
.menu-row {
  display: grid; grid-template-columns: 1fr auto;
  column-gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.menu-name {
  font-family: var(--serif); font-size: 24px; line-height: 1.05;
}
.menu-desc {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); margin-top: 4px;
}
.menu-price {
  font-family: var(--mono); font-size: 13px;
}

/* Visible menu rendering for the Dissolved bar page (replaces the old
   3-column .menu-grid layout). Editorial type, no prices. */
.menu-dissolved {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 12px;
}
.menu-section {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.menu-section-h {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 8px;
  font-weight: 500;
}
.menu-section-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 640px;
}
.menu-section-note a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  transition: color .2s, border-color .2s;
}
.menu-section-note a:hover { color: var(--accent); }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px 32px;
}
.menu-items-custom {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.menu-item {
  padding: 0;
}
.menu-item-h {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 60, 'SOFT' 80, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.menu-item-h i { color: var(--accent); font-style: italic; }
.menu-item-h a {
  color: var(--fg);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.menu-item-h a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.menu-item-desc {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.menu-section-snacks {
  /* Snacks gets the visual menu graphic */
}
.snacks-figure {
  margin: 12px 0 0;
  max-width: 560px;
  border-radius: 4px;
  overflow: hidden;
}
.snacks-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 639px) {
  .menu-dissolved { gap: 40px; }
  .menu-items { grid-template-columns: 1fr; gap: 18px; }
}

/* ====================================================================
   Custom Drinks: off-menu WhatsApp pitch
   ==================================================================== */
.custom {
  padding: 96px var(--pad-x);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px;
  transition: border-color .35s ease;
}
.custom-mark {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  transition: color .35s ease;
}
.custom-h {
  margin: 20px 0 0;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .95; letter-spacing: -.02em;
  max-width: 14ch;
}
.custom-h i { color: var(--accent); font-style: italic; transition: color .35s ease; }
.custom-body {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  max-width: 600px;
}
/* The customised cocktail 3-step grid */
.custom-steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: border-color .35s ease;
}
.custom-step { min-width: 0; }
.step-k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 14px;
  transition: color .35s ease, border-color .35s ease;
}
.step-list {
  list-style: none; margin: 0; padding: 0;
  font-family: var(--serif);
  font-size: 19px; line-height: 1.4;
}
.step-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
}
.step-price {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.step-list-compact li {
  display: block; padding: 4px 0;
}

.custom-cta {
  margin-top: 36px;
  display: flex; gap: 18px; align-items: center;
  flex-wrap: wrap;
}

/* ====================================================================
   Preview-other (inverted teaser)
   ==================================================================== */
.preview-other {
  background: var(--bg);
  color: var(--fg);
  /* Full-width bg, content auto-gutters on wide screens. */
  padding: 72px max(var(--pad-x), calc((100vw - var(--max-w)) / 2));
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  box-sizing: border-box;
  transition: background .35s ease, color .35s ease;
}
.po-copy { min-width: 0; }
.po-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .95; letter-spacing: -.02em;
  margin-top: 14px;
}
.po-h i { color: var(--accent); font-style: italic; transition: color .35s ease; }
.po-lede {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.3;
  max-width: 460px;
  color: color-mix(in srgb, var(--fg) 78%, transparent);
}
.po-actions {
  margin-top: 28px;
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.btn-accent {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 22px;
  background: var(--accent);
  color: var(--btn-fg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s, background .35s ease, color .35s ease, transform .15s;
}
.btn-accent:hover { opacity: .9; transform: translateY(-1px); }

/* Section-level lede paragraph used under section-h on new gallery sections */
.section-lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 600px;
  margin: 18px 0 0;
  font-style: italic;
}

/* Builder pitch - sits between the 3-step customisation list and the WhatsApp design-drink CTAs */
.builder-pitch {
  margin: 32px 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.builder-pitch-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  margin: 0;
  flex: 1 1 280px;
  min-width: 0;
}

.btn-ghost {
  display: inline-flex; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 13px 20px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--rule);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--fg); }

.po-image .ph { aspect-ratio: 5 / 4; width: 100%; }
.po-photo {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: var(--bg-2);
}

/* ====================================================================
   Gallery section - drink photos
   ==================================================================== */
.gallery {
  padding: 96px var(--pad-x);
  border-top: 1px solid var(--rule);
  transition: border-color .35s ease;
}
.gallery-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.gallery-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  transition: color .35s ease;
}
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px;
}
.gallery-item { margin: 0; display: flex; flex-direction: column; }
.gallery-item img {
  display: block; width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-2);
  transition: opacity .25s, transform .25s;
}
.gallery-item img:hover { opacity: .92; transform: translateY(-2px); }
.gallery-item figcaption {
  margin-top: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1023px) {
  .gallery { padding: 72px var(--pad-x); }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .gallery-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ====================================================================
   Maps section - find both outlets
   ==================================================================== */
.maps {
  padding: 96px var(--pad-x) 72px;
  border-top: 1px solid var(--rule);
  transition: border-color .35s ease;
}
.maps-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 40px; gap: 24px; flex-wrap: wrap;
}
.maps-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  transition: color .35s ease;
}
.maps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.map-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--rule);
  background: var(--bg);
  transition: border-color .35s ease, background .35s ease;
}
.map-card-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--rule);
  transition: border-color .35s ease;
}
.map-card-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
  transition: color .35s ease;
}
.map-card-addr {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.35;
}
.map-card-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.map-card-link:hover { color: var(--fg); border-bottom-color: var(--rule); }
.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(.95);
}

/* ====================================================================
   Footer
   ==================================================================== */
.foot {
  padding: 56px var(--pad-x);
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-family: var(--mono); font-size: 11px;
  transition: border-color .35s ease;
}
.foot-bar {
  display: flex; flex-direction: column;
}
.foot-k {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1; letter-spacing: -.01em;
  color: var(--accent);
  margin-bottom: 18px;
  transition: color .35s ease;
}
.foot-v { margin-top: 6px; line-height: 1.6; }
.foot-v-serif {
  font-family: var(--serif); font-size: 20px; line-height: 1.3;
  color: var(--fg);
  margin-top: 4px;
}
.foot-hours { margin-top: 14px; color: var(--muted); }

.foot-links {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}
.foot-links a {
  color: var(--fg);
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.foot-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.foot-links span[aria-hidden] { opacity: .4; }

/* House picks block on bar pages, curated upsell from the menu */
.house-picks {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px dashed var(--rule);
}
.house-picks-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.house-picks-h {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 80, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.house-picks-h i { color: var(--accent); font-style: italic; }
.house-picks-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 24px;
}
.house-picks .menu-grid-cards { gap: 12px; }
.house-picks .menu-card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.house-picks-foot {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.house-picks-foot a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  transition: color .2s, border-color .2s;
}
.house-picks-foot a:hover { color: var(--accent); }

/* Similar-drinks cross-link block at the bottom of every cocktail page */
.similar-drinks {
  margin: 56px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.similar-drinks-h {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 80, 'SOFT' 60, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.similar-drinks-h i { color: var(--accent); font-style: italic; }
.similar-drinks-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 580px;
}

/* ====================================================================
   Responsive
   ==================================================================== */

/* Tablet */
@media (max-width: 1023px) {
  .bar { gap: 18px; }
  .brand img { height: 44px; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
    gap: 40px;
  }
  .hero-image .ph { aspect-ratio: 16 / 10; max-height: 520px; }
  .hero-photo { aspect-ratio: 16 / 10; max-height: 520px; }

  .menu-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .preview-other {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .po-image .ph { aspect-ratio: 16 / 10; }
  .po-photo { aspect-ratio: 16 / 10; }

  .toggle .label { padding: 14px 32px; min-width: 220px; font-size: 13px; letter-spacing: .16em; }
}

/* Follow grid stacks on tablet+ */
@media (max-width: 1023px) {
}

/* Phone */
@media (max-width: 639px) {
  .bar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 12px var(--pad-x);
  }
  .bar .nav { justify-content: center; flex-wrap: wrap; gap: 14px; }
  .brand img { height: 40px; }
  .logo { font-size: 20px; }
  .toggle { padding: 5px; }
  .toggle .knob { top: 5px; bottom: 5px; left: 5px; width: calc(50% - 5px); }
  [data-state="soluble"] .toggle .knob { left: 50%; }
  .toggle .label { padding: 14px 28px; min-width: 168px; font-size: 11px; letter-spacing: .14em; }
  .btn-primary { padding: 16px 24px; font-size: 12px; min-height: 48px; }
  .btn-accent { padding: 16px 24px; min-height: 48px; }
  .btn-ig { padding: 20px 28px; font-size: 13px; min-height: 60px; }
  .btn-ig svg { width: 20px; height: 20px; }

  .readout {
    grid-template-columns: 1fr 1fr;
  }
  .readout-cell {
    padding: 12px var(--pad-x);
    border-bottom: 1px solid var(--rule);
  }
  .readout-cell:nth-child(2) { border-right: 0; }
  .readout-cell:nth-child(3),
  .readout-cell:nth-child(4) { border-bottom: 0; }

  .hero { padding-top: 28px; gap: 32px; }
  .hero-cta { gap: 14px; }

  .menu-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .menu-grid { grid-template-columns: 1fr; gap: 28px; }
  .custom-steps { grid-template-columns: 1fr; gap: 20px; }
  .custom-step:last-child { grid-column: auto; }

  .preview-other { padding: 56px var(--pad-x); }
  .custom { padding: 72px var(--pad-x); }
  .maps { padding: 72px var(--pad-x) 56px; }
  .maps-grid { grid-template-columns: 1fr; gap: 20px; }
  .maps-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .map-frame { height: 300px; }
  .custom-cta { gap: 14px; }
  .po-actions { gap: 10px; }
  .custom-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .custom-step:last-child { grid-column: 1 / -1; }

  .foot {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Sticky mobile WhatsApp CTA - phone only, large + engagement focused */
.sticky-wa { display: none; }

@keyframes sticky-wa-pulse {
  0%, 100% {
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22),
                0 0 0 0 rgba(37, 211, 102, .55);
  }
  50% {
    box-shadow: 0 16px 32px rgba(0, 0, 0, .28),
                0 0 0 18px rgba(37, 211, 102, 0);
  }
}

@keyframes sticky-wa-rise {
  from { opacity: 0; transform: translateX(-50%) translateY(28px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 639px) {
  .sticky-wa {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: fixed;
    left: 50%;
    bottom: max(16px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 50;
    width: calc(100% - 28px);
    max-width: 380px;
    min-height: 56px;
    padding: 16px 22px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .22),
                0 0 0 0 rgba(37, 211, 102, .55);
    animation: sticky-wa-rise .55s .25s cubic-bezier(.34, 1.56, .64, 1) both,
               sticky-wa-pulse 2.6s 1s ease-in-out infinite;
    transition: box-shadow .25s ease, opacity .15s;
  }
  .sticky-wa:hover,
  .sticky-wa:focus-visible {
    box-shadow: 0 18px 36px rgba(0, 0, 0, .32),
                0 0 0 14px rgba(37, 211, 102, .15);
  }
  .sticky-wa-icon { flex: 0 0 auto; }
  .sticky-wa-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.15;
    text-align: left;
  }
  .sticky-wa-text strong {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
  }
  .sticky-wa-text small {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .12em;
    opacity: .92;
  }
}

/* Ultra-narrow phones (iPhone SE 1st gen, older Androids) */
@media (max-width: 359px) {
  .toggle { padding: 4px; }
  .toggle .knob { top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px); }
  [data-state="soluble"] .toggle .knob { left: 50%; }
  .toggle .label { padding: 12px 14px; min-width: 130px; font-size: 10px; letter-spacing: .1em; }
  .brand img { height: 36px; }
  .sticky-wa { width: calc(100% - 20px); padding: 14px 18px; }
  .sticky-wa-text strong { font-size: 13px; }
  .sticky-wa-text small { font-size: 9px; }
}

/* ====================================================================
   The Journal · /journal/ and /journal/[slug]/
   ==================================================================== */

.journal-body {
  color: var(--fg);
  background:
    radial-gradient(ellipse 70% 55% at 100% -10%,
      color-mix(in srgb, var(--accent) 7%, var(--bg-2)) 0%,
      transparent 65%),
    radial-gradient(ellipse 60% 50% at -10% 110%,
      color-mix(in srgb, var(--accent-2) 6%, var(--bg-2)) 0%,
      transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
}

.journal-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 24px;
}

.journal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad-x);
  border-bottom: 1px solid var(--rule);
  gap: 24px;
  flex-wrap: wrap;
}
.journal-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--fg);
}
.journal-wordmark span {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36, 'SOFT' 70, 'WONK' 1;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.journal-wordmark em {
  font-family: var(--mono);
  font-size: 9.5px;
  font-style: normal;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.journal-nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.journal-nav a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.journal-nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.journal-nav span { color: var(--muted); opacity: .5; }

.journal-mount {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px var(--pad-x) 96px;
}
.article-mount { max-width: 760px; }

.journal-hero { margin-bottom: 80px; }
.journal-hero h1 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(56px, 11vw, 132px);
  line-height: .9;
  letter-spacing: -.025em;
  margin: 0 0 32px;
}
.journal-manifesto {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36, 'SOFT' 50, 'WONK' 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  max-width: 660px;
  margin: 0;
}
.journal-manifesto b { font-weight: 400; font-style: italic; color: var(--accent); }
.journal-manifesto a {
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.journal-manifesto a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.journal-list { display: flex; flex-direction: column; gap: 0; }

.journal-card {
  border-top: 1px solid var(--rule);
  padding: 36px 0 8px;
}
.journal-card .card-link {
  display: block;
  transition: transform .2s ease;
}
.journal-card .card-link:hover { transform: translateY(-2px); }

.card-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.card-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 80, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 44px);
  line-height: 1;
  letter-spacing: -.015em;
  margin: 0 0 18px;
  max-width: 760px;
}
.card-title i { color: var(--accent); font-style: italic; }
.card-dek {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 620px;
}
.card-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-dot { opacity: .5; }

.journal-card-feature .card-title { font-size: clamp(40px, 6.4vw, 72px); }

.journal-foot {
  margin-top: 88px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}
.journal-foot a {
  color: var(--fg);
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.journal-foot a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Article page */

.article { margin: 0; }

.article-head { margin-bottom: 56px; }
.article-up {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  transition: color .2s;
}
.article-up:hover { color: var(--accent); }

.article-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 22px;
}

.article-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 22px;
}
.article-title i { color: var(--accent); font-style: italic; }

.article-dek {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36, 'SOFT' 50, 'WONK' 0;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.35;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 620px;
  font-style: italic;
}

.article-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.meta-dot { opacity: .5; }

.article-body {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 24, 'SOFT' 40, 'WONK' 0;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.7;
  max-width: 680px;
}
.article-body p { margin: 0 0 1.4em; }
.article-body .article-lede {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  margin-bottom: 1.6em;
  font-variation-settings: 'opsz' 48, 'SOFT' 60, 'WONK' 0;
}
.article-body h2 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 60, 'SOFT' 70, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 2.4em 0 .7em;
}
.article-body ul { margin: 0 0 1.4em; padding-left: 1.2em; }
.article-body li { margin-bottom: .5em; }
.article-body b { font-weight: 600; }
.article-body i { font-style: italic; }
.article-body a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  transition: color .2s, border-color .2s;
}
.article-body a:hover { color: var(--accent); }

.article-cta {
  margin: 2.6em 0;
  padding: 22px 28px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 1.55;
}
.article-cta p { margin: 0; }
.article-cta b { font-weight: 500; color: var(--fg); }
.article-cta a { color: var(--accent); border-bottom: 1px solid var(--accent); }

.article-foot {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.article-up-foot {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.article-up-foot a { color: var(--muted); transition: color .2s; }
.article-up-foot a:hover { color: var(--accent); }

/* "From the journal" preview block on bar pages */

.from-journal {
  padding: 88px var(--pad-x);
  border-top: 1px solid var(--rule);
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%,
      color-mix(in srgb, var(--accent) 5%, transparent) 0%,
      transparent 60%),
    var(--bg);
  position: relative;
}
.fj-head {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}
.fj-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.fj-h {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 90, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: .95;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.fj-h i { color: var(--accent); font-style: italic; }
.fj-lede {
  font-family: var(--serif);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0 auto;
  max-width: 580px;
}
.fj-card {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 36px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--bg-2);
  transition: transform .2s ease, border-color .2s ease, box-shadow .25s ease;
}
.fj-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}
.fj-card-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.fj-card-title {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 80, 'SOFT' 80, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 14px;
}
.fj-card-title i { color: var(--accent); font-style: italic; }
.fj-card-dek {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 20px;
}
.fj-card-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.fj-foot {
  margin: 36px auto 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.fj-foot a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.fj-foot a:hover { color: var(--accent); }

@media (max-width: 639px) {
  .journal-bar { padding: 18px var(--pad-x); }
  .journal-mount { padding: 40px var(--pad-x) 64px; }
  .journal-nav { font-size: 10px; gap: 8px; }
  .journal-hero { margin-bottom: 56px; }
  .article-head { margin-bottom: 36px; }
  .article-cta { padding: 18px 20px; }

  .from-journal { padding: 56px var(--pad-x); }
  .fj-card { padding: 24px 22px; }
  .fj-head { margin-bottom: 36px; }
}

/* ====================================================================
   Reservation form · /reserve/
   ==================================================================== */

.reserve-body {
  color: var(--fg);
  background:
    radial-gradient(ellipse 70% 55% at 100% -10%,
      color-mix(in srgb, var(--accent) 7%, var(--bg-2)) 0%,
      transparent 65%),
    radial-gradient(ellipse 60% 50% at -10% 110%,
      color-mix(in srgb, var(--accent-2) 6%, var(--bg-2)) 0%,
      transparent 60%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
}

.reserve-mount {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px var(--pad-x) 96px;
}

.reserve-hero { margin-bottom: 48px; }
.reserve-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 22px;
}
.reserve-hero h1 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 96px);
  line-height: .9;
  letter-spacing: -.025em;
  margin: 0 0 22px;
}
.reserve-hero h1 i { color: var(--accent); font-style: italic; }
.reserve-lede {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36, 'SOFT' 50, 'WONK' 0;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.45;
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.reserve-field {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reserve-field legend,
.reserve-field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
  margin-bottom: 2px;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
}
.reserve-field-full { grid-column: 1 / -1; }

.reserve-form input[type="text"],
.reserve-form input[type="tel"],
.reserve-form input[type="number"],
.reserve-form input[type="time"],
.reserve-form textarea {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 24, 'SOFT' 40;
  font-size: 17px;
  background: var(--bg-2);
  color: var(--fg);
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .2s ease, background .2s ease;
  -webkit-appearance: none;
}
.reserve-form input:focus,
.reserve-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.reserve-form input::placeholder,
.reserve-form textarea::placeholder {
  color: var(--muted);
  opacity: .65;
}
.reserve-form textarea { resize: vertical; min-height: 84px; font-size: 16px; }

/* Bar chips */
.bar-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bar-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: var(--bg-2);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background .2s, transform .15s;
}
.bar-chip:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.bar-chip.is-selected {
  background: var(--fg);
  color: var(--btn-fg);
  border-color: var(--fg);
}
.bar-chip-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.bar-chip-loc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  line-height: 1.3;
  opacity: .72;
}
.bar-chip.is-selected .bar-chip-loc { opacity: .85; }

/* Calendar */
.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0 8px;
}
.cal-month {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36, 'SOFT' 70, 'WONK' 1;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
}
.cal-nav {
  background: var(--bg-2);
  border: 1.5px solid var(--rule);
  color: var(--fg);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  font-size: 18px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }

.calendar {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-2);
}
.cal-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-header {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--rule);
}
.cal-cell {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  aspect-ratio: 1 / 1;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg);
  cursor: pointer;
  position: relative;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-cell:hover:not(:disabled):not(.cal-selected) {
  background: color-mix(in srgb, var(--accent-2) 14%, transparent);
  color: var(--fg);
}
.cal-row > .cal-cell:nth-child(7n) { border-right: 0; }
.cal-row:last-child .cal-cell { border-bottom: 0; }
.cal-empty {
  background: color-mix(in srgb, var(--rule) 30%, transparent);
  cursor: default;
}
.cal-closed {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in srgb, var(--accent-2) 18%, transparent) 0 2px,
      transparent 2px 8px);
  color: var(--muted);
  cursor: not-allowed;
  opacity: .85;
}
.cal-past {
  color: var(--muted);
  opacity: .35;
  cursor: not-allowed;
}
.cal-today { font-weight: 600; }
.cal-today::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.cal-selected {
  background: var(--fg);
  color: var(--btn-fg);
}
.cal-selected:hover { background: var(--fg); }

.cal-legend {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* Submit + errors */
.reserve-error {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, var(--bg-2));
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin: 0;
  border-radius: 2px;
}
.reserve-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  min-height: 56px;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  transition: filter .2s ease, transform .15s ease, box-shadow .2s ease;
  margin-top: 8px;
}
.reserve-submit:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

.reserve-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--muted);
  line-height: 1.55;
  margin: 8px 0 0;
}

/* Journal CTA component (used on hub + each article) */

.journal-cta {
  margin: 40px 0 0;
  padding: 36px 36px 32px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-2);
  text-align: center;
}
.journal-cta h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 60, 'SOFT' 80, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.journal-cta h3 i { color: var(--accent); font-style: italic; }
.journal-cta p {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.journal-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--rule);
  color: var(--fg);
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: border-color .2s, color .2s, transform .15s;
}
.cta-btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}
.cta-btn-primary {
  background: var(--fg);
  color: var(--btn-fg);
  border-color: var(--fg);
}
.cta-btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--btn-fg);
}

@media (max-width: 639px) {
  .reserve-mount { padding: 40px var(--pad-x) 64px; }
  .reserve-grid { grid-template-columns: 1fr; gap: 24px; }
  .bar-chips { grid-template-columns: 1fr; }
  .cal-cell { font-size: 12px; }
  .cal-month { font-size: 18px; }
  .journal-cta { padding: 28px 22px 24px; }
  .journal-cta-actions { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; }
}

/* Cocktail pages · /cocktails/[slug]/ */

.cocktail-figure {
  margin: 0 0 40px;
  border-radius: 6px;
  overflow: hidden;
}
.cocktail-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.cocktail-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 28px 24px;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: 6px;
  margin: 0 0 40px;
}
.spec-block { display: block; }
.spec-block .spec-h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 14px;
  font-weight: 500;
}
.spec-block ul,
.spec-block ol {
  margin: 0;
  padding-left: 1.2em;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.55;
}
.spec-block li {
  margin-bottom: .35em;
}
.spec-block ol li {
  margin-bottom: .55em;
}
.spec-block .spec-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--muted);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
}

@media (max-width: 639px) {
  .cocktail-spec {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 22px 20px 20px;
  }
}

/* Categorised menu listing on /cocktails/ */

.menu-cat-list {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.menu-cat-h {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 90, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.menu-cat-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 700px;
}
.menu-cat-note a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  transition: color .2s, border-color .2s;
}
.menu-cat-note a:hover { color: var(--accent); }

.menu-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.menu-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-2);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  color: var(--fg);
}
.menu-card:hover:not(.menu-card-plain) {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
}
.menu-card-plain {
  cursor: default;
}
.menu-card h3 {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 36, 'SOFT' 70, 'WONK' 1;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 6px;
  color: var(--fg);
}
.menu-card a:hover h3 { color: var(--accent); }
.menu-card p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 639px) {
  .menu-grid-cards { grid-template-columns: 1fr; }
  .menu-cat-list { margin-top: 40px; padding-top: 24px; }
}

/* Journal: topic strip + grouped sections + rabbit-hole link */

.journal-topics {
  margin: 28px 0 56px;
  padding: 14px 18px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  line-height: 1.5;
}
.journal-topics-label { color: var(--accent-2); }
.journal-topics a {
  color: var(--fg);
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.journal-topics a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.journal-topics span[aria-hidden] { opacity: .4; }

.journal-section {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 24px;
}
.journal-section:first-of-type { margin-top: 32px; }
.journal-section-h {
  font-family: var(--serif);
  font-variation-settings: 'opsz' 96, 'SOFT' 90, 'WONK' 1;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 14px;
}
.journal-section-h i { color: var(--accent); font-style: italic; }
.journal-section-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 640px;
}
.journal-section .journal-card:first-of-type { border-top: 0; padding-top: 8px; }

.journal-rabbit {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  background: var(--bg-2);
  border-radius: 0 6px 6px 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  max-width: 760px;
}
.journal-rabbit b {
  display: block;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 6px;
}
.journal-rabbit a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  transition: color .2s;
}
.journal-rabbit a:hover { color: var(--accent); }

@media (max-width: 639px) {
  .journal-section { margin-top: 48px; padding-top: 24px; }
  .journal-topics { font-size: 10px; padding: 12px 14px; }
  .journal-rabbit { font-size: 14px; padding: 14px 16px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body, .bar, .toggle, .toggle .knob, .toggle .label,
  .readout, .readout-cell .v, .eyebrow, .display i,
  .btn-primary, .btn-accent, .menu, .menu-col-head, .ph,
  .preview-other, .po-h i, .foot, .sticky-wa {
    transition: none !important;
    animation: none !important;
  }
  html { scroll-behavior: auto; }
}
