/* =====================================================================
   THE HOTDOG STATION — Retro-American Street Food Station
   One font throughout: "Archivo"
   Palette: mustard yellow / ketchup red / cream white / deep charcoal
   ===================================================================== */

:root {
  --mustard: #f5b82e;
  --mustard-deep: #e0a318;
  --ketchup: #df2b2b;
  --ketchup-deep: #b71f1f;
  --cream: #fbf1dd;
  --cream-deep: #f3e3c4;
  --char: #181410;
  --char-soft: #241d16;
  --ink: #2a221a;
  --line: rgba(24, 20, 16, 0.14);
  --pickle: #6f8f3a;

  --shadow-hard: 5px 5px 0 var(--char);
  --shadow-hard-red: 5px 5px 0 var(--ketchup);
  --radius: 18px;
  --maxw: 1220px;

  --font: "Archivo", "Arial Narrow", system-ui, sans-serif;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--char);
  line-height: 1.55;
  overflow-x: hidden;
  font-weight: 500;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--ketchup); color: var(--cream); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 5px; width: 0;
  background: linear-gradient(90deg, var(--ketchup), var(--mustard));
  z-index: 999; transition: width 0.08s linear;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  padding: 14px 24px; border-radius: 60px; font-size: 0.98rem;
  border: 3px solid var(--char);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s;
  white-space: nowrap;
}
.btn-primary { background: var(--ketchup); color: var(--cream); box-shadow: var(--shadow-hard); }
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--char); background: var(--ketchup-deep); }
.btn-mustard { background: var(--mustard); color: var(--char); box-shadow: var(--shadow-hard); }
.btn-mustard:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--char); }
.btn-dark { background: var(--char); color: var(--cream); box-shadow: 5px 5px 0 var(--ketchup); }
.btn-dark:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ketchup); }
.btn-ghost { background: transparent; color: var(--char); border-color: var(--char); }
.btn-ghost:hover { background: var(--char); color: var(--cream); }

/* ---------- top ticket marquee ---------- */
.ticker {
  background: var(--char); color: var(--mustard);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.82rem; padding: 8px 0; overflow: hidden; white-space: nowrap;
  border-bottom: 3px solid var(--ketchup);
}
.ticker-track { display: inline-flex; gap: 0; animation: ticker 28s linear infinite; }
.ticker-track span { padding: 0 26px; }
.ticker-track span::before { content: "🌭"; margin-right: 24px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--char);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 6px 0 rgba(24,20,16,0.08); }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 22px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 50px; height: 50px; flex: none; display: grid; place-items: center;
  background: var(--ketchup); color: var(--mustard); border: 3px solid var(--char);
  border-radius: 14px; font-weight: 900; font-size: 1.5rem;
  box-shadow: 3px 3px 0 var(--char); transform: rotate(-4deg);
}
.brand-text strong { display: block; font-weight: 900; font-size: 1.12rem; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.brand-text em { font-style: normal; font-weight: 700; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--ketchup); }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-weight: 800; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.03em; position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0; background: var(--ketchup); transition: width 0.2s; }
.nav-links a:hover::after { width: 100%; }
.nav-privacy { color: var(--ketchup) !important; }

.header-cta { padding: 11px 18px; font-size: 0.85rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 26px; height: 3px; background: var(--char); border-radius: 2px; transition: 0.25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 0 22px;
  max-height: 0; overflow: hidden; background: var(--cream); border-bottom: 0 solid var(--char);
  transition: max-height 0.3s ease, padding 0.3s;
}
.mobile-menu.open { max-height: 560px; padding: 14px 22px 22px; border-bottom: 3px solid var(--char); }
.mobile-menu a { font-weight: 800; text-transform: uppercase; padding: 11px 0; border-bottom: 2px dashed var(--line); font-size: 0.95rem; }
.mobile-menu .mobile-cta { border: none; margin-top: 12px; text-align: center; justify-content: center; }

/* ---------- section frame ---------- */
section { position: relative; }
.section-pad { padding: 92px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--char); color: var(--mustard);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem;
  padding: 7px 16px; border-radius: 60px; margin-bottom: 18px;
}
.eyebrow.red { background: var(--ketchup); color: var(--cream); }
.section-head { max-width: 760px; }
.section-head h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.section-head p { margin-top: 16px; font-size: 1.06rem; font-weight: 600; color: var(--ink); max-width: 620px; }
.text-red { color: var(--ketchup); }
.text-mustard { color: var(--mustard-deep); }

