/* ============================================================
   THE MOTOWN REVIEW — Vendor Application
   Warthen RV Park  ·  Vintage Motown / Southern Charm
   ============================================================ */

:root {
  /* Palette */
  --black:        #0b0705;
  --black-2:      #140d09;
  --black-3:      #1c130c;
  --burgundy:     #591420;
  --burgundy-2:   #45101a;
  --burgundy-lite:#7a1e2b;
  --gold:         #d4af37;
  --gold-lite:    #eacb6b;
  --gold-deep:    #b8912f;
  --bronze:       #b08d57;
  --bronze-deep:  #8a6a3d;
  --cream:        #f6ecd6;
  --cream-2:      #efe2c6;
  --cream-dim:    #cdbf9f;

  --ink:          #efe2c6;
  --ink-dim:      #c3b491;
  --line:         rgba(212, 175, 55, 0.28);
  --line-soft:    rgba(212, 175, 55, 0.14);

  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 22px 60px -24px rgba(0, 0, 0, 0.85);
  --shadow-gold:  0 10px 40px -12px rgba(212, 175, 55, 0.35);

  --font-display: "Cinzel", Georgia, serif;
  --font-serif:   "Cormorant Garamond", Georgia, serif;
  --font-script:  "Great Vibes", cursive;
  --font-body:    "Montserrat", "Segoe UI", system-ui, sans-serif;

  --maxw: 1160px;
}

* { box-sizing: border-box; }

/* Ensure the [hidden] attribute always wins over component display rules */
[hidden] { display: none !important; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(89, 20, 32, 0.55), transparent 60%),
    radial-gradient(900px 500px at 15% 20%, rgba(212, 175, 55, 0.06), transparent 55%),
    linear-gradient(180deg, #0d0906 0%, #0b0705 40%, #0a0604 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* Ambient stage lighting */
.stage-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    conic-gradient(from 210deg at 50% -20%, transparent 0deg, rgba(212,175,55,0.10) 20deg, transparent 40deg,
      transparent 320deg, rgba(212,175,55,0.10) 340deg, transparent 360deg);
  mix-blend-mode: screen;
  opacity: 0.5;
}

/* ============ TYPOGRAPHY HELPERS ============ */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  margin: 0.2em 0 0.6em;
  background: linear-gradient(180deg, var(--gold-lite), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 18px rgba(212, 175, 55, 0.18);
}

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold-lite);
  margin: 0 0 -0.3em;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bronze);
  margin: 0 0 0.9rem;
}

.req-star { color: var(--burgundy-lite); font-weight: 700; }
.optional { color: var(--ink-dim); font-weight: 400; font-size: 0.82em; text-transform: none; letter-spacing: 0; }

/* ============ NAV ============ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 7, 5, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled { background: rgba(11, 7, 5, 0.92); box-shadow: 0 8px 30px -18px #000; }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-vinyl {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background:
    radial-gradient(circle, #241812 0 18%, #0c0806 19% 26%, #1c130d 27% 100%);
  border: 1px solid var(--line);
  position: relative;
}
.nav-vinyl::after { content: ""; position: absolute; inset: 43%; border-radius: 50%; background: var(--gold); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-text strong { font-family: var(--font-display); color: var(--gold-lite); font-size: 0.9rem; letter-spacing: 0.06em; }
.nav-brand-text em { font-style: normal; color: var(--ink-dim); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { text-decoration: none; color: var(--cream-dim); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-lite); }
.nav-cta {
  padding: 0.5rem 1rem; border: 1px solid var(--gold); border-radius: 999px;
  color: var(--gold-lite) !important; background: rgba(212,175,55,0.06);
}
.nav-cta:hover { background: rgba(212,175,55,0.16); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; font-size: 0.86rem;
  padding: 0.9rem 1.7rem; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease;
  position: relative;
}
.btn-lg { font-size: 0.95rem; padding: 1.05rem 2.1rem; }
.btn-primary {
  color: #2a1608;
  background: linear-gradient(180deg, var(--gold-lite), var(--gold) 55%, var(--gold-deep));
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 16px 44px -14px rgba(212,175,55,0.55); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--gold-lite); background: transparent; border: 1px solid var(--gold);
}
.btn-ghost:hover { background: rgba(212,175,55,0.12); transform: translateY(-2px); }
.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(42,22,8,0.35); border-top-color: #2a1608;
  animation: spin 0.7s linear infinite; display: none;
}
.btn.is-loading .btn-label { opacity: 0.45; }
.btn.is-loading .btn-spinner { display: inline-block; }
.btn:disabled { cursor: not-allowed; filter: saturate(0.7) brightness(0.95); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ DIVIDERS ============ */
.divider {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 2.2rem 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.divider::before, .divider::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.6;
}
.divider-note { color: var(--gold); font-size: 1.1rem; padding: 0 1rem; }

