/* ── She's From Houston — candy-paint design system ──
   Palette from the single cover:
   grape #4A1D6E · candy purple #7B3FBF · magenta #C0326B
   burnt orange #E8542F · gold #F5A83C · cream #F2E3C4 · sign green #2E5E3A
   Merch section flips to shirt colors: navy #10214B · red #C8102E · white */

:root {
  --grape: #2c1145;
  --grape-2: #4a1d6e;
  --candy: #7b3fbf;
  --magenta: #c0326b;
  --orange: #e8542f;
  --gold: #f5a83c;
  --cream: #f2e3c4;
  --green: #2e5e3a;
  --navy: #10214b;
  --red: #c8102e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--grape);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

.script { font-family: "Yellowtail", cursive; text-transform: none; }
.gold { color: var(--gold); }
.red { color: var(--red); }

h1, h2, h3, .btn, .tier-price, .cd-num, .tier-name {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.section-title {
  font-size: clamp(28px, 5vw, 44px);
  text-align: center;
  margin-bottom: 12px;
  color: var(--cream);
  text-shadow: 0 3px 0 rgba(0,0,0,0.35);
}
.section-title .script { font-size: 0.85em; margin-right: 10px; }
.section-title.dark { color: var(--navy); text-shadow: none; }

section { padding: 72px 20px; position: relative; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(100deg, var(--magenta), var(--orange) 55%, var(--gold));
  color: #fff;
  box-shadow: 0 6px 24px rgba(232, 84, 47, 0.45);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { filter: brightness(1.25); }

/* ── Hero ── */
/* The cover art is sacred — full width, never cropped. Content flows below,
   tucked into a gradient that blends the art into the page. */
.hero {
  position: relative;
  background: var(--grape);
}
.hero-art-wrap { position: relative; }
.hero-art {
  display: block;
  width: 100%;
  height: auto;
}
/* Hero image is pre-cropped above the artwork's credit text, so the fade only
   needs to blend the road into the page — car, wheels, and plate stay visible */
/* Image is cropped in the road buffer BELOW the wheel and ABOVE the artwork's
   credit text — this short fade only touches road, never the car */
.hero-art-wrap::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 9%;
  background: linear-gradient(to bottom, rgba(44,17,69,0) 0%, var(--grape) 80%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 0 20px 20px;
  max-width: 760px;
  margin: -3vw auto 0;
}
.hero-play-btn {
  margin: 20px 0 30px;
  padding: 16px 64px;
  font-size: 22px;
}
.hero-kicker {
  font-size: clamp(26px, 4.5vw, 38px);
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 4px;
}
.hero-title {
  font-size: clamp(52px, 11vw, 110px);
  line-height: 0.95;
  color: var(--cream);
  text-shadow: 0 4px 0 var(--grape-2), 0 8px 28px rgba(0,0,0,0.65);
  animation: title-pulse 2.4s ease-in-out infinite;
}
@keyframes title-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title { animation: none; }
}
/* Crimson face with purple 3-D extrusion — pops off the grape background */
.hero-title-houston {
  color: #d92c3c;
  text-shadow:
    2px 2px 0 var(--candy),
    4px 4px 0 var(--candy),
    6px 6px 0 var(--grape-2),
    8px 8px 0 var(--grape-2),
    10px 12px 24px rgba(0,0,0,0.55);
}
.hero-credits {
  margin-top: 14px;
  font-size: clamp(15px, 2.6vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
.hero-credits .ft { text-transform: lowercase; color: var(--gold); font-weight: 600; }

/* Countdown */
.countdown {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 26px 0 10px;
  scroll-margin-top: 14px;
}
.cd-cell {
  background: rgba(44,17,69,0.72);
  border: 1px solid rgba(245,168,60,0.4);
  border-radius: 12px;
  padding: 10px 0;
  width: 76px;
  backdrop-filter: blur(6px);
}
.cd-num {
  display: block;
  font-size: clamp(28px, 5vw, 40px);
  color: var(--gold);
  line-height: 1;
}
.cd-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  opacity: 0.75;
}
.hero-date {
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

/* ── Listen ── */
.listen {
  background: linear-gradient(to bottom, var(--grape), var(--grape-2));
  text-align: center;
  padding-top: 24px;
}
.player-card {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 620px;
  margin: 26px auto 0;
  background: rgba(0,0,0,0.32);
  border: 1px solid rgba(123,63,191,0.5);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.player-cover {
  width: 96px; height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.player-main { flex: 1; min-width: 0; text-align: left; }
.player-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.player-controls { display: flex; align-items: center; gap: 14px; }
.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--grape);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245,168,60,0.5);
  transition: transform 0.15s ease;
}
.play-btn:hover { transform: scale(1.07); }
.progress-wrap {
  flex: 1;
  height: 8px;
  background: rgba(242,227,196,0.18);
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--magenta), var(--gold));
  border-radius: 999px;
}
.player-time { font-size: 13px; font-variant-numeric: tabular-nums; opacity: 0.8; }

/* Email gate */
.gate {
  max-width: 560px;
  margin: 22px auto 0;
  background: linear-gradient(140deg, rgba(192,50,107,0.24), rgba(245,168,60,0.14));
  border: 1px solid rgba(245,168,60,0.45);
  border-radius: 18px;
  padding: 30px 26px;
}
.gate-heading { font-size: 22px; font-weight: 800; }
.gate-sub { opacity: 0.85; margin: 8px 0 18px; }
.gate-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.gate-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(242,227,196,0.4);
  background: rgba(44,17,69,0.6);
  color: var(--cream);
  font-size: 16px;
  outline: none;
}
.gate-form input:focus { border-color: var(--gold); }
.gate-fine { font-size: 12px; opacity: 0.6; margin-top: 12px; }
.gate-error { color: #ff9a9a; margin-top: 10px; font-size: 14px; }
.gate.unlocked { border-color: var(--green); background: rgba(46,94,58,0.25); }

/* ── Support tiers ── */
.support {
  background:
    radial-gradient(1200px 500px at 50% 0%, rgba(192,50,107,0.28), transparent 65%),
    var(--grape-2);
}
.support-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  opacity: 0.9;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.tier {
  position: relative;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(123,63,191,0.55);
  border-radius: 18px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.tier:hover { transform: translateY(-4px); border-color: var(--gold); }
.tier-hot { border-color: var(--magenta); box-shadow: 0 0 34px rgba(192,50,107,0.35); }
.tier-top { border-color: var(--gold); box-shadow: 0 0 34px rgba(245,168,60,0.3); }
.tier-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--magenta), var(--orange));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 14px;
  object-fit: cover;
  max-height: 180px;
}
.tier-price {
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.tier-name {
  font-size: 17px;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin: 6px 0 14px;
}
.tier ul { list-style: none; flex: 1; margin-bottom: 18px; }
.tier li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  opacity: 0.92;
}
.tier li::before {
  content: "\2605";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 2px;
}
.btn-tier {
  background: rgba(123,63,191,0.45);
  border: 1px solid var(--candy);
  color: var(--cream);
  text-align: center;
  font-size: 16px;
  padding: 12px 10px;
}
.btn-tier:hover { background: var(--candy); }
.btn-gold {
  background: linear-gradient(100deg, var(--gold), var(--orange));
  border: none;
  color: var(--grape);
  font-weight: 800;
}
.btn-gold:hover { filter: brightness(1.1); }
.size-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}
.size-select {
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(44,17,69,0.7);
  color: var(--cream);
  border: 1px solid rgba(242,227,196,0.35);
  font-size: 15px;
}
.support-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.75;
}

