/* =========================================================
   Bean Feen Coffee — styles
   Aesthetic: modern, minimalist, premium · black & neutral
   Bone ground · ink (near-black) · single restrained taupe accent
   Display: Bricolage Grotesque · Body: Hanken Grotesk
   ========================================================= */

:root {
  /* ink / dark */
  --ink:        #111110;   /* near-black: primary text + dark section backgrounds */
  --ink-2:      #2a2a27;   /* slightly lifted dark surface */
  --ink-soft:   #57544d;   /* muted body text on light grounds */

  /* light / neutral grounds */
  --bone:       #f5f2ec;   /* primary light background (warm neutral) */
  --bone-2:     #ebe7df;   /* cards / alt surfaces */
  --paper:      #ffffff;   /* crisp surfaces */

  /* lines + labels */
  --line:       #d8d3cd;   /* hairline borders / dividers */
  --muted:      #8c887f;   /* DECORATIVE/non-text marks only (sub-AA on light) */
  --label:      #6b675f;   /* uppercase label + secondary TEXT (clears AA 4.5:1 on bone/paper) */

  /* single restrained accent — BRAND GOLD sampled from the logo; use SPARINGLY */
  --accent:     #c0a080;   /* eyebrow dot, underlines, focus ring, small marks */
  --accent-deep:#7d6440;   /* darker gold-brown — readable as text on light grounds */

  /* light text tone for dark sections (clears AA on --ink) */
  --on-dark:    rgba(245, 242, 236, 0.78);

  /* roles */
  --bg: var(--bone);
  --fg: var(--ink);

  /* type */
  --display: "Bricolage Grotesque", "Helvetica Neue", Helvetica, sans-serif;
  --body: "Hanken Grotesk", "Helvetica Neue", Helvetica, sans-serif;

  /* rhythm */
  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --radius: 14px;
  --section-y: clamp(5rem, 11vw, 10rem);

  /* refined shadows — quiet, neutral, never warm/brown */
  --shadow: 0 18px 44px -30px rgba(17, 17, 16, 0.45);
  --shadow-lg: 0 40px 90px -48px rgba(17, 17, 16, 0.5);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--fg);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.1rem);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--bone); }

/* ---------- a11y utilities ---------- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* skip-to-content: visually hidden until focused, then anchored top-left over the nav */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transform: translateY(-120%);
  margin: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* visible keyboard focus on every interactive control (forms, nav, buttons, summaries) */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
/* on the dark/ink bands a bone ring reads better against the ground */
.findus :focus-visible,
.story :focus-visible,
.book :focus-visible,
.newsletter :focus-visible { outline-color: var(--bone); }