/* ============ HERO ============ */
.hero { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 3rem 1.3rem 1rem; }
.hero-notes {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.hero-notes span {
  position: absolute; color: rgba(212,175,55,0.16); font-size: 2rem;
  animation: floatNote 9s ease-in-out infinite;
}
.hero-notes span:nth-child(1){ left: 6%;  top: 18%; animation-delay: 0s; }
.hero-notes span:nth-child(2){ left: 88%; top: 12%; font-size: 1.4rem; animation-delay: 1.4s; }
.hero-notes span:nth-child(3){ left: 78%; top: 62%; font-size: 2.6rem; animation-delay: 2.6s; }
.hero-notes span:nth-child(4){ left: 12%; top: 70%; font-size: 1.6rem; animation-delay: 3.6s; }
.hero-notes span:nth-child(5){ left: 46%; top: 8%;  font-size: 1.2rem; animation-delay: 0.8s; }
@keyframes floatNote { 0%,100%{ transform: translateY(0) rotate(-4deg); opacity: 0.5;} 50%{ transform: translateY(-22px) rotate(6deg); opacity: 1;} }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
}

/* Flyer */
.hero-flyer { perspective: 1400px; }
.flyer-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(212,175,55,0.14), rgba(89,20,32,0.14)),
    var(--black-2);
  box-shadow: var(--shadow), 0 0 0 1px rgba(212,175,55,0.08);
  transform: rotate(-1.2deg);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.hero-flyer:hover .flyer-frame { transform: rotate(0deg) translateY(-4px); }
.flyer-frame::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 2px rgba(212,175,55,0.35), inset 0 0 60px rgba(0,0,0,0.4);
}
.flyer-img { width: 100%; border-radius: 14px; position: relative; z-index: 2; }
.flyer-img.is-hidden { display: none; }

/* Rendered fallback flyer */
.flyer-fallback {
  display: none; position: relative; border-radius: 14px; padding: 2rem 1.4rem 1.6rem;
  text-align: center; overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(89,20,32,0.6), transparent 60%),
    linear-gradient(180deg, #150d08, #0b0705);
  border: 1px solid var(--line);
  aspect-ratio: 2 / 3;
}
.flyer-fallback.show { display: block; }
.ff-vinyl {
  position: absolute; width: 300px; height: 300px; border-radius: 50%; top: 6%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #241812 0 16%, #0c0806 17% 22%, #1a110b 23% 32%, #0c0806 33% 38%, #1a110b 39% 100%);
  opacity: 0.5;
}
.ff-kicker { position: relative; color: var(--bronze); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.6rem; font-weight: 700; }
.ff-title { position: relative; font-family: var(--font-display); font-weight: 800; line-height: 0.92; margin: 0.6rem 0 0.4rem;
  font-size: clamp(1.8rem, 8vw, 3rem);
  background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.ff-script { position: relative; font-family: var(--font-script); color: var(--cream); font-size: 1.5rem; margin-top: 0.6rem; }
.ff-name { position: relative; font-family: var(--font-display); color: var(--gold-lite); letter-spacing: 0.08em; font-size: 1.3rem; }
.ff-band { position: relative; color: var(--cream-dim); font-size: 0.78rem; margin-top: 0.8rem; font-style: italic; }
.ff-foot { position: relative; display: flex; justify-content: center; gap: 1rem; margin-top: 1.2rem; color: var(--gold-lite); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Hero copy */
.hero-copy h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 5.6vw, 3.6rem); line-height: 1.03; margin: 0 0 0.7rem;
  color: var(--cream);
}
.gold-underline {
  display: inline-block; position: relative;
  background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gold-underline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-sub { font-size: clamp(1rem, 2.2vw, 1.18rem); color: var(--cream-dim); max-width: 34ch; }
.hero-sub strong { color: var(--gold-lite); }

.hero-facts { list-style: none; padding: 0; margin: 1.4rem 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; }
.hero-facts li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--cream); font-weight: 500; }
.fact-icon { color: var(--gold); }

