/* ════════════════════════════════════════════════════════════════
   Coffee Cabin Drive Thru — Garrett, IN
   Refined Americana: Fraunces + Archivo + JetBrains Mono
   Espresso / cream / honey-copper / forest
   ════════════════════════════════════════════════════════════════ */

:root {
  --espresso:        #2a1810;
  --espresso-deep:   #1a0d05;
  --espresso-ink:    #0f0703;
  --cream:           #f5ebe0;
  --cream-warm:      #f9efe1;
  --paper:           #fffaf0;
  --sand:            #e8d5bc;
  --sand-deep:       #d4bb98;
  --honey:           #c8843a;
  --honey-deep:      #a86a25;
  --honey-glow:      #f2c24a;
  --forest:          #3b5e3f;
  --forest-deep:     #2a4630;
  --rust:            #8a3a1c;

  --line:            rgba(42, 24, 16, 0.16);
  --line-strong:     rgba(42, 24, 16, 0.45);
  --line-on-dark:    rgba(245, 235, 224, 0.18);

  --font-display:    'Fraunces', 'Bookerly', 'Times New Roman', serif;
  --font-body:       'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono:       'JetBrains Mono', ui-monospace, 'Menlo', monospace;

  --max:             1280px;
  --gutter:          clamp(1.25rem, 4vw, 3.5rem);
  --radius:          14px;
  --radius-sm:       8px;

  --steam-offset:    0px;

  --ease-out:        cubic-bezier(.4, 0, .2, 1);
  --ease-in-out:     cubic-bezier(.65, .05, .35, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

::selection { background: var(--honey); color: var(--espresso); }

/* Paper grain overlay — global, behind content */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/></svg>");
  mix-blend-mode: multiply;
}

/* falling-beans canvas (full-viewport, fixed) */
.beans-bg {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* All content above grain */
main, header, section, nav, footer, .lightbox { position: relative; z-index: 2; }

/* ─────────────────────────────────────────────────────── shared atoms */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow--cream { color: var(--honey); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn--primary:hover { background: var(--honey); border-color: var(--honey); color: var(--espresso); }

.btn--ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.btn--ghost-on-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 235, 224, 0.35);
}
.btn--ghost-on-dark:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

.btn--block { width: 100%; justify-content: center; padding: 1.05rem 1.5rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--espresso);
  border-bottom: 1.5px solid var(--honey);
  padding-bottom: 2px;
  transition: gap 0.25s var(--ease-out), color 0.25s;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.link-arrow:hover { gap: 0.7rem; color: var(--honey-deep); }
.link-arrow:hover svg { transform: translateX(2px); }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.chip--hours {
  background: var(--forest);
  color: var(--cream);
}

/* ─────────────────────────────────────────────────────── nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--gutter);
  transition: background 0.3s var(--ease-out), border-color 0.3s, padding 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245, 235, 224, 0.96);
  border-bottom-color: var(--line);
  padding: 0.7rem var(--gutter);
  box-shadow: 0 1px 0 rgba(42, 24, 16, 0.04);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--espresso);
}
.nav__mark { width: 30px; height: 30px; color: var(--espresso); flex-shrink: 0; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  letter-spacing: -0.005em;
}
.nav__sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  margin-top: 4px;
  color: var(--honey-deep);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2.3rem;
  align-items: center;
}
.nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: var(--espresso);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--honey);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 0.55rem 1.1rem !important;
  border-radius: 999px;
  transition: background 0.25s var(--ease-out);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--honey); color: var(--espresso) !important; }

@media (max-width: 720px) {
  .nav__sub { display: none; }
  .nav__links { gap: 1rem; }
  .nav__links li:not(:last-child) { display: none; }
}

/* ─────────────────────────────────────────────────────── HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 16vh, 180px) 0 6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(200, 132, 58, 0.06), transparent 55%),
    var(--cream);
}

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero__copy { z-index: 3; }

.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 0.45rem 0.85rem 0.45rem 0.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero__pin { width: 14px; height: 14px; color: var(--honey); }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 600;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  line-height: 0.95;
  letter-spacing: -0.028em;
  color: var(--espresso);
  margin-bottom: 1.8rem;
}
.hero__title span { display: block; }
.hero__l1 {}
.hero__l2 {
  font-style: italic;
  color: var(--honey-deep);
  font-weight: 500;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  position: relative;
}
.hero__l2::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: clamp(0.8rem, 2.5vw, 2.4rem);
  height: 2px;
  background: var(--honey);
  transform: translateY(-50%);
}

.hero__lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.55;
  color: var(--espresso);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero__lede em { font-family: var(--font-display); font-style: italic; font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--forest);
  position: relative;
  flex-shrink: 0;
}
.status-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.35;
  animation: pulse-dot 2s ease-out infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
.status-text strong { font-weight: 600; color: var(--forest-deep); }

/* hero stage = truck + cup + sky */
.hero__stage {
  position: relative;
  z-index: 2;
}

.hero__sky {
  position: absolute;
  inset: -2rem 0 auto 0;
  height: 50%;
  pointer-events: none;
  z-index: 0;
}
.cloud {
  position: absolute;
  background: var(--paper);
  border-radius: 50%;
  opacity: 0.85;
  box-shadow:
    -20px -8px 0 -2px var(--paper),
    20px -8px 0 -2px var(--paper),
    35px 2px 0 -4px var(--paper),
    -35px 2px 0 -4px var(--paper);
}
.cloud--1 { width: 70px; height: 28px; top: 8%; left: 12%; animation: drift 24s linear infinite; }
.cloud--2 { width: 50px; height: 20px; top: 22%; left: 65%; animation: drift 30s linear infinite reverse; }
.bird {
  position: absolute;
  top: 18%; right: 22%;
  width: 24px; height: 12px;
  border-top: 2px solid var(--espresso);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  opacity: 0.7;
}
.bird::before, .bird::after {
  content: '';
  position: absolute;
  top: -1px;
  width: 12px; height: 6px;
  border-top: 2px solid var(--espresso);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.bird::before { left: -10px; }
.bird::after { right: -10px; }

@keyframes drift {
  0%   { transform: translateX(-30px); }
  100% { transform: translateX(60px); }
}

.hero__truck {
  width: 100%;
  height: auto;
  max-width: 920px;
  overflow: visible;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(42, 24, 16, 0.18));
}

/* drive-in animation (whole truck) */
.truck-anim {
  transform-origin: center center;
  transform-box: fill-box;
  animation: drive-in 2.6s var(--ease-out) both;
}

/* wheels rotate around their own visual centers */
.wheel {
  transform-origin: center center;
  transform-box: fill-box;
  animation: wheel-spin 0.6s linear 5;
}

@keyframes drive-in {
  0%   { transform: translateX(-130%); }
  60%  { transform: translateX(7%); }
  78%  { transform: translateX(-2%); }
  100% { transform: translateX(0); }
}
@keyframes wheel-spin {
  to { transform: rotate(360deg); }
}

/* OPEN sign swings after the truck parks */
.open-sign {
  transform-origin: 50% 0%;
  transform-box: fill-box;
  animation: sign-swing 1.4s var(--ease-out) 2.6s both;
  opacity: 0;
}
@keyframes sign-swing {
  0%   { transform: rotate(0deg); opacity: 0; }
  15%  { transform: rotate(-18deg); opacity: 1; }
  35%  { transform: rotate(10deg); }
  55%  { transform: rotate(-6deg); }
  72%  { transform: rotate(3deg); }
  88%  { transform: rotate(-1.5deg); }
  100% { transform: rotate(0deg); opacity: 1; }
}

/* chimney smoke — drifts up, also follows scroll */
.chimney-smoke {
  transform-origin: center bottom;
  transform-box: fill-box;
  transform: translateY(calc(-1 * var(--steam-offset, 0px) * 0.6));
}
.chimney-smoke ellipse {
  animation: smoke-drift 5.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.chimney-smoke ellipse:nth-child(1) { animation-delay: 0s; }
.chimney-smoke ellipse:nth-child(2) { animation-delay: -1.2s; }
.chimney-smoke ellipse:nth-child(3) { animation-delay: -2.4s; }
.chimney-smoke ellipse:nth-child(4) { animation-delay: -3.6s; }
.chimney-smoke ellipse:nth-child(5) { animation-delay: -4.8s; }

@keyframes smoke-drift {
  0%   { transform: translate(0, 10px) scale(0.6); opacity: 0; }
  18%  { opacity: 0.75; }
  60%  { opacity: 0.45; }
  100% { transform: translate(-8px, -70px) scale(1.4); opacity: 0; }
}

/* string-light flicker */
.cabin-sign + .cabin-menu + g circle,
.truck-cabin g[opacity="0.85"] circle {
  animation: bulb-flicker 4.5s ease-in-out infinite;
}
.truck-cabin g[opacity="0.85"] circle:nth-child(2) { animation-delay: -0.6s; }
.truck-cabin g[opacity="0.85"] circle:nth-child(3) { animation-delay: -1.1s; }
.truck-cabin g[opacity="0.85"] circle:nth-child(4) { animation-delay: -1.7s; }
.truck-cabin g[opacity="0.85"] circle:nth-child(5) { animation-delay: -2.2s; }
.truck-cabin g[opacity="0.85"] circle:nth-child(6) { animation-delay: -2.8s; }
.truck-cabin g[opacity="0.85"] circle:nth-child(7) { animation-delay: -3.3s; }
@keyframes bulb-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* window cup steam (always visible, gentle) */
.window-steam-wisp {
  animation: steam-rise 3.2s ease-in-out infinite;
  transform-origin: bottom center;
  transform-box: fill-box;
  opacity: 0;
}
.window-steam-wisp.w1 { animation-delay: 0s; }
.window-steam-wisp.w2 { animation-delay: -1.5s; }

@keyframes steam-rise {
  0%   { transform: translateY(0) scale(0.95); opacity: 0; }
  20%  { opacity: 0.85; }
  60%  { opacity: 0.55; }
  100% { transform: translateY(-30px) scale(1.1); opacity: 0; }
}

/* headlight glow pulse */
.truck-cab ellipse[fill="url(#headlightGlow)"] {
  animation: headlight-pulse 3s ease-in-out 2.6s infinite both;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes headlight-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.25; }
}

/* hero decor */
.hero__floorline {
  position: absolute;
  left: 0; right: 0;
  bottom: 4.5rem;
  height: 1px;
  background: var(--line);
  z-index: 1;
}
.hero__corner {
  position: absolute;
  left: var(--gutter);
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--espresso);
  opacity: 0.55;
}
.hero__corner-line {
  width: 24px; height: 1px;
  background: currentColor;
  animation: line-blink 2.4s ease-in-out infinite;
}
@keyframes line-blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@media (max-width: 980px) {
  .hero { min-height: auto; padding: 130px 0 4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__corner { display: none; }
}

/* ─────────────────────────────────────────────────────── MARQUEE */
.marquee {
  background: var(--espresso);
  color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--espresso), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--espresso), transparent); }