/* ---------- shared type ---------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- buttons ---------- */
.btn {
  --bg-btn: var(--ink);
  --fg-btn: var(--bone);
  --bd-btn: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  background: var(--bg-btn);
  color: var(--fg-btn);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid var(--bd-btn);
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

/* secondary: thin outline, transparent fill (on light grounds) */
.btn--ghost { --bg-btn: transparent; --fg-btn: var(--ink); --bd-btn: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }

/* outline on dark/ink bands: bone hairline, fills bone on hover */
.btn--ghost-light { --bg-btn: transparent; --fg-btn: var(--bone); --bd-btn: rgba(245, 244, 236, 0.55); }
.btn--ghost-light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* light fill on dark/ink bands (primary inverted) */
.btn--light { --bg-btn: var(--bone); --fg-btn: var(--ink); --bd-btn: var(--bone); }
.btn--light:hover { background: var(--paper); border-color: var(--paper); }

.btn--small { padding: 0.55rem 1.15rem; font-size: 0.84rem; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.15rem var(--pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav.is-stuck {
  background: rgba(245, 242, 236, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), var(--shadow);
}
.nav.is-stuck .nav__inner { padding-top: 0.7rem; padding-bottom: 0.7rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  color: var(--ink);
}
.brand__mark { display: inline-flex; }
/* nav logo coin: gold-on-black badge from the brand logo, masked to a circle */
.brand__logo { width: 46px; height: 46px; border-radius: 50%; display: block; flex: none; }
.brand__type {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
}
.brand__type small {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--label);
  margin-top: 3px;
}

.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.2rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav__links a:hover::after { transform: scaleX(1); }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 4px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 var(--pad) 1.4rem;
}
.nav__drawer a { font-weight: 500; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.nav__drawer .btn { margin-top: 0.8rem; border-bottom: 0; }
.nav__drawer.is-open { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad) clamp(3.5rem, 7vw, 6rem);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero__title {
  font-size: clamp(2.9rem, 8.5vw, 6.2rem);
  margin: 1.4rem 0 1.6rem;
  letter-spacing: -0.03em;
}
.hero__title span { display: block; }
/* accent now = a thin restrained underline rule, not a loud color fill */
.hero__title--accent {
  color: var(--ink);
  display: inline-block;
  position: relative;
}
.hero__title--accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 2px;
  background: var(--accent);
}
.hero__lede {
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.28rem);
  max-width: 42ch;
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.8rem 0 2.4rem;
}
.hero__stats {
  display: flex;
  gap: clamp(1.4rem, 4vw, 3rem);
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stats span {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  margin-top: 0.4rem;
}

/* hero visual: minimal premium image-placeholder slot */
.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem;
  overflow: hidden;
}
/* when a real <img> is dropped in, let it fill the slot cleanly */
.hero__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 1px);
}
.hero__placeholder svg { width: clamp(70px, 18vw, 110px); height: auto; color: var(--accent); }
.hero__placeholder-tag {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label);
  text-align: center;
  line-height: 1.5;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink);
  color: var(--bone);
  padding: 0.95rem 0;
  overflow: hidden;
  white-space: nowrap;
}
/* Two identical .marquee__group siblings make the track exactly 2x one group,
   so animating translateX(0) → -50% lands precisely at the loop start — no jump. */
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-right: 1.8rem; /* trailing space so the seam matches the inter-item gap */
  flex: none;
}
.marquee__track span {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee__track .bean { color: var(--accent); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--section-y) var(--pad);
}
.section__head { max-width: 680px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin: 0.9rem 0 1rem;
}
.section__sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 56ch; }

/* alternating dark (ink) section helper */
.section--dark {
  background: var(--ink);
  color: var(--bone);
  max-width: none;
}
.section--dark > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.section--dark .section__sub { color: var(--on-dark); }
.section--dark .eyebrow { color: var(--accent); }

/* paper (crisp white) section helper */
.section--paper { background: var(--paper); max-width: none; }
.section--paper > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

/* -----------------------------------------------------------
   Per-section ground alternation (Pass A markup uses plain
   .section <name> classes, not --dark/--paper modifiers, so the
   grounds are wired here): bone → ink → bone → paper → ink …
   Full-bleed dark/paper bands re-center their inner content to --maxw.
   ----------------------------------------------------------- */
.menu,
.faq {
  background: var(--paper);
  max-width: none;
}
.findus {
  background: var(--ink);
  color: var(--bone);
  max-width: none;
}
/* re-center inner content of the full-bleed bands */
.menu > *,
.faq > *,
.findus > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

/* Story is a two-column band: keep it capped + centered at --maxw and
   paint the near-black ground full-bleed via a pseudo-element, so the
   side-by-side grid is preserved (no per-child re-centering). */
.story {
  color: var(--bone);
  position: relative;
}
.story::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--ink);
  z-index: 0;
}
.story > * { position: relative; z-index: 1; }
/* dark-band typography defaults */
.findus .section__title,
.story .section__title { color: var(--bone); }
.findus .section__sub,
.story .section__sub { color: var(--on-dark); }
.findus .eyebrow,
.story .eyebrow { color: var(--accent); }