.highlight-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin: 1.6rem 0 1.9rem;
}
.hcard {
  background: linear-gradient(180deg, rgba(89,20,32,0.32), rgba(20,13,9,0.6));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.9rem 0.7rem; text-align: center; display: flex; flex-direction: column; gap: 0.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hcard:hover { transform: translateY(-3px); border-color: var(--gold); }
.hcard-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bronze); font-weight: 600; }
.hcard-value { font-family: var(--font-display); font-size: clamp(0.95rem, 2vw, 1.3rem); color: var(--gold-lite); font-weight: 700; }

/* ============ SECTION SHELL ============ */
.section-shell { position: relative; z-index: 1; max-width: 940px; margin: 0 auto; padding: 1rem 1.3rem; }
.apply .section-shell { max-width: 960px; }

/* ============ ABOUT ============ */
.about { position: relative; z-index: 1; }
.about .section-shell { text-align: center; }
.about-body { max-width: 62ch; margin: 0 auto; font-family: var(--font-serif); font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--cream); }
.about-body strong { color: var(--gold-lite); font-weight: 600; }
.about-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.about-badges span {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  padding: 0.45rem 0.9rem; border: 1px solid var(--line); border-radius: 999px; color: var(--bronze);
  background: rgba(212,175,55,0.04);
}

/* ============ APPLY / FORM ============ */
.apply-head { text-align: center; margin-bottom: 2.2rem; }
.apply-intro { color: var(--cream-dim); max-width: 60ch; margin: 0.4rem auto 0; font-size: 0.98rem; }

.vendor-form { display: flex; flex-direction: column; gap: 1.4rem; }

.form-block {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20,13,9,0.7), rgba(11,7,5,0.55));
  padding: 1.6rem clamp(1rem, 3vw, 2rem) 1.8rem; margin: 0;
  box-shadow: var(--shadow);
  position: relative;
}
.form-block legend {
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.05em;
  color: var(--gold-lite); font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  display: flex; align-items: center; gap: 0.7rem; padding: 0 0.5rem; margin-left: -0.5rem;
}
.legend-num {
  width: 32px; height: 32px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700; color: #2a1608;
  background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.subhead {
  margin: 1.5rem 0 0.7rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--bronze); font-weight: 600; border-top: 1px solid var(--line-soft); padding-top: 1.1rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.span-2 { grid-column: 1 / -1; }

/* Address row: street (full width), then city / state / zip */
.grid-address { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem 1.2rem; }
.grid-address .addr-street { grid-column: 1 / -1; }
.grid-address .addr-city { grid-column: 1 / 2; }

.field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.field label, .pseudo-label {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--cream);
}
.field .hint { font-size: 0.74rem; color: var(--ink-dim); margin: 0; }

input, textarea, select {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--cream);
  background: rgba(0,0,0,0.35); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 0.75rem 0.85rem; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input::placeholder, textarea::placeholder { color: rgba(205,191,159,0.4); }
input:hover, textarea:hover { border-color: var(--line); }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.16); background: rgba(0,0,0,0.5);
}
textarea { resize: vertical; min-height: 70px; }
input[type="date"] { color-scheme: dark; }

