/* Melt n Dip — mobile-first baseline.
   The primary surface is a phone: an owner scans the /qr code at their own
   counter. Everything here assumes small screen first and scales up.

   Palette and type are the restaurant's own, sampled from meltndipatl.com's
   rendered CSS — crimson #c0121a, caramel #c8844a, cocoa #5c3020 on near-black,
   set in Playfair Display and Josefin Sans. Cream sections break up a 120-item
   menu so it doesn't read as one unbroken dark slab. */

:root {
  --surface: #0f0908;
  --surface-2: #080504;
  --surface-3: #17100d;
  --paper: #f7efe6;
  --ink: #f7efe6;
  --ink-dark: #1e120d;
  --muted: rgba(247, 239, 230, 0.62);
  --muted-dark: rgba(30, 18, 13, 0.68);

  --crimson: #c0121a;
  --crimson-bright: oklch(0.62 0.21 27);
  --crimson-deep: oklch(0.42 0.17 27);
  --caramel: #c8844a;
  --caramel-light: oklch(0.82 0.10 68);
  --cocoa: #5c3020;

  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body: 'Josefin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --accent: 'Cormorant Garamond', Georgia, serif;

  --gutter: clamp(20px, 5vw, 48px);
  --measure: 62ch;
  --radius: 3px;

  /* Published by scripts.html so the sticky nav can clear the preview banner. */
  --banner-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  /* 16px floor: iOS Safari zooms the viewport when a user focuses an input
     smaller than this, which wrecks the layout mid-demo. Josefin Sans runs
     small for its em size, so this is the floor, not a preference. */
  font: 400 16px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: `hidden` on body makes position:sticky stop working in
     some engines, which would kill the nav. */
  overflow-x: clip;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.08;
  margin: 0 0 .5em;
  text-wrap: balance;
  font-weight: 500;
}
h1 { font-size: clamp(2.3rem, 10vw, 4.75rem); }
h2 { font-size: clamp(1.85rem, 7vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 4.5vw, 1.5rem); font-weight: 600; }
p  { margin: 0 0 1em; max-width: var(--measure); text-wrap: pretty; }

a { color: var(--caramel); text-decoration: none; }
a:hover { color: var(--caramel-light); }
::selection { background: var(--crimson); color: #fff; }

/* Every interactive target clears 44px, the smallest reliable thumb tap.
   mobile-audit.mjs fails the build if anything here regresses. Inline links
   inside prose are exempt — see .prose-link. */
a, button, [role="button"] { min-height: 44px; }
/* min-height does nothing to a non-replaced inline box, so any link that isn't
   already a flex child has to be blockified for the 44px to take effect. */
.visit-rows a, .footer-links a { display: inline-flex; align-items: center; }
/* A short label ("Call") clears 44px tall and still fails the tap target on
   width. The floor has to be square, not just high. */
.footer-links a { min-width: 44px; justify-content: center; }
.prose-link { min-height: 0; display: inline; }

section { padding: clamp(56px, 13vw, 104px) var(--gutter); }
.inner { max-width: 1160px; margin-inline: auto; }

.eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--caramel);
  margin: 0 0 20px;
  font-weight: 600;
}
.section-head { margin-bottom: 16px; }
.section-head h2 { margin: 0; }
.section-head h2 em { font-style: italic; color: var(--crimson-bright); }
.lede { color: var(--muted); margin-bottom: 44px; }