/* dashed divider like a ticket */
.dashed { border: none; border-top: 3px dashed var(--char); opacity: 0.25; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(245,184,46,0.35), transparent 45%),
    repeating-linear-gradient(45deg, var(--cream) 0 26px, var(--cream-deep) 26px 52px);
  border-bottom: 3px solid var(--char);
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; padding: 70px 0 84px; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; background: var(--mustard);
  border: 3px solid var(--char); border-radius: 60px; padding: 8px 18px;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem;
  box-shadow: 3px 3px 0 var(--char); transform: rotate(-2deg); margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3.2rem, 9.5vw, 7rem);
  line-height: 0.86; letter-spacing: -0.03em;
}
.hero h1 .line-red { color: var(--ketchup); -webkit-text-stroke: 2px var(--char); text-shadow: 4px 4px 0 var(--char); }
.hero h1 .line-out {
  color: var(--cream); -webkit-text-stroke: 2.5px var(--char); text-shadow: 5px 5px 0 var(--mustard);
}
.hero p.lede { margin-top: 22px; font-size: 1.16rem; font-weight: 600; color: var(--ink); max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-stats { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--ketchup); line-height: 1; }
.hero-stats .stat span { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }

/* hero art */
.hero-art { position: relative; }
.hero-photo {
  position: relative; border: 4px solid var(--char); border-radius: 26px; overflow: hidden;
  box-shadow: 10px 10px 0 var(--char); transform: rotate(2deg);
  aspect-ratio: 4/4.4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "FRESH OFF THE GRILL"; position: absolute; left: 0; bottom: 0; right: 0;
  background: var(--char); color: var(--mustard); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.74rem; padding: 10px 16px; text-align: center;
}

/* spinning starburst badge */
.starburst {
  position: absolute; width: 128px; height: 128px; display: grid; place-items: center;
  color: var(--char); font-weight: 900; text-transform: uppercase; text-align: center;
  font-size: 0.8rem; line-height: 1; z-index: 3;
}
.starburst svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 14s linear infinite; }
.starburst span { position: relative; transform: rotate(-8deg); }
.starburst.b1 { top: -26px; left: -26px; }
.starburst.b2 { bottom: 36px; right: -30px; width: 110px; height: 110px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* floating emoji stickers */
.sticker { position: absolute; font-size: 2.6rem; z-index: 4; filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.25)); }
.sticker.s1 { top: 8%; right: 4%; animation: bob 3.4s ease-in-out infinite; }
.sticker.s2 { bottom: 2%; left: -2%; animation: bob 4s ease-in-out infinite 0.5s; }
.sticker.s3 { top: 46%; left: -34px; animation: wobble 5s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-16px) rotate(8deg); } }
@keyframes wobble { 0%,100% { transform: rotate(-14deg); } 50% { transform: rotate(14deg); } }

/* ---------- marquee band ---------- */
.band {
  background: var(--ketchup); color: var(--cream); border-top: 3px solid var(--char); border-bottom: 3px solid var(--char);
  overflow: hidden; padding: 16px 0; transform: rotate(-1.4deg); margin: 50px 0; width: 105%; margin-left: -2.5%;
}
.band.alt { background: var(--mustard); color: var(--char); transform: rotate(1.4deg); }
.band-track { display: inline-flex; white-space: nowrap; animation: ticker 24s linear infinite; }
.band.alt .band-track { animation-duration: 30s; }
.band-track b { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; padding: 0 22px; display: inline-flex; align-items: center; gap: 22px; }
.band-track b::after { content: "★"; color: var(--mustard); font-size: 1rem; }
.band.alt .band-track b::after { color: var(--ketchup); }

