/* ==========================================================================
   THE COLLECTOR'S STAND — main stylesheet
   Retro arcade / comic shop aesthetic built from the logo palette.
   Plain CSS. No build step. Safe to edit by hand.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTS (self-hosted — no Google Fonts request, nothing to configure)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Bungee";
  src: url("../fonts/bungee-latin-400-normal.woff2") format("woff2"),
       url("../fonts/bungee-latin-400-normal.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Kaushan Script";
  src: url("../fonts/kaushan-script-latin-400-normal.woff2") format("woff2"),
       url("../fonts/kaushan-script-latin-400-normal.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-400-normal.woff2") format("woff2"),
       url("../fonts/archivo-latin-400-normal.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-500-normal.woff2") format("woff2"),
       url("../fonts/archivo-latin-500-normal.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-600-normal.woff2") format("woff2"),
       url("../fonts/archivo-latin-600-normal.woff") format("woff");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-700-normal.woff2") format("woff2"),
       url("../fonts/archivo-latin-700-normal.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-800-normal.woff2") format("woff2"),
       url("../fonts/archivo-latin-800-normal.woff") format("woff");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-600-italic.woff2") format("woff2"),
       url("../fonts/archivo-latin-600-italic.woff") format("woff");
  font-weight: 600; font-style: italic; font-display: swap;
}

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors sampled directly from the logo */
  --red:        #ED1C24;
  --red-dark:   #B8141B;
  /* Slightly brighter red used only for button fills, so the black button
     text clears the accessible-contrast threshold. */
  --red-btn:    #FF3C33;
  --red-btn-hi: #FF564E;
  --orange:     #F7861F;
  --gold:       #FAB20B;
  --gold-light: #FFD34E;

  /* Neutrals */
  --ink:        #14100E;
  --ink-2:      #1E1815;
  --ink-3:      #2C2421;
  --ink-line:   #453A34;
  --cream:      #FFF6E6;
  --paper:      #F3E6CE;
  --muted:      #C9B7A4;

  /* 80s pop accents, used sparingly */
  --teal:       #23C4C4;
  --purple:     #7B54E0;
  --pink:       #FF5FA2;

  /* Type */
  --font-display: "Bungee", "Arial Black", Impact, sans-serif;
  --font-script:  "Kaushan Script", "Brush Script MT", cursive;
  --font-body:    "Archivo", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --wrap: 1180px;
  --gap: 24px;
  --radius: 14px;
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-sm: 4px 4px 0 var(--ink);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, .35);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream);
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 12% 8%,  rgba(247, 134, 31, .16), transparent 45%),
    radial-gradient(circle at 88% 0%,  rgba(237, 28, 36, .16),  transparent 42%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

/* Icons: a fixed-size .ico wrapper, svg fills it */
.ico { display: block; flex: 0 0 auto; }
.ico svg { width: 100%; height: 100%; display: block; }
.ico--sm { width: 44px; height: 44px; }
.ico--md { width: 54px; height: 54px; }
.ico--lg { width: 68px; height: 68px; }
.ico--xl { width: 96px; height: 96px; margin-inline: auto; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.05; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

hr {
  border: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--red) 0 20px, var(--gold) 20px 40px);
  margin: 48px 0;
  border-radius: 2px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: 12px 20px;
  font-family: var(--font-display); border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 820px); margin-inline: auto; }

.section { padding: 84px 0; position: relative; }
.section--tight { padding: 56px 0; }

.section--paper {
  background: var(--paper);
  color: var(--ink);
}
.section--paper h2, .section--paper h3 { color: var(--ink); }
.section--paper a { color: var(--red-dark); }
.section--paper a:hover { color: var(--red); }

/* Buttons and tiles are links too — keep their own colors instead of
   inheriting the link color above, which would otherwise win on specificity. */
.section--paper .btn,
.section--paper .btn:hover,
.section--paper .tile,
.section--paper .tile:hover { color: var(--ink); }
.section--paper .btn--ghost {
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 rgba(20, 16, 14, .25);
}
.section--paper .btn--ghost:hover { background: var(--ink); color: var(--cream); }

.section--dark { background: var(--ink-2); }

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 18px; }

/* Halftone dot texture overlay */
.halftone::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, .10) 1.4px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
  opacity: .6;
}