/* Sections on cream reverse the ink and the accent. */
.on-paper { background: var(--paper); color: var(--ink-dark); }
.on-paper .eyebrow { color: var(--crimson); }
.on-paper .lede { color: var(--muted-dark); }
.on-paper a { color: var(--crimson); }
.on-paper a:hover { color: var(--crimson-bright); }
.on-paper .section-head h2 em { color: var(--crimson); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .25s;
}
.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover {
  background: var(--crimson-bright);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(192, 18, 26, .35);
}
.btn-ghost { border: 1px solid rgba(247, 239, 230, .3); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); color: #fff; transform: translateY(-2px); }
.on-paper .btn-dark { background: var(--ink-dark); color: var(--paper); }
.on-paper .btn-dark:hover { background: #3a241b; color: #fff; }
.on-paper .btn-ghost { border-color: rgba(30, 18, 13, .35); color: var(--ink-dark); }
.on-paper .btn-ghost:hover { border-color: var(--ink-dark); }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: var(--banner-h);
  z-index: 100;
  background: rgba(15, 9, 8, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: env(safe-area-inset-top);
}
.nav.scrolled { background: rgba(8, 5, 4, .97); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px var(--gutter);
  max-width: 1160px;
  margin-inline: auto;
}

.nav-brand { display: inline-flex; align-items: baseline; gap: 10px; color: var(--ink); }
.nav-brand:hover { color: var(--ink); }
.nav-brand-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.nav-brand-dot { color: var(--crimson-bright); }
.nav-loc {
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}

.nav-items { display: none; gap: 24px; align-items: center; }
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(247, 239, 230, .75);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-link:hover { color: #fff; }
.nav-cta { padding: 11px 18px; font-size: .75rem; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; width: 24px; background: var(--ink); }

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) calc(16px + env(safe-area-inset-bottom));
  background: var(--surface-2);
}
.nav-drawer.open { display: flex; }
.nav-drawer-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--ink);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 600;
}
.nav-drawer-cta { color: var(--caramel); }

@media (min-width: 940px) {
  .nav-items { display: flex; }
  .nav-loc { display: block; }
  /* The whole mobile action cluster goes, not just the hamburger — the compact
     "Order" button duplicates the full CTA that .nav-items brings back. */
  .nav-actions { display: none; }
  .nav-drawer { display: none !important; }
}

/* ---------- Hero ---------- */

.hero { display: grid; grid-template-columns: 1fr; padding: 0; }
.hero-copy {
  padding: clamp(44px, 10vw, 80px) var(--gutter) clamp(40px, 9vw, 72px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Three soft chocolate-coloured washes behind the headline — milk, dark, white,
   which is the whole idea of the place. Decoration only: it must never
   intercept a tap meant for the buttons stacked over it. */
.hero-drips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  user-select: none;
  background:
    radial-gradient(56% 42% at 88% 6%, rgba(122, 74, 42, .5), transparent 70%),
    radial-gradient(46% 40% at 96% 44%, rgba(232, 213, 181, .12), transparent 70%),
    radial-gradient(60% 48% at 78% 96%, rgba(192, 18, 26, .22), transparent 72%);
}

.hero .open-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(192, 18, 26, .16);
  border: 1px solid rgba(192, 18, 26, .5);
  color: #f4b9bc;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  margin: 0 0 26px;
  position: relative;
}

.hero h1 { margin: 0 0 4px; letter-spacing: -.01em; position: relative; }
.hero h1.em { font-style: italic; color: var(--crimson-bright); }
.hero h1:last-of-type { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(1rem, 3.6vw, 1.0625rem);
  color: rgba(247, 239, 230, .74);
  margin: 0 0 32px;
  max-width: 32rem;
  position: relative;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }
.hero-actions .btn { flex: 1 1 auto; }

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
  /* 14px floor: this row carries the hours and the address, which is the first
     thing an owner checks on their own phone. */
  font-size: .875rem;
  color: var(--muted);
  position: relative;
}
.hero-stats strong { color: var(--caramel); font-weight: 700; display: block; letter-spacing: .04em; }

.hero-media { position: relative; min-height: 320px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-fade { display: none; }

@media (min-width: 940px) {
  .hero { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); min-height: 660px; }
  .hero-actions .btn { flex: 0 0 auto; }
  .hero-stats { flex-direction: row; gap: 36px; margin-top: 48px; }
  .hero-stats > div + div { border-left: 1px solid rgba(247, 239, 230, .18); padding-left: 36px; }
  .hero-media { min-height: 0; }
  .hero-fade {
    display: block;
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 120px;
    background: linear-gradient(90deg, var(--surface), rgba(15, 9, 8, 0));
    pointer-events: none;
  }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--crimson);
  overflow: hidden;
  padding: 13px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mnd-marquee 38s linear infinite;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track > span { padding-right: 48px; }
@keyframes mnd-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Three chocolates ---------- */