/* ---------- signature hot dogs ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.dog-card {
  background: var(--cream); border: 3px solid var(--char); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-hard); display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.dog-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--char); }
.dog-media { position: relative; aspect-ratio: 16/11; overflow: hidden; border-bottom: 3px solid var(--char); }
.dog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dog-card:hover .dog-media img { transform: scale(1.07); }
.dog-tag {
  position: absolute; top: 12px; left: 12px; background: var(--mustard); color: var(--char);
  border: 2.5px solid var(--char); border-radius: 30px; font-weight: 800; text-transform: uppercase;
  font-size: 0.68rem; letter-spacing: 0.06em; padding: 5px 12px; box-shadow: 2px 2px 0 var(--char);
}
.dog-tag.hot { background: var(--ketchup); color: var(--cream); }
.dog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.dog-body h3 { font-size: 1.5rem; }
.dog-body p { margin-top: 8px; font-weight: 600; color: var(--ink); font-size: 0.94rem; flex: 1; }
.dog-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding-top: 16px; border-top: 3px dashed var(--line); }
.price { font-size: 1.6rem; font-weight: 900; color: var(--ketchup); }
.price small { font-size: 0.7rem; color: var(--ink); font-weight: 800; }

/* ---------- build your own ---------- */
.build { background: var(--char); color: var(--cream); border-top: 3px solid var(--char); border-bottom: 3px solid var(--char); }
.build .eyebrow { background: var(--mustard); color: var(--char); }
.build .section-head h2 { color: var(--cream); }
.build .section-head h2 em { font-style: normal; color: var(--mustard); }
.build .section-head p { color: rgba(251,241,221,0.78); }
.build-wrap { display: grid; grid-template-columns: 1fr 0.85fr; gap: 46px; align-items: center; margin-top: 48px; }
.build-steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex; gap: 18px; align-items: flex-start; background: var(--char-soft);
  border: 3px solid rgba(251,241,221,0.16); border-radius: 16px; padding: 18px 20px; transition: 0.18s;
}
.step:hover { border-color: var(--mustard); transform: translateX(6px); }
.step-num {
  flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: var(--ketchup); color: var(--cream); font-weight: 900; font-size: 1.3rem; border: 3px solid var(--cream);
}
.step h4 { font-size: 1.18rem; color: var(--mustard); }
.step p { font-weight: 600; color: rgba(251,241,221,0.78); font-size: 0.92rem; margin-top: 4px; }
.build-photos { position: relative; }
.build-photos .bp-main {
  border: 4px solid var(--cream); border-radius: 22px; overflow: hidden; box-shadow: 10px 10px 0 var(--ketchup);
  aspect-ratio: 4/3.4;
}
.build-photos .bp-main img { width: 100%; height: 100%; object-fit: cover; }
.build-photos .bp-chip {
  position: absolute; bottom: -28px; left: -28px; width: 150px; aspect-ratio: 1; border: 4px solid var(--cream);
  border-radius: 18px; overflow: hidden; box-shadow: 6px 6px 0 var(--mustard); transform: rotate(-6deg); background: var(--char);
}
.build-photos .bp-chip img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- specialty toppings ---------- */
.top-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.top-card {
  border: 3px solid var(--char); border-radius: 16px; overflow: hidden; background: var(--cream);
  box-shadow: 4px 4px 0 var(--char); transition: 0.18s;
}
.top-card:hover { transform: translateY(-5px); box-shadow: 4px 9px 0 var(--char); }
.top-card .tc-media { aspect-ratio: 1; overflow: hidden; border-bottom: 3px solid var(--char); }
.top-card .tc-media img { width: 100%; height: 100%; object-fit: cover; }
.top-card .tc-emoji { font-size: 2.6rem; aspect-ratio: 1; display: grid; place-items: center; border-bottom: 3px solid var(--char); }
.tc-emoji.m { background: var(--mustard); } .tc-emoji.r { background: var(--ketchup); } .tc-emoji.p { background: var(--pickle); }
.top-card .tc-body { padding: 14px 16px; }
.top-card h4 { font-size: 1.05rem; }
.top-card p { font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-top: 4px; }

