/* ============================================================
   BEACH & BOUGIE — DESIGN TOKENS
   Palette:
     --sand      #F6EEDF  base background (warm sand, not cream-default —
                            paired hard against ink + coral so it reads
                            as "beach", not "AI default")
     --ink       #221327  near-black plum, all body text
     --coral     #FF4F6E  primary accent — CTAs, price tags
     --teal      #141B2E  deep navy — secondary sections, nav
     --sunset-1  #FF7A5C  gradient stop
     --sunset-2  #FFB65C  gradient stop
     --card      #FFFBF3  ticket-card surface
   Type:
     display: 'Fraunces'   — headlines, optical-size soft serif, bougie
     stamp:   'Bungee'     — small retro tags / ticket numbers, used sparingly
     body:    'DM Sans'    — everything else
   Signature element: sponsorship & vendor tiers rendered as die-cut
   festival ticket stubs (dashed perforation + notch), reinforcing
   "you are buying an actual spot at the show."
   ============================================================ */

:root {
  --sand: #F6EEDF;
  --ink: #221327;
  --coral: #FF4F6E;
  --coral-dark: #E23A57;
  --teal: #141B2E;
  --teal-light: #3A4A70;
  --sunset-1: #FF7A5C;
  --sunset-2: #FFB65C;
  --card: #FFFBF3;
  --line: rgba(34, 19, 39, 0.14);

  --font-display: 'Fraunces', serif;
  --font-stamp: 'Bungee', system-ui;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 27, 46, 0.96);
  backdrop-filter: blur(6px);
  color: var(--sand);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.nav-mark span { color: var(--sunset-2); }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.15s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-date {
  font-family: var(--font-stamp);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--sunset-2);
  display: none;
}
@media (min-width: 720px) { .nav-date { display: block; } }
.nav-links { display: none; }
@media (min-width: 640px) { .nav-links { display: flex; } }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FF6F55 0%, var(--sunset-1) 38%, var(--sunset-2) 100%);
  color: var(--card);
  padding: 88px 0 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 60px;
}
.hero-eyebrow {
  font-family: var(--font-stamp);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--card);
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-optical-sizing: auto;
  font-size: clamp(52px, 11vw, 118px);
  line-height: 0.92;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 0 rgba(34,19,39,0.08);
}
.hero .script {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 4.5vw, 40px);
  color: var(--teal);
  margin-top: 4px;
}
.hero-sub {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 17px;
  color: rgba(34,19,39,0.82);
}
.hero-meta {
  margin-top: 30px;
  font-family: var(--font-stamp);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid {
  background: var(--ink);
  color: var(--sand);
}
.btn-solid:hover { box-shadow: 0 8px 0 0 rgba(34,19,39,0.18); }
.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

/* wavy horizon stripes at base of hero */
.horizon {
  position: relative;
  z-index: 2;
  line-height: 0;
}
.horizon svg { width: 100%; height: auto; display: block; }

/* ---------- SECTION SCAFFOLDING ---------- */
section { padding: 84px 0; }
.section-teal { background: var(--teal); color: var(--sand); }
.eyebrow {
  font-family: var(--font-stamp);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.section-teal .eyebrow { color: var(--sunset-2); }
h2.title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.section-lede {
  max-width: 640px;
  font-size: 16px;
  color: rgba(34,19,39,0.75);
  margin-bottom: 44px;
}
.section-teal .section-lede { color: rgba(246,238,223,0.82); }

/* ---------- VISION STRIP ---------- */
.senses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 760px) { .senses { grid-template-columns: repeat(5, 1fr); } }
.sense {
  background: var(--card);
  color: var(--ink);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.sense-tag {
  font-family: var(--font-stamp);
  font-size: 11px;
  color: var(--coral-dark);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sense p { font-size: 13.5px; margin: 0; color: rgba(34,19,39,0.78); }

/* ---------- TICKET CARDS (signature element) ---------- */
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) { .ticket-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .ticket-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.ticket {
  position: relative;
  background: var(--card);
  color: var(--ink);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(34,19,39,0.10);
}
.ticket-top {
  padding: 26px 24px 20px;
  flex: 1;
}
.ticket-badge {
  font-family: var(--font-stamp);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  background: var(--coral);
  color: var(--card);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.ticket.is-featured .ticket-badge { background: var(--teal); }
.ticket-tier {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 4px;
}
.ticket-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--coral-dark);
  margin: 0 0 2px;
}
.ticket-avail {
  font-size: 12.5px;
  color: rgba(34,19,39,0.6);
  margin-bottom: 16px;
}
.ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13.5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ticket-list li {
  padding-left: 20px;
  position: relative;
  color: rgba(34,19,39,0.82);
}
.ticket-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 700;
}

/* perforation between ticket body and stub */
.perf {
  position: relative;
  height: 0;
  border-top: 2px dashed rgba(34,19,39,0.22);
  margin: 0 0;
}
.perf::before, .perf::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sand);
}
.perf::before { left: -10px; }
.perf::after { right: -10px; }
.section-teal .perf::before, .section-teal .perf::after { background: var(--teal); }