.chocs { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
.choc {
  border: 1px solid rgba(30, 18, 13, .16);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.choc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(30, 18, 13, .12);
  border-color: rgba(30, 18, 13, .38);
}
.choc-swatch {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: inset 0 -6px 14px rgba(0, 0, 0, .28);
}
.choc h3 { margin: 0; font-family: var(--display); }
.choc p { margin: 0; font-size: .9375rem; color: var(--muted-dark); }
@media (min-width: 780px) { .chocs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }

.shots-head {
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 700;
  margin: 0 0 14px;
}
.shots { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; max-width: 720px; }
.shot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: .9375rem;
  background: linear-gradient(rgba(30, 18, 13, .12), rgba(30, 18, 13, .12)) no-repeat bottom / 100% 1px;
}
.shot span:last-child { font-family: var(--display); flex: 0 0 auto; }
@media (min-width: 700px) { .shots { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- Signature dishes ---------- */

.sigs { display: grid; grid-template-columns: 1fr; gap: 18px; }
.sig {
  background: var(--surface-3);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius);
}
.sig-flag {
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
}
.sig h3 { margin: 0; font-family: var(--display); }
.sig p { margin: 0; font-size: .9375rem; color: var(--muted); }
.sig-price { font-family: var(--display); font-size: 1.25rem; color: var(--ink); margin-top: auto; padding-top: 10px; }
@media (min-width: 700px) { .sigs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .sigs { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Events ---------- */

.events { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
.events-media img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius); }
.event-cap {
  font-family: var(--display);
  font-size: clamp(2.75rem, 12vw, 4rem);
  line-height: 1;
  color: var(--crimson-bright);
  margin: 0;
}
.event-cap-label {
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 6px 0 28px;
}
.pkgs { display: grid; grid-template-columns: 1fr; gap: 2px; margin-bottom: 28px; }
.pkg { background: var(--surface-3); padding: 22px 24px; }
.pkg h3 {
  margin: 0 0 8px;
  font-family: var(--body);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
}
.pkg p { margin: 0; font-size: .9375rem; color: var(--muted); max-width: none; }
.event-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.event-list li {
  position: relative;
  padding-left: 24px;
  font-size: .9375rem;
  color: var(--muted);
}
.event-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson-bright);
}
.event-lead { font-size: .8125rem; color: var(--muted); margin: 22px 0 0; }
@media (min-width: 900px) {
  .events { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
  .events-media img { height: 100%; min-height: 460px; }
  .pkgs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Menu ---------- */

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
  /* Bleed to the gutter so the row visibly runs off-screen — that is the
     affordance telling a thumb there is more to the right. */
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  background: none;
  border: 1px solid rgba(247, 239, 230, .2);
  border-radius: 999px;
  color: rgba(247, 239, 230, .72);
  font-family: var(--body);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.tab:hover { color: #fff; border-color: rgba(247, 239, 230, .45); }
.tab[aria-selected="true"] { background: var(--crimson); border-color: var(--crimson); color: #fff; }

.tabpanel[hidden] { display: none; }

.menu-group-label {
  font-size: .6875rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--caramel);
  font-weight: 700;
  margin: 30px 0 12px;
  /* The label spans both menu columns rather than sitting in one of them. */
  grid-column: 1 / -1;
}
.menu-group-label:first-child { margin-top: 0; }

.menu-list { display: grid; grid-template-columns: 1fr; gap: 0; align-content: start; }
.menu-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 4px 12px;
  padding: 12px 0;
  background: linear-gradient(rgba(247, 239, 230, .1), rgba(247, 239, 230, .1)) no-repeat bottom / 100% 1px;
}
.menu-no {
  font-family: var(--display);
  font-size: .75rem;
  color: rgba(247, 239, 230, .34);
  min-width: 1.4em;
  font-variant-numeric: tabular-nums;
}
/* Rows for items the restaurant doesn't number keep the price column aligned
   with the numbered ones rather than sliding a character to the left. */
.menu-row.no-num { grid-template-columns: 1fr auto; }
.menu-name { font-size: .9375rem; font-weight: 500; }
.menu-price {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--ink);
  white-space: nowrap;
}
/* 14px, not 13: this line carries the full dish description — the thing an
   owner reads first to check we got their menu right. */
.menu-desc {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
  margin: 2px 0 0;
  max-width: 46ch;
}
.menu-row.no-num .menu-desc { grid-column: 1 / -1; }
/* The size ladder off the in-store boards. Toast only ever exposed a "+", so
   this line is the difference between "$8.49+" and knowing what a 64 oz costs.
   Tabular figures keep the columns from dancing between rows. */
.menu-sizes {
  grid-column: 2 / -1;
  color: var(--caramel);
  font-size: .875rem;
  line-height: 1.5;
  margin: 3px 0 0;
  max-width: none;
  font-variant-numeric: tabular-nums;
}
.menu-row.no-num .menu-sizes { grid-column: 1 / -1; }
.on-paper .menu-sizes { color: var(--crimson); }
.menu-note { color: var(--muted); font-size: .8125rem; margin-left: 8px; }
.badge {
  display: inline-block;
  font-size: .5625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 2px 7px;
  font-weight: 700;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
  white-space: nowrap;
}
.badge-gold { background: var(--caramel); color: #17100d; }
.badge-red { background: var(--crimson); color: #fff; }
@media (min-width: 860px) { .menu-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; } }

.menu-foot {
  margin-top: 30px;
  font-size: .8125rem;
  color: var(--muted);
  max-width: none;
}
.menu-cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 6px 6px;
  background: var(--surface);
}
.gallery figure { margin: 0; height: 150px; transition: transform .3s ease; }
.gallery figure:hover { transform: translateY(-4px); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .gallery figure { height: 260px; }
}

.gallery-note {
  background: var(--surface);
  color: var(--muted);
  font-size: .75rem;
  margin: 0;
  padding: 14px var(--gutter) 22px;
  max-width: none;
  text-align: center;
}

/* The red arch band over their counter, cropped to the arches. Decorative, so
   it carries an empty alt and sits outside the reading order. */
.arch-band { background: var(--surface-2); overflow: hidden; }
.arch-band img { width: 100%; height: 90px; object-fit: cover; object-position: center 40%; }
@media (min-width: 800px) { .arch-band img { height: 150px; } }

/* ---------- Story ---------- */

.story-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.story-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }
.stats { display: grid; grid-template-columns: 1fr; gap: 2px; margin-top: 40px; }
.stat { background: var(--surface-3); padding: 20px 22px; }
.stat-v { font-family: var(--display); font-size: 1.75rem; color: var(--crimson-bright); line-height: 1; }
.stat-l {
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
  .story-grid img { height: 420px; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Reviews ---------- */

.reviews { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review { background: var(--surface-3); padding: 28px 26px; border-radius: var(--radius); }
.review-stars { color: var(--caramel); letter-spacing: .18em; font-size: .8125rem; margin-bottom: 14px; }
.review blockquote { margin: 0 0 16px; font-size: 1rem; line-height: 1.65; font-family: var(--accent); font-size: 1.15rem; }
.review cite { font-style: normal; font-size: .75rem; color: var(--caramel); letter-spacing: .14em; text-transform: uppercase; }
.source-note { margin-top: 24px; font-size: .75rem; color: var(--muted); max-width: none; }
@media (min-width: 820px) { .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- FAQ ---------- */

.faq-item {
  background: linear-gradient(rgba(30, 18, 13, .14), rgba(30, 18, 13, .14)) no-repeat bottom / 100% 1px;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--crimson);
  flex: 0 0 auto;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 18px; color: var(--muted-dark); font-size: .9375rem; }

/* ---------- Visit ---------- */

.visit-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.visit-addr { font-size: 1.125rem; line-height: 1.55; font-weight: 600; margin-bottom: 4px; }
.visit-addr-2 { font-size: 1.125rem; color: var(--muted-dark); margin-bottom: 24px; }
.visit-rows { display: grid; grid-template-columns: auto 1fr; gap: 8px 24px; font-size: .9375rem; margin-bottom: 28px; }
.visit-rows dt { color: rgba(30, 18, 13, .55); }
.visit-rows dd { margin: 0; font-weight: 600; }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-actions .btn { flex: 1 1 auto; }
.visit-note { font-size: .8125rem; line-height: 1.6; color: rgba(30, 18, 13, .58); margin: 24px 0 0; }
.visit-media { min-height: 260px; }
.visit-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; }
  .visit-actions .btn { flex: 0 0 auto; }
  .visit-media { min-height: 420px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--surface-2);
  padding: 44px var(--gutter) calc(44px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer-wordmark { font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: .04em; color: var(--ink); }
.footer-tag { font-size: .8125rem; color: var(--muted); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
@media (min-width: 860px) {
  .site-footer { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---------- Reveal-on-scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