/* Zig-zag divider between sections */
.zigzag {
  height: 18px;
  background:
    linear-gradient(135deg, var(--red) 25%, transparent 25%) -14px 0,
    linear-gradient(225deg, var(--red) 25%, transparent 25%) -14px 0,
    linear-gradient(315deg, var(--red) 25%, transparent 25%),
    linear-gradient(45deg,  var(--red) 25%, transparent 25%);
  background-size: 28px 28px;
  background-color: transparent;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY BLOCKS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 7px 16px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-hard-sm);
  transform: rotate(-1.5deg);
  margin-bottom: 22px;
}
.eyebrow--red { background: var(--red); color: #fff; }
.eyebrow--teal { background: var(--teal); color: var(--ink); }

.display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.4vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 5px 5px 0 var(--red), 10px 10px 0 rgba(0, 0, 0, .35);
}
.section--paper .display { color: var(--ink); text-shadow: 5px 5px 0 var(--gold); }

h2.title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  text-transform: uppercase;
  line-height: 1.02;
}
h3.subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  text-transform: uppercase;
}

.script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--gold);
  text-transform: none;
  letter-spacing: 0;
  display: block;
  transform: rotate(-2deg);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, .4);
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}
.section--paper .lede { color: #5B4A3D; }

.underline-gold {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: 0 88%;
}
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-hard-sm);
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  text-align: center;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  color: var(--ink);
  background: var(--gold-light);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn--red { background: var(--red-btn); color: var(--ink); }
.btn--red:hover { background: var(--red-btn-hi); color: var(--ink); }
.nav .btn--red { color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 4px 4px 0 rgba(255, 246, 230, .28);
}
.btn--ghost:hover { background: var(--cream); color: var(--ink); box-shadow: 6px 6px 0 rgba(255, 246, 230, .3); }

.btn--lg { font-size: 17px; padding: 18px 36px; }
.btn--sm { font-size: 12px; padding: 10px 18px; border-width: 2px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 16, 14, .94);
  backdrop-filter: blur(8px);
  border-bottom: 4px solid var(--red);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand { display: block; flex: 0 0 auto; }
.brand img { width: clamp(160px, 22vw, 230px); }

.nav-toggle {
  display: none;
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 9px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-hard-sm);
}
.nav-toggle span {
  display: block; width: 22px; height: 3px; background: var(--ink);
  border-radius: 2px;
}
.nav-toggle span + span { margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { background: var(--ink-3); color: var(--gold); }
.nav a.is-active { color: var(--ink); background: var(--gold); }
.nav .btn { margin-left: 8px; }

/* Announcement ticker */
.ticker {
  background: var(--red);
  color: #fff;
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-block;
  padding: 8px 0;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: ticker 34s linear infinite;
}
.ticker__track span { padding: 0 26px; }
.ticker__track span::after { content: "★"; color: var(--gold); padding-left: 26px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 90px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(250, 178, 11, .30), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
}
/* Sunburst rays behind the hero */
.hero__rays {
  position: absolute;
  top: 50%; left: 50%;
  width: 190vmax; height: 190vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 255, 255, .045) 0deg 7deg,
    transparent 7deg 14deg
  );
  animation: spin 120s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero__inner { position: relative; z-index: 2; text-align: center; }
.hero__logo { width: min(560px, 84%); margin: 0 auto 26px; filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .55)); }
.hero .lede { margin: 0 auto 30px; }
.hero .btn-row { justify-content: center; }

.hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 44px;
}
.stat-chip {
  background: var(--ink-3);
  border: 3px solid var(--ink-line);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Page banner for interior pages */
.page-head {
  position: relative;
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(237, 28, 36, .34), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-bottom: 5px solid var(--gold);
  overflow: hidden;
}
.page-head .wrap { position: relative; z-index: 2; }

/* --------------------------------------------------------------------------
   8. CARDS & GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--sidebar { grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }

.card {
  background: var(--ink-2);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-hard);
  position: relative;
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .45em;
}
.card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

.card--paper { background: var(--cream); color: var(--ink); }
.card--paper h3 { color: var(--red-dark); }
.card--paper p { color: #5B4A3D; }

/* Brand card — one per side of the store, logo on a dark plate */
.brand-card {
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.brand-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.brand-card__plate {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(250, 178, 11, .22), transparent 62%),
    linear-gradient(170deg, var(--ink-2), var(--ink));
  border-bottom: 4px solid var(--ink);
  display: grid;
  place-items: center;
  padding: 30px 26px;
  height: clamp(180px, 17vw, 225px);
  overflow: hidden;
}
.brand-card__plate img { width: min(300px, 88%); }

/* Nerdvana's plate is the artwork itself, starfield and all */
.brand-card__plate--art { padding: 0; }
.brand-card__plate--art img { width: 100%; height: 100%; object-fit: cover; }
.brand-card__body { padding: 26px 28px 30px; color: var(--ink); flex: 1; display: flex; flex-direction: column; }
.brand-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.brand-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: .45em;
}
.brand-card__body p { color: #5B4A3D; font-size: .97rem; }
.brand-card .btn-row { margin-top: auto; padding-top: 6px; }
.brand-card .btn { font-size: 13px; padding: 12px 20px; }

/* Small inline "two sides" explainer used on interior pages */
.sides { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.side-note {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-hard-sm);
}
.side-note h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .5em;
}
.side-note p { margin-bottom: 0; font-size: .95rem; }
.side-note--nerd { background: var(--gold); color: var(--ink); }
.side-note--nerd p { color: #4A3B2E; }
.side-note--stand { background: var(--ink-2); color: var(--cream); }
.side-note--stand h4 { color: var(--gold); }
.side-note--stand p { color: var(--muted); }

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

/* Category tile */
.tile {
  display: block;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  transition: transform .16s ease, box-shadow .16s ease;
  color: var(--ink);
}
.tile:hover { transform: translate(-3px, -3px) rotate(-.5deg); box-shadow: 9px 9px 0 var(--ink); color: var(--ink); }
.tile__art {
  height: 154px;
  display: grid;
  place-items: center;
  border-bottom: 4px solid var(--ink);
  background-image: radial-gradient(circle, rgba(0, 0, 0, .12) 1.4px, transparent 1.5px);
  background-size: 9px 9px;
}
.tile__art svg { width: 84px; height: 84px; filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, .3)); }
.tile__body { padding: 18px 20px 22px; }
.tile__body h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  margin-bottom: .4em;
  color: var(--ink);
}
.tile__body p { font-size: .9rem; color: #6A5949; margin: 0; line-height: 1.5; }

/* Rotating art backgrounds so the grid feels hand-made */
.bg-red    { background-color: #FFD9D6; }
.bg-gold   { background-color: #FFE9AE; }
.bg-teal   { background-color: #C6F3F3; }
.bg-purple { background-color: #DCD2FB; }
.bg-pink   { background-color: #FFD6E7; }
.bg-orange { background-color: #FFE0BF; }

/* --------------------------------------------------------------------------
   9. STEP FLOW
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
  background: var(--ink-2);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-hard);
}
.step__num {
  counter-increment: step;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold), var(--orange));
  border: 4px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}
.step__num::before { content: counter(step); }
.step h3 { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; color: var(--cream); margin-bottom: .35em; }
.step p { color: var(--muted); margin-bottom: 0; }
.step--paper { background: var(--cream); }
.step--paper h3 { color: var(--ink); }
.step--paper p { color: #5B4A3D; }

/* Split "we handle / you handle" panel */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.panel {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-hard);
}
.panel--you  { background: var(--gold); color: var(--ink); }
.panel--us   { background: var(--ink-2); color: var(--cream); }
.panel h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; }
.panel ul { list-style: none; padding: 0; margin: 0; }
.panel li { position: relative; padding-left: 30px; margin-bottom: .6em; }
.panel li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.panel--you li::before { color: var(--red-dark); }
.panel--us li::before { color: var(--gold); }

/* Payout math strip */
.payout {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-hard);
  color: var(--ink);
  text-align: center;
}
.payout__cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1;
}
.payout__cell span { font-size: .8rem; text-transform: uppercase; letter-spacing: .09em; color: #6A5949; }
.payout__op { font-family: var(--font-display); font-size: 1.6rem; color: var(--red); }

/* --------------------------------------------------------------------------
   10. PRICE / BOOTH CARDS
   -------------------------------------------------------------------------- */
.price-card {
  background: var(--cream);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card--feature { background: linear-gradient(170deg, var(--gold-light), var(--gold)); }
.price-card__flag {
  position: absolute; top: -16px; right: 18px;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 11px; letter-spacing: .1em;
  padding: 6px 14px; border: 3px solid var(--ink); border-radius: 999px;
  transform: rotate(3deg);
}
.price-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.1rem; margin-bottom: .2em; }
.price-card .size { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #6A5949; margin-bottom: 14px; }
.price-card .amount { font-family: var(--font-display); font-size: 2.3rem; line-height: 1; margin-bottom: 4px; }
.price-card .per { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #6A5949; margin-bottom: 18px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.price-card li { padding-left: 24px; position: relative; font-size: .94rem; }
.price-card li::before { content: "▸"; position: absolute; left: 4px; color: var(--red); }
.price-card .btn { margin-top: auto; }

/* Booth rent calculator */
.calc {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr;
  gap: 30px;
  align-items: center;
  background: var(--ink-2);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 30px;
}
.calc h3 { margin-bottom: .4em; }
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc__controls .field { margin-bottom: 14px; }
.calc__controls .field:last-child { margin-bottom: 0; }
.calc .field label { color: var(--gold); }
.calc__out {
  text-align: center;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 18px;
  color: var(--ink);
}
.calc__out strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  line-height: 1;
  margin: 4px 0;
}
.calc__out span {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.calc__sqft { display: block; opacity: .75; }

@media (max-width: 1000px) {
  .calc { grid-template-columns: 1fr 1fr; }
  .calc > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .calc { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   11. FORMS
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--cream);
  color: var(--ink);
  border: 5px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-hard);
  padding: clamp(24px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--ink);
}
.field .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, .18);
}
.field .hint { font-size: .8rem; color: #6A5949; margin-top: 6px; }

.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 16px; }
.check { display: flex; align-items: center; gap: 9px; font-size: .93rem; }
.check input { width: 20px; height: 20px; accent-color: var(--red); border: 3px solid var(--ink); flex: 0 0 auto; }

/* Honeypot — hidden from humans, catches bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .85rem; color: #6A5949; }

.alert {
  border: 4px solid var(--ink);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 26px;
  font-weight: 600;
}
.alert--error { background: #FFD9D6; color: #8C1116; }
.alert--ok { background: #D6F5D9; color: #1B5E20; }

/* --------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-item {
  background: var(--ink-2);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 58px 20px 24px;
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.7rem; color: var(--red); line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { color: var(--cream); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   13. CALLOUT / CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--red) 0%, var(--orange) 55%, var(--gold) 100%);
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
  padding: 68px 0;
  text-align: center;
  color: #fff;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .3);
}
.cta-band p { max-width: 60ch; margin: 0 auto 26px; font-size: 1.08rem; }
.cta-band .btn { background: var(--ink); color: var(--gold); border-color: #000; }
.cta-band .btn:hover { background: #000; color: var(--gold-light); }

/* Info strip (hours / address) */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.info-block {
  border-left: 5px solid var(--red);
  padding-left: 18px;
}
.info-block h4 {
  font-family: var(--font-display);
  font-size: .85rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .5em;
}
.info-block p { margin: 0; color: var(--muted); }
.section--paper .info-block p { color: #5B4A3D; }
.section--paper .info-block h4 { color: var(--red-dark); }

/* Placeholder marker so unfilled content is obvious */
.ph {
  background: rgba(250, 178, 11, .22);
  border-bottom: 2px dotted var(--gold);
  padding: 0 3px;
}
.section--paper .ph { background: rgba(237, 28, 36, .12); border-bottom-color: var(--red); }

/* Map placeholder */
.map-box {
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  background: var(--ink-3);
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.map-box iframe { width: 100%; min-height: 320px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0D0A09;
  border-top: 5px solid var(--red);
  padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.site-footer img { width: 210px; margin-bottom: 16px; }
.site-footer h4 {
  font-family: var(--font-display);
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5em; }
.site-footer a { color: var(--muted); font-size: .94rem; }
.site-footer a:hover { color: var(--gold); }
.site-footer p { color: var(--muted); font-size: .94rem; }
.footer-bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 2px solid var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem; color: #8A7A6C;
}

/* --------------------------------------------------------------------------
   15. MOTION / REVEAL
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__rays, .ticker__track { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--sidebar { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-strip { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--ink-2);
    border-bottom: 4px solid var(--red);
    padding: 14px 20px 22px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 14px; }
  .nav .btn { margin-left: 0; margin-top: 8px; justify-content: center; }
  .site-header { position: relative; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .section { padding: 58px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr 1fr; }
  .payout { grid-template-columns: 1fr; gap: 8px; }
  .payout__op { font-size: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 14px; }
  .display { text-shadow: 3px 3px 0 var(--red), 6px 6px 0 rgba(0, 0, 0, .35); }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .nav .btn { width: 100%; }
}

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

/* --------------------------------------------------------------------------
   17. PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .ticker, .cta-band, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .card, .step, .form-card { box-shadow: none; border-color: #000; }
}