/* =========================================================
   WHY (feature cards)
   ========================================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.why__card {
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.why__icon { width: 30px; height: 30px; color: var(--accent); }
.why__card h3 { font-size: 1.35rem; font-weight: 700; }
.why__card p { color: var(--ink-soft); font-size: 0.98rem; }

/* =========================================================
   MENU (.menu — elegant typographic R/L price list)
   ========================================================= */
.menu { max-width: 880px; }

/* shared column grid: name | R | L (price columns are fixed, right-aligned) */
.menu__group-head,
.menu__row {
  display: grid;
  grid-template-columns: 1fr 4.2rem 4.2rem;
  gap: 1rem;
  align-items: baseline;
}

.menu__legend {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.menu__group { margin-bottom: clamp(2.6rem, 5vw, 3.6rem); }

/* group head row: title on the left, R / L column headers right-aligned,
   sitting on a heavier rule */
.menu__group-head {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--ink);
}
.menu__group-title {
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.menu__group-head .menu__col {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--label);
  text-align: right;
}

.menu__row {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}
.menu__row:hover { padding-left: 0.6rem; }

.menu__name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
}
.menu__name h3 {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* signature standout: restrained taupe pill tag */
.menu__sig {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.12rem 0.55rem;
  align-self: center;
  line-height: 1.4;
}

/* prices: display face, tabular figures, ink (clears AA — never the accent).
   The two .menu__price spans per row map to the R then L columns of the grid. */
.menu__price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--ink);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
/* per-price size label: visually hidden on desktop (the R/L column headers carry
   the meaning for sighted users) but read by screen readers as "Regular $6.75".
   Becomes a visible inline mini-label on the stacked mobile layout. */
.menu__plab {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* customize add-ons sub-card */
.menu__customize {
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--bone-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.menu__customize h3 { font-size: 1.4rem; margin-bottom: 1.3rem; }
.menu__customize dl { display: grid; gap: 1rem; margin: 0; }
.menu__customize dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.menu__customize dd { color: var(--ink-soft); font-size: 0.98rem; margin: 0.15rem 0 0; }

.menu__note {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* =========================================================
   FIND US (dark)
   ========================================================= */
.findus__head { max-width: 680px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }

/* coming-soon treatment — understated panel on the ink band */
.findus__soon {
  border-top: 1px solid rgba(245, 242, 236, 0.2);
  padding-top: clamp(2rem, 4vw, 2.6rem);
}
.findus__soon-line {
  color: var(--on-dark);
  font-size: 1.08rem;
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.findus__cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 1.4rem);
}
.gallery__tile {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}
.gallery__tile--wide { grid-column: span 2; }
.gallery__tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__ph,
.gallery__tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  /* clean neutral placeholder: bone-2 fill + faint diagonal hairline texture */
  background:
    repeating-linear-gradient(45deg, rgba(17, 17, 16, 0.035) 0 1px, transparent 1px 13px),
    var(--bone-2);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery__ph {
  display: grid;
  place-items: center;
}
.gallery__ph::after {
  content: "PHOTO";
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--label);
}
.gallery__tile:hover .gallery__ph,
.gallery__tile:hover img { transform: scale(1.03); }
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.1rem 0.9rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--bone);
  background: linear-gradient(to top, rgba(17, 17, 16, 0.82), transparent);
}

/* =========================================================
   STORY (dark)
   Markup has no .story__inner wrapper — .story__visual and
   .story__copy are direct children of .story, which stays capped at
   --maxw (base .section rule) so the two-column grid is applied to
   .story itself; the dark ground bleeds full-width via .story::before.
   ========================================================= */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.story__visual { position: relative; }
.story__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid rgba(245, 242, 236, 0.22);
  background: var(--ink-2);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}