/* ---------- combos ---------- */
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.combo {
  position: relative; background: var(--cream); border: 3px solid var(--char); border-radius: 20px;
  box-shadow: var(--shadow-hard); overflow: hidden; display: flex; flex-direction: column;
}
.combo.featured { background: var(--mustard); }
.combo-media { aspect-ratio: 16/10; overflow: hidden; border-bottom: 3px solid var(--char); position: relative; }
.combo-media img { width: 100%; height: 100%; object-fit: cover; }
.combo-ribbon {
  position: absolute; top: 14px; right: -34px; background: var(--ketchup); color: var(--cream);
  font-weight: 800; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.08em;
  padding: 6px 40px; transform: rotate(38deg); border-top: 2px solid var(--cream); border-bottom: 2px solid var(--cream);
}
.combo-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.combo-body h3 { font-size: 1.55rem; }
.combo-incl { margin-top: 12px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.combo-incl li { font-weight: 700; font-size: 0.9rem; display: flex; gap: 10px; align-items: center; }
.combo-incl li::before { content: "✚"; color: var(--ketchup); font-weight: 900; }
.combo.featured .combo-incl li::before { color: var(--char); }
.combo-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 3px dashed var(--char); }

/* dashed perforation line across each combo for a torn-ticket feel */
.combo .combo-body { position: relative; }
.combo .combo-body::before {
  content: ""; position: absolute; top: 0; left: 14px; right: 14px;
  border-top: 3px dashed var(--line); opacity: 0.5;
}

/* ---------- favorites / testimonials ---------- */
.fav { background: var(--mustard); border-top: 3px solid var(--char); border-bottom: 3px solid var(--char); }
.fav .eyebrow { background: var(--char); color: var(--mustard); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review {
  background: var(--cream); border: 3px solid var(--char); border-radius: 18px; padding: 24px;
  box-shadow: var(--shadow-hard); display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--ketchup); font-size: 1.05rem; letter-spacing: 2px; }
.review p { font-weight: 600; font-size: 1rem; color: var(--ink); flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--ketchup); color: var(--cream); display: grid; place-items: center; font-weight: 900; border: 3px solid var(--char); }
.review .who strong { display: block; text-transform: uppercase; font-size: 0.9rem; }
.review .who span { font-size: 0.74rem; font-weight: 700; color: var(--ink); }

.fav-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.fav-gallery figure { border: 3px solid var(--char); border-radius: 14px; overflow: hidden; aspect-ratio: 1; box-shadow: 3px 3px 0 var(--char); }
.fav-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fav-gallery figure:hover img { transform: scale(1.08); }

/* ---------- experience ---------- */
.exp-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 46px; align-items: center; margin-top: 48px; }
.exp-collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.exp-collage figure { border: 3px solid var(--char); border-radius: 16px; overflow: hidden; box-shadow: 5px 5px 0 var(--char); }
.exp-collage figure img { width: 100%; height: 100%; object-fit: cover; }
.exp-collage figure.tall { grid-row: span 2; }
.exp-feats { display: flex; flex-direction: column; gap: 18px; }
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat .ic { flex: none; width: 54px; height: 54px; display: grid; place-items: center; font-size: 1.6rem; background: var(--ketchup); border: 3px solid var(--char); border-radius: 14px; box-shadow: 3px 3px 0 var(--char); }
.feat:nth-child(even) .ic { background: var(--mustard); }
.feat h4 { font-size: 1.2rem; }
.feat p { font-weight: 600; color: var(--ink); font-size: 0.94rem; margin-top: 4px; }

