/* ============================================================================
   Theme "ouse" — warm black, jade action, gold hairlines, wide geometric
   display type. Every colour, font, radius and width comes from a design token
   the tenant can change; the layout writes the tokens into :root as CSS custom
   properties, so the values below are only the fallbacks.
   ========================================================================= */

:root {
  /* --- tokens (overwritten by the layout's nonce'd <style>) --- */
  --ink: #161412;
  --paper: #ffffff;
  --line: #e6e0d8;
  --line-dark: #3a352f;
  --t-hi: #f7f3ee;
  --t-lo: #a59c91;
  --green: #1f7a5a;
  --green-d: #1a6b4e;
  --gold: #c79a44;
  --chilli: #b8402f;
  --radius: 4px;
  --maxw: 1220px;
  --f-display: 'Jost', system-ui, sans-serif;
  --f-body: 'Hanken Grotesk', system-ui, sans-serif;
}

/* --- shades derived from the tokens. Each has a plain fallback first, so a
       browser without color-mix() still gets the right look. --- */
:root {
  --ink-2: #211e1b;
  --ink-2: color-mix(in srgb, var(--ink) 92%, var(--t-hi));
  --ink-3: #100e0d;
  --ink-3: color-mix(in srgb, var(--ink) 92%, #000);
  --green-dd: #145741;
  --green-dd: color-mix(in srgb, var(--green-d) 88%, #000);
  --gold-hi: #e0bd6e;
  --gold-hi: color-mix(in srgb, var(--gold) 76%, var(--t-hi));
  --t-lede: #d6cdc1;
  --t-lede: color-mix(in srgb, var(--t-hi) 74%, var(--t-lo));
  --t-body: #c3baae;
  --t-body: color-mix(in srgb, var(--t-hi) 52%, var(--t-lo));
  --t-soft: #b3a99d;
  --t-soft: color-mix(in srgb, var(--t-lo) 82%, var(--t-hi));
  --t-faint: #6f675e;
  --t-faint: color-mix(in srgb, var(--t-lo) 58%, var(--ink));
  --slot-bg: #ded7cb;
  --slot-bg: color-mix(in srgb, var(--line) 88%, var(--ink));
  --slot-ink: #8a8074;
  --slot-ink: color-mix(in srgb, var(--ink) 46%, var(--line));
  --hair-soft: rgba(58, 53, 47, .55);
  --shadow-pop: 0 20px 60px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body.fine {
  background: var(--ink);
  color: var(--t-hi);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
.fine a { color: var(--gold); }
.fine a:hover { color: var(--gold-hi); }

.wrapf { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .wrapf { padding: 0 20px; } }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 12px 18px;
  font-family: var(--f-display); letter-spacing: .1em; text-transform: uppercase; font-size: 12px;
}
.skip-link:focus { left: 0; color: var(--ink); }

:where(a, button, [tabindex]):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- phase bar (edit / test versions) ---------- */
.phase-bar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: var(--gold); color: #16120b;
  font-family: var(--f-display); font-size: 12px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  text-align: center; padding: 10px 16px; line-height: 1.2;
}
body.has-phase-bar { padding-top: 38px; }
body.has-phase-bar .fnav { top: 38px; }

/* ---------- brand lockup ---------- */
.lock { display: inline-flex; align-items: stretch; gap: 13px; line-height: 1; }
.lock-rule { display: block; width: 2px; background: var(--gold); border-radius: 1px; flex: none; }
.lock-words { display: flex; flex-direction: column; gap: 5px; justify-content: center; }
.lock-name {
  font-family: var(--f-display); font-weight: 300; font-size: 23px;
  letter-spacing: .2em; line-height: 1; color: var(--t-hi); text-transform: uppercase;
}
.lock-tag {
  font-family: var(--f-display); font-weight: 300; font-size: 9px;
  letter-spacing: .32em; text-transform: uppercase; color: var(--t-lo); margin-top: 3px;
}
.lock-logo { max-height: 46px; width: auto; }
@media (max-width: 560px) {
  .lock-name { font-size: 19px; }
  .lock-tag { font-size: 8px; letter-spacing: .26em; }
}

/* ---------- navigation ---------- */
.fnav {
  position: sticky; top: 0; z-index: 40;
  background: var(--ink);
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.fnav-in { display: flex; align-items: center; justify-content: space-between; gap: 32px; height: 84px; }
.fnav-links { display: flex; align-items: center; gap: 34px; }
.fnav-links a {
  white-space: nowrap; font-family: var(--f-display); font-size: 12.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--t-lo);
}
.fnav-links a:hover, .fnav-links a.on { color: var(--t-hi); }
.fnav-right { display: flex; align-items: center; gap: 14px; }
.fnav-burger {
  display: none; color: var(--t-hi); width: 38px; height: 38px;
  align-items: center; justify-content: center; padding: 0;
}
.fnav-burger .icon-close { display: none; }
.fnav-burger[aria-expanded="true"] .icon-menu { display: none; }
.fnav-burger[aria-expanded="true"] .icon-close { display: inline-flex; }
.fnav-mobile {
  display: none; flex-direction: column; background: var(--ink);
  border-top: 1px solid var(--line-dark); padding: 6px 40px 16px;
}
.fnav-mobile.open { display: flex; }
.fnav-mobile a {
  padding: 14px 4px; font-family: var(--f-display); font-size: 15px;
  letter-spacing: .05em; color: var(--t-lo); border-bottom: 1px solid var(--line-dark);
}
.fnav-mobile a:hover, .fnav-mobile a.on { color: var(--t-hi); }
.fnav-mobile a.mnav-gold { color: var(--gold); }
.fine a.fnav-cta, .fnav-cta {
  white-space: nowrap; display: inline-flex; align-items: center; gap: 9px;
  background: var(--green); color: #fff; font-family: var(--f-display); font-weight: 500;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  padding: 13px 20px; border-radius: var(--radius);
}
.fine a.fnav-cta:hover, .fnav-cta:hover { background: var(--green-d); color: #fff; }
@media (max-width: 820px) {
  .fnav-in { height: 70px; gap: 16px; }
  .fnav-links { display: none; }
  .fnav-burger { display: inline-flex; }
  .fnav-mobile { padding: 6px 20px 16px; }
  .fnav-cta { display: none !important; }
}

/* ---------- type scale ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin: 0;
  font-family: var(--f-display); font-size: 11px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow .rule { flex: 0 0 34px; height: 1px; background: var(--gold); opacity: .6; }
h1.display {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.02; letter-spacing: .01em; margin: 22px 0 0;
}
h2.sect {
  font-family: var(--f-display); font-weight: 300; font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1; margin: 16px 0 0;
}
.lede {
  font-size: clamp(16px, 1.25vw, 18.5px); line-height: 1.7;
  color: var(--t-lede); max-width: 52ch; text-wrap: pretty; margin: 26px 0 0;
}
.body-c { font-size: 16px; line-height: 1.75; color: var(--t-body); text-wrap: pretty; }
.sect-pad { padding: clamp(64px, 8vw, 116px) 0; }
.sect-pad-tight { padding: clamp(48px, 6vw, 84px) 0 0; }
.hair { height: 1px; background: var(--line-dark); }

/* ---------- buttons ---------- */
.fine a.btn-green, .btn-green,
.fine a.btn-gold, .btn-gold,
.fine a.btn-line, .btn-line {
  white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 500; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; border-radius: var(--radius);
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .08s ease;
}
.btn-green:active, .btn-gold:active, .btn-line:active { transform: translateY(1px); }
.fine a.btn-green, .btn-green { padding: 15px 26px; background: var(--green); color: #fff; }
.fine a.btn-green:hover, .btn-green:hover { background: var(--green-d); color: #fff; }
.fine a.btn-gold, .btn-gold { padding: 15px 26px; background: var(--gold); color: #16120b; }
.fine a.btn-gold:hover, .btn-gold:hover { background: var(--gold-hi); color: #16120b; }
.fine a.btn-line, .btn-line { padding: 14px 24px; border: 1px solid var(--line-dark); color: var(--t-hi); background: transparent; }
.fine a.btn-line:hover, .btn-line:hover { border-color: var(--gold); color: var(--paper); }

/* ---------- image slots (a picture, or the box that stands in for one) ---------- */
.hero-media, .dish-media, .split-media, .room-cell { position: relative; background: var(--slot-bg); overflow: hidden; }
.slot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slot-empty {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 24px;
  text-align: center; color: var(--slot-ink);
}
.slot-icon { width: 44px; height: 33px; opacity: .55; }
.slot-note {
  font-family: var(--f-display); font-size: 12px; letter-spacing: .08em;
  line-height: 1.5; max-width: 34ch;
}

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; min-height: min(78vh, 720px); }
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 92px); background: var(--ink);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 44px; padding-top: 22px;
  border-top: 1px solid var(--line-dark); font-family: var(--f-display);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--t-lo);
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 46vh; }
}

/* ---------- page hero ---------- */
.phero { padding: clamp(56px, 7vw, 104px) 0 clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line-dark); }
.phero .lede { margin-top: 24px; }

/* ---------- section heading ---------- */
.sect-head { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 24px; }
@media (max-width: 560px) { .sect-head { grid-template-columns: 1fr; align-items: start; } }

/* ---------- dish cards ---------- */
.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.dish-media { aspect-ratio: 4 / 5; }
.dish h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 20px;
  letter-spacing: .04em; margin: 20px 0 0; color: var(--t-hi);
}
.dish h3 .cn { display: block; font-size: 14px; letter-spacing: .16em; color: var(--gold); margin-bottom: 6px; }
.dish p { font-size: 15px; line-height: 1.65; color: var(--t-soft); margin: 9px 0 0; text-wrap: pretty; }
.dish-price { color: var(--gold); white-space: nowrap; }
.dish p .dish-price::before { content: ' '; }
.fine .dish-link { color: inherit; display: block; }
.fine .dish-link:hover { color: inherit; }
.dish-link:hover h3 { color: var(--gold); }
@media (max-width: 820px) { .dishes { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 560px) { .dishes { grid-template-columns: 1fr; } }

/* ---------- split feature / picture and text ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.split.flip .split-media { order: 2; }
.split-media { aspect-ratio: 5 / 6; }
.split-tight .split-media { aspect-ratio: 4 / 3; }
.split-copy .btn-line, .split-copy .btn-gold, .split-copy .btn-green { margin-top: 32px; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .split-media { aspect-ratio: 4 / 3; }
}

/* ---------- quotes ---------- */
.quotes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
}
.quote { background: var(--ink); padding: clamp(28px, 3.4vw, 44px); }
.quote blockquote {
  margin: 0; font-family: var(--f-display); font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; color: var(--t-hi); text-wrap: pretty;
}
.quote cite {
  display: block; margin-top: 20px; font-style: normal; font-family: var(--f-display);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }

/* ---------- call-to-action band ---------- */
.tband { background: var(--ink-2); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.tband-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 30px; padding-bottom: 30px;
}
.tband-txt { display: flex; flex-direction: column; gap: 6px; }
.tband-txt strong { font-family: var(--f-display); font-weight: 400; font-size: 17px; letter-spacing: .05em; color: var(--t-hi); }
.tband-txt span { font-size: 14.5px; color: var(--t-lo); }

/* ---------- hours / find us ---------- */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.hours { display: grid; gap: 2px; margin: 28px 0 0; }
.hours-row {
  display: flex; justify-content: space-between; gap: 20px; padding: 13px 0;
  border-bottom: 1px solid var(--line-dark); font-size: 15px;
}
.hours-row dt {
  font-family: var(--f-display); letter-spacing: .1em; text-transform: uppercase;
  font-size: 12.5px; color: var(--t-lo); margin: 0;
}
.hours-row dd { margin: 0; color: var(--t-hi); text-align: right; }
.hours-row.closed dd { color: var(--t-lo); }
.findus { margin-top: 28px; display: grid; gap: 18px; }
.findus p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--t-body); }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }

/* ---------- reservations ---------- */
.book {
  background: var(--ink-2); border: 1px solid var(--line-dark);
  padding: clamp(28px, 3.6vw, 44px); display: grid; gap: 22px; align-content: center;
}
.book-slot {
  border: 1px dashed var(--line-dark); border-radius: var(--radius); min-height: 190px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 28px; color: var(--t-lo);
}
.book-slot strong {
  font-family: var(--f-display); font-weight: 400; font-size: 15px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--t-lede);
}
.book-slot span { font-size: 14px; max-width: 38ch; line-height: 1.6; }
.book-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; padding: 20px 0; }
.book-cta span { font-size: 14px; color: var(--t-lo); max-width: 38ch; line-height: 1.6; }
.book-phone a { font-family: var(--f-display); font-size: 20px; letter-spacing: .06em; }
.book-note { font-size: 14.5px; color: var(--t-lo); }