.marquee__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  animation: marquee-scroll 55s linear infinite;
  width: max-content;
}
.marquee__item { display: inline-block; }
.marquee__sep {
  color: var(--honey);
  display: inline-block;
  transform: translateY(-2px);
  font-style: normal;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────── MAP */
.map-section {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}
.map-section__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(200, 132, 58, 0.06), transparent 50%),
    radial-gradient(ellipse at 90% 95%, rgba(59, 94, 63, 0.1), transparent 60%);
  pointer-events: none;
}
.map-section__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  z-index: 2;
}
.map-section__header { margin-bottom: 3rem; }
.map-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin-top: 0.8rem;
  max-width: 18ch;
}

.map-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.map-section__frame {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid var(--line-on-dark);
}
.map-section__frame::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 40px; height: 40px;
  border-top: 2px solid var(--honey);
  border-left: 2px solid var(--honey);
  border-radius: 4px 0 0 0;
}
.map-section__frame::after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 40px; height: 40px;
  border-bottom: 2px solid var(--honey);
  border-right: 2px solid var(--honey);
  border-radius: 0 0 4px 0;
}

#truck-map {
  width: 100%;
  height: 460px;
  border-radius: 8px;
  background: var(--sand);
}

.map-section__status {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--espresso);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.4s;
}
.map-section__frame.is-loaded .map-section__status { opacity: 0; }