.story__photo-tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark);
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.6;
}
.story__stamp {
  position: absolute;
  bottom: 14px; right: 14px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  background: rgba(17, 17, 16, 0.5);
}
.story__copy .eyebrow { color: var(--accent); }
.story__copy .section__title { color: var(--bone); }
.story__copy p { color: var(--on-dark); margin-top: 1.1rem; max-width: 52ch; }
.story__copy .btn { margin-top: 1.8rem; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
}
.quote {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.6rem 1.7rem 1.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.quote:hover { transform: translateY(-4px); }
.quote::before { /* decorative quote mark — not read by AT */
  content: "\201C";
  position: absolute;
  top: 0.4rem; left: 1.1rem;
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
}
.quote blockquote {
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote figcaption { margin-top: auto; }
.quote__name {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
}
.quote__ctx {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--label);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq__list {
  display: grid;
  gap: 0.7rem;
  max-width: 820px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bone);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq__item[open] { box-shadow: var(--shadow); }
.faq__item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { /* +/− affordance */
  content: "+";
  margin-left: auto;
  flex: none;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.25s, border-color 0.25s;
}
.faq__item[open] summary::after {
  content: "\2212"; /* minus */
  color: var(--accent-deep);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq__item summary:hover { color: var(--accent-deep); }
.faq__a { padding: 0 1.3rem 1.25rem; }
.faq__a p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 62ch;
}

/* =========================================================
   BOOK / CTA (dark band)
   ========================================================= */
.book {
  background: var(--ink);
  color: var(--bone);
  max-width: none;
}
.book__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.book__title {
  font-size: clamp(2.1rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: var(--bone);
}
.book__title span { display: block; color: var(--accent); font-size: 0.5em; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-top: 0.6rem; }
.book__inner > p { max-width: 52ch; margin: 0 auto; color: var(--on-dark); }
.book__contact { font-size: 0.9rem; letter-spacing: 0.02em; color: var(--on-dark); }

/* =========================================================
   FORMS (shared field scaffolding)
   ========================================================= */
.field { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.field label {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.78rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input::placeholder,
.field textarea::placeholder { color: var(--label); }
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b675f' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.4rem;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--ink); }
.req { color: inherit; font-weight: 700; }

/* invalid (validated) state — only after JS marks it, never on first paint */
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(156, 138, 120, 0.28);
}
.field__error {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  width: fit-content;
}

/* ---------- BOOKING form (on the ink band) ---------- */
.book__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 1.4rem;
  max-width: 760px;
  margin: 2.4rem auto 1.4rem;
  text-align: left;
}
.book__hp { position: absolute; left: -9999px; }
.book__legend {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--on-dark);
}
.book__form .field--full { grid-column: 1 / -1; }
.book__form .field label { color: var(--bone); }
.book__submit { align-items: flex-start; }
.book__submit .btn { margin-top: 0.2rem; }
.book__status {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 700;
  color: var(--bone);
  min-height: 1px;
}
/* on-brand success swap — replaces the form contents via .is-sent */
.book__form.is-sent .field,
.book__form.is-sent .book__legend,
.book__form.is-sent .book__submit { display: none; }
.book__form.is-sent .book__status {
  font-family: var(--display);
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5rem 0;
}

/* =========================================================
   NEWSLETTER (slim dark full-bleed band)
   ========================================================= */
.newsletter {
  max-width: none;
  background: var(--ink-2);
  color: var(--bone);
}
.newsletter__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.6rem, 6vw, 4rem) var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.newsletter .eyebrow { color: var(--accent); }
.newsletter__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0.6rem 0 0.6rem;
  color: var(--bone);
}
.newsletter__sub { color: var(--on-dark); max-width: 46ch; }
.newsletter__hp { position: absolute; left: -9999px; }
.newsletter__form { width: 100%; }
.field--inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.7rem;
}
.field--inline input {
  flex: 1 1 14rem;
  width: auto;
}
.field--inline .btn { flex: 0 0 auto; }
.newsletter__status {
  margin: 0.8rem 0 0;
  font-weight: 700;
  color: var(--bone);
  min-height: 1px;
}
.newsletter__form.is-sent .field--inline { display: none; }
.newsletter__form.is-sent .newsletter__status {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-top: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand__type { font-size: 1.6rem; }
/* brand logo coin (gold-on-black badge masked to a circle) — reads on the bone footer */
.footer__logo { width: 116px; height: 116px; border-radius: 50%; display: block; }
.footer__brand p { color: var(--ink-soft); margin-top: 1rem; max-width: 34ch; }
.footer__links, .footer__social { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a, .footer__social a { font-weight: 500; width: fit-content; position: relative; }
.footer__links a:hover, .footer__social a:hover { color: var(--accent-deep); }
.footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: space-between;
  padding-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--label);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* hero uses staggered load delays via data-d */
.hero .reveal[data-d="0"] { transition-delay: 0.05s; }
.hero .reveal[data-d="1"] { transition-delay: 0.15s; }
.hero .reveal[data-d="2"] { transition-delay: 0.25s; }
.hero .reveal[data-d="3"] { transition-delay: 0.35s; }
.hero .reveal[data-d="4"] { transition-delay: 0.45s; }
.hero .reveal[data-d="5"] { transition-delay: 0.55s; }
.hero .reveal[data-d="6"] { transition-delay: 0.65s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__placeholder { max-width: 320px; }

  .why__grid { grid-template-columns: 1fr; }

  .story { grid-template-columns: 1fr; }
  .story__visual { max-width: 420px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__tile--wide { grid-column: span 2; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }

  .newsletter__inner { grid-template-columns: 1fr; }

  /* tappable footer + social links on mobile (keeps fit-content underline) */
  .footer__links a, .footer__social a {
    padding: 0.55rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .book__form { grid-template-columns: 1fr; }
  .field--inline { flex-direction: column; align-items: stretch; }
  .field--inline input { flex: 1 1 auto; }
  .hero__stats { flex-wrap: wrap; gap: 1.2rem 1.8rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__tile--wide { grid-column: auto; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Menu: stack name over a price row earlier (680px) so the cramped mid-band
   with long signature names + two fixed price columns never appears. Reveals
   the inline R/L mini-labels (the column headers are hidden) so the two prices
   stay unambiguous. */
@media (max-width: 680px) {
  .menu__group-head .menu__col { display: none; }
  .menu__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "name name"
      "pr   pl";
    row-gap: 0.5rem;
    column-gap: 1rem;
  }
  .menu__row .menu__name { grid-area: name; }
  .menu__row .menu__price:first-of-type { grid-area: pr; text-align: left; }
  .menu__row .menu__price:last-of-type { grid-area: pl; text-align: left; }
  /* un-hide the size labels and render them inline above each price */
  .menu__row .menu__plab {
    position: static;
    width: auto; height: auto;
    margin: 0 0.35rem 0 0;
    clip: auto;
    overflow: visible;
    display: inline;
    font-family: var(--body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--label);
  }
}

/* Small phones: lower the hero floor so long words fit ~320px columns,
   give content a touch more horizontal breathing room. */
@media (max-width: 480px) {
  :root { --pad: 1.4rem; }
  .hero__title { font-size: clamp(2.2rem, 11vw, 2.9rem); }
  .hero__title span { overflow-wrap: break-word; }
}

/* Narrowest phones: tighten hero stats + nudge the wordmark/logo down. */
@media (max-width: 400px) {
  .hero__stats { gap: 1rem 1.4rem; }
  .hero__stats strong { font-size: 1.5rem; }
  .brand__type { font-size: 1.25rem; }
  .brand__logo { width: 40px; height: 40px; }
}

/* =========================================================
   MOTION SAFETY
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  /* neutralize hover lift/zoom + slow scroll on surviving components —
     content stays put & visible */
  .gallery__tile:hover { transform: none; }
  .gallery__tile:hover .gallery__ph,
  .gallery__tile:hover img { transform: none; }
  .quote:hover { transform: none; }
  .faq__item[open] summary::after { transform: none; }
  .btn:hover { transform: none; }
  .menu__row:hover { padding-left: 0; }
  /* fully stop the marquee scroll */
  .marquee__track { animation: none; }
}