/* ---------- menu display ---------- */
.menu-cols { columns: 2; column-gap: clamp(32px, 5vw, 72px); margin-top: 48px; }
@media (max-width: 760px) { .menu-cols { columns: 1; } }
.mgroup { break-inside: avoid; margin: 0 0 44px; }
.mgroup h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 13px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 6px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.mgroup-blurb { margin: 10px 0 0; font-size: 14px; color: var(--t-lo); line-height: 1.6; }
.mitem {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; padding: 16px 0;
  border-bottom: 1px solid var(--hair-soft);
}
.mitem h4 { font-family: var(--f-display); font-weight: 400; font-size: 17px; letter-spacing: .03em; margin: 0; color: var(--t-hi); }
.mitem h4 .cn { display: block; font-size: 13px; letter-spacing: .14em; color: var(--gold); margin-bottom: 3px; font-weight: 300; }
.mitem .price { font-family: var(--f-display); font-size: 16px; color: var(--gold); }
.mitem p { grid-column: 1 / -1; margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--t-soft); text-wrap: pretty; }
.mitem-serves { grid-column: 1 / -1; margin: 0; font-size: 13.5px; line-height: 1.7; color: var(--t-lo); }
.mitem-serves .sv-price { font-family: var(--f-display); color: var(--gold); }
.mitem-serves .sv-sep { opacity: .5; padding: 0 2px; }
.mitem .marks { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.mitem .mark {
  font-family: var(--f-display); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--t-lo); border: 1px solid var(--line-dark); border-radius: 2px; padding: 2px 6px;
}
/* "More info" on a dish with choices: a plain <details> whose link sits
   bottom-right, in line with the price. Open, it unfolds inside the menu
   itself — no floating card, no scrollbox — echoing the ordering sheet's
   groups (name, rule, options) with nothing to tick. */
.mitem-more { grid-column: 1 / -1; margin-top: 2px; }
.mitem-more summary {
  display: block; width: max-content; margin-left: auto;
  cursor: pointer; list-style: none; white-space: nowrap; color: var(--t-lo);
  font-family: var(--f-display); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
}
.mitem-more summary::-webkit-details-marker { display: none; }
.mitem-more summary::after { content: ' ▾'; color: var(--gold); }
.mitem-more[open] summary { color: var(--t-hi); }
.mitem-more[open] summary::after { content: ' ▴'; }
.minfo { padding: 2px 0 6px; }
.minfo-group { padding-top: 14px; }
.minfo-group h5 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin: 0; padding-bottom: 4px; }
.minfo-name { font-family: var(--f-display); font-weight: 400; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.minfo-hint { font-size: 13px; color: var(--t-lo); }
.minfo ul { list-style: none; margin: 0; padding: 0; }
.minfo li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 8px 0; border-bottom: 1px solid var(--hair-soft); font-size: 14px; color: var(--t-soft);
}
.minfo-group:last-child li:last-child { border-bottom: none; padding-bottom: 0; }
.minfo-delta { font-family: var(--f-display); font-size: 13px; color: var(--gold); white-space: nowrap; }
.menu-foot { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 6px; font-size: 14px; color: var(--t-lo); }
.menu-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.menu-jump a {
  font-family: var(--f-display); font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--t-soft); border: 1px solid var(--line-dark); border-radius: 2px; padding: 9px 16px;
  text-decoration: none; transition: color .2s, border-color .2s;
}
.menu-jump a:hover { color: var(--t-hi); border-color: var(--gold); }
.menu-sect { margin-top: 48px; scroll-margin-top: 110px; }
.menu-sect.gap-cosy { margin-top: 40px; }
.menu-sect.gap-regular { margin-top: 72px; }
.menu-sect.gap-roomy { margin-top: 120px; }
/* The rule between menus runs the full width of the page column — wider than
   any dish or group line, which stop at their own column's edge. */