/* Leaflet tweaks for dark section */
.leaflet-container { background: var(--sand); font-family: var(--font-body); border-radius: 8px; }
.leaflet-control-attribution { font-size: 9px; background: rgba(245, 235, 224, 0.85); }
.leaflet-control-zoom a {
  background-color: var(--espresso) !important;
  color: var(--cream) !important;
  border-color: var(--line-on-dark) !important;
}
.leaflet-control-zoom a:hover { background-color: var(--honey) !important; color: var(--espresso) !important; }

/* truck-marker */
.truck-marker { position: relative; }
.truck-marker__dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--honey);
  border: 3px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(42, 24, 16, 0.55);
  z-index: 2;
}
.truck-marker__pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  background: var(--honey);
  border-radius: 50%;
  opacity: 0.55;
  animation: marker-pulse 2.2s ease-out infinite;
}
@keyframes marker-pulse {
  0%   { transform: scale(0.7); opacity: 0.65; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* location card */
.loc-card {
  background: var(--cream);
  color: var(--espresso);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  border: 1px solid var(--line);
}
.loc-card::before {
  content: '';
  position: absolute;
  top: -1px; bottom: -1px;
  left: 28px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 14px);
  opacity: 0.5;
}
.loc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--espresso);
}
.loc-card__live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest-deep);
}
.loc-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--forest);
  position: relative;
}
.loc-card__dot::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.4;
  animation: pulse-dot 2s ease-out infinite;
}
.loc-card__updated {
  color: var(--honey-deep);
  text-transform: uppercase;
  font-size: 0.7rem;
}
.loc-card__address {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0.4rem;
}
.loc-card__cross {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--honey-deep);
  letter-spacing: 0.04em;
}
.loc-card__chips { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.loc-card__next {
  font-size: 0.92rem;
  color: var(--espresso);
  padding-top: 0.4rem;
}
.loc-card__next .loc-next {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.loc-card__actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
.loc-card__actions .btn--ghost-on-dark {
  color: var(--espresso);
  border-color: var(--line-strong);
}
.loc-card__actions .btn--ghost-on-dark:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.loc-card__note {
  font-size: 0.82rem;
  color: var(--espresso);
  opacity: 0.65;
  border-top: 1px dashed var(--line);
  padding-top: 0.9rem;
  font-style: italic;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .map-section__layout { grid-template-columns: 1fr; }
  #truck-map { height: 360px; }
}

/* ─────────────────────────────────────────────────────── STATS */
.stats {
  background: var(--cream-warm);
  padding: clamp(4rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: end;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0;
  border-top: 2px solid var(--espresso);
  position: relative;
}
.stat--a { margin-top: 0; }
.stat--b { margin-top: 3rem; }
.stat--c { margin-top: 1rem; }
.stat--d { margin-top: 4rem; }

.stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--espresso);
}
.stat__num--mono {
  font-family: var(--font-mono);
  font-variation-settings: normal;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5rem);
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

@media (max-width: 880px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
  .stat--a, .stat--b, .stat--c, .stat--d { margin-top: 0; }
}

/* ─────────────────────────────────────────────────────── ABOUT */
.about {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--cream);
}
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.028em;
  margin: 1rem 0 1.8rem;
}
.about__title--em {
  font-style: italic;
  color: var(--honey-deep);
  display: block;
  padding-left: 1.5rem;
  position: relative;
}
.about__title--em::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0.8rem; height: 2px;
  background: var(--honey);
  transform: translateY(-50%);
}
.about__copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.1rem;
}
.about__copy p em { font-family: var(--font-display); font-style: italic; font-weight: 500; }

