/* ==========================================================================
   OLD SCHOOL PIZZA — Middle Sackville, Nova Scotia
   Brand stylesheet. Hand-built, no framework. Cloudflare Pages static site.
   Palette + type sampled directly from the shop's logo, signage and flyers.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colour — orange is the one loud accent, everything else supports it */
  --orange:        #ee6c20;
  --orange-deep:   #b0470a;   /* deepened for AA contrast on cream (small text/badges) */
  --orange-bright: #ff7d2e;
  --orange-soft:   #f7a861;

  /* Warm near-black (never #000) sampled from the logo outlines + store ceiling */
  --ink:      #1c140e;
  --ink-2:    #271a11;   /* raised surfaces on dark */
  --ink-3:    #34231a;   /* wood-grain brown from the store floor/walls */
  --ink-soft: #4a3528;

  /* Paper / cream from the menu flyer + store mural */
  --paper:    #fbf2e2;
  --paper-2:  #f4e6cd;
  --paper-3:  #ecd6b3;

  /* Support accents */
  --tomato:   #c32d1b;   /* pepperoni red */
  --gold:     #f2a41c;   /* mustard / stars */
  --cheese:   #f4c84b;
  --leaf:     #5d7a35;   /* the chefs' green trousers — tiny accents only */

  --white:    #fffaf2;

  /* Type */
  --f-display: "Anton", "Arial Narrow", sans-serif;     /* big athletic headers */
  --f-fun:     "Luckiest Guy", "Anton", sans-serif;     /* cartoon personality  */
  --f-body:    "Archivo", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(1.1rem, 4vw, 2.75rem);
  --section-y: clamp(3.75rem, 8vw, 7rem);

  /* Radii — soft but not bubbly; the brand is chunky */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Tinted, grounded shadows (no neon glow) */
  --sh-sm: 0 2px 6px rgba(28, 20, 14, .12);
  --sh-md: 0 14px 30px -12px rgba(28, 20, 14, .35);
  --sh-lg: 0 30px 60px -20px rgba(28, 20, 14, .45);
  --sh-hard: 5px 5px 0 var(--ink);     /* the "sticker" offset shadow */

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* JS measures the sticky header + menu bar into these vars (fallbacks below) */
  scroll-padding-top: var(--scroll-pad, 150px);
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--orange); color: var(--white); }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--white);
  padding: .6rem 1rem; border-radius: var(--r-sm);
  z-index: 200; transition: top .2s var(--ease); font-weight: 700;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: .94; letter-spacing: .5px; text-transform: uppercase; }

.display {
  font-family: var(--f-display);
  font-size: clamp(2.9rem, 1.6rem + 6vw, 6.5rem);
  line-height: .9;
  letter-spacing: 1px;
}
h2.section-title { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.9rem); letter-spacing: 1px; }
h3 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); }

.eyebrow {
  font-family: var(--f-fun);
  font-size: clamp(.85rem, .8rem + .3vw, 1.05rem);
  letter-spacing: .5px;
  color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: .55rem;
  text-transform: none;
}
.eyebrow::before {
  content: ""; width: 26px; height: 4px; border-radius: 2px;
  background: var(--orange);
}
.eyebrow.on-dark { color: var(--orange-soft); }
.eyebrow.centered { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem); max-width: 54ch; color: var(--ink-soft); }
.on-dark .lede, .lede.on-dark { color: rgba(251,242,226,.78); }

.ink-orange { color: var(--orange); }
.ink-cream  { color: var(--paper); }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  text-stroke: 2px var(--ink);
}
.on-dark .outline-text { -webkit-text-stroke-color: var(--paper); text-stroke-color: var(--paper); }

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-wide { max-width: 1440px; }
.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.bg-ink   { background: var(--ink); color: var(--paper); }
.bg-ink-2 { background: var(--ink-2); color: var(--paper); }
.bg-orange{ background: var(--orange); color: var(--ink); }
.bg-paper-2 { background: var(--paper-2); }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.ico { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -0.16em; flex-shrink: 0; }
.hide-sm { display: inline; }
@media (max-width: 680px) { .hide-sm { display: none; } }
.measure { max-width: 60ch; }
.measure.center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. DECORATIVE TEXTURES  (comic halftone, checker, grain, starburst)
   -------------------------------------------------------------------------- */
