/* ─────────────────────────────────────────
   BUNS OUT · Landing Page Styles
   Palette: warm cream/ivory editorial bg, dark sections, cream text
───────────────────────────────────────── */

:root {
  --red:     #C8352A;
  --red-dk:  #A02820;
  --cream:   #F2E4C1;
  --cream-dk:#E0CFA0;
  --dark:    #0E0800;
  --dark-2:  #1A0F05;
  --mid:     #2E1A08;
  --white:   #FFFFFF;
  --paper:   #EAE0C8;
  --paper-dk:#DDD0B0;
  --ink:     #1A1208;
  --gold:    #B8922A;
  --font-display: 'Lilita One', sans-serif;
  --font-body:    'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────
   BACKGROUND LAYER — warm editorial paper
───────────────────────────────────────── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-color: var(--paper);
  /* Subtle halftone dot grid — print/zine reference */
  background-image:
    radial-gradient(circle, rgba(80, 55, 15, 0.10) 1px, transparent 1px),
    radial-gradient(ellipse 100% 60% at 50% 0%,
      rgba(184, 146, 42, 0.08) 0%,
      transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%,
      rgba(100, 70, 20, 0.07) 0%,
      transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 80%,
      rgba(100, 70, 20, 0.06) 0%,
      transparent 50%);
  background-size: 22px 22px, 100% 100%, 100% 100%, 100% 100%;
}

/* Edge darkening — aged paper feel */
.bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 90% at 50% 50%,
    transparent 55%,
    rgba(60, 35, 8, 0.12) 100%
  );
  pointer-events: none;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(242,228,193,0.7);
}
.btn-ghost:hover {
  background: rgba(242,228,193,0.12);
  border-color: var(--cream);
}

.btn-ticket {
  background: var(--red);
  color: var(--cream);
  font-size: 1rem;
  padding: 12px 24px;
  width: 100%;
  text-align: center;
  display: block;
}
.btn-ticket:hover {
  background: var(--red-dk);
  transform: translateY(-1px);
}
.btn-ticket.disabled {
  visibility: hidden;
  pointer-events: none;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 1.2rem;
  line-height: 1.0;
  font-weight: 900;
}

/* ─────────────────────────────────────────
   HERO — full bleed daytime photo
───────────────────────────────────────── */
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.8;
  margin-bottom: 10px;
  text-transform: lowercase;
}
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.88) contrast(0.92) saturate(1.1) sepia(0.35);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(220,145,0, 0.68) 0%,
    rgba(200,120,0, 0.30) 18%,
    rgba(100, 60,0, 0.08) 35%,
    rgba(0,0,0,  0.0)     48%,
    rgba(0, 30, 35, 0.28) 62%,
    rgba(0, 55, 65, 0.62) 82%,
    rgba(0, 40, 50, 0.78) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px 64px;
  width: 100%;
}

.hero-logo-unit {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 16.5vw, 10.7rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  background: linear-gradient(to bottom, #FFD966 0%, #FF8C00 40%, #D4382A 72%, #7B1810 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0;
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.6));
}

.hero-character {
  height: clamp(7.2rem, 29vw, 18.8rem);
  width: auto;
  pointer-events: none;
  flex-shrink: 0;
}

.play-font {
  font-family: 'Permanent Marker', cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 1.15em;
  margin-left: -0.22em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.88;
}