.signature-input { font-family: var(--font-script); font-size: 1.5rem; color: var(--gold-lite); padding: 0.4rem 0.85rem; }
.signature-input::placeholder { font-family: var(--font-body); font-size: 0.9rem; }

/* Field error state */
.err { color: #f0a3a3; font-size: 0.76rem; margin: 0.1rem 0 0; min-height: 0; display: none; }
.err.show { display: block; animation: shake 0.3s ease; }
.field.invalid input, .field.invalid textarea { border-color: #c8556a; box-shadow: 0 0 0 3px rgba(200,85,106,0.14); }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }

/* Radio grid (category) */
.radio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.7rem; }
.radio-card, .check-card {
  display: flex; align-items: center; gap: 0.6rem; cursor: pointer;
  padding: 0.8rem 0.9rem; border: 1px solid var(--line-soft); border-radius: 12px;
  background: rgba(0,0,0,0.28); transition: all 0.18s ease; font-size: 0.9rem; color: var(--cream);
}
.radio-card em { color: var(--ink-dim); font-style: normal; font-size: 0.8em; }
.radio-card:hover, .check-card:hover { border-color: var(--gold); background: rgba(212,175,55,0.06); }
.radio-card input, .check-card input { width: auto; accent-color: var(--gold); flex: none; }
.radio-card:has(input:checked), .check-card:has(input:checked) {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,55,0.16), rgba(89,20,32,0.14));
  box-shadow: inset 0 0 0 1px rgba(212,175,55,0.3);
}
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.7rem; }

/* Pill choice (yes/no) */
.pill-choice { display: inline-flex; gap: 0.5rem; }
.pill {
  cursor: pointer; padding: 0.55rem 1.4rem; border: 1px solid var(--line-soft); border-radius: 999px;
  background: rgba(0,0,0,0.28); color: var(--cream); font-size: 0.9rem; transition: all 0.18s ease;
}
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill:hover { border-color: var(--gold); }
.pill:has(input:checked) { border-color: var(--gold); background: linear-gradient(180deg, rgba(212,175,55,0.2), rgba(89,20,32,0.2)); color: var(--gold-lite); font-weight: 600; }

.pseudo-label { display: block; margin-bottom: 0.5rem; }

.conditional { margin-top: 1rem; animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: translateY(0);} }

/* Guideline list */
.guideline-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; display: grid; gap: 0.55rem; }
.guideline-list li { position: relative; padding-left: 1.8rem; font-size: 0.92rem; color: var(--cream-dim); }
.guideline-list li::before {
  content: "\2714"; position: absolute; left: 0; top: 0; color: var(--gold);
  font-size: 0.85rem; font-weight: 700;
}
.guideline-list strong { color: var(--gold-lite); }

/* Release text */
.release-text {
  border-left: 3px solid var(--gold); padding: 0.4rem 0 0.4rem 1.1rem; margin: 0.5rem 0 1.4rem;
  color: var(--cream-dim); font-family: var(--font-serif); font-size: 1.08rem;
}
.release-text strong { color: var(--gold-lite); font-weight: 600; }