.halftone {
  background-image: radial-gradient(rgba(28,20,14,.16) 1.4px, transparent 1.5px);
  background-size: 13px 13px;
}
.halftone-orange {
  background-image: radial-gradient(rgba(238,108,32,.4) 1.6px, transparent 1.7px);
  background-size: 14px 14px;
}
.checker {
  background-image:
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%),
    linear-gradient(45deg, var(--ink) 25%, transparent 25%, transparent 75%, var(--ink) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 11px 11px;
}
/* fixed film grain — pointer-events-none, never on a scrolling element */
.grain {
  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.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.starburst {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      var(--orange-deep) 0deg 6deg, transparent 6deg 12deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 0 38%, transparent 60%);
          mask: radial-gradient(circle at 50% 50%, #000 0 38%, transparent 60%);
}

/* edge "torn paper" between dark and cream sections */
.edge-top {
  position: absolute; top: -1px; left: 0; width: 100%; line-height: 0;
}
.edge-bottom {
  position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0;
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--f-display); letter-spacing: 1px; text-transform: uppercase;
  font-size: 1.05rem;
  padding: .92rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 3px solid var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-hard);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  position: relative;
  will-change: transform;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); background: var(--orange-bright); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--ink   { --btn-bg: var(--ink); --btn-fg: var(--paper); }
.btn--ink:hover { background: var(--ink-3); }
.btn--cream { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); box-shadow: none; transform: translateY(-2px); }
.on-dark .btn--ghost, .hero .btn--ghost { --btn-fg: var(--paper); border-color: var(--paper); }
.on-dark .btn--ghost:hover, .hero .btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn--lg { font-size: 1.25rem; padding: 1.1rem 2rem; }
.btn--sm { font-size: .9rem; padding: .6rem 1.1rem; border-width: 2px; box-shadow: 3px 3px 0 var(--ink); }
.btn--sm:hover { box-shadow: 5px 5px 0 var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* --------------------------------------------------------------------------
   7. BADGES / STAMPS / CHIPS
   -------------------------------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 700; font-size: .82rem; letter-spacing: .4px; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: var(--r-pill);
  background: var(--paper-2); color: var(--ink-3);
  border: 2px solid rgba(28,20,14,.16);
}
.chip svg { width: 1.1em; height: 1.1em; color: var(--orange-deep); }
.on-dark .chip { background: rgba(255,255,255,.07); color: var(--paper); border-color: rgba(255,255,255,.16); }
.on-dark .chip svg { color: var(--orange-soft); }
.chip.solid { background: var(--orange); color: var(--ink); border-color: var(--ink); }

/* rotated "stamp" slogan badge */
.stamp {
  display: inline-grid; place-items: center; text-align: center;
  width: 168px; height: 168px; border-radius: 50%;
  background: var(--tomato); color: var(--paper);
  border: 3px dashed rgba(255,255,255,.55);
  outline: 4px solid var(--tomato); outline-offset: 4px;
  font-family: var(--f-fun); line-height: 1; padding: 1rem;
  transform: rotate(-9deg);
  box-shadow: var(--sh-md);
}
.stamp span { font-size: 1.45rem; }
.stamp small { display: block; font-family: var(--f-body); font-weight: 700; font-size: .62rem; letter-spacing: 2px; margin-top: .4rem; text-transform: uppercase; }

/* Brand logo (logo.png) — square crop, transparent corners sit on any bg */
.brand-badge { display: block; aspect-ratio: 1 / 1; object-fit: contain; }
.brand-badge.spin .badge-ring { transform-box: fill-box; transform-origin: center; animation: spin 26s linear infinite; }

/* --------------------------------------------------------------------------
   8. HEADER / NAV
   -------------------------------------------------------------------------- */
.announce {
  background: var(--ink);
  color: var(--paper);
  font-size: .82rem; letter-spacing: .3px;
}
.announce .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .5rem; }
.announce a { font-weight: 700; }
.announce .ann-left { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.announce .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 3px rgba(93,122,53,.3); }
.announce .ann-status { display: inline-flex; align-items: center; gap: .5rem; }
.announce .ann-links { display: flex; gap: 1.1rem; align-items: center; }
.announce .ann-links a:hover { color: var(--orange-soft); }