/* ---------- contact ---------- */
.contact { background: var(--char); color: var(--cream); }
.contact .eyebrow { background: var(--ketchup); color: var(--cream); }
.contact .section-head h2 { color: var(--cream); }
.contact .section-head p { color: rgba(251,241,221,0.78); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.info-card {
  background: var(--char-soft); border: 3px solid rgba(251,241,221,0.18); border-radius: 18px;
  padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: 0.18s;
}
.info-card + .info-card { margin-top: 18px; }
.info-card:hover { border-color: var(--mustard); }
.info-card .ic { flex: none; width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem; background: var(--mustard); color: var(--char); border: 3px solid var(--cream); border-radius: 14px; }
.info-card h4 { font-size: 1.05rem; color: var(--mustard); }
.info-card p, .info-card a { font-weight: 600; color: var(--cream); font-size: 1rem; margin-top: 4px; }
.info-card a:hover { color: var(--mustard); }
.hours-card { background: var(--char-soft); border: 3px solid rgba(251,241,221,0.18); border-radius: 18px; padding: 24px; }
.hours-card h4 { color: var(--mustard); margin-bottom: 14px; }
.hours-card .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 2px dashed rgba(251,241,221,0.16); font-weight: 700; font-size: 0.95rem; }
.hours-card .row:last-child { border: none; }
.hours-card .row span:last-child { color: var(--mustard); }
.contact-cta { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--cream); border-top: 3px solid var(--char); padding: 60px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.foot-brand p { margin-top: 14px; font-weight: 600; color: var(--ink); max-width: 340px; }
.foot-col h5 { text-transform: uppercase; font-weight: 900; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.foot-col a, .foot-col p { display: block; font-weight: 700; font-size: 0.92rem; padding: 5px 0; color: var(--ink); }
.foot-col a:hover { color: var(--ketchup); }
.foot-col a.priv { color: var(--ketchup); }
.foot-bottom { margin-top: 40px; padding-top: 22px; border-top: 3px dashed var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-weight: 700; font-size: 0.84rem; color: var(--ink); }
.foot-bottom a { color: var(--ketchup); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   PRIVACY POLICY PAGE
   ===================================================================== */
.policy-page { background: var(--cream); }
.policy-hero { background: var(--char); color: var(--cream); border-bottom: 3px solid var(--char); padding: 64px 0; }
.policy-hero .eyebrow { background: var(--mustard); color: var(--char); }
.policy-hero h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); color: var(--cream); }
.policy-hero h1 em { font-style: normal; color: var(--mustard); }
.policy-hero p { margin-top: 16px; font-weight: 600; color: rgba(251,241,221,0.8); max-width: 620px; }
.policy-layout { display: grid; grid-template-columns: 250px 1fr; gap: 46px; padding: 60px 0; align-items: start; }
.policy-toc { position: sticky; top: 100px; background: var(--cream); border: 3px solid var(--char); border-radius: 16px; padding: 20px; box-shadow: 4px 4px 0 var(--char); }
.policy-toc h4 { font-size: 0.95rem; margin-bottom: 12px; }
.policy-toc a { display: block; font-weight: 700; font-size: 0.84rem; padding: 6px 0; color: var(--ink); border-bottom: 2px dashed var(--line); }
.policy-toc a:last-child { border: none; }
.policy-toc a:hover { color: var(--ketchup); }
.policy-body { max-width: 760px; }
.policy-body h2 { font-size: 1.6rem; margin: 36px 0 12px; padding-top: 8px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h3 { font-size: 1.12rem; margin: 22px 0 8px; color: var(--ketchup); }
.policy-body p, .policy-body li { font-weight: 500; color: var(--ink); font-size: 1rem; line-height: 1.7; }
.policy-body p { margin-bottom: 14px; }
.policy-body ul { list-style: none; margin: 0 0 16px; }
.policy-body ul li { position: relative; padding-left: 26px; margin-bottom: 9px; }
.policy-body ul li::before { content: "🌭"; position: absolute; left: 0; font-size: 0.85rem; }
.policy-body a { color: var(--ketchup); font-weight: 700; text-decoration: underline; }
.policy-note { background: var(--mustard); border: 3px solid var(--char); border-radius: 16px; padding: 20px 22px; box-shadow: 4px 4px 0 var(--char); margin: 24px 0; }
.policy-note strong { text-transform: uppercase; }
.policy-updated { display: inline-block; background: var(--char); color: var(--mustard); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.74rem; padding: 7px 16px; border-radius: 60px; margin-top: 18px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .build-wrap, .exp-wrap, .contact-wrap, .policy-layout { grid-template-columns: 1fr; gap: 34px; }
  .policy-toc { position: static; }
  .menu-grid, .combo-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .top-grid, .fav-gallery { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .section-pad { padding: 64px 0; }
  .menu-grid, .combo-grid, .rev-grid, .exp-collage { grid-template-columns: 1fr; }
  .top-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { text-shadow: 3px 3px 0 var(--char); }
  .band { width: 112%; margin-left: -6%; }
  .starburst.b1 { width: 96px; height: 96px; top: -16px; left: -10px; }
  .starburst.b2 { width: 84px; height: 84px; }
  .foot-bottom { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