/* ── Merch (flips to shirt colors) ── */
.merch { background: #f4f2ec; color: var(--navy); }
.merch-inner {
  display: flex;
  align-items: center;
  gap: 44px;
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.merch-copy { flex: 1; min-width: 280px; }
.merch-copy .section-title { text-align: left; }
.merch-copy p { margin-bottom: 16px; font-size: 17px; }
.merch-price { font-weight: 800; color: var(--red); }
.merch-imgs { flex: 1.2; min-width: 300px; text-align: center; }
.merch-mockup { max-width: 100%; border-radius: 14px; }

/* ── Raffle ── */
.raffle {
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% 100%, rgba(46,94,58,0.5), transparent 70%),
    var(--grape);
}
.raffle-copy { max-width: 620px; margin: 0 auto 26px; font-size: 17px; }
.raffle-img {
  display: block;
  width: min(92%, 560px);
  margin: 0 auto 28px;
  border-radius: 16px;
  border: 1px solid rgba(123,63,191,0.5);
  box-shadow: 0 14px 44px rgba(0,0,0,0.5);
}

/* ── Artists ── */
.artists { background: var(--grape); border-top: 1px solid rgba(123,63,191,0.35); }
.artist-cols {
  display: flex;
  gap: 40px;
  max-width: 900px;
  margin: 30px auto 0;
  flex-wrap: wrap;
}
.artist-col { flex: 1; min-width: 260px; }
.artist-col h3 {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.artist-col p { opacity: 0.88; font-size: 15px; }

/* ── Footer ── */
.footer {
  position: relative;
  text-align: center;
  padding: 0 20px 60px;
  background: #000;
  font-size: 14px;
}
/* Page fades to black before the logos — the brand logos live on black */
.footer-fade {
  height: 90px;
  margin: 0 -20px 0;
  background: linear-gradient(to bottom, var(--grape), #000);
}
.footer-brought {
  font-size: 30px;
  color: var(--gold);
  margin: -18px 0 34px;
}
.footer-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin: 0 auto 44px;
}
.footer-logo {
  width: 50%;
  height: auto;
  object-fit: contain;
}
.footer-logo-link {
  width: 100%;
  display: flex;
  justify-content: center;
}
.footer-beats {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.footer-beats .footer-logo { width: 50%; }
/* "Beats" spans nearly the full width of EPIK, top-right tip kissing the K */
.footer-beats-word {
  font-family: "Permanent Marker", cursive;
  font-size: clamp(49px, 15.3vw, 126px);
  line-height: 1;
  color: #9b4dff;
  transform: rotate(-6deg);
  text-shadow: 3px 3px 0 #4a1d6e, 0 0 28px rgba(155, 77, 255, 0.5);
  margin-top: -0.2em;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.footer-guero-credit {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 10px;
}
.footer-title {
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-fine { opacity: 0.5; margin-top: 10px; font-size: 12px; }

/* ── Mobile ── */
@media (max-width: 640px) {
  section { padding: 56px 16px; }
  .player-card { flex-direction: column; text-align: center; }
  .player-main { width: 100%; text-align: center; }
  .player-label { text-align: center; }
  .cd-cell { width: 68px; }
  .merch-inner { gap: 20px; }
}