/* Agreement checkboxes */
.agree-check {
  display: flex; align-items: flex-start; gap: 0.7rem; margin-top: 1.1rem; cursor: pointer;
  padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(212,175,55,0.04); font-size: 0.9rem; color: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.agree-check:hover { border-color: var(--gold); }
.agree-check input { width: 20px; height: 20px; accent-color: var(--gold); flex: none; margin-top: 1px; }
.agree-check:has(input:checked) { background: rgba(212,175,55,0.1); border-color: var(--gold); }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Error summary */
.form-error-summary {
  border: 1px solid #c8556a; background: rgba(200,85,106,0.1); color: #f3bcbc;
  padding: 0.9rem 1.1rem; border-radius: 12px; font-size: 0.9rem;
}

/* Submit row */
.submit-row { text-align: center; margin-top: 0.6rem; }
.submit-note { color: var(--ink-dim); font-size: 0.82rem; margin: 0.9rem auto 0; max-width: 44ch; }

/* ============ CONFIRMATION SCREEN ============ */
.confirm-screen {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 1.4rem; overflow-y: auto;
  background: radial-gradient(1000px 600px at 50% 0%, rgba(89,20,32,0.7), rgba(6,4,3,0.96));
  backdrop-filter: blur(4px);
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.confirm-card {
  max-width: 620px; width: 100%; text-align: center; position: relative;
  background: linear-gradient(180deg, rgba(24,15,10,0.96), rgba(11,7,5,0.98));
  border: 1px solid var(--gold); border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 3rem); box-shadow: var(--shadow-gold), var(--shadow);
  animation: popIn 0.5s cubic-bezier(.2,.8,.2,1);
  margin: auto;
}
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } to { opacity: 1; transform: none; } }
.confirm-vinyl {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 0.4rem;
  background: radial-gradient(circle, #241812 0 18%, #0c0806 19% 26%, #1c130d 27% 46%, #0c0806 47% 54%, #1c130d 55% 100%);
  border: 1px solid var(--line); position: relative;
  animation: spinSlow 8s linear infinite;
}
.confirm-vinyl::after { content: ""; position: absolute; inset: 44%; border-radius: 50%; background: var(--gold); }
@keyframes spinSlow { to { transform: rotate(360deg); } }
.confirm-emoji { font-size: 2rem; margin: 0.4rem 0 0; }
.confirm-card h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 5vw, 2.6rem); margin: 0.2rem 0 0.5rem;
  background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.confirm-lead { font-size: 1.1rem; color: var(--cream); font-weight: 600; }
.confirm-card p { color: var(--cream-dim); }
.confirm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin: 1.6rem 0; text-align: left; }
.confirm-item {
  border: 1px solid var(--line-soft); border-radius: 12px; padding: 0.9rem 1rem;
  background: rgba(0,0,0,0.3); display: flex; flex-direction: column; gap: 0.15rem;
}
.ci-label { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--bronze); font-weight: 600; }
.ci-value { font-family: var(--font-display); color: var(--gold-lite); font-size: 1.05rem; font-weight: 700; }
.ci-sub { font-size: 0.76rem; color: var(--ink-dim); }
/* Cash App payment CTA */
.confirm-pay { border-top: 1px solid var(--line-soft); padding-top: 1.3rem; margin-top: 0.4rem; }
.confirm-pay-note { font-size: 0.9rem; color: var(--cream-dim); margin: 0 auto 0.9rem; max-width: 42ch; }
.confirm-pay-note strong { color: var(--gold-lite); }
.btn-cashapp {
  color: #063a17;
  background: linear-gradient(180deg, #00e838, #00c92e 55%, #00a827);
  box-shadow: 0 10px 34px -12px rgba(0, 200, 46, 0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-cashapp:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 16px 40px -14px rgba(0, 200, 46, 0.7); }
.btn-cashapp:active { transform: translateY(0); }
.cashapp-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px; font-weight: 800; font-size: 0.95rem;
  background: rgba(255,255,255,0.92); color: #00a827;
}
.confirm-pay-sub { font-size: 0.76rem; color: var(--ink-dim); margin: 0.6rem 0 0; }
.confirm-pay-sub strong { color: var(--cream-dim); }

/* Payment proof / screenshot upload */
.confirm-proof {
  border-top: 1px solid var(--line-soft); padding-top: 1.3rem; margin-top: 1.2rem; text-align: left;
}
.confirm-proof-head {
  text-align: center; font-family: var(--font-display); color: var(--gold-lite);
  font-size: 1.05rem; margin: 0 0 1rem;
}
.proof-form { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.proof-row { display: flex; flex-direction: column; gap: 0.35rem; }
.proof-row label { font-size: 0.82rem; font-weight: 600; color: var(--cream); }
.proof-row input[type="text"] {
  background: rgba(0,0,0,0.35); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 0.7rem 0.85rem; color: var(--cream);
}
.proof-row input[type="text"]:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.16); }
.proof-row input[type="file"] {
  font-size: 0.85rem; color: var(--cream-dim);
  background: rgba(0,0,0,0.25); border: 1px dashed var(--line); border-radius: 10px; padding: 0.6rem 0.7rem;
}
.proof-row input[type="file"]::file-selector-button {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; cursor: pointer;
  color: #2a1608; background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  border: none; border-radius: 8px; padding: 0.45rem 0.8rem; margin-right: 0.7rem;
}
.proof-submit { align-self: center; margin-top: 0.2rem; }
.proof-submit.is-loading { opacity: 0.7; pointer-events: none; }
.proof-note { text-align: center; font-size: 0.76rem; color: var(--ink-dim); margin: 0.2rem auto 0; max-width: 40ch; }