.about__list {
  list-style: none;
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.about__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.about__list li span {
  font-family: var(--font-mono);
  color: var(--honey-deep);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.about__media {
  position: relative;
}
.about__frame {
  position: relative;
  background: var(--paper);
  padding: 14px 14px 60px;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(42, 24, 16, 0.35);
  transform: rotate(-1.2deg);
}
.about__frame img {
  border-radius: 2px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.about__caption {
  position: absolute;
  bottom: 18px; left: 22px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--espresso);
}
.about__caption-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--honey);
}
.about__stamp {
  position: absolute;
  top: -2rem; right: -1.5rem;
  width: clamp(90px, 12vw, 130px);
  height: clamp(90px, 12vw, 130px);
  color: var(--rust);
  transform: rotate(8deg);
  opacity: 0.85;
  filter: drop-shadow(0 6px 8px rgba(42, 24, 16, 0.18));
}

@media (max-width: 880px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__stamp { top: -1.5rem; right: -0.5rem; }
}

/* ─────────────────────────────────────────────────────── FEATURED */
.featured {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg,
      transparent 0 28px,
      rgba(200, 132, 58, 0.04) 28px 30px);
  pointer-events: none;
}
.featured__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.featured__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-on-dark);
}
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--honey);
  color: var(--espresso);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-transform: uppercase;
}

