/* =========================================
   GLOBAL RESET & FONTS
   ========================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", system-ui, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

/* =========================================
   SECTION BASE
   ========================================= */
.sf-section {
  position: relative;
  width: 100%;
}

/* =========================================
   HERO / STORY
   ========================================= */
.sf-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.sf-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sf-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.95)
  );
  z-index: 2;
}

.sf-story-inner {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: clamp(40px, 8vw, 80px) 20px;
}

.sf-story-logo img {
  width: clamp(180px, 40vw, 300px);
  margin-bottom: 1.8rem;
}

.sf-story-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.sf-story-lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #cbd5f5;
  opacity: 0.9;
}

/* =========================================
   TICKET SECTION
   ========================================= */
.sf-ticket-section {
  position: relative;
  background: #020617;
  padding: clamp(70px, 10vw, 110px) 0;
  overflow: hidden;
}

.sf-ticket-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 60%),
    url("../img/story-stage.jpg") center / cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.sf-ticket-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   COUNTDOWN HEADER
   ========================================= */
.sf-ticket-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.sf-countdown-title {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #d4af37;
  margin-bottom: 22px;
  font-weight: 600;
}

.sf-countdown {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 16px);
}

.sf-countdown .cd-box {
  min-width: 70px;
  padding: 14px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.sf-countdown span {
  display: block;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 700;
}

.sf-countdown small {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: #94a3b8;
  text-transform: uppercase;
}

.sf-event-date {
  margin-top: 18px;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* =========================================
   TICKET GRID
   ========================================= */
.sf-ticket-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.sf-ticket-card {
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.45),
    rgba(2, 6, 23, 0.9)
  );
  border-radius: 28px;
  padding: 38px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.sf-ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.sf-ticket-type {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.sf-ticket-desc {
  font-size: 0.85rem;
  color: #cbd5f5;
  opacity: 0.85;
  margin-bottom: 22px;
}

.sf-ticket-old {
  font-size: 0.9rem;
  color: #f87171;
  text-decoration: line-through;
}

.sf-ticket-new {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* =========================================
   CTA BUTTON
   ========================================= */
.sf-btn-cta {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37, #f97316);
  color: #020617;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.sf-btn-cta:hover {
  background: #fff;
  transform: scale(1.04);
}

/* =========================================
   MOBILE REFINEMENT
   ========================================= */
@media (max-width: 768px) {
  .sf-story-lead {
    font-size: 0.95rem;
  }

  .sf-countdown {
    gap: 10px;
  }

  .sf-ticket-card {
    padding: 32px 22px;
  }

  .sf-ticket-new {
    font-size: 1.7rem;
  }
}