.ticket-stub {
  padding: 18px 24px 24px;
}
.ticket-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ink);
  color: var(--sand);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 18px;
  border-radius: 9px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.12s ease, background 0.12s ease;
}
.ticket-cta:hover { transform: translateY(-2px); background: var(--coral-dark); }
.ticket-cta[aria-disabled="true"] {
  background: rgba(34,19,39,0.25);
  cursor: not-allowed;
  pointer-events: none;
}
.ticket-cta[aria-disabled="true"]:hover { transform: none; }

.ticket.is-featured {
  background: linear-gradient(165deg, #FFFBF3 0%, #FFE9D6 100%);
  border: 2px solid var(--coral);
}

/* ---------- VENDOR ---------- */
.vendor-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: rgba(34,19,39,0.65);
}

/* ---------- IN-KIND ---------- */
.inkind {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 800px) { .inkind { grid-template-columns: 1.1fr 0.9fr; } }
.inkind-card {
  background: var(--card);
  color: var(--ink);
  border-radius: 16px;
  padding: 32px;
}
.inkind-card p { font-size: 14.5px; color: rgba(34,19,39,0.78); }
.inkind-card .btn { margin-top: 12px; }

/* ---------- TIMELINE ---------- */
.timeline {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 780px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.tstep {
  position: relative;
  padding: 24px 20px 24px 0;
  border-top: 2px solid var(--line);
}
@media (min-width: 780px) {
  .tstep { border-top: none; border-left: 2px solid var(--line); padding: 0 20px; }
  .tstep:first-child { border-left: none; padding-left: 0; }
}
.tstep-date {
  font-family: var(--font-stamp);
  font-size: 13px;
  color: var(--coral);
  margin-bottom: 8px;
}
.tstep h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 6px;
}
.tstep p { font-size: 13.5px; color: rgba(246,238,223,0.75); margin: 0; }

/* ---------- CONTACT / FOOTER ---------- */
.contact {
  background: var(--ink);
  color: var(--sand);
  padding: 70px 0 40px;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 44px);
  margin: 0 0 12px;
}
.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  margin-top: 30px;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: rgba(246,238,223,0.06);
  border: 1px solid rgba(246,238,223,0.16);
  border-radius: 14px;
  padding: 24px;
}
.contact-card a {
  color: var(--sunset-2);
  text-decoration: none;
  font-weight: 600;
}
.contact-card a:hover { text-decoration: underline; }
.foot-legal {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(246,238,223,0.14);
  font-size: 12.5px;
  color: rgba(246,238,223,0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* checkout note banner */
.pay-note {
  margin-top: 6px;
  font-size: 11.5px;
  color: rgba(34,19,39,0.5);
  text-align: center;
}