.featured__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.3rem;
}
.featured__title em {
  font-style: italic;
  color: var(--honey);
  font-weight: 500;
}
.featured__lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(245, 235, 224, 0.85);
  margin-bottom: 2rem;
  max-width: 40ch;
}
.featured__lede em { font-family: var(--font-display); font-style: italic; }

.featured__list {
  list-style: none;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line-on-dark);
}
.featured__list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-on-dark);
  align-items: start;
}
.featured__list-num {
  font-family: var(--font-mono);
  color: var(--honey);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-top: 0.25rem;
}
.featured__list strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cream);
}
.featured__list p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(245, 235, 224, 0.7);
}

.featured .link-arrow {
  color: var(--cream);
  border-bottom-color: var(--honey);
}
.featured .link-arrow:hover { color: var(--honey); }

@media (max-width: 880px) {
  .featured__inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────── GALLERY */
.gallery { padding: clamp(5rem, 9vw, 9rem) 0; background: var(--cream); }
.gallery__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.gallery__head { margin-bottom: 3rem; }
.gallery__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.028em;
  margin: 0.9rem 0 0.6rem;
}
.gallery__dateline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

/* CSS columns masonry — fills naturally with mixed-ratio portraits */
.gallery__grid {
  column-count: 3;
  column-gap: 1rem;
}

/* tile defaults */
.tile {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--sand);
  cursor: pointer;
  appearance: none;
  font: inherit;
  color: inherit;
  text-align: left;
  padding: 0;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 1rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