.site-header { position: sticky; top: 0; z-index: 100; }
.nav {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 74px; }

.brand-lockup { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand-lockup .brand-badge { width: 50px; height: 50px; }
.brand-lockup .wordmark { font-family: var(--f-fun); font-size: 1.18rem; line-height: .9; color: var(--ink); }
.brand-lockup .wordmark b { display: block; color: var(--orange-deep); }
.brand-lockup .wordmark small { display: block; font-family: var(--f-body); font-weight: 700; font-size: .55rem; letter-spacing: 2.5px; color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: .8px;
  font-size: 1.02rem; padding: .5rem .8rem; border-radius: var(--r-sm);
  position: relative; transition: color .15s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .28rem; height: 3px;
  background: var(--orange); border-radius: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--orange-deep); }

.nav-cta { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--f-display); font-size: 1.05rem; letter-spacing: .5px; }
.nav-phone svg { width: 1.1em; height: 1.1em; color: var(--orange-deep); }

.nav-toggle {
  display: none; flex-shrink: 0; width: 48px; height: 44px; border: 3px solid var(--ink);
  background: var(--orange); border-radius: var(--r-sm); box-shadow: 3px 3px 0 var(--ink);
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 3px;
  background: var(--ink); border-radius: 2px; transform: translate(-50%, -50%);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%, 7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%, -7px) rotate(-45deg); }

/* kinetic deal marquee under the nav */
.ticker {
  background: var(--orange);
  border-bottom: 3px solid var(--ink);
  overflow: hidden; white-space: nowrap;
}
.ticker__track {
  display: inline-flex; gap: 0; align-items: center;
  will-change: transform; animation: marquee 32s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  font-family: var(--f-display); text-transform: uppercase; letter-spacing: 1px;
  font-size: .95rem; color: var(--ink); padding: .5rem 0; display: inline-flex; align-items: center;
}
.ticker__item::after {
  content: "★"; margin: 0 1.3rem; color: var(--tomato); font-size: .8rem; transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   9. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
}
.hero .container {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(440px, 64vh, 600px);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
.hero__copy { max-width: 600px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scaleX(-1); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 20%, rgba(28,20,14,.88) 38%, rgba(28,20,14,.4) 52%, rgba(28,20,14,.06) 65%, rgba(28,20,14,0) 80%);
}
.hero__halftone { position: absolute; inset: 0; z-index: 2; opacity: .16; }
.hero__glow {
  position: absolute; z-index: 1; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  right: -12vw; top: -16vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(238,108,32,.42), transparent 62%);
  filter: blur(8px); mix-blend-mode: screen;
}
.hero h1 { letter-spacing: 1px; }
.hero h1 .line1 { display: block; font-size: clamp(2.6rem, 1.4rem + 5.2vw, 5.4rem); color: var(--paper); }
.hero h1 .line2 { display: block; font-size: clamp(3.3rem, 1.6rem + 8vw, 7.6rem); color: var(--orange); -webkit-text-stroke: 2px var(--ink); text-shadow: 4px 4px 0 var(--ink); }
.hero h1 .line3 { display: block; font-size: clamp(2.6rem, 1.4rem + 5.2vw, 5.4rem); color: var(--paper); }
.hero__sub { margin-top: 1.4rem; }
/* Dark heroes aren't tagged .on-dark, so force readable light body text on them */
.hero .lede, .page-hero .lede { color: rgba(251, 242, 226, .92); text-shadow: 0 1px 12px rgba(0, 0, 0, .55); }
.hero__cta { margin-top: 1.9rem; }
.hero__trust { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: .6rem .9rem; align-items: center; }
.rating-chip { gap: .5rem; text-decoration: none; background: rgba(18, 13, 9, .72); color: var(--paper); border: 2px solid var(--gold); }
.rating-chip:hover { background: rgba(18, 13, 9, .85); transform: translateY(-1px); }
.rating-chip b { color: var(--white); }
.stars-rating { position: relative; display: inline-block; line-height: 1; font-size: 1.1rem; letter-spacing: 1px; }
.stars-rating .sr-bg { color: rgba(255, 255, 255, .34); }
.stars-rating .sr-fg { position: absolute; left: 0; top: 0; width: var(--pct, 88%); overflow: hidden; white-space: nowrap; color: var(--gold); }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__art .brand-badge { width: min(78%, 360px); height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.4)); }
.hero__art .stamp { position: absolute; right: 2%; bottom: 4%; width: 138px; height: 138px; }
.hero__art .stamp span { font-size: 1.15rem; }
.float { animation: float 6s ease-in-out infinite; }

