/* =========================================================================
   RICEBAR — "The Gazette" newspaper layer
   Built on top of colors_and_type.css brand tokens.
   Aesthetic: broadsheet front page. Black hairline rules, justified columns,
   drop caps, Abril Fatface nameplate. Pandan-forward; claypot reserved for
   the nameplate (logo) and the single most-important button only.
   ========================================================================= */

:root{
  --paper:      #f7edda;          /* rice cream — the newsprint */
  --paper-2:    #f1e4c8;          /* slightly deeper panel */
  --ink:        #161310;          /* near-black newsprint ink */
  --ink-soft:   #4a443b;
  --ink-faint:  #7c7468;
  --rule:       #1a1714;          /* rules are black, like a real paper */
  --rule-soft:  rgba(22,19,16,.26);
  --claypot:    #6b1918;
  --pandan:     #4f592f;          /* a touch richer than token for ink-on-paper */
  --pandan-deep:#3b4128;
  --pandan-tint:#e4e3cf;
}

*{ box-sizing:border-box; }
html,body{ margin:0; }
body{
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ display:block; max-width:100%; }
a{ color:inherit; }

/* subtle paper grain via layered radial dots — very faint, no AI texture */
body.paper::before{
  content:""; position:fixed; inset:0; pointer-events:none; z-index:0; opacity:.5;
  background-image:radial-gradient(rgba(22,19,16,.022) 1px, transparent 1.4px);
  background-size:4px 4px;
}
.wrap{ position:relative; z-index:1; }

/* ---------- shared shell ---------- */
.sheet{ max-width:1240px; margin:0 auto; padding:0 clamp(18px,4vw,52px); }

/* ---------- rules ---------- */
.rule{ border:0; border-top:1.5px solid var(--rule); margin:0; }
.rule-thick{ border:0; border-top:5px solid var(--rule); margin:0; }
.rule-double{ border:0; border-top:3px double var(--rule); height:6px;
  border-bottom:1.5px solid var(--rule); margin:0; }
.rule-hair{ border:0; border-top:1px solid var(--rule-soft); margin:0; }

/* ---------- type helpers ---------- */
.kicker{
  font-family:var(--font-body); font-weight:700; font-size:11.5px;
  letter-spacing:.22em; text-transform:uppercase; color:var(--pandan);
}
.kicker.claypot{ color:var(--claypot); }
.namesake{ font-family:var(--font-display-alt); color:var(--claypot); line-height:.92; }
.hed{
  font-family:var(--font-headline); font-weight:700; color:var(--ink);
  line-height:1.0; letter-spacing:-.02em;
}
.subhed{ font-family:var(--font-h1); font-weight:600; letter-spacing:-.01em; line-height:1.08; }
.deck{
  font-family:var(--font-body); font-style:italic; color:var(--ink-soft);
  font-size:clamp(16px,1.5vw,20px); line-height:1.5;
}
.byline{
  font-family:var(--font-body); font-weight:700; font-size:11px;
  letter-spacing:.16em; text-transform:uppercase; color:var(--ink-faint);
}
.caption{
  font-family:var(--font-body); font-style:italic; font-size:12.5px;
  color:var(--ink-faint); line-height:1.35;
}
.dropcap::first-letter{
  font-family:var(--font-display-alt); float:left; font-size:4.4em;
  line-height:.74; padding:6px 10px 0 0; color:var(--claypot);
}
.cols-2{ column-count:2; column-gap:30px; }
.cols-2 p{ margin:0 0 .9em; text-align:justify; hyphens:auto; }
.serifnum{ font-family:var(--font-headline); font-weight:700; font-feature-settings:"tnum"; }

/* =========================================================================
   TOP BAR (slim, sticky) — folio + nav + the one claypot button
   ========================================================================= */
.topbar{
  position:sticky; top:0; z-index:40; background:var(--paper);
}
.topbar .sheet{ display:flex; align-items:center; gap:18px; height:58px; }
.folio{
  display:flex; align-items:center; gap:9px;
  font-family:var(--font-headline); font-weight:700; font-size:22px;
  letter-spacing:-.04em; color:var(--claypot); text-decoration:none; white-space:nowrap;
}
.folio b{ color:var(--claypot); }
.folio-logo{ display:block; width:30px; height:30px; object-fit:contain; }
.topnav{ display:flex; gap:26px; margin-left:8px; }
.topnav a{
  font-weight:600; font-size:14px; color:var(--ink); text-decoration:none;
  padding:4px 0; border-bottom:2px solid transparent; transition:border-color .12s;
}
.topnav a:hover{ border-color:var(--pandan); }
.topbar .spacer{ flex:1; }

