/* =====================================================================
   Luke's Dirty Dogs — design system
   Warm street-food: oxblood ink on cream paper, condiment color-blocks,
   chunky Dela Gothic display, hard offset print shadows. Hand-built.
   ===================================================================== */

:root {
  /* condiment palette */
  --paper:      #F7E8CF;   /* cream ground */
  --paper-2:    #FCF3E3;   /* lighter cream (cards / alt sections) */
  --paper-3:    #F0DCBC;   /* deeper cream (insets) */
  --ink:        #3B130C;   /* oxblood-brown text (never pure black) */
  --ink-soft:   #6A4A3C;   /* muted brown */
  --brick:      #8A1A12;   /* deep red dark bands + footer */
  --brick-mid:  #A4231A;
  --ketchup:    #C5281C;   /* CTA red */
  --ketchup-2:  #E2401F;   /* brighter accent red */
  --mustard:    #F4B324;   /* marigold gold */
  --mustard-2:  #F6C84B;
  --kraft:      #C98A4B;
  --relish:     #5C8A2B;   /* small green pop only */

  --line:       rgba(59,19,12,.16);
  --line-2:     rgba(59,19,12,.30);
  --cream-on-dark: #FBEFD9;

  /* type */
  --display: "Dela Gothic One", "Arial Black", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --marker:  "Permanent Marker", var(--display);

  /* spacing scale (8px base) */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 40px; --s5: 64px;
  --s6: 96px; --s7: 128px; --s8: 160px;

  --wrap: 1240px;
  --radius: 10px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow-mustard: 6px 6px 0 var(--mustard);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle paper grain over everything */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ketchup); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--brick); }

:focus-visible { outline: 3px solid var(--ketchup); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--mustard); color: var(--ink); }

.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: 8px; z-index: 200;
  font-weight: 700; transition: top .2s var(--ease);
}
.skip:focus { top: 12px; color: var(--paper); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); position: relative; z-index: 2; }
.bleed { width: 100%; }
main { position: relative; z-index: 2; }

.section { padding-block: clamp(56px, 9vw, var(--s7)); position: relative; }
.section--tight { padding-block: clamp(40px, 6vw, var(--s5)); }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--dark { background: var(--brick); color: var(--cream-on-dark); }
.section--dark a:not(.btn) { color: var(--mustard-2); }
.section--dark a:not(.btn):hover { color: #fff; }
.section--mustard { background: var(--mustard); color: var(--ink); }
.section + .section--dark, .section + .section--mustard { border-top: 3px solid var(--ink); }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-wide { max-width: 78ch; }
.mt-2 { margin-top: var(--s2);} .mt-3 { margin-top: var(--s3);} .mt-4 { margin-top: var(--s4);} .mt-5 { margin-top: var(--s5);}
.mb-2 { margin-bottom: var(--s2);} .mb-3 { margin-bottom: var(--s3);} .mb-4 { margin-bottom: var(--s4);}

/* ---------- typography ---------- */
.display, h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .98; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.02; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.05; }
h4, h5 { font-family: var(--body); font-weight: 800; letter-spacing: -.01em; }
h4 { font-size: 1.15rem; }

p { max-width: 66ch; }
.lead { font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.45; color: var(--ink); font-weight: 500; }
.section--dark .lead, .section--dark p { color: var(--cream-on-dark); }
strong, b { font-weight: 700; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; margin-bottom: -.3em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: .4em; max-width: 64ch; }
.prose li::marker { color: var(--ketchup); font-weight: 700; }
.prose a { font-weight: 600; }
.lead-prose > p:first-of-type { font-size: clamp(1.15rem, 1.7vw, 1.32rem); font-weight: 500; color: var(--ink); }
.lead-prose h2 { margin-top: 0; margin-bottom: .5em; }

.eyebrow {
  font-family: var(--mono);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ketchup);
  display: inline-flex; align-items: center; gap: .55em;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--mustard); border-radius: 2px; }