/* a generic page banner for interior pages */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
  padding-block: clamp(2.6rem, 5vw, 4.5rem);
  border-bottom: 3px solid var(--ink);
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero__halftone { position: absolute; inset: 0; z-index: 1; opacity: .4; }
.page-hero h1 { font-size: clamp(2.6rem, 1.5rem + 5vw, 5rem); }
.page-hero .crumbs { font-size: .85rem; letter-spacing: .5px; color: rgba(251,242,226,.6); margin-bottom: .8rem; text-transform: uppercase; }
.page-hero .crumbs a:hover { color: var(--orange-soft); }
.page-hero .crumbs span { color: var(--orange-soft); }

/* --------------------------------------------------------------------------
   10. ORDER STRIP  (3 ways to order — divided band, NOT 3 boxed cards)
   -------------------------------------------------------------------------- */
.order-strip { background: var(--paper-2); border-block: 3px solid var(--ink); }
.order-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.order-way {
  display: flex; gap: 1rem; align-items: flex-start; padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1rem,2vw,1.8rem);
  position: relative;
}
.order-way + .order-way::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%; width: 3px;
  background: repeating-linear-gradient(var(--ink) 0 8px, transparent 8px 16px);
}
.order-way__icon { flex-shrink: 0; width: 52px; height: 52px; display: grid; place-items: center; background: var(--orange); border: 3px solid var(--ink); border-radius: 50%; box-shadow: var(--sh-hard); }
.order-way__icon svg { width: 26px; height: 26px; color: var(--ink); }
.order-way h3 { font-size: 1.35rem; }
.order-way p { font-size: .92rem; color: var(--ink-soft); margin-top: .2rem; }
.order-way a.inline-link { font-weight: 800; color: var(--orange-deep); border-bottom: 2px solid var(--orange); }
.order-way a.inline-link:hover { color: var(--tomato); }

/* --------------------------------------------------------------------------
   11. FEATURE ZIG-ZAG  (signature items — alternating, never 3-up cards)
   -------------------------------------------------------------------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 6vw, 5.5rem); }
.feature:nth-child(even) .feature__media { order: 2; }
.feature__media {
  position: relative; border: 3px solid var(--ink); border-radius: var(--r-lg);
  background: var(--ink); overflow: hidden; box-shadow: var(--sh-md);
  aspect-ratio: 4 / 3.2; display: grid; place-items: center;
}
.feature__media .price-flag {
  position: absolute; top: 16px; left: -8px; z-index: 4;
  background: var(--tomato); color: var(--white);
  font-family: var(--f-display); font-size: 1.4rem; letter-spacing: .5px;
  padding: .45rem 1rem .45rem .85rem; border: 3px solid var(--ink);
  box-shadow: var(--sh-sm);
}
.feature__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(28,20,14,.34), transparent 30%);
}
.feature__tag { color: var(--orange-deep); font-family: var(--f-fun); font-size: 1rem; }
.feature h3 { font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.9rem); margin-top: .35rem; }
.feature p { margin-top: .8rem; color: var(--ink-soft); max-width: 46ch; }
.feature__meta { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .5rem; }

/* big emoji-free illustrated "plate" used inside feature media + cards */
.plate-art { width: 100%; height: 100%; }