.menu-div { border: 0; border-top: 1px solid var(--line-dark); margin: 0; }
.menu-div.gap-cosy { margin-top: 40px; }
.menu-div.gap-regular { margin-top: 72px; }
.menu-div.gap-roomy { margin-top: 120px; }
.menu-name {
  font-family: var(--f-display); font-weight: 400; font-size: clamp(24px, 3vw, 30px);
  letter-spacing: .06em; margin: 0; color: var(--t-hi);
}
.menu-blurb { margin: 12px 0 0; font-size: 15px; line-height: 1.7; color: var(--t-soft); max-width: 62ch; text-wrap: pretty; }
.menu-sect .menu-cols { margin-top: 36px; }

/* ---------- gallery ---------- */
.room { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 14px; margin-top: 48px; }
.room-cell { margin: 0; }
.room-mosaic .room-cell:nth-child(9n + 1) { grid-column: span 2; grid-row: span 2; }
.room-mosaic .room-cell:nth-child(9n + 4),
.room-mosaic .room-cell:nth-child(9n + 5),
.room-mosaic .room-cell:nth-child(9n + 8),
.room-mosaic .room-cell:nth-child(9n) { grid-column: span 2; }
.room-cell figcaption {
  position: absolute; inset: auto 0 0 0; padding: 22px 16px 12px;
  font-size: 13px; line-height: 1.4; color: var(--t-hi);
  background: linear-gradient(to top, rgba(0, 0, 0, .62), transparent);
}
@media (max-width: 820px) {
  .room { grid-template-columns: 1fr 1fr; grid-auto-rows: 190px; }
  .room-mosaic .room-cell:nth-child(9n + 1) { grid-column: span 2; grid-row: span 1; }
  .room-mosaic .room-cell:nth-child(9n + 4),
  .room-mosaic .room-cell:nth-child(9n + 5),
  .room-mosaic .room-cell:nth-child(9n + 8),
  .room-mosaic .room-cell:nth-child(9n) { grid-column: span 2; }
}
@media (max-width: 520px) {
  .room { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .room-mosaic .room-cell { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ---------- rich text ---------- */
.rich { color: var(--t-body); font-size: 16px; line-height: 1.75; text-wrap: pretty; }
.rich-narrow { max-width: 68ch; }
.rich > *:first-child { margin-top: 0; }
.rich p { margin: 16px 0 0; }
.rich h2, .rich h3, .rich h4 { font-family: var(--f-display); font-weight: 400; color: var(--t-hi); margin: 32px 0 0; letter-spacing: .04em; }
.rich h3 { font-size: 22px; }
.rich h4 { font-size: 17px; }
.rich ul, .rich ol { margin: 16px 0 0; padding-left: 22px; }
.rich li { margin: 8px 0 0; }
.rich strong { color: var(--t-hi); font-weight: 600; }
.rich blockquote {
  margin: 24px 0 0; padding-left: 20px; border-left: 2px solid var(--gold);
  font-family: var(--f-display); font-weight: 300; font-size: 20px; line-height: 1.5; color: var(--t-hi);
}
.rich hr { border: none; border-top: 1px solid var(--line-dark); margin: 32px 0 0; }
.rich table { width: 100%; border-collapse: collapse; margin: 24px 0 0; font-size: 15px; }
.rich th, .rich td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line-dark); }
.rich img { margin: 24px 0 0; }
.custom-html { padding: clamp(40px, 5vw, 72px) 0; }

/* ---------- footer ---------- */
.ffoot { background: var(--ink-3); border-top: 1px solid var(--line-dark); padding: 56px 0 40px; }
.ffoot-in { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.ffoot h4 {
  font-family: var(--f-display); font-weight: 400; font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.ffoot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ffoot li, .ffoot p { font-size: 14.5px; color: var(--t-lo); line-height: 1.6; margin: 0; }
.ffoot-brand p { margin-top: 20px; }
.fine .ffoot a { color: var(--t-lo); }
.fine .ffoot a:hover { color: var(--t-hi); }
.ffoot-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  font-size: 13px; color: var(--t-faint);
}
.hygiene {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 22px;
  border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 8px 12px 8px 8px;
}
.hygiene:hover { border-color: var(--gold); }
.hygiene-score {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 3px; background: var(--green); color: #fff;
  font-family: var(--f-display); font-weight: 600; font-size: 15px;
}
.hygiene-label { font-family: var(--f-display); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.powered { margin-left: auto; }
@media (max-width: 820px) { .ffoot-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ffoot-in { grid-template-columns: 1fr; } }

/* ---------- cookie notice ---------- */
.cookie {
  position: fixed; z-index: 50; left: 20px; right: 20px; bottom: 20px;
  max-width: 460px; margin-left: auto; margin-right: auto;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  box-shadow: var(--shadow-pop); padding: 20px 22px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0; flex: 1 1 220px; font-size: 14px; line-height: 1.6; color: var(--t-body); }
.cookie .btn-line { padding: 10px 18px; font-size: 12px; }
@media (min-width: 720px) { .cookie { right: auto; left: 24px; bottom: 24px; margin: 0; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ============================================================================
   ORDERING — the order-menu block (blocks/order-menu, assets/js/ordering.js).
   The orderable sibling of the menu-display block: same hairlines, same gold
   section rules, same display type, with the machinery an ordering page needs.
   ========================================================================= */

.order [hidden] { display: none !important; }

.vh {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* Progressive enhancement. Until ordering.js has a basket to talk to, the page
   is a menu with a telephone number on it — no dead buttons, no empty drawer. */
.order:not([data-order-js]) .oadd,
.order:not([data-order-js]) .obasket-col,
.order:not([data-order-js]) .obar { display: none; }
.order[data-order-js] .ocallus { display: none; }
.order:not([data-order-ready]) .osearch,
.order:not([data-order-ready]) .osearch-count { display: none; }
.order[data-order-busy] { cursor: progress; }

.order-intro { margin-top: 22px; }

/* ---------- status strip ---------- */
.ostrip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  margin-top: 34px; padding: 16px 20px;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.ostat { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 15px; color: var(--t-hi); }
.ostat strong { font-weight: 500; }
.odot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: var(--t-lo); }
.ostat.state-open .odot { background: var(--green); box-shadow: 0 0 0 3px rgba(31, 122, 90, .22); }
.ostat.state-closing_soon .odot,
.ostat.state-opening_soon .odot { background: var(--gold); box-shadow: 0 0 0 3px rgba(199, 154, 68, .22); }
.ostat.state-closed .odot, .ostat.state-paused .odot { background: var(--chilli); }
.oest, .ocount {
  margin: 0; font-family: var(--f-display); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--t-lo);
}
.ocount { color: var(--gold); }
/* The week floats as a popover under its toggle rather than reflowing the
   strip; the <details> still opens and closes with no JavaScript. */
.ohours { position: relative; margin-left: auto; font-size: 14px; }
.ohours summary {
  cursor: pointer; list-style: none; color: var(--t-lo);
  font-family: var(--f-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.ohours summary::-webkit-details-marker { display: none; }
.ohours summary::after { content: ' ▾'; color: var(--gold); }
.ohours[open] summary { color: var(--t-hi); }
.ohours[open] summary::after { content: ' ▴'; }
.ohours-pop {
  position: absolute; top: calc(100% + 14px); right: -8px; z-index: 30;
  min-width: 288px; width: max-content; max-width: min(420px, calc(100vw - 40px));
  padding: 18px 22px 16px;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
}
.ohours-pop::before {
  content: ''; position: absolute; top: -6px; right: 26px;
  width: 10px; height: 10px; transform: rotate(45deg);
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark);
}
.ohours-head {
  display: flex; align-items: center; gap: 9px; margin: 0;
  padding-bottom: 12px; border-bottom: 1px solid var(--hair-soft);
  font-family: var(--f-display); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.ohours table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ohours th, .ohours td { padding: 9px 0; border-bottom: 1px solid var(--hair-soft); font-weight: 400; }
.ohours tbody th { text-align: left; padding-right: 24px; white-space: nowrap; color: var(--t-lo); }
.ohours td { text-align: right; color: var(--t-soft); font-variant-numeric: tabular-nums; }
.ohours td + td { padding-left: 20px; }
.ohours thead th {
  text-align: right; font-family: var(--f-display); font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
}
.ohours thead th:first-child { text-align: left; }
.ohours tr.is-today th, .ohours tr.is-today td { color: var(--t-hi); }
.ohours tr.is-today td { font-weight: 500; }
.ohours-note { margin: 0; padding-top: 12px; font-size: 12.5px; color: var(--t-lo); }
.otoday {
  margin-left: 8px; padding: 2px 6px; border-radius: 2px; background: var(--gold); color: #16120b;
  font-family: var(--f-display); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
}
@media (max-width: 640px) {
  .ostrip { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ohours { margin-left: 0; width: 100%; }
  .ohours-pop { right: auto; left: 0; }
  .ohours-pop::before { right: auto; left: 26px; }
}

/* ---------- the three columns ---------- */
.order-wrap {
  display: grid; grid-template-columns: 200px minmax(0, 1fr) 344px;
  gap: clamp(24px, 3vw, 40px); margin-top: 40px; align-items: start;
}
@media (max-width: 1180px) { .order-wrap { grid-template-columns: 184px minmax(0, 1fr); } }
@media (max-width: 820px) { .order-wrap { grid-template-columns: minmax(0, 1fr); gap: 20px; } }
/* With no basket to show, the menu takes the column back rather than leaving a hole. */
@media (min-width: 1181px) { .order:not([data-order-js]) .order-wrap { grid-template-columns: 200px minmax(0, 1fr); } }

/* ---------- search + category rail ---------- */
.orail-col { position: sticky; top: 104px; display: grid; gap: 16px; }
.osearch input {
  width: 100%; padding: 11px 13px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: var(--ink-2); color: var(--t-hi);
  font-family: var(--f-body); font-size: 15px; -webkit-appearance: none; appearance: none;
}
.osearch input::placeholder { color: var(--t-faint); }
.osearch input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.orail { display: flex; flex-direction: column; gap: 1px; max-height: calc(100vh - 210px); overflow: auto; }
.fine .orail a, .orail a {
  padding: 9px 12px; border-left: 2px solid transparent; color: var(--t-lo);
  font-family: var(--f-display); font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fine .orail a:hover { color: var(--t-hi); }
.fine .orail a.is-on { color: var(--t-hi); border-left-color: var(--gold); background: var(--ink-2); }
/* The jump-to-section dropdown that stands in for the links at narrow widths. */
.orail-select { position: relative; display: none; }
.orail-select::after {
  content: '▾'; position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  color: var(--gold); pointer-events: none;
}
.orail-select select {
  width: 100%; padding: 11px 34px 11px 13px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: var(--ink-2); color: var(--t-hi);
  font-family: var(--f-display); font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
  -webkit-appearance: none; appearance: none; cursor: pointer; color-scheme: dark;
}
.orail-select select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 820px) {
  .orail-col { position: sticky; top: 70px; z-index: 20; background: var(--ink); padding: 10px 0; gap: 10px; }
  .orail { flex-direction: row; overflow-x: auto; gap: 4px; max-height: none; padding-bottom: 2px; }
  .fine .orail a { flex: none; border-left: none; border-bottom: 2px solid transparent; padding: 8px 10px; }
  .fine .orail a.is-on { background: transparent; border-bottom-color: var(--gold); }
  /* Once the script is running the row of links gives way to the dropdown;
     without it the links stay, since a lone <select> cannot navigate. */
  .order[data-order-js] .orail { display: none; }
  .order[data-order-js] .orail-select { display: block; }
}

/* ---------- the menu itself ---------- */
.osearch-count { margin: 0 0 18px; font-size: 14px; color: var(--t-lo); }
.omenu-name {
  font-family: var(--f-display); font-weight: 300; font-size: 26px; letter-spacing: .04em;
  margin: 34px 0 0; color: var(--t-hi);
}
.omenu-name:first-child { margin-top: 0; }
.ocat { margin: 0 0 40px; scroll-margin-top: 120px; }
.ocat-name {
  font-family: var(--f-display); font-weight: 400; font-size: 13px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); margin: 0; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
}
.ocat-blurb { margin: 12px 0 0; font-size: 14px; color: var(--t-lo); line-height: 1.6; }
.orows { list-style: none; margin: 0; padding: 0; }
.orow {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 20px;
  padding: 16px 0; border-bottom: 1px solid var(--hair-soft); align-items: start;
}
.orow-name { font-family: var(--f-display); font-weight: 400; font-size: 17px; letter-spacing: .03em; margin: 0; color: var(--t-hi); }
.orow-desc { margin: 7px 0 0; font-size: 14.5px; line-height: 1.6; color: var(--t-soft); text-wrap: pretty; }
.orow .marks, .olegend .marks { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.orow .mark, .olegend .mark {
  font-family: var(--f-display); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--t-lo); border: 1px solid var(--line-dark); border-radius: 2px; padding: 2px 6px;
}
.orow-buy { display: flex; flex-direction: column; align-items: flex-end; gap: 9px; }
.orow-buy .price { font-family: var(--f-display); font-size: 16px; color: var(--gold); white-space: nowrap; }
.orow.is-off .orow-name, .orow.is-off .orow-buy .price { color: var(--t-faint); }
.osold {
  font-family: var(--f-display); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--chilli); border: 1px solid var(--chilli); border-radius: 2px; padding: 4px 8px;
}
.oadd {
  font-family: var(--f-display); font-weight: 500; font-size: 11.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--t-hi); background: var(--ink-2);
  border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 9px 16px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.oadd:hover:not(:disabled) { background: var(--green); border-color: var(--green); color: #fff; }
.oadd:disabled { opacity: .45; cursor: not-allowed; }
.oclosed { margin: 0 0 32px; font-size: 14.5px; line-height: 1.6; color: var(--gold); }

/* ---------- dietary key ---------- */
.olegend { margin-top: 12px; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.olegend h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold); margin: 0;
}
.olegend-all, .olegend-note { margin: 14px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--t-lo); }
.olegend-all strong { color: var(--t-soft); font-weight: 500; }

/* ---------- "ring us instead" ---------- */
.ocallus { margin: 34px 0 0; font-size: 15px; line-height: 1.7; color: var(--t-lo); }
.ocallus.is-empty { margin-top: 28px; color: var(--t-body); }
.ocallus-hint {
  margin: 14px 0 0; padding: 12px 16px; border: 1px dashed var(--line-dark); border-radius: var(--radius);
  font-size: 14px; line-height: 1.6; color: var(--t-lo);
}

/* ---------- the basket drawer ---------- */
.obasket-col { position: sticky; top: 104px; }
.odrawer {
  display: flex; flex-direction: column; gap: 16px; padding: 20px;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  max-height: calc(100vh - 130px); overflow: auto;
}
.odrawer:focus { outline: none; }
.odrawer-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.odrawer-head h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 12px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold); margin: 0;
}
.odrawer-x { color: var(--t-lo); padding: 4px; display: inline-flex; }
.odrawer-x:hover { color: var(--t-hi); }
.ofulfil { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.ofulfil-opt {
  padding: 11px 8px; background: var(--ink); color: var(--t-lo);
  font-family: var(--f-display); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
}
.ofulfil-opt.is-on { background: var(--green); color: #fff; }
.ofulfil-note { margin: -6px 0 0; font-size: 13px; line-height: 1.5; color: var(--t-lo); }
.opostcode { display: grid; gap: 7px; }
.opostcode label { font-family: var(--f-display); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--t-lo); }
.opostcode-in { display: flex; gap: 8px; }
.opostcode input {
  flex: 1 1 auto; min-width: 0; padding: 10px 12px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: var(--ink); color: var(--t-hi);
  font-family: var(--f-body); font-size: 15px; text-transform: uppercase;
}
.opostcode input::placeholder { color: var(--t-faint); text-transform: none; }
.opostcode .btn-line { padding: 10px 14px; font-size: 11px; }
.omsg {
  margin: 0; padding: 11px 13px; border-radius: var(--radius);
  border: 1px solid var(--gold); background: rgba(199, 154, 68, .1);
  font-size: 13.5px; line-height: 1.55; color: var(--t-lede);
}
.oitems { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.oitem { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 4px 14px; padding: 13px 0; border-bottom: 1px solid var(--hair-soft); }
.oitem-name { margin: 0; font-size: 15px; line-height: 1.4; color: var(--t-hi); }
.oitem-qty { font-family: var(--f-display); color: var(--gold); }
.oitem-opts { margin: 5px 0 0; font-size: 13px; line-height: 1.5; color: var(--t-lo); }
.oitem-note { margin: 4px 0 0; font-size: 13px; font-style: italic; color: var(--gold); }
.oitem-off { margin: 4px 0 0; font-size: 12.5px; color: var(--chilli); }
.oitem.is-off .oitem-name { color: var(--t-faint); }
.oitem-side { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.oitem-price { font-family: var(--f-display); font-size: 15px; color: var(--t-hi); white-space: nowrap; }
.oqty { display: inline-flex; align-items: center; border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.oqty-btn { width: 28px; height: 28px; color: var(--t-hi); font-size: 15px; line-height: 1; }
.oqty-btn:hover { background: var(--green); color: #fff; }
.oqty-n { min-width: 24px; text-align: center; font-family: var(--f-display); font-size: 13px; color: var(--t-hi); }
.oitem-x { color: var(--t-faint); padding: 2px; display: inline-flex; }
.oitem-x:hover { color: var(--chilli); }
.oempty { margin: 0; padding: 18px 0; font-size: 14.5px; line-height: 1.6; color: var(--t-lo); }
.oempty span { display: block; margin-top: 4px; color: var(--t-faint); font-size: 13.5px; }
.oprogress { display: grid; gap: 8px; }
.oprogress-track { height: 4px; border-radius: 2px; background: var(--line-dark); overflow: hidden; }
.oprogress-fill { display: block; height: 100%; width: 0; background: var(--gold); transition: width .3s ease; }
.oprogress p { margin: 0; font-size: 13px; color: var(--t-lo); }
.oprogress p.is-done { color: var(--green); }
.ototals { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; margin: 0; padding-top: 14px; border-top: 1px solid var(--line-dark); }
.ototals dt { margin: 0; font-size: 14px; color: var(--t-lo); }
.ototals dd { margin: 0; font-size: 14px; text-align: right; color: var(--t-hi); }
.ototals dd.is-strong { font-family: var(--f-display); font-size: 17px; color: var(--gold); }
.oextra { border-top: 1px solid var(--hair-soft); padding-top: 12px; }
.oextra summary {
  cursor: pointer; list-style: none; color: var(--t-lo);
  font-family: var(--f-display); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.oextra summary::-webkit-details-marker { display: none; }
.oextra summary::after { content: ' +'; color: var(--gold); }
.oextra[open] summary::after { content: ' –'; }
.oextra textarea {
  width: 100%; margin-top: 10px; padding: 10px 12px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: var(--ink); color: var(--t-hi);
  font-family: var(--f-body); font-size: 14.5px; line-height: 1.5; resize: vertical;
}
.oextra textarea::placeholder { color: var(--t-faint); }
.fine a.ocheckout, .ocheckout { width: 100%; padding: 15px 20px; }
.fine a.ocheckout.is-off, .ocheckout.is-off { background: var(--ink); color: var(--t-faint); border: 1px solid var(--line-dark); cursor: not-allowed; }

/* Below the three-column layout the drawer becomes a sheet over the page. */
@media (max-width: 1180px) {
  .obasket-col { position: static; }
  .odrawer {
    position: fixed; z-index: 55; top: 0; right: 0; bottom: 0; width: min(400px, 92vw);
    max-height: none; border-radius: 0; border-width: 0 0 0 1px;
    transform: translateX(101%); transition: transform .25s ease; box-shadow: var(--shadow-pop);
  }
  .order.drawer-open .odrawer { transform: translateX(0); }
}
@media (max-width: 560px) {
  .odrawer {
    top: auto; left: 0; width: auto; max-height: 86vh; border-width: 1px 0 0;
    border-radius: var(--radius) var(--radius) 0 0; transform: translateY(101%);
  }
  .order.drawer-open .odrawer { transform: translateY(0); }
}
.oscrim { position: fixed; inset: 0; z-index: 50; background: rgba(0, 0, 0, .55); }
@media (min-width: 1181px) { .oscrim { display: none; } }

/* ---------- the floating basket bar (small screens) ---------- */
.obar {
  position: fixed; z-index: 45; left: 50%; bottom: 18px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 12px; padding: 13px 20px;
  background: var(--green); color: #fff; border-radius: 999px; box-shadow: var(--shadow-pop);
  font-family: var(--f-display); font-size: 12.5px; letter-spacing: .13em; text-transform: uppercase;
}
.obar:hover { background: var(--green-d); }
.obar-count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px;
  padding: 0 6px; border-radius: 11px; background: rgba(0, 0, 0, .28); font-size: 12px;
}
.obar-total { color: #fff; }
@media (min-width: 1181px) { .obar { display: none; } }
.order.drawer-open .obar { display: none; }

/* ---------- the option sheet ---------- */
.osheet {
  padding: 0; border: 1px solid var(--line-dark); border-radius: var(--radius);
  background: var(--ink-2); color: var(--t-hi); width: min(560px, 92vw); max-height: 88vh;
  box-shadow: var(--shadow-pop);
}
.osheet::backdrop { background: rgba(0, 0, 0, .62); }
.osheet:not([open]) { display: none; }
.osheet[open] { position: fixed; inset: 0; margin: auto; }
.osheet-in { display: flex; flex-direction: column; max-height: 88vh; }
.osheet-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 22px 24px 16px; border-bottom: 1px solid var(--line-dark);
}
.osheet-head h3 { font-family: var(--f-display); font-weight: 300; font-size: 24px; letter-spacing: .03em; margin: 0; }
.osheet-groups { padding: 8px 24px 20px; overflow: auto; }
.ogroup { border: none; margin: 0; padding: 20px 0 0; }
.ogroup legend { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; padding: 0 0 10px; }
.ogroup-name { font-family: var(--f-display); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ogroup-hint { font-size: 13px; color: var(--t-lo); }
.ogroup-req {
  font-family: var(--f-display); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--chilli); border: 1px solid var(--chilli); border-radius: 2px; padding: 2px 6px;
}
.ogroup-opts { display: grid; gap: 1px; }
.oopt {
  display: flex; align-items: center; gap: 12px; padding: 12px 2px;
  border-bottom: 1px solid var(--hair-soft); font-size: 15px; color: var(--t-hi); cursor: pointer;
}
.oopt input { accent-color: var(--green); width: 17px; height: 17px; flex: none; }
.oopt input:disabled { opacity: .4; }
.oopt-name { flex: 1 1 auto; }
.oopt-delta { font-family: var(--f-display); font-size: 14px; color: var(--green); white-space: nowrap; }
.oopt:has(input:disabled) { color: var(--t-faint); cursor: not-allowed; }
.osheet-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 24px 22px; border-top: 1px solid var(--line-dark);
}
.osheet-total { display: flex; flex-direction: column; gap: 3px; }
.osheet-total span { font-family: var(--f-display); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--t-lo); }
.osheet-total strong { font-family: var(--f-display); font-weight: 400; font-size: 22px; color: var(--gold); }
.osheet-foot .btn-green:disabled { background: var(--ink); color: var(--t-faint); border: 1px solid var(--line-dark); cursor: not-allowed; }
@media (max-width: 560px) {
  .osheet[open] { inset: auto 0 0 0; margin: 0; width: auto; max-height: 92vh; border-radius: var(--radius) var(--radius) 0 0; border-width: 1px 0 0; }
  .osheet-in { max-height: 92vh; }
  .osheet-foot { flex-wrap: wrap; }
  .osheet-foot .btn-green { flex: 1 1 auto; }
}

/* ---------- contact form (blocks/contact-form) ---------- */
.cform { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.cform-done { grid-column: 1 / -1; max-width: 60ch; }
.cform-ref { margin: 22px 0 0; font-family: var(--f-display); font-size: 20px; color: var(--gold); }
.cform-ref strong { font-weight: 400; letter-spacing: .1em; }
.cform-note { margin: 10px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--t-lo); }
.cform-opt { color: var(--t-faint); }
.cform-box {
  display: grid; gap: 16px; padding: clamp(20px, 3vw, 30px);
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.cform-field { display: grid; gap: 7px; }
.cform-field[hidden] { display: none; }
.cform-field label {
  font-family: var(--f-display); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--t-lo);
}
.cform-field input, .cform-field textarea {
  width: 100%; padding: 11px 13px; border-radius: var(--radius);
  border: 1px solid var(--line-dark); background: var(--ink); color: var(--t-hi);
  font-family: var(--f-body); font-size: 15px; line-height: 1.5;
  -webkit-appearance: none; appearance: none;
}
.cform-field textarea { resize: vertical; min-height: 130px; }
.cform-field input::placeholder, .cform-field textarea::placeholder { color: var(--t-faint); }
.cform-field input:focus-visible, .cform-field textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.cform-err { margin: 0; font-size: 13px; color: var(--chilli); }
.cform-alert {
  margin: 0; padding: 11px 13px; border-radius: var(--radius);
  border: 1px solid var(--chilli); background: rgba(184, 64, 47, .12);
  font-size: 13.5px; line-height: 1.55; color: var(--t-lede);
}
.cform-send { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cform-send .cform-note { margin: 0; }
@media (max-width: 820px) { .cform { grid-template-columns: minmax(0, 1fr); gap: 26px; } }