.section--dark .eyebrow, .hero .eyebrow, .phero .eyebrow { color: var(--mustard-2); }
.eyebrow--plain::before { display: none; }

.kicker-num { font-family: var(--mono); color: var(--ink-soft); font-size: .85rem; letter-spacing: .12em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--body); font-weight: 800; font-size: 1rem;
  line-height: 1; letter-spacing: .01em;
  padding: 16px 26px; border-radius: var(--radius);
  border: 2.5px solid var(--ink);
  background: var(--paper-2); color: var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer; text-decoration: none;
  transition: transform .14s var(--ease), box-shadow .14s var(--ease), background .14s var(--ease);
}
.btn .arrow { transition: transform .18s var(--ease); }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); color: var(--ink); }
.btn:hover .arrow { transform: translateX(4px); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--ketchup { background: var(--ketchup); color: #fff; }
.btn--ketchup:hover { background: var(--ketchup-2); color: #fff; }
.btn--mustard { background: var(--mustard); color: var(--ink); }
.btn--mustard:hover { background: var(--mustard-2); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { color: var(--paper); background: #4d1a10; }
.btn--ghost { background: transparent; }
.section--dark .btn--ghost { border-color: var(--cream-on-dark); color: var(--cream-on-dark); box-shadow: 4px 4px 0 rgba(0,0,0,.35); }
.btn--lg { padding: 19px 32px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* ---------- stickers / badges ---------- */
.sticker {
  display: inline-block;
  font-family: var(--marker); font-size: 1rem; line-height: 1.05;
  background: var(--mustard); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: 8px;
  padding: 10px 16px; box-shadow: var(--shadow-sm);
  transform: rotate(-4deg);
}
.sticker--ketchup { background: var(--ketchup); color: #fff; }
.sticker--cream { background: var(--paper-2); }
.sticker--r { transform: rotate(3deg); }
.sticker--flat { transform: none; }

.badge {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px;
  border: 2px solid var(--ink); background: var(--paper-2); color: var(--ink);
}

/* mustard squiggle / divider */
.squiggle { display: block; width: min(280px, 60%); height: 16px; margin: var(--s3) 0 0; }
.divider-row { display: flex; align-items: center; gap: 18px; color: var(--mustard); }
.divider-row::before, .divider-row::after { content: ""; height: 3px; flex: 1; background: var(--line); border-radius: 2px; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink); color: var(--paper);
  border-block: 3px solid var(--ink);
  overflow: hidden; padding: 14px 0;
  position: relative; z-index: 2;
}
.marquee--mustard { background: var(--mustard); color: var(--ink); }
.marquee--ketchup { background: var(--ketchup); color: #fff; }
.marquee--cream { background: var(--paper-2); color: var(--ink); }
.marquee--cream .star { color: var(--ketchup); }
.marquee__track {
  display: inline-flex; white-space: nowrap; will-change: transform;
  animation: marquee 34s linear infinite;
}
.marquee__track span {
  font-family: var(--display); font-size: 1.15rem; letter-spacing: .02em;
  padding: 0 .2em; display: inline-flex; align-items: center; gap: .7em;
}
.marquee__track .star { color: var(--mustard); font-size: .9em; }
.marquee--mustard .star, .marquee--ketchup .star { color: var(--ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; white-space: normal; flex-wrap: wrap; gap: 6px 18px; justify-content: center; }
  .marquee__track > :nth-child(n+9) { display: none; }
}

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--brick); color: var(--cream-on-dark); overflow: hidden; border-bottom: 3px solid var(--ink); }
.hero__grid { display: grid; grid-template-columns: 1.22fr .78fr; align-items: stretch; min-height: min(84vh, 720px); }
.hero__copy { padding: clamp(40px, 6vw, 88px) clamp(24px, 4vw, 56px) clamp(40px, 6vw, 88px) calc(max(0px, (100vw - var(--wrap)) / 2) + clamp(20px, 5vw, 48px)); display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 3; }
.hero__media { position: relative; border-left: 3px solid var(--ink); }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 -60px 80px -40px rgba(59,19,12,.5); }
.hero__title { font-size: clamp(2.7rem, 6.1vw, 5.7rem); color: var(--paper); margin-top: 14px; text-shadow: 4px 4px 0 rgba(0,0,0,.25); }
.hero__title .pop { color: var(--mustard); }
.hero__sub { font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 500; max-width: 40ch; margin-top: 22px; color: var(--cream-on-dark); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero__sticker { position: absolute; z-index: 4; }
.hero__sticker--tr { top: clamp(16px, 4vw, 40px); right: clamp(16px, 4vw, 40px); }
.hero__phone { margin-top: 26px; font-family: var(--mono); letter-spacing: .04em; color: var(--mustard-2); font-weight: 500; }
.hero__phone a { color: var(--mustard-2); }

/* ---------- PAGE HERO (interior) ---------- */
.phero { background: var(--brick); color: var(--cream-on-dark); border-bottom: 3px solid var(--ink); position: relative; overflow: hidden; }
.phero--media .phero__bg { position: absolute; inset: 0; }
.phero--media .phero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.phero .wrap { padding-block: clamp(48px, 8vw, 110px); }
.phero__title { color: var(--paper); font-size: clamp(2.4rem, 6vw, 4.6rem); margin-top: 14px; }
.phero__lead { margin-top: 20px; max-width: 60ch; color: var(--cream-on-dark); }
.crumbs { font-family: var(--mono); font-size: .82rem; letter-spacing: .08em; color: var(--mustard-2); text-transform: uppercase; }
.crumbs a { color: var(--mustard-2); }
.crumbs a:hover { color: #fff; }

/* ---------- section header / anchor ---------- */
.anchor { margin-bottom: var(--s4); }
.anchor__title { margin-top: 10px; }
.anchor__meta { font-family: var(--mono); color: var(--ink-soft); font-size: .85rem; letter-spacing: .06em; }
.section-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: var(--s4); }

/* ---------- MENU board ---------- */
.menu { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.menu__panel {
  background: var(--paper-2); border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); padding: clamp(22px, 3vw, 38px);
}
.menu__panel--wide { grid-column: 1 / -1; }
.menu__cat { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 3px dashed var(--line-2); }
.menu__cat h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
.menu__cat .note { font-family: var(--mono); font-size: .76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; }
.mitem { display: grid; grid-template-columns: 1fr auto; align-items: baseline; column-gap: 8px; padding: 9px 0; }
.mitem + .mitem { border-top: 1px solid var(--line); }
.mitem__name { font-weight: 800; font-size: 1.05rem; position: relative; display: inline; }
.mitem__lead { display: inline-block; flex: 1; }
.mitem__top { display: flex; align-items: baseline; gap: 6px; }
.mitem__dots { flex: 1; border-bottom: 2px dotted var(--line-2); transform: translateY(-4px); min-width: 18px; }
.mitem__price { font-family: var(--mono); font-weight: 500; font-size: 1rem; color: var(--ketchup); font-variant-numeric: tabular-nums; white-space: nowrap; }
.mitem__desc { grid-column: 1 / -1; color: var(--ink-soft); font-size: .92rem; margin-top: 2px; max-width: 52ch; }
.menu__note { font-family: var(--mono); font-size: .85rem; color: var(--ink-soft); margin-top: 18px; }
.menu-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.menu-tags span { font-size: .9rem; font-weight: 700; color: var(--ink); background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 6px; padding: 8px 13px; box-shadow: 3px 3px 0 rgba(0,0,0,.22); }

/* ---------- SPLIT editorial ---------- */
.split { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.split--flip .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border: 3px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.split__media .sticker { position: absolute; bottom: -16px; left: -14px; z-index: 3; }
.split--flip .split__media .sticker { left: auto; right: -14px; }
.split__body h2 { margin-bottom: 18px; }
.split__cap { font-family: var(--marker); color: var(--ink-soft); font-size: .95rem; margin-top: 12px; transform: rotate(-1.5deg); }

/* ---------- GALLERY ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--s4); }
.filterbar button {
  font-family: var(--body); font-weight: 700; font-size: .92rem;
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  border: 2px solid var(--ink); background: var(--paper-2); color: var(--ink);
  transition: background .12s var(--ease), color .12s var(--ease);
}
.filterbar button.is-on { background: var(--ink); color: var(--paper); }

.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 1.6vw, 22px); grid-auto-flow: dense; }
.tile {
  grid-column: span 4; position: relative; overflow: hidden; cursor: pointer;
  border: 3px solid var(--ink); border-radius: 12px; box-shadow: var(--shadow-sm);
  background: var(--ink); aspect-ratio: 1/1;
  transition: transform .18s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.tile:hover { transform: translateY(-3px) rotate(-.6deg); }
.tile:hover img { transform: scale(1.05); }
.tile--xl { grid-column: span 6; aspect-ratio: 4/3; }
.tile--wide { grid-column: span 8; aspect-ratio: 16/9; }
.tile--tall { grid-column: span 4; aspect-ratio: 3/4; }
.tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 26px 16px 12px; color: #fff; font-weight: 700; font-size: .95rem;
  background: linear-gradient(to top, rgba(20,6,3,.85), transparent);
  transform: translateY(8px); opacity: 0; transition: .2s var(--ease);
}
.tile:hover .tile__cap, .tile:focus-visible .tile__cap { transform: none; opacity: 1; }
.tile.is-hidden { display: none; }

/* lightbox */
.lb { position: fixed; inset: 0; z-index: 300; display: none; place-items: center;
  background: rgba(28,8,4,.92); padding: clamp(16px, 4vw, 56px); }
.lb.is-open { display: grid; }
.lb__img { max-width: 100%; max-height: 80vh; border: 3px solid var(--paper); border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.lb__meta { color: var(--paper); text-align: center; margin-top: 16px; font-size: 1rem; max-width: 60ch; }
.lb__meta b { font-family: var(--display); font-weight: 400; }
.lb__sep { color: var(--mustard); }
.lb__count { position: absolute; top: 20px; left: 24px; font-family: var(--mono); color: var(--paper); font-size: .85rem; }
.lb__close, .lb__nav { position: absolute; background: var(--paper); color: var(--ink); border: 2.5px solid var(--ink);
  width: 50px; height: 50px; border-radius: 999px; cursor: pointer; font-size: 1.5rem; line-height: 1; display: grid; place-items: center; }
.lb__close:hover, .lb__nav:hover { background: var(--mustard); }
.lb__close { top: 20px; right: 24px; }
.lb__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- FIND US / SCHEDULE (ticket) ---------- */
.ticket {
  background: var(--paper-2); border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
}
.ticket__head { background: var(--ink); color: var(--paper); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ticket__head h3 { color: var(--paper); font-size: 1.3rem; }
.ticket__head .no { font-family: var(--mono); color: var(--mustard-2); font-size: .8rem; letter-spacing: .08em; }
.ticket__body { padding: 8px 24px 22px; }
.sched__row { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: baseline; padding: 16px 0; border-bottom: 2px dashed var(--line-2); }
.sched__row:last-child { border-bottom: 0; }
.sched__day { font-family: var(--display); font-size: 1.15rem; }
.sched__spot { color: var(--ink-soft); font-size: .96rem; margin-top: 2px; }
.sched__time { font-family: var(--mono); color: var(--ketchup); font-weight: 500; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ticket__perf { height: 16px; background:
  radial-gradient(circle at 8px 0, transparent 0 7px, var(--ink) 7px 8px, transparent 8px) repeat-x;
  background-size: 16px 16px; opacity: .25; }

.findus { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.map-embed { border: 3px solid var(--ink); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; aspect-ratio: 4/3; background: var(--paper-3); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- CTA band ---------- */
.ctaband { background: var(--mustard); color: var(--ink); border-block: 3px solid var(--ink); position: relative; z-index: 2; }
.ctaband--ketchup { background: var(--ketchup); color: #fff; }
.ctaband--ink { background: var(--ink); color: var(--paper); }
.ctaband .wrap { padding-block: clamp(48px, 7vw, 96px); display: grid; gap: 22px; }
.ctaband__title { font-size: clamp(2.2rem, 5.5vw, 4.2rem); max-width: 18ch; }
.ctaband--ketchup .ctaband__title, .ctaband--ink .ctaband__title { color: #fff; }
.ctaband__sub { font-size: 1.15rem; font-weight: 500; max-width: 56ch; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq { border-top: 2px solid var(--ink); max-width: 860px; }
.faq__item { border-bottom: 2px solid var(--line-2); }
.faq__item > summary {
  list-style: none; cursor: pointer; padding: 22px 50px 22px 44px; position: relative;
  font-family: var(--body); font-weight: 800; font-size: 1.12rem; color: var(--ink);
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary .q { position: absolute; left: 0; top: 22px; font-family: var(--mono); color: var(--ketchup); font-size: .9rem; }
.faq__item > summary::after { content: "+"; position: absolute; right: 8px; top: 16px; font-family: var(--display); font-size: 1.6rem; color: var(--ketchup); transition: transform .2s var(--ease); }
.faq__item[open] > summary::after { content: "–"; }
.faq__a { padding: 0 50px 24px 44px; }
.faq__a p { color: var(--ink-soft); }
.faq__a > * + * { margin-top: .9em; }

/* ---------- stats run ---------- */
.statrun { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px); align-items: baseline; }
.statrun .stat { display: flex; flex-direction: column; }
.statrun .stat__n { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1; color: var(--ketchup); }
.statrun .stat__l { font-family: var(--mono); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; }
.section--dark .statrun .stat__n { color: var(--mustard); }
.section--dark .statrun .stat__l { color: var(--cream-on-dark); }

/* ---------- link list (hub) ---------- */
.linklist { border-top: 2px solid var(--ink); }
.linklist a { display: grid; grid-template-columns: 1fr auto auto; gap: 18px; align-items: center;
  padding: 22px 8px; border-bottom: 2px solid var(--line-2); color: var(--ink); text-decoration: none; transition: padding .15s var(--ease), background .15s var(--ease); }
.linklist a:hover { background: var(--paper-2); padding-inline: 18px; color: var(--ink); }
.linklist .t { font-family: var(--display); font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.linklist .d { color: var(--ink-soft); font-size: .95rem; text-align: right; max-width: 34ch; }
.linklist .arrow { color: var(--ketchup); font-weight: 800; }

/* ---------- cards (events / areas) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
.card {
  display: flex; flex-direction: column;
  background: var(--paper-2); border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden; text-decoration: none; color: var(--ink);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); color: var(--ink); }
.card__media { aspect-ratio: 16/10; background: var(--ink); border-bottom: 3px solid var(--ink); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__kicker { font-family: var(--mono); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ketchup); }
.card__title { font-family: var(--display); font-size: 1.4rem; line-height: 1.04; }
.card__desc { color: var(--ink-soft); font-size: .96rem; }
.card__link { margin-top: auto; font-weight: 800; color: var(--ketchup); display: inline-flex; gap: .4em; align-items: center; }

/* a plain feature row (no-image), for "what's included" lists */
.checks { display: grid; gap: 12px; padding: 0; list-style: none; }
.checks li { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; max-width: 64ch; }
.checks li::before { content: "✓"; font-weight: 900; color: var(--relish); background: var(--paper-2); border: 2px solid var(--ink); border-radius: 6px; width: 26px; height: 26px; display: grid; place-items: center; font-size: .9rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(18px,2.4vw,28px); counter-reset: step; }
.step { background: var(--paper-2); border: 3px solid var(--ink); border-radius: 14px; padding: 24px 22px; box-shadow: var(--shadow-sm); position: relative; }
.step::before { counter-increment: step; content: counter(step); font-family: var(--display); font-size: 1.4rem; color: #fff; background: var(--ketchup); border: 2.5px solid var(--ink); width: 46px; height: 46px; border-radius: 999px; display: grid; place-items: center; margin-bottom: 14px; }
.step h4 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* contact / quote info block */
.infogrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.infocard { border: 3px solid var(--ink); border-radius: 14px; padding: 22px; background: var(--paper-2); box-shadow: var(--shadow-sm); }
.infocard h4 { margin-bottom: 6px; }
.infocard .big { font-family: var(--mono); font-size: 1.15rem; color: var(--ketchup); font-weight: 500; }
.infocard a { font-weight: 600; }

/* note / callout */
.callout { border-left: 6px solid var(--mustard); background: var(--paper-2); border-radius: 0 12px 12px 0; padding: 18px 22px; }
.callout strong { color: var(--ink); }

/* ---------- contact form ---------- */
.form { display: grid; gap: 18px; max-width: 640px; }
.form .row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .95rem; }
.field .req { color: var(--ketchup); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 10px;
  padding: 13px 14px; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--ketchup); outline-offset: 1px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 3px solid var(--ink); transition: box-shadow .2s var(--ease); }
.nav.is-stuck { box-shadow: 0 6px 0 -3px var(--ink), 0 16px 28px -20px rgba(59,19,12,.5); }
/* Header is large at the top, then compacts to ~half once you scroll (.is-stuck). */
.nav__inner { max-width: var(--wrap); margin-inline: auto; padding: clamp(12px, 1.5vw, 20px) clamp(20px,5vw,48px); display: flex; align-items: center; justify-content: space-between; gap: 18px; transition: padding .28s var(--ease); }
.nav.is-stuck .nav__inner { padding-block: 7px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand img { height: clamp(50px, 5vw, 76px); width: auto; transition: height .28s var(--ease); }
.nav.is-stuck .brand img { height: 42px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--display); font-size: clamp(1.2rem, 1.55vw, 1.55rem); letter-spacing: -.01em; white-space: nowrap; transition: font-size .28s var(--ease); }
.nav.is-stuck .brand__name { font-size: 1.12rem; }
.brand__name .pop { color: var(--ketchup); }
.brand__tag { font-family: var(--mono); font-size: clamp(.6rem, .82vw, .74rem); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; transition: font-size .28s var(--ease); }
.nav.is-stuck .brand__tag { font-size: .58rem; margin-top: 4px; }

.nav__menu { list-style: none; display: flex; align-items: center; gap: 4px; padding: 0; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 5px; font-weight: 700; font-size: .96rem; color: var(--ink); text-decoration: none; padding: 10px 12px; border-radius: 8px; white-space: nowrap; }
.nav__link:hover, .nav__item.is-active > .nav__link { color: var(--ketchup); background: var(--paper-2); }
.nav__item.has-drop > .nav__link::after { content: "▾"; font-size: .7em; color: var(--ink-soft); }
.nav__drop { position: absolute; top: calc(100% + 6px); left: 0; min-width: 248px; background: var(--paper-2);
  border: 2.5px solid var(--ink); border-radius: 12px; box-shadow: var(--shadow-sm); padding: 8px;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .16s var(--ease); z-index: 20; }
.nav__item.has-drop:hover .nav__drop, .nav__item.has-drop:focus-within .nav__drop { opacity: 1; visibility: visible; transform: none; }
.nav__drop a { display: grid; padding: 9px 12px; border-radius: 8px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .92rem; }
.nav__drop a span { font-weight: 400; font-size: .8rem; color: var(--ink-soft); }
.nav__drop a:hover { background: var(--paper-3); color: var(--ketchup); }
.nav__cta { margin-left: 8px; }
.nav__toggle { display: none; background: var(--paper-2); border: 2.5px solid var(--ink); border-radius: 9px; width: 48px; height: 44px; cursor: pointer; padding: 0; }
.nav__toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .2s var(--ease); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- FOOTER ---------- */
.footer { background: var(--brick); color: var(--cream-on-dark); border-top: 3px solid var(--ink); position: relative; z-index: 2; }
.footer a { color: var(--cream-on-dark); text-decoration: none; }
.footer a:hover { color: var(--mustard-2); }
.footer__top { padding: clamp(40px,6vw,72px) 0 clamp(28px,4vw,44px); display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; border-bottom: 2px solid rgba(255,255,255,.15); }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { height: 110px; width: auto; }
.footer__name { font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--paper); line-height: 1; }
.footer__name .pop { color: var(--mustard); }
.footer__tag { font-family: var(--marker); color: var(--mustard-2); margin-top: 8px; transform: rotate(-2deg); display: inline-block; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px,4vw,48px); padding: clamp(32px,4vw,48px) 0; }
.footer__col h4 { font-family: var(--mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mustard-2); margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; margin-bottom: 9px; font-size: .96rem; }
.footer__addr { font-style: normal; line-height: 1.7; }
.footer__bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding: 22px 0 30px; border-top: 2px solid rgba(255,255,255,.15); font-size: .85rem; font-family: var(--mono); color: rgba(255,255,255,.7); }
.footer__bar a { color: rgba(255,255,255,.7); }

/* ---------- reveals (only hidden when JS is on; no-JS shows everything) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .tile, .card, .tile img { transition: none; }
  .tile:hover { transform: none; } .tile:hover img { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { min-height: 320px; border-left: 0; border-top: 3px solid var(--ink); order: -1; }
  .hero__media img { position: relative; height: 320px; }
  .findus { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 96px 0 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-top: 3px solid var(--ink);
    padding: 12px clamp(20px,5vw,48px) 40px; overflow-y: auto;
    transform: translateX(100%); transition: transform .26s var(--ease); z-index: 90;
  }
  .nav.is-open .nav__menu { transform: none; }
  .nav__link { font-size: 1.15rem; padding: 14px 8px; border-bottom: 2px solid var(--line); border-radius: 0; }
  .nav__item.has-drop > .nav__link::after { margin-left: auto; transition: transform .2s var(--ease); }
  .nav__item.is-expanded.has-drop > .nav__link::after { transform: rotate(180deg); }
  /* dropdowns collapsed by default on mobile; expand on tap */
  .nav__drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    background: transparent; padding: 0 0 8px 14px; display: none; }
  .nav__item.is-expanded > .nav__drop { display: grid; }
  .nav__drop a { padding: 11px 6px; }
  .nav__cta { margin: 16px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  /* Prominent shrink-on-scroll: big header at the top, compact once stuck */
  .brand img { height: 66px; }
  .nav.is-stuck .brand img { height: 38px; }
  .nav__inner { padding-top: 16px; padding-bottom: 16px; }
  .nav.is-stuck .nav__inner { padding-top: 6px; padding-bottom: 6px; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .menu { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: -1; }
  .split__media img { aspect-ratio: 16/11; }
  .tile, .tile--xl, .tile--wide, .tile--tall { grid-column: span 6; aspect-ratio: 1/1; }
  .grid { grid-template-columns: repeat(12,1fr); }
  .linklist a { grid-template-columns: auto 1fr; }
  .linklist .d { display: none; }
  .form .row { grid-template-columns: 1fr; }
  .section-head { align-items: start; }
  .lb__nav { width: 44px; height: 44px; }
}
@media (max-width: 560px) {
  /* phones already get the name from the logo art; drop the text wordmark so it fits */
  .brand__txt { display: none; }
}
@media (max-width: 460px) {
  .tile, .tile--xl, .tile--wide, .tile--tall { grid-column: span 12; }
  .hero__title { text-shadow: 3px 3px 0 rgba(0,0,0,.25); }
}