/* --------------------------------------------------------------------------
   12. BENTO MENU TEASER  (asymmetric tile grid linking to full menu)
   -------------------------------------------------------------------------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.bento__tile {
  position: relative; overflow: hidden; color: var(--paper);
  border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: 1.4rem; min-height: 190px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--sh-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.bento__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s var(--ease); }
.bento__tile::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(155deg, rgba(28,20,14,.42) 0%, rgba(28,20,14,.4) 35%, rgba(28,20,14,.9) 100%);
}
.bento__tile > svg, .bento__tile > div { position: relative; z-index: 2; }
.bento__tile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.bento__tile:hover .bento__bg { transform: scale(1.06); }
.bento__tile .cat-icon { width: 42px; height: 42px; color: var(--orange-soft); filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.bento__tile h3 { font-size: 1.45rem; color: var(--paper); text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.bento__tile p { color: rgba(251,242,226,.94); text-shadow: 0 1px 8px rgba(0,0,0,.55); margin-top: .35rem; }
.bento__tile .from { font-weight: 800; color: rgba(251,242,226,.88); font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; }
.bento__tile .from b { font-family: var(--f-display); color: var(--cheese); font-size: 1.2rem; margin-left: .25rem; letter-spacing: .5px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.bento__tile::after {
  content: "→"; position: absolute; right: 1.1rem; top: 1.1rem; z-index: 3; font-size: 1.3rem; font-weight: 800;
  opacity: 0; transform: translateX(-6px); transition: opacity .2s var(--ease), transform .2s var(--ease); color: var(--paper);
}
.bento__tile:hover::after { opacity: 1; transform: translateX(0); }
.bento__tile.tile-lg { grid-column: span 2; grid-row: span 2; }
.bento__tile.tile-wide { grid-column: span 2; }

/* --------------------------------------------------------------------------
   13. PUN DIVIDER  (uses the shop's real wall-mural jokes — kinetic band)
   -------------------------------------------------------------------------- */
.pun-band { background: var(--orange); border-block: 3px solid var(--ink); overflow: hidden; padding-block: clamp(1.6rem, 3vw, 2.4rem); }
.pun-band .container { position: relative; z-index: 2; text-align: center; }
.pun-band p { font-family: var(--f-fun); font-size: clamp(1.5rem, 1rem + 3vw, 3rem); color: var(--ink); line-height: 1.05; }
.pun-band small { display: block; font-family: var(--f-body); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: .72rem; color: rgba(28,20,14,.9); margin-top: .7rem; }
.pun-band .checker { position: absolute; inset: 0; opacity: .08; z-index: 1; }

/* --------------------------------------------------------------------------
   14. DEAL TICKETS  (coupon / perforated card)
   -------------------------------------------------------------------------- */
.deal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem 1.2rem; }
.ticket {
  position: relative; background: var(--paper);
  border: 3px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--sh-hard);
  display: grid; grid-template-columns: 64px 1fr; overflow: hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.ticket:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.ticket__num {
  background: var(--ink); color: var(--orange); font-family: var(--f-display);
  font-size: 1.9rem; display: grid; place-items: center; position: relative;
  border-right: 3px dashed var(--paper-3);
}
/* perforation notches */
.ticket__num::before, .ticket__num::after {
  content: ""; position: absolute; right: -10px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--ink);
}
.ticket__num::before { top: -10px; }
.ticket__num::after { bottom: -10px; }
.ticket__body { padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .35rem; }
.ticket__body h3 { font-size: 1.35rem; line-height: 1; }
.ticket__body p { font-size: .88rem; color: var(--ink-soft); }
.ticket__price { margin-top: auto; font-family: var(--f-display); font-size: 1.7rem; color: var(--tomato); letter-spacing: .5px; }
.ticket.is-feature { grid-column: span 2; background: var(--orange); }
.ticket.is-feature .ticket__num { background: var(--ink); }
.ticket.is-feature .ticket__body p { color: var(--ink); }
.ticket.is-feature .ticket__price { color: var(--ink); }
@media (max-width: 640px){ .ticket.is-feature { grid-column: auto; } }

/* --------------------------------------------------------------------------
   15. MENU PAGE
   -------------------------------------------------------------------------- */
.menu-nav {
  position: sticky; top: var(--header-h, 108px); z-index: 50;
  background: var(--ink); border-bottom: 3px solid var(--orange);
}
.menu-nav__scroll { display: flex; gap: .4rem; overflow-x: auto; padding: .65rem var(--gutter); scrollbar-width: thin; -ms-overflow-style: none; }
.menu-nav__scroll::-webkit-scrollbar { height: 5px; }
.menu-nav__scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.menu-nav a {
  flex-shrink: 0; font-family: var(--f-display); text-transform: uppercase; letter-spacing: .6px;
  font-size: .92rem; color: var(--paper); padding: .45rem .95rem; border-radius: var(--r-pill);
  border: 2px solid transparent; white-space: nowrap; transition: background .15s var(--ease), color .15s var(--ease);
}
.menu-nav a:hover { background: rgba(255,255,255,.1); }
.menu-nav a.active { background: var(--orange); color: var(--ink); }