.tile.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--idx, 0) * 50ms);
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(42, 24, 16, 0.35); }
.tile img {
  width: 100%; height: auto; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.tile:hover img { transform: scale(1.04); }

/* Mixed aspect ratios — these crop the natural image proportions for visual variety */
.tile:nth-child(1)  { aspect-ratio: 4 / 5; }
.tile:nth-child(2)  { aspect-ratio: 1 / 1; }
.tile:nth-child(3)  { aspect-ratio: 3 / 4; }
.tile:nth-child(4)  { aspect-ratio: 4 / 5; }
.tile:nth-child(5)  { aspect-ratio: 4 / 5; }
.tile:nth-child(6)  { aspect-ratio: 1 / 1; }
.tile:nth-child(7)  { aspect-ratio: 4 / 5; }
.tile:nth-child(8)  { aspect-ratio: 3 / 4; }
.tile:nth-child(9)  { aspect-ratio: 4 / 5; }
.tile:nth-child(10) { aspect-ratio: 1 / 1; }
.tile:nth-child(11) { aspect-ratio: 4 / 5; }
.tile:nth-child(12) { aspect-ratio: 3 / 4; }
.tile img { width: 100%; height: 100%; object-fit: cover; }

.tile__video {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(42, 24, 16, 0.78);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  padding-left: 3px;
}
.tile__likes {
  position: absolute;
  bottom: 0.85rem; right: 0.85rem;
  background: rgba(42, 24, 16, 0.78);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .gallery__grid { column-count: 2; column-gap: 0.65rem; }
  .tile { margin-bottom: 0.65rem; }
}
@media (max-width: 540px) {
  .gallery__grid { column-count: 1; }
}

/* ─────────────────────────────────────────────────────── QUOTE */
.quote { background: var(--cream); padding: clamp(4rem, 8vw, 9rem) 0; }
.quote__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  text-align: center;
}
.quote__mark {
  font-family: var(--font-display);
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 0.7;
  color: var(--honey);
  display: block;
  margin-bottom: -1rem;
  font-weight: 600;
}
.quote__body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--espresso);
  max-width: 24ch;
  margin: 0 auto 1.5rem;
}
.quote__attr {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--honey-deep);
}

/* ─────────────────────────────────────────────────────── MENU + QR */
.menu-section { background: var(--cream-warm); padding: clamp(5rem, 9vw, 9rem) 0; }
.menu-section__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.menu-section__head { margin-bottom: 3rem; max-width: 800px; }
.menu-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.028em;
  margin: 0.9rem 0 1.3rem;
}
.menu-section__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 60ch;
}

.menu-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.menu-section__shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.menu-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  transition: transform 0.45s var(--ease-out);
}
.menu-shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-shot:hover { transform: translateY(-3px); }
.menu-shot:hover img { transform: scale(1.04); }
.menu-shot figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(42, 24, 16, 0.78), transparent);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
}
.menu-shot--1 { grid-column: 1 / 3; aspect-ratio: 5 / 4; }
.menu-shot--2 { grid-column: 1 / 2; aspect-ratio: 4 / 5; }
.menu-shot--3 { grid-column: 2 / 3; aspect-ratio: 4 / 5; }
.menu-shot img { object-position: center 30%; }

.qr-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 30px 60px -30px rgba(42, 24, 16, 0.22);
}
.qr-card__top {
  position: relative;
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 280px;
}
.qr-card__corner {
  position: absolute;
  width: 16px; height: 16px;
}
.qr-card__corner::before, .qr-card__corner::after {
  content: '';
  position: absolute;
  background: var(--honey);
}
.qr-card__corner::before { height: 2px; left: 0; right: 0; }
.qr-card__corner::after  { width: 2px; top: 0; bottom: 0; }
.qr-card__corner--tl { top: 4px; left: 4px; }
.qr-card__corner--tl::before { top: 0; }
.qr-card__corner--tl::after  { left: 0; }
.qr-card__corner--tr { top: 4px; right: 4px; }
.qr-card__corner--tr::before { top: 0; }
.qr-card__corner--tr::after  { right: 0; }
.qr-card__corner--bl { bottom: 4px; left: 4px; }
.qr-card__corner--bl::before { bottom: 0; }
.qr-card__corner--bl::after  { left: 0; }
.qr-card__corner--br { bottom: 4px; right: 4px; }
.qr-card__corner--br::before { bottom: 0; }
.qr-card__corner--br::after  { right: 0; }