/* ---------- order dropdown (top bar) ---------- */
.order-menu{ position:relative; }
.order-trigger{ cursor:pointer; }
.order-trigger .caret{ width:13px !important; height:13px !important; margin-left:-2px; transition:transform .16s; }
.order-menu:hover .order-trigger .caret,
.order-menu.open .order-trigger .caret{ transform:rotate(180deg); }
.order-dropdown{
  position:absolute; top:calc(100% + 9px); right:0; min-width:236px;
  background:var(--paper); border:1.5px solid var(--rule);
  box-shadow:0 18px 40px rgba(74,15,14,.22);
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity .16s, transform .16s, visibility .16s; z-index:60;
}
.order-dropdown::before{ content:""; position:absolute; left:0; right:0; top:-11px; height:11px; }
.order-menu:hover .order-dropdown,
.order-menu:focus-within .order-dropdown,
.order-menu.open .order-dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.order-dropdown a{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  font-family:var(--font-body); font-weight:700; font-size:14px; color:var(--ink);
  text-decoration:none; padding:12px 15px; transition:background .12s, color .12s;
}
.order-dropdown a + a{ border-top:1px solid var(--rule-soft); }
.order-dropdown a:hover{ background:var(--pandan); color:#f7edda; }
.order-dropdown a .tag{ font-weight:700; font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-faint); }
.order-dropdown a:hover .tag{ color:rgba(247,237,218,.72); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-body); font-weight:700; font-size:14px;
  padding:12px 20px; border-radius:999px; border:1.5px solid transparent;
  cursor:pointer; text-decoration:none; white-space:nowrap; line-height:1;
  transition:transform .12s, background .15s, color .15s, border-color .15s;
}
.btn:active{ transform:scale(.97); }
.btn svg{ width:17px; height:17px; }
.btn-claypot{ background:var(--claypot); color:#f7edda; border-color:var(--claypot); }
.btn-claypot:hover{ background:#4a0f0e; border-color:#4a0f0e; }
.btn-pandan{ background:var(--pandan); color:#f7edda; border-color:var(--pandan); }
.btn-pandan:hover{ background:var(--pandan-deep); border-color:var(--pandan-deep); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:var(--paper); }
.btn-ghost{ background:transparent; color:var(--pandan); border-color:var(--rule-soft); }
.btn-ghost:hover{ background:var(--pandan-tint); border-color:var(--pandan); }
.btn-sm{ padding:9px 15px; font-size:13px; }
.btn-lg{ padding:16px 26px; font-size:15.5px; }
.btn-block{ width:100%; }

.hamb{ display:none; background:none; border:0; cursor:pointer; padding:6px; }
.hamb span{ display:block; width:22px; height:2px; background:var(--ink); margin:4px 0; }

/* =========================================================================
   MASTHEAD nameplate
   ========================================================================= */
.masthead{ padding:22px 0 0; text-align:center; }
.dateline{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  font-weight:600; font-size:12px; letter-spacing:.04em; color:var(--ink-soft);
  text-transform:uppercase; padding-bottom:10px; flex-wrap:wrap;
}
.dateline .mid{ letter-spacing:.18em; }
.nameplate{
  font-family:var(--font-display-alt); color:var(--claypot);
  font-size:clamp(64px,15.5vw,210px); line-height:.84; letter-spacing:-.015em;
  margin:14px 0 8px; text-transform:uppercase;
}
.strap{
  font-weight:600; font-size:clamp(12px,1.4vw,15px); letter-spacing:.34em;
  text-transform:uppercase; color:var(--pandan); margin:0 0 16px;
}

/* =========================================================================
   LEAD STORY
   ========================================================================= */
.lead{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:clamp(16px,2.2vw,34px);
  align-items:start; padding:20px 0 14px; }
.lead-hed{ font-size:clamp(44px,6.4vw,104px); }
.lead .deck{ margin:18px 0 22px; max-width:38ch; }
.lead-cta{ display:flex; flex-wrap:nowrap; gap:10px; margin-top:8px; }
.lead-cta .btn{ padding:13px 16px; font-size:13.5px; }
.lead-cta .btn svg{ width:16px; height:16px; }
.figure{ position:relative; margin-top:var(--hero-offset, 40px); }
.figure img{ width:100%; filter:drop-shadow(0 26px 30px rgba(74,15,14,.22)); }
.figure .caption{ margin-top:14px; padding-top:10px; border-top:1px solid var(--rule-soft); }
.stamp{
  position:absolute; width:122px; height:122px; border-radius:50%;
  background:var(--pandan); color:#f7edda; display:grid; place-content:center;
  text-align:center; transform:rotate(-9deg); top:-14px; right:-6px; z-index:2;
  box-shadow:0 10px 24px rgba(59,65,40,.28);
}
.stamp::after{ content:""; position:absolute; inset:7px; border:1px solid rgba(247,237,218,.5); border-radius:50%; }
.stamp .s1{ font-family:var(--font-headline); font-weight:700; font-size:13px; letter-spacing:.18em; }
.stamp .s2{ font-family:var(--font-script); font-size:26px; line-height:.8; margin-top:1px; }

/* hero carousel */
.hero-car{ position:relative; width:500px; height:500px; max-width:100%; margin:0; padding:0; }
.hc-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain;
  opacity:0; transition:opacity .55s ease; pointer-events:none;
  filter:drop-shadow(0 26px 30px rgba(74,15,14,.22)); }
.hc-img.is-on{ opacity:1; }
.hc-arrow{ position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:42px; height:42px; border-radius:50%; cursor:pointer;
  background:var(--paper); border:1.5px solid var(--rule); color:var(--ink);
  display:grid; place-items:center; box-shadow:0 6px 16px rgba(74,15,14,.16);
  transition:background .14s, color .14s; }
.hc-arrow svg{ width:20px; height:20px; }
.hc-arrow:hover{ background:var(--claypot); color:#f7edda; border-color:var(--claypot); }
.hc-prev{ left:-6px; }
.hc-next{ right:-6px; }
.hc-dots{ display:flex; justify-content:center; gap:8px; margin-top:14px; }
.hc-dot{ width:8px; height:8px; padding:0; border-radius:50%; cursor:pointer;
  background:transparent; border:1.5px solid var(--rule-soft); transition:all .14s; }
.hc-dot.on{ background:var(--claypot); border-color:var(--claypot); transform:scale(1.15); }

/* =========================================================================
   GENERIC SECTION HEADER
   ========================================================================= */
.sec-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin:0 0 18px; }
.sec-head h2{ font-family:var(--font-headline); font-weight:700;
  font-size:clamp(26px,3.4vw,46px); letter-spacing:-.02em; line-height:1; }
.more-link{ font-weight:700; font-size:14px; color:var(--pandan); text-decoration:none;
  border-bottom:2px solid var(--pandan); padding-bottom:2px; white-space:nowrap; }
.more-link:hover{ color:var(--pandan-deep); }
.section{ padding:30px 0; }

/* ---------- alternating bands ---------- */
.section.pandan{ background:var(--pandan); color:#f3eeda; padding:clamp(42px,5.2vw,72px) 0; }
.section.pandan .kicker{ color:#cdd3a8; }
.section.pandan .sec-head h2{ color:#f7edda; }

/* =========================================================================
   DELIVERY / "GET IT" BOX
   ========================================================================= */
.orderbox{ border:2.5px solid var(--rule); padding:clamp(18px,2.4vw,30px);
  background:var(--paper-2); }
.orderbox .grid{ display:grid; grid-template-columns:1.25fr 1fr 1fr; gap:0; }
.ordercol{ padding:8px clamp(14px,1.8vw,26px); }
.ordercol + .ordercol{ border-left:1px solid var(--rule-soft); }
.ordercol h3{ font-family:var(--font-h2); font-weight:600; font-size:19px; margin:0 0 4px; }
.ordercol .tagline{ font-size:13px; color:var(--ink-soft); line-height:1.45; margin:0 0 14px; min-height:38px; }
.ordercol.feature{ position:relative; }
.flag{ display:inline-block; font-weight:700; font-size:10.5px; letter-spacing:.14em;
  text-transform:uppercase; color:#f7edda; background:var(--pandan); padding:4px 10px;
  border-radius:999px; margin-bottom:10px; }

/* =========================================================================
   MENU PREVIEW GRID (editorial cutouts on paper, no cards)
   ========================================================================= */
.dish-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(20px,2.6vw,40px) clamp(18px,2.4vw,34px); }
.dish{ text-align:center; }
.dish .pic{ aspect-ratio:1/1; display:grid; place-items:center; margin-bottom:6px; }
.dish .pic img{ width:84%; filter:drop-shadow(0 16px 18px rgba(74,15,14,.18)); transition:transform .2s; }
.dish:hover .pic img{ transform:translateY(-4px) scale(1.02); }
.dish .nm{ font-family:var(--font-h2); font-weight:600; font-size:17px; letter-spacing:-.01em; }
.dish .ds{ font-size:12.5px; color:var(--ink-soft); line-height:1.4; margin:3px auto 6px; max-width:30ch; }
.dish .pr{ font-family:var(--font-headline); font-weight:700; font-size:17px; }
.section.pandan .dish .nm{ color:#f7edda; }
.section.pandan .dish .ds{ color:rgba(247,237,218,.78); }

/* read-the-menu footer button */
.menu-foot{ display:flex; justify-content:center; margin-top:clamp(24px,3vw,40px); }

/* three-ways-to-a-bowl — numbered editorial notices (light on pandan) */
.ways{ display:flex; flex-direction:column; }
.ways .kicker{ display:block; margin-bottom:8px; }
.ways-title{ font-family:var(--font-headline); font-weight:700; font-size:clamp(24px,2.6vw,30px);
  line-height:1.04; margin:0 0 6px; letter-spacing:-.01em; color:#f7edda; }
.way-list{ list-style:none; margin:16px 0 0; padding:0; }

/* row variant — three notices side by side as a full-width section */
.way-list--row{ display:grid; grid-template-columns:repeat(3,1fr); gap:0 clamp(26px,3.4vw,52px); margin-top:8px; }
.way-list--row .way{ display:block; grid-template-columns:none; gap:0; padding:24px 0 4px;
  border-top:1.5px solid rgba(247,237,218,.42); }
.way-list--row .way:first-child{ border-top-width:1.5px; }
.way-list--row .way-num{ display:block; margin-bottom:10px; }
.way-list--row .way p{ max-width:38ch; }
.way{ display:grid; grid-template-columns:auto 1fr; gap:clamp(16px,2vw,26px); align-items:start;
  padding:22px 0; border-top:1px solid rgba(247,237,218,.22); }
.way:first-child{ border-top:1.5px solid rgba(247,237,218,.42); }
.way-num{ font-family:var(--font-display-alt); font-size:clamp(34px,3.6vw,46px); line-height:.78;
  color:rgba(247,237,218,.5); }
.way h4{ font-family:var(--font-h2); font-weight:600; font-size:20px; margin:0 0 5px; color:#f7edda; }
.way p{ font-size:13.5px; color:rgba(247,237,218,.8); line-height:1.5; margin:0 0 13px; max-width:46ch; }
.way .flag{ display:inline-block; margin:0 0 10px; background:rgba(247,237,218,.16); color:#f7edda; }
.way-link{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-body);
  font-weight:700; font-size:13.5px; line-height:1; padding:11px 20px; border-radius:999px;
  text-decoration:none; border:1.5px solid transparent; transition:background .14s, color .14s, border-color .14s; }
.way-link svg{ width:16px; height:16px; }
.way-link.primary{ background:var(--claypot); color:#f7edda; border-color:var(--claypot); }
.way-link.primary:hover{ background:#4a0f0e; border-color:#4a0f0e; }
.way-link.ghost{ background:transparent; color:#f7edda; border-color:rgba(247,237,218,.5); }
.way-link.ghost:hover{ background:rgba(247,237,218,.13); border-color:#f7edda; }
.way-link.solid{ background:#f7edda; color:var(--pandan-deep); border-color:#f7edda; }
.way-link.solid:hover{ background:#fff; border-color:#fff; }
.way .flag.flag-below{ margin:14px 0 0; }

/* =========================================================================
   EDITORIAL / "from the kitchen" column
   ========================================================================= */
.oped{ border:1.5px solid var(--rule); border-top:5px solid var(--rule);
  padding:22px 24px; background:var(--paper); }
.oped .kicker{ display:block; margin-bottom:8px; }
.oped h3{ font-family:var(--font-headline); font-weight:700; font-size:24px; line-height:1.04;
  margin:0 0 10px; letter-spacing:-.01em; }
.oped p{ font-size:14px; line-height:1.6; color:var(--ink-soft); margin:0 0 .7em; }
.oped .sign{ font-family:var(--font-script); font-size:30px; color:var(--pandan); margin-top:4px; line-height:1; }

/* =========================================================================
   EVENTS — pandan broadsheet panel
   ========================================================================= */
.events{ background:var(--paper); color:var(--ink); }
.events .inner{ display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(28px,4vw,56px);
  padding:clamp(34px,5vw,64px) 0; align-items:start; }
.events .kicker{ color:var(--pandan); }
.events h2{ font-family:var(--font-headline); font-weight:700; color:var(--ink);
  font-size:clamp(34px,4.4vw,60px); line-height:.98; letter-spacing:-.02em; margin:12px 0 16px; }
.events p{ color:var(--ink-soft); font-size:15.5px; line-height:1.6; max-width:46ch; }
.events .free{ display:inline-flex; align-items:center; gap:10px; margin-top:18px;
  border:1.5px solid var(--rule-soft); border-radius:999px; padding:9px 16px;
  font-weight:600; font-size:13.5px; color:var(--ink); }
.events .free svg{ color:var(--pandan); }
.events .free b{ color:var(--claypot); }

.booking{ background:var(--paper); color:var(--ink); border:1.5px solid var(--rule); border-top:5px solid var(--rule);
  border-radius:0; padding:clamp(22px,2.6vw,30px); margin-top:29px; }
.booking h3{ font-family:var(--font-h2); font-weight:600; font-size:21px; margin:0 0 4px; }
.booking .sub{ font-size:13px; color:var(--ink-soft); margin:0 0 18px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-weight:700; font-size:11.5px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--ink-faint); margin-bottom:8px; }
.field input, .field select{
  width:100%; font-family:var(--font-body); font-size:15px; color:var(--ink);
  background:#fff; border:1.5px solid var(--rule-soft); border-radius:8px;
  padding:12px 14px; }
.field input:focus, .field select:focus{ outline:none; border-color:var(--pandan);
  box-shadow:0 0 0 3px rgba(79,89,47,.16); }
.slots{ display:flex; flex-wrap:wrap; gap:8px; }
.slot{ font-family:var(--font-body); font-weight:600; font-size:13.5px; cursor:pointer;
  background:#fff; border:1.5px solid var(--rule-soft); border-radius:999px; padding:9px 15px;
  transition:all .12s; }
.slot:hover{ border-color:var(--pandan); }
.slot.on{ background:var(--pandan); color:#f7edda; border-color:var(--pandan); }
.booking-ok{ text-align:center; padding:14px 6px; }
.booking-ok .tick{ width:48px; height:48px; border-radius:50%; background:var(--pandan);
  display:grid; place-items:center; margin:0 auto 14px; }
.booking-ok h3{ font-size:22px; margin-bottom:6px; }
.booking-ok p{ font-size:14px; color:var(--ink-soft); line-height:1.55; }
.booking-ok .recap{ font-weight:700; color:var(--ink); }

/* =========================================================================
   FIND US
   ========================================================================= */
.find{ display:grid; grid-template-columns:1fr 1.25fr; gap:clamp(26px,3.4vw,52px); align-items:start; }
.find-left .sec-head{ margin-bottom:18px; }
.addrcard .label{ font-weight:700; font-size:11.5px; letter-spacing:.16em; text-transform:uppercase;
  color:var(--pandan); margin:0 0 6px; }
.addrcard .big{ font-family:var(--font-h2); font-weight:600; font-size:clamp(22px,2.4vw,30px);
  line-height:1.18; margin:0 0 8px; }
.addrcard .row{ display:flex; gap:10px; padding:14px 0; border-top:1px solid var(--rule-soft);
  font-size:14.5px; color:var(--ink-soft); align-items:flex-start; }
.addrcard .row svg{ width:18px; height:18px; flex:none; margin-top:1px; color:var(--pandan); }
.addr-cta{ display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.addr-cta .btn{ flex:1 1 0; justify-content:center; }
/* mounted floor-plan map */
.mapfig{ margin:17px 0 0; border:1.5px solid var(--rule); border-top:5px solid var(--rule);
  background:var(--paper-2); padding:clamp(14px,1.8vw,22px); }
.mapfig img{ width:100%; }
.mapfig .caption{ margin-top:13px; padding-top:11px; border-top:1px solid var(--rule-soft); }
/* address card on the pandan band */
.section.pandan .addrcard .label{ color:#cdd3a8; }
.section.pandan .addrcard .big{ color:#f7edda; }
.section.pandan .addrcard .row{ border-color:rgba(247,237,218,.22); color:rgba(247,237,218,.86); }
.section.pandan .addrcard .row:first-of-type{ border-top-color:rgba(247,237,218,.42); }
.section.pandan .addrcard .row svg{ color:#cdd3a8; }
.mapframe{ border:1.5px solid var(--rule); border-top:5px solid var(--rule);
  min-height:340px; background:var(--paper); display:flex; flex-direction:column; }
.map-head{ padding:20px 24px 16px; }
.map-head .kicker{ display:block; margin-bottom:8px; }
.map-head h3{ font-family:var(--font-headline); font-weight:700; font-size:24px; line-height:1.04;
  margin:0 0 8px; letter-spacing:-.01em; }
.map-head p{ font-size:14px; line-height:1.6; color:var(--ink-soft); margin:0; max-width:46ch; }
.mapframe iframe{ width:100%; flex:1; min-height:300px; border:0; display:block;
  border-top:1.5px solid var(--rule); filter:saturate(.86) contrast(1.02); }

/* =========================================================================
   COLOPHON / FOOTER
   ========================================================================= */
.colophon{ background:var(--ink); color:#e9e0cb; margin-top:8px; }
.colophon .sheet{ padding:54px clamp(18px,4vw,52px) 30px; }
.colophon .top{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr 1.1fr; gap:36px; }
.colophon .name{ font-family:var(--font-display-alt); font-size:40px; color:#f7edda; line-height:.9;
  text-transform:uppercase; }
.colophon .strapf{ font-weight:600; font-size:11px; letter-spacing:.26em; text-transform:uppercase;
  color:rgba(233,224,203,.6); margin-top:10px; }
.colophon p{ color:rgba(233,224,203,.6); font-size:13px; line-height:1.6; margin:14px 0 0; max-width:34ch; }
.colophon h4{ font-weight:700; font-size:11px; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(233,224,203,.5); margin:0 0 14px; }
.colophon ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.colophon ul a{ color:#e9e0cb; text-decoration:none; font-size:14px; }
.colophon ul a:hover{ color:#fff; text-decoration:underline; text-underline-offset:3px; }
.colophon .base{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  margin-top:46px; padding-top:20px; border-top:1px solid rgba(233,224,203,.16);
  font-size:12px; color:rgba(233,224,203,.5); }

/* =========================================================================
   MENU PAGE
   ========================================================================= */
.menu-masthead{ text-align:center; padding:30px 0 6px; }
.menu-masthead .nameplate{ font-size:clamp(52px,11vw,150px); }
.bill{ display:grid; grid-template-columns:1fr 1fr; gap:0 clamp(34px,5vw,72px); }
.billcol{ break-inside:avoid; }
.menu-sec{ padding:14px 0 6px; }
.menu-sec > .head{ display:flex; align-items:center; gap:14px; margin:18px 0 6px; }
.menu-sec > .head h3{ font-family:var(--font-headline); font-weight:700; font-size:24px;
  letter-spacing:.02em; text-transform:uppercase; white-space:nowrap; }
.menu-sec > .head .ln{ flex:1; border-top:1.5px solid var(--rule); }
.mitem{ display:grid; grid-template-columns:auto 1fr auto; gap:0; align-items:baseline;
  padding:13px 0; border-bottom:1px solid var(--rule-soft); }
.mitem.with-pic{ grid-template-columns:54px 1fr auto; gap:14px; align-items:center; }
.mitem .thumb{ width:54px; height:54px; display:grid; place-items:center; }
.mitem .thumb img{ width:100%; filter:drop-shadow(0 6px 6px rgba(74,15,14,.16)); }
.mitem .nm{ font-family:var(--font-h2); font-weight:600; font-size:16.5px; }
.mitem .nm .tag{ font-weight:700; font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--pandan); border:1px solid var(--pandan); border-radius:999px; padding:2px 7px; margin-left:8px;
  vertical-align:2px; }
.mitem .ds{ font-size:12.5px; color:var(--ink-faint); line-height:1.4; margin-top:2px; }
.mitem .leader{ align-self:end; border-bottom:1.5px dotted var(--rule-soft); margin:0 10px 5px; min-width:18px; }
.mitem .pr{ font-family:var(--font-headline); font-weight:700; font-size:17px; white-space:nowrap; }

.drinktable{ width:100%; border-collapse:collapse; }
.drinktable th{ text-align:right; font-family:var(--font-body); font-weight:700; font-size:11px;
  letter-spacing:.14em; text-transform:uppercase; color:var(--ink-faint); padding:6px 0 10px; }
.drinktable th.l{ text-align:left; }
.drinktable td{ padding:11px 0; border-bottom:1px solid var(--rule-soft); font-size:15px; }
.drinktable td.nm{ font-weight:600; }
.drinktable td.nm .tag{ font-weight:700; font-size:10px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--pandan); border:1px solid var(--pandan); border-radius:999px; padding:2px 7px; margin-left:8px;
  white-space:nowrap; }
.drinktable td.pr{ text-align:right; font-family:var(--font-headline); font-weight:700; width:84px; }

/* =========================================================================
   TWEAK: section top borders
   The heavy 5px black bars above the booking card, op-ed and map frame are
   removed by default (top border matches the 1.5px side rule). Toggling
   "Heavy top borders" on restores the broadsheet bars.
   ========================================================================= */
.booking,
.oped,
.mapframe,
.mapfig{ border-top-width:1.5px; }
body.heavy-borders .booking,
body.heavy-borders .oped,
body.heavy-borders .mapframe,
body.heavy-borders .mapfig{ border-top-width:5px; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width:960px){
  .lead{ grid-template-columns:1fr; }
  .lead .figure{ order:-1; max-width:520px; margin:0 auto; }
  .events .inner{ grid-template-columns:1fr; }
  .booking{ margin-top:0; }
  .find{ grid-template-columns:1fr; }
  .mapfig{ margin-top:0; }
  .orderbox .grid{ grid-template-columns:1fr; }
  .ordercol + .ordercol{ border-left:0; border-top:1px solid var(--rule-soft); }
  .dish-grid{ grid-template-columns:repeat(2,1fr); }
  .colophon .top{ grid-template-columns:1fr 1fr; gap:28px; }
  .bill{ grid-template-columns:1fr; }
  .cols-2{ column-count:1; }
}
@media (max-width:680px){
  .topnav{ display:none; }
  .hamb{ display:block; }
  .topnav.open{ display:flex; position:absolute; top:58px; left:0; right:0; flex-direction:column;
    gap:0; background:var(--paper); border-bottom:1.5px solid var(--rule); padding:6px clamp(18px,4vw,52px) 14px; }
  .topnav.open a{ padding:12px 0; border-bottom:1px solid var(--rule-soft); }
  .topbar .hide-sm{ display:none; }
  .dish-grid{ grid-template-columns:1fr 1fr; gap:22px 16px; }
  .dateline .side{ display:none; }
  .colophon .top{ grid-template-columns:1fr; }
  .way-list--row{ grid-template-columns:1fr; gap:0; }
  .lead-cta{ flex-wrap:wrap; }
  .lead-cta .btn{ flex:1 1 100%; }
}

/* ---- Production fix: responsive lead hero (prevents mobile horizontal scroll) ----
   The fixed 500px .hero-car forced the single-column lead grid wider than small
   viewports (overflow below ~560px). Let the grid items shrink and size the hero
   carousel to its container instead. Scoped to the homepage lead section. */
@media (max-width:680px){
  .lead-text{ min-width:0; }
  .lead .figure{ min-width:0; max-width:100%; }
  .hero-car{ width:100%; height:auto; aspect-ratio:1/1; }
}

/* Find Us floor-plan: the width/height attributes set the aspect ratio (good for
   avoiding layout shift) but with .mapfig img{width:100%} and no height the height
   attribute forced a fixed box and object-fit:fill squished it. Restore proportion. */
.mapfig img{ height:auto; }