.menu-section { padding-block: clamp(2.4rem, 5vw, 3.6rem); border-bottom: 2px dashed var(--paper-3); scroll-margin-top: var(--scroll-pad, 150px); }
.menu-section:last-of-type { border-bottom: 0; }
.menu-section__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: .6rem 1.5rem; margin-bottom: 1.6rem; }
.menu-section__head h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem); position: relative; }
.menu-section__head .sizes { display: flex; gap: 1.1rem; font-family: var(--f-display); color: var(--ink-soft); font-size: .9rem; letter-spacing: .5px; }
.menu-section__head .sizes b { color: var(--orange-deep); }
.menu-note { font-size: .86rem; color: var(--ink-soft); font-style: italic; margin-bottom: 1.2rem; }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .2rem 3rem; }
.menu-list.single { grid-template-columns: 1fr; }
.m-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: .3rem .8rem; padding: .85rem 0; border-bottom: 1px dotted rgba(28,20,14,.22); }
.m-item__main { min-width: 0; }
.m-item__name { font-family: var(--f-display); font-size: 1.2rem; letter-spacing: .4px; line-height: 1.05; }
.m-item__name .flag { font-family: var(--f-body); font-weight: 800; font-size: .6rem; letter-spacing: 1px; text-transform: uppercase; color: var(--white); background: var(--leaf); padding: .12rem .4rem; border-radius: 4px; margin-left: .5rem; vertical-align: middle; }
.m-item__name .flag.hot { background: var(--tomato); }
.m-item__name .flag.fan { background: var(--orange-deep); }
.m-item__desc { font-size: .86rem; color: var(--ink-soft); margin-top: .2rem; max-width: 42ch; }
.m-item__price { font-family: var(--f-display); font-size: 1.15rem; color: var(--ink); letter-spacing: .5px; white-space: nowrap; text-align: right; }
.m-item__price .three { display: inline-flex; gap: .7rem; }
.m-item__price .three b { color: var(--tomato); font-weight: 400; }
.m-item__price .three .sz { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.m-item__price .three .sz small { font-family: var(--f-body); font-weight: 800; font-size: .58rem; letter-spacing: .5px; color: var(--ink-soft); text-transform: uppercase; }

.toppings-box { background: var(--ink); color: var(--paper); border-radius: var(--r-md); padding: 1.4rem 1.5rem; margin-top: 1.2rem; }
.toppings-box h4 { color: var(--orange-soft); font-size: 1.1rem; margin-bottom: .5rem; }
.toppings-box p { font-size: .9rem; color: rgba(251,242,226,.85); }
.toppings-box .tcols { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: .6rem 1.4rem; margin-top: .8rem; }

/* --------------------------------------------------------------------------
   16. STORY / ABOUT
   -------------------------------------------------------------------------- */
.split-photo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
.split-photo .frame {
  border: 3px solid var(--ink); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); background: var(--ink); position: relative;
}
.split-photo .frame img { width: 100%; height: 100%; object-fit: cover; }
.split-photo .frame.tilt { transform: rotate(-2deg); }

.journey { position: relative; padding-left: 2rem; }
.journey::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 3px; background: repeating-linear-gradient(var(--orange) 0 10px, transparent 10px 18px); }
.journey li { position: relative; padding: 0 0 1.6rem 0; }
.journey li::before { content: ""; position: absolute; left: -2rem; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--orange); border: 3px solid var(--ink); }
.journey .yr { font-family: var(--f-display); color: var(--orange-soft); font-size: 1.4rem; letter-spacing: .5px; }
.journey h3 { font-size: 1.3rem; margin-top: .1rem; }
.journey p { font-size: .94rem; color: rgba(251, 242, 226, .78); margin-top: .3rem; max-width: 48ch; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }
.value { padding: 1.4rem; border: 3px solid var(--ink); border-radius: var(--r-md); background: var(--white); }
.value .vicon { width: 40px; height: 40px; color: var(--orange-deep); margin-bottom: .7rem; }
.value h3 { font-size: 1.25rem; }
.value p { font-size: .9rem; color: var(--ink-soft); margin-top: .35rem; }