.qr-card__qr {
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
}
.qr-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: 'opsz' 144;
  font-size: 1.45rem;
  margin-top: 0.6rem;
  letter-spacing: -0.01em;
}
.qr-card__sub {
  font-size: 0.95rem;
  color: var(--espresso);
}
.qr-card__sub a {
  border-bottom: 1.5px solid var(--honey);
  text-decoration: none;
  font-weight: 500;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.qr-card__sub a:hover { color: var(--honey-deep); }
.qr-card__note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--honey-deep);
  border-top: 1px dashed var(--line);
  width: 100%;
  padding-top: 0.9rem;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .menu-section__layout { grid-template-columns: 1fr; }
  .menu-section__shots { grid-template-columns: 1fr 1fr; }
  .menu-shot--1 { grid-column: 1 / 3; }
}

/* ─────────────────────────────────────────────────────── BOOK FORM */
.book-section {
  background: var(--espresso);
  color: var(--cream);
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.book-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 300px; height: 300px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  pointer-events: none;
}
.book-section::after {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 360px; height: 360px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  pointer-events: none;
}
.book-section__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  z-index: 2;
}
.book-section__copy { padding-top: 1rem; }
.book-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.028em;
  margin: 1rem 0 1.6rem;
}
.book-section__lede {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 235, 224, 0.82);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.book-section__list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 0.95rem;
}
.book-section__list li {
  display: flex; align-items: center; gap: 0.7rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.book-section__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--espresso);
  font-size: 0.75rem;
  font-weight: 700;
}

.book-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.2rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field:not(.field--half):not(.field--submit) { grid-column: 1 / -1; }
.field--submit { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  color: var(--cream);
  border: 0;
  border-bottom: 1.5px solid var(--line-on-dark);
  padding: 0.7rem 0.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, color 0.25s;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 235, 224, 0.35);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--honey);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c8843a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.6rem;
  cursor: pointer;
}
.field select option { background: var(--espresso); color: var(--cream); }
.field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6) sepia(1) hue-rotate(10deg); cursor: pointer; }

.book-form__small {
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(245, 235, 224, 0.55);
}

.success {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  background: rgba(245, 235, 224, 0.04);
  animation: fade-in 0.6s var(--ease-out) both;
}
.success h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--honey);
}
.success p { color: var(--cream); }
@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .book-section__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .book-form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1 !important; }
}

/* ─────────────────────────────────────────────────────── FOOTER */
.footer {
  background: var(--espresso-deep);
  color: var(--cream);
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line-on-dark);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__mark { width: 36px; height: 36px; color: var(--honey); flex-shrink: 0; }
.footer__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
}
.footer__sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 235, 224, 0.6);
  margin-top: 2px;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer__links a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.footer__links a:hover { opacity: 1; color: var(--honey); }
.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 235, 224, 0.5);
  text-align: center;
}

@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__links { justify-content: center; }
}

/* ─────────────────────────────────────────────────────── LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 7, 3, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; animation: lb-fade 0.25s ease-out; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }

.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245, 235, 224, 0.1);
  color: var(--cream);
  border: 1px solid var(--line-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
.lightbox__close:hover { background: var(--honey); color: var(--espresso); }
.lightbox__close svg { width: 20px; height: 20px; }

.lightbox__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  cursor: default;
}
.lightbox__img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox__meta { color: var(--cream); }
.lightbox__likes {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--honey);
  margin-bottom: 1rem;
}
.lightbox__caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 235, 224, 0.92);
}

@media (max-width: 880px) {
  .lightbox__inner { grid-template-columns: 1fr; gap: 1.2rem; }
  .lightbox__img { max-height: 60vh; }
}

/* ─────────────────────────────────────────────────────── REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────── reduced motion */
@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;
  }
  .truck-anim, .wheel, .open-sign { animation: none !important; transform: none !important; }
  .marquee__track { animation: none; }
  .steam-wisp { display: none; }
  .chimney-smoke { display: none; }
  .cloud, .bird { display: none; }
  .beans-bg { display: none !important; }
  .truck-marker__pulse { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