/* Payment received banner */
.payment-toast {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 200; max-width: 92vw;
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1.1rem; border-radius: 12px;
  background: linear-gradient(180deg, rgba(24,15,10,0.98), rgba(11,7,5,0.98));
  border: 1px solid var(--gold); box-shadow: var(--shadow-gold), var(--shadow);
  color: var(--cream); font-size: 0.9rem;
  animation: toastIn 0.5s cubic-bezier(.2,.8,.2,1);
}
.toast-icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #00e838, #00a827); color: #063a17; font-weight: 800; font-size: 0.85rem;
}
.toast-close {
  background: none; border: none; color: var(--ink-dim); font-size: 1.3rem; line-height: 1;
  cursor: pointer; padding: 0 0.2rem; margin-left: 0.2rem;
}
.toast-close:hover { color: var(--gold-lite); }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -16px); } to { opacity: 1; transform: translate(-50%, 0); } }

.confirm-download { border-top: 1px solid var(--line-soft); padding-top: 1.2rem; margin-top: 1.2rem; }
.confirm-download p { font-size: 0.86rem; margin-bottom: 0.7rem; }
.confirm-follow { margin: 1.4rem 0 1rem; letter-spacing: 0.04em; }
.confirm-follow strong { color: var(--gold-lite); }

/* ============ FOOTER ============ */
.site-footer {
  position: relative; z-index: 1; margin-top: 3rem;
  border-top: 1px solid var(--line); background: rgba(6,4,3,0.7);
  text-align: center; padding: 2.6rem 1.3rem;
}
.footer-inner { max-width: 640px; margin: 0 auto; }
.footer-vinyl {
  width: 40px; height: 40px; border-radius: 50%; display: inline-block; margin-bottom: 0.9rem;
  background: radial-gradient(circle, #241812 0 18%, #0c0806 19% 26%, #1c130d 27% 100%);
  border: 1px solid var(--line); position: relative;
}
.footer-vinyl::after { content:""; position: absolute; inset: 42%; border-radius: 50%; background: var(--gold); }
.footer-presents { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.68rem; color: var(--bronze); margin: 0 0 0.3rem; }
.footer-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-lite); margin: 0 0 0.4rem; }
.footer-meta { color: var(--cream); font-weight: 500; margin: 0 0 0.2rem; }
.footer-address, .footer-contact { color: var(--cream-dim); font-size: 0.86rem; margin: 0.15rem 0; }
.footer-contact a { color: var(--gold-lite); text-decoration: none; }
.footer-contact strong { color: var(--gold-lite); }
.footer-copy { color: var(--ink-dim); font-size: 0.78rem; margin-top: 1.2rem; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-flyer { max-width: 420px; margin: 0 auto; order: -1; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-facts { justify-content: center; }
  .highlight-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .nav-links { gap: 0.8rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-address { grid-template-columns: 1fr 1fr; }
  .grid-address .addr-street, .grid-address .addr-city { grid-column: 1 / -1; }
  .confirm-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 1.6rem; }
  .radio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .radio-grid { grid-template-columns: 1fr; }
  .highlight-cards { grid-template-columns: 1fr 1fr; }
}