/* --------------------------------------------------------------------------
   17. REVIEWS / SOCIAL PROOF
   -------------------------------------------------------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.3rem; }
.review {
  background: var(--white); border: 3px solid var(--ink); border-radius: var(--r-md);
  padding: 1.4rem 1.5rem; box-shadow: var(--sh-sm); position: relative;
}
.review .stars { display: inline-flex; gap: 2px; color: var(--gold); margin-bottom: .6rem; }
.review .stars svg { width: 18px; height: 18px; }
.review blockquote { font-size: 1rem; line-height: 1.5; }
.review .who { margin-top: .9rem; font-weight: 800; font-size: .88rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5rem; }
.review .who .av { width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--ink); display: grid; place-items: center; font-family: var(--f-display); border: 2px solid var(--ink); }
.review.is-cta { background: var(--ink); color: var(--paper); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: .9rem; }
.review.is-cta h3 { font-size: 1.6rem; }
.review.is-cta p { font-size: .92rem; color: rgba(251,242,226,.8); }

/* --------------------------------------------------------------------------
   18. HOURS / CONTACT / MAP
   -------------------------------------------------------------------------- */
.hours-card { background: var(--white); border: 3px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.hours-card__head { background: var(--ink); color: var(--paper); padding: 1rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hours-card__head h3 { font-size: 1.35rem; }
.seasons { display: grid; grid-template-columns: 1fr 1fr; }
.seasons > div { padding: 1.2rem 1.4rem; }
.seasons > div + div { border-left: 2px dashed var(--paper-3); }
.seasons h4 { font-size: 1.05rem; color: var(--orange-deep); display: flex; align-items: center; gap: .45rem; margin-bottom: .6rem; }
.seasons h4 .now-tag { font-family: var(--f-body); font-weight: 800; font-size: .58rem; letter-spacing: 1px; background: var(--leaf); color: var(--white); padding: .12rem .45rem; border-radius: var(--r-pill); text-transform: uppercase; }
.hrow { display: flex; justify-content: space-between; gap: 1rem; padding: .42rem 0; border-bottom: 1px dotted rgba(28,20,14,.18); font-size: .94rem; }
.hrow:last-child { border-bottom: 0; }
.hrow.today { font-weight: 800; color: var(--orange-deep); }
.hrow .d { font-family: var(--f-display); letter-spacing: .5px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.info-list { display: grid; gap: 1rem; }
.info-list li { display: flex; gap: .9rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--white); border: 3px solid var(--ink); border-radius: var(--r-md); }
.info-list .ic { flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; background: var(--orange); border: 3px solid var(--ink); border-radius: 50%; }
.info-list .ic svg { width: 22px; height: 22px; color: var(--ink); }
.info-list .lbl { font-family: var(--f-display); letter-spacing: .5px; font-size: 1rem; }
.info-list .val { font-size: 1.02rem; font-weight: 600; }
.info-list .val a { border-bottom: 2px solid var(--orange); }
.info-list .val a:hover { color: var(--orange-deep); }

.map-frame { border: 3px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); background: var(--ink-3); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: saturate(1.05); }

.faq dt { font-family: var(--f-display); font-size: 1.2rem; letter-spacing: .4px; margin-top: 1.4rem; }
.faq dd { color: var(--ink-soft); margin-top: .3rem; max-width: 60ch; }

/* big closing CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--orange); border-block: 3px solid var(--ink); }
.cta-band .container { position: relative; z-index: 2; text-align: center; display: grid; gap: 1.3rem; place-items: center; }
.cta-band h2 { font-size: clamp(2.2rem, 1.3rem + 4vw, 4.4rem); color: var(--ink); }
.cta-band .eyebrow { color: var(--ink); }
.cta-band .eyebrow::before { background: var(--ink); }
.cta-band .halftone { position: absolute; inset: 0; opacity: .25; z-index: 1; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.foot-marquee { background: var(--ink); border-top: 3px solid var(--orange); overflow: hidden; white-space: nowrap; }
.foot-marquee .ticker__track { animation-duration: 40s; }
.foot-marquee .ticker__item { color: var(--orange); }
.foot-marquee .ticker__item::after { content: "●"; color: var(--paper); }

.site-footer { background: var(--ink); color: var(--paper); position: relative; }
.site-footer .halftone { position: absolute; inset: 0; opacity: .14; }
.site-footer .container { position: relative; z-index: 2; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: clamp(2.6rem, 5vw, 4rem); }
.foot-brand .brand-lockup .wordmark { color: var(--paper); }
.foot-brand .brand-lockup .wordmark b { color: var(--orange); }
.foot-brand .brand-lockup .wordmark small { color: rgba(251, 242, 226, .6); }
.foot-brand .brand-badge { width: 56px; height: 56px; }
.foot-brand p { color: rgba(251,242,226,.72); font-size: .92rem; margin-top: 1rem; max-width: 34ch; }
.foot-brand .slogan { font-family: var(--f-fun); color: var(--orange-soft); font-size: 1.2rem; margin-top: 1rem; }
.foot-col h4 { color: var(--orange-soft); font-size: 1.15rem; letter-spacing: .8px; margin-bottom: 1rem; }
.foot-col ul { display: grid; gap: .55rem; }
.foot-col a, .foot-col li { color: rgba(251,242,226,.8); font-size: .94rem; }
.foot-col a:hover { color: var(--orange-soft); }
.foot-col .small-h { font-size: .82rem; }
.foot-social { display: flex; gap: .6rem; margin-top: 1rem; }
.foot-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.25); border-radius: 50%; transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.foot-social a:hover { background: var(--orange); border-color: var(--ink); color: var(--ink); transform: translateY(-3px); }
.foot-social svg { width: 20px; height: 20px; }
.foot-bar { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(251,242,226,.6); }
.foot-bar a { color: rgba(251,242,226,.78); }
.foot-bar a:hover { color: var(--orange-soft); }
.ns-proud { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; letter-spacing: .5px; }
.ns-proud svg { width: 26px; height: 17px; border: 1px solid rgba(255,255,255,.3); border-radius: 2px; }

/* --------------------------------------------------------------------------
   20. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pop-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* --------------------------------------------------------------------------
   21. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__tile.tile-lg { grid-column: span 2; grid-row: auto; }
  .bento__tile.tile-wide { grid-column: span 2; }
}

@media (max-width: 880px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .brand-lockup { min-width: 0; }
  .brand-lockup .wordmark { font-size: 1.05rem; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: .2rem;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 3px solid var(--ink);
    padding: 1rem var(--gutter) 1.4rem; box-shadow: var(--sh-md);
  }
  .nav.open .nav-links a { font-size: 1.5rem; padding: .7rem .4rem; border-bottom: 1px dotted rgba(28,20,14,.2); }
  .nav.open .nav-links a::after { display: none; }
  .hero .container { grid-template-columns: 1fr; text-align: center; min-height: clamp(480px, 82vh, 640px); }
  .hero__copy { max-width: none; margin-inline: auto; }
  .hero h1 .line1, .hero h1 .line3 { font-size: clamp(3rem, 11.5vw, 4.2rem); }
  .hero h1 .line2 { font-size: clamp(3.7rem, 15.5vw, 5.4rem); }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(28,20,14,.58) 0%, rgba(28,20,14,.48) 42%, rgba(28,20,14,.8) 100%); }
  .eyebrow { justify-content: center; }
  .feature, .split-photo, .contact-grid { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature__media { order: -1; }
  .feature p { max-width: none; }
  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .order-strip .container { grid-template-columns: 1fr; }
  .order-way + .order-way::before { left: 14%; right: 14%; top: 0; bottom: auto; width: auto; height: 3px; background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px); }
}

@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .seasons { grid-template-columns: 1fr; }
  .seasons > div + div { border-left: 0; border-top: 2px dashed var(--paper-3); }
  .deal-grid { grid-template-columns: 1fr; }
  .announce .ann-links { display: none; }
  .hero__art .stamp { width: 104px; height: 104px; }
  .hero__art .stamp span { font-size: .9rem; }
  .nav .container { min-height: 64px; gap: .6rem; }
  .brand-lockup .brand-badge { width: 42px; height: 42px; }
  .brand-lockup .wordmark small { display: none; }
  .brand-lockup .wordmark { font-size: .98rem; }
}
@media (max-width: 400px) {
  .brand-lockup .wordmark { display: none; }
}

/* --------------------------------------------------------------------------
   22. ACCESSIBILITY — reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  .float { animation: none; }
}