.hero-meta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about {
  background: var(--dark-2);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.vibes-character {
  position: absolute;
  top: -4%;
  left: -2%;
  height: 37%;
  width: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
  transform: rotate(-18deg);
  transform-origin: bottom center;
}

.about-body {
  position: relative;
  z-index: 1;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
}

.about-list li {
  font-size: 1.05rem;
  line-height: 2.1;
  color: var(--cream);
  opacity: 0.88;
  text-align: center;
}

.about-list li:first-child {
  font-size: 1.25rem;
  opacity: 1;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.about-title {
  text-transform: lowercase;
  margin-bottom: 2rem;
}

.about-body {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.82;
  margin-bottom: 1.2rem;
}

.about-lead {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  opacity: 0.92 !important;
}

.about-rules-header {
  opacity: 0.55 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  margin-top: 0.6rem;
  margin-bottom: 0.4rem !important;
}

.about-closer {
  opacity: 0.45 !important;
  font-size: 0.88rem !important;
  margin-top: 0.4rem;
}

.about-divider {
  border: none;
  border-top: 1px solid rgba(242, 228, 193, 0.15);
  margin: 1.4rem 0;
}

.about-rules-list {
  list-style: none;
  padding: 0;
}

.about-rules-list li {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.82;
  text-align: center;
}

/* ─────────────────────────────────────────
   TICKETS
───────────────────────────────────────── */
.tickets {
  background: var(--dark);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}


.ticket-bubbles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.ticket-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ticket-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid rgba(242,228,193,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ticket-circle:hover {
  transform: scale(1.05);
  border-color: rgba(242,228,193,0.25);
}

.ticket-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.ticket-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: #7ecfd6;
  line-height: 1;
}

.ticket-circle--crew {
  padding: 0;
  overflow: hidden;
}

.ticket-circle--crew svg {
  display: block;
}

.ticket-cta {
  text-align: center;
  margin: 8px 0 24px;
}

.btn-ticket-main {
  display: inline-block;
  background: var(--red);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  padding: 18px 56px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-ticket-main:hover { background: var(--red-dk); }

.ticket-fine {
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.35;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   EMAIL CAPTURE — sunset photo bg
───────────────────────────────────────── */
.notify {
  position: relative;
  padding: 110px 24px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.notify-bg-strip {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
  overflow: hidden;
}

.notify-strip-img {
  flex: 1;
  overflow: hidden;
}

.notify-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.43) saturate(0.7);
}

.notify-strip-img:nth-child(1) img {
  filter: brightness(0.35) saturate(0.7);
}

.notify-strip-img:nth-child(2) img {
  filter: brightness(0.49) saturate(0.7);
}

.notify-strip-img.rotated img {
  transform: rotate(90deg) scale(1.65);
  transform-origin: center center;
}

.notify-strip-img.crop-head img {
  transform: scale(1.4);
  transform-origin: center 65%;
}

.notify-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 0, 0.45);
  z-index: 1;
}

.notify-inner {
  position: relative;
  z-index: 2;
}

.notify .section-title {
  color: var(--cream);
}

.notify-sub {
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 36px;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  max-width: 520px;
  margin: 0 auto 16px;
}

.form-step {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.form-step--hidden {
  display: none;
}

.form-splash {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.btn-submit-arrow {
  padding: 14px 20px;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid rgba(242, 228, 193, 0.25);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(4px);
}

.email-form input[type="email"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(200,53,42,0.3);
}

.instagram-field {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 240px;
  border-radius: 4px;
  border: 1px solid rgba(242, 228, 193, 0.25);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.instagram-field:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(200,53,42,0.3);
}
.at-sign {
  color: rgba(242, 228, 193, 0.45);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 4px 14px 18px;
  pointer-events: none;
  user-select: none;
}
.instagram-field input {
  flex: 1;
  padding: 14px 18px 14px 4px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}
.instagram-field input::placeholder {
  color: rgba(242, 228, 193, 0.4);
}

.email-form input::placeholder {
  color: rgba(242, 228, 193, 0.4);
}

.form-message {
  font-size: 0.95rem;
  min-height: 1.4em;
  color: var(--cream);
  font-weight: 500;
  text-align: center;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-message.success,
.form-message.info,
.form-message.error {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success { color: #7ecfd6; font-style: italic; }
.form-message.info    { color: var(--cream); opacity: 0.7; }
.form-message.error   { color: #ff8080; }

/* ─────────────────────────────────────────
   VIBE / ETIQUETTE
───────────────────────────────────────── */
.vibe {
  background: var(--dark-2);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.vibe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.vibe-card {
  background: var(--dark);
  border: 1px solid rgba(242, 228, 193, 0.08);
  border-radius: 6px;
  padding: 28px 24px;
}

.vibe-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.vibe-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 10px;
}

.vibe-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(242, 228, 193, 0.08);
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.footer-meta {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.45;
  letter-spacing: 0.04em;
}

.footer-character {
  display: block;
  margin: 0 auto 12px;
  height: clamp(15.6rem, 31.2vw, 25rem);
  width: auto;
  pointer-events: none;
  opacity: 0.85;
  transform: rotate(-90deg);
}

.footer-credit {
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.25;
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

/* ── 700px — primary mobile shift ── */
@media (max-width: 700px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: clamp(5.5rem, 30vw, 8rem);
  }

  .hero-tagline {
    letter-spacing: 0.12em;
  }

  .footer-character {
    height: clamp(10rem, 31.2vw, 15.6rem);
  }

  .ticket-circle {
    width: 130px;
    height: 130px;
  }

  .ticket-price { font-size: 2rem; }

  .vibe-grid {
    grid-template-columns: 1fr;
  }

  .about,
  .tickets,
  .notify,
  .vibe {
    padding: 64px 16px;
  }

  /* Notify strip: collapse to single center image */
  .notify-strip-img:nth-child(1),
  .notify-strip-img:nth-child(3) {
    display: none;
  }
}

/* ── 600px — form + ticket group stacking ── */
@media (max-width: 600px) {
  .email-form {
    flex-direction: column;
    gap: 10px;
  }

  .email-form input[type="email"],
  .instagram-field {
    min-width: unset;
    width: 100%;
  }

  .btn-submit-arrow {
    width: 100%;
    font-size: 1rem;
    padding: 16px;
    letter-spacing: 0.06em;
  }

  .ticket-group {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-group-copy {
    text-align: center;
  }

  .btn-ticket-group {
    width: 100%;
    text-align: center;
  }
}

/* ── 480px — tighter spacing, touch targets ── */
@media (max-width: 480px) {
  .about,
  .tickets,
  .notify,
  .vibe {
    padding: 48px 16px;
  }

  .btn-ghost {
    width: 100%;
    max-width: 280px;
    padding: 16px 32px;
    text-align: center;
  }

  .vibe-card {
    padding: 20px 18px;
  }
}

/* ── 420px — ticket circles shrink further ── */
@media (max-width: 420px) {
  .ticket-circle {
    width: 110px;
    height: 110px;
  }

  .ticket-label { font-size: 0.9rem; }
  .ticket-price { font-size: 1.7rem; }
  .ticket-row { gap: 12px; }
}

/* ── Short devices (iPhone SE landscape, etc.) ── */
@media (max-height: 600px) {
  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding-bottom: 28px;
  }
}
