/* ══════════════════════════════════════════════════════
   KING & QUEEN OF THE PACIFIC 2026
   Main Stylesheet
══════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────── */
:root {
  --black:       #090807;
  --charcoal:    #151312;
  --midnight:    #0d0c0b;
  --red:         #6d0f14;
  --red-dark:    #33070a;
  --gold:        #d8ad54;
  --gold-soft:   #f2d28a;
  --gold-dim:    rgba(216, 173, 84, 0.28);
  --paper:       #f8f6f1;
  --white:       #ffffff;
  --ink:         #181412;
  --muted:       #6e655f;
  --shadow-lg:   0 32px 80px rgba(0, 0, 0, 0.52);
  --shadow-md:   0 12px 36px rgba(0, 0, 0, 0.22);
  --shadow-sm:   0 4px 18px rgba(0, 0, 0, 0.12);
  --radius:      0px; /* Square corners — premium/formal look */
}

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ── UTILITIES ─────────────────────────────────────── */
.section-inner {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow { max-width: 820px; margin-inline: auto; }

.overline {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.gold-text { color: var(--gold); }

/* Visually hidden but accessible to screen readers / SEO */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero logo image (replaces title text) */
.hero-logo {
  height: clamp(130px, 17vw, 230px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 18px 0 28px;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.6));
}

.section-heading {
  text-align: center;
  margin-bottom: 52px;
}

.section-heading h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  margin: 10px 0 18px;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.68;
  max-width: 620px;
  margin-inline: auto;
}

.section-heading.align-left { text-align: left; }
.section-heading.align-left p { margin-inline: 0; }

/* ── BUTTONS ───────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, opacity 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); opacity: 0.92; }
.button:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  color: #1c1108;
  box-shadow: 0 4px 18px rgba(216, 173, 84, 0.32);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(216, 173, 84, 0.45); }

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--gold-dim);
}
.btn-ghost-gold:hover { border-color: var(--gold); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: rgba(216, 173, 84, 0.08); }

.btn-full { width: 100%; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.94) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.brand { display: flex; align-items: center; }

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a { transition: color 180ms ease; }
.main-nav a:hover { color: var(--gold-soft); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1c1108;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 2px 12px rgba(216, 173, 84, 0.28);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(216, 173, 84, 0.4); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 68% 50%, rgba(216, 173, 84, 0.18) 0%, transparent 32%),
    radial-gradient(ellipse at 15% 18%, rgba(109, 15, 20, 0.65) 0%, transparent 42%),
    linear-gradient(130deg, #060504 0%, #110807 36%, #4a0910 68%, #090807 100%);
}

/* Atmospheric stage lighting */
.hero-lights { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-light {
  position: absolute;
  bottom: -12%;
  width: 18vw;
  height: 115vh;
  background: linear-gradient(0deg,
    rgba(242, 210, 138, 0.38) 0%,
    rgba(109, 15, 20, 0.18) 50%,
    transparent 82%);
  filter: blur(12px);
  transform-origin: bottom center;
}

.light-one   { left: 16%;  transform: rotate(-22deg); opacity: 0.88; }
.light-two   { left: 50%;  transform: translateX(-50%) rotate(6deg); opacity: 0.65; }
.light-three { right: 12%; transform: rotate(26deg); opacity: 0.82; }

/* Hero layout */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100svh;
  padding: 112px clamp(20px, 7vw, 96px) 80px;
}

.hero-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(40px, 7.5vw, 108px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: var(--gold-soft);
  margin: 14px 0 0;
  text-align: center;
}

.hero-year {
  color: rgba(242, 210, 138, 0.6);
  font-weight: 400;
}

.hero-subtitle {
  margin: 26px 0 0;
  max-width: 520px;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

/* Event strip */
.event-strip {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin: 34px 0;
  justify-content: center;
}

.event-strip-item {
  border-left: 1px solid var(--gold-dim);
  padding: 0 24px 0 20px;
}

.event-strip-item:first-child { padding-left: 0; border-left: none; }

.event-strip-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.event-strip-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Hero Visual / Model Frame ──────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;             /* renders above hero-copy in the flex column */
  margin-bottom: 52px;
}

/* Offset accent border behind the frame */
.hero-frame-accent {
  position: absolute;
  inset: 0;
  translate: 20px 20px;
  border: 1px solid rgba(216, 173, 84, 0.2);
  pointer-events: none;
  z-index: 0;
}

.hero-frame {
  position: relative;
  z-index: 1;
  width: clamp(210px, 22vw, 290px);
  height: clamp(210px, 22vw, 290px);
  overflow: hidden;
  border: 1px solid rgba(216, 173, 84, 0.52);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(216, 173, 84, 0.12);
}

/* Hero frame: logo version (no rotation needed) */
.hero-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(216, 173, 84, 0.14) 0%, transparent 70%),
    rgba(9, 8, 7, 0.5);
}

.hero-frame-logo-img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.7));
}

.hero-frame-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(9, 8, 7, 0.92) 0%, transparent 100%);
}

.hero-frame-label span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-frame-label strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 15px;
  color: var(--white);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 58px;
  background: linear-gradient(to bottom, transparent 0%, rgba(216, 173, 84, 0.65) 100%);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  80%  { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   ROTATED PHOTO TECHNIQUE

   All 3 model photos are stored landscape with the portrait
   subject's head on the LEFT side of the image.
   Fix: rotate(-90deg) — LEFT side becomes the TOP.

   SWAP-DIMENSIONS trick:
   Set img CSS width  = container HEIGHT  (the long side after rotation)
   Set img CSS height = container WIDTH   (the short side after rotation)
   Then rotate(-90deg): the visual result perfectly fills the container.
   object-position: left center → focuses on the LEFT/face area of landscape.
══════════════════════════════════════════════════════ */

.rotated-photo {
  position: relative;
  overflow: hidden;
}

.rotated-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Focus on top portion of image = face/upper body */
  object-position: center 20%;
}

/* ── Hero photo: dimensions from CSS vars on .hero-frame ── */
.hero-photo {
  width: 100%;
  height: 100%;
}

.hero-photo img {
  /* Swap the frame dimensions */
  width: var(--hfh);   /* = frame height (now the img's landscape width) */
  height: var(--hfw);  /* = frame width  (now the img's landscape height) */
}

/* ── Champion card photos: fixed frame dimensions ────────── */
.champ-photo {
  --fw: 310px;   /* frame / card width  */
  --fh: 450px;   /* frame / card height */
  width: 100%;
  height: auto;
  aspect-ratio: 31 / 45;
  transition: transform 500ms ease;
}

.champion-featured .champ-photo {
  --fw: 350px;
  --fh: 520px;
  aspect-ratio: 35 / 52;
}

.champ-photo img {
  /* sizing and display handled by .rotated-photo img above */
}

/* ══════════════════════════════════════════════════════
   INTRO STRIP
══════════════════════════════════════════════════════ */
.intro-strip {
  padding: 84px 0;
  background: var(--paper);
  text-align: center;
}

.intro-strip h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 20px;
}

.intro-strip p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   ABOUT THE SHOW
══════════════════════════════════════════════════════ */
.about {
  padding: 96px 0;
  background: var(--charcoal);
  color: var(--white);
}

.about .section-heading h2 { color: var(--gold-soft); }
.about .section-heading p  { color: rgba(255, 255, 255, 0.68); }

/* 4-card feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.feature-card {
  padding: 34px 26px;
  border: 1px solid rgba(216, 173, 84, 0.15);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 280ms ease, background 280ms ease, transform 280ms ease;
}

.feature-card:hover {
  border-color: rgba(216, 173, 84, 0.38);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-card h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.65);
}

/* Nations strip */
.nations-block {
  text-align: center;
  margin-bottom: 48px;
}

.nations-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.nations-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nations-strip span {
  padding: 8px 20px;
  border: 1px solid rgba(216, 173, 84, 0.24);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  transition: border-color 220ms ease, background 220ms ease;
}

.nations-strip span:hover {
  border-color: var(--gold);
  background: rgba(216, 173, 84, 0.06);
}

.nations-etc {
  color: var(--gold) !important;
  border-color: var(--gold-dim) !important;
  font-style: italic;
}

/* Programme link */
.programme-cta-wrap {
  text-align: center;
}

.programme-cta-wrap p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

/* ══════════════════════════════════════════════════════
   TICKETS
══════════════════════════════════════════════════════ */
.tickets-section {
  padding: 96px 0;
  background: var(--midnight);
  color: var(--white);
}

.tickets-section .section-heading h2 { color: var(--gold-soft); }
.tickets-section .section-heading p  { color: rgba(255, 255, 255, 0.62); }

.ticket-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 84, 0.34);
  box-shadow: var(--shadow-lg);
}

/* Left column: price */
.ticket-price-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 36px;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 173, 84, 0.24) 0%, transparent 34%),
    linear-gradient(145deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--gold-soft);
}

.ticket-price-col span,
.ticket-price-col small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.price-big {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  margin: 10px 0 6px;
}

.ticket-breakdown {
  display: grid;
  gap: 6px;
  width: 100%;
  margin: 12px 0 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.ticket-breakdown span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.ticket-breakdown strong {
  color: var(--white);
}

.ticket-breakdown .breakdown-total {
  margin-top: 4px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-soft);
  font-weight: 700;
}

.summary-lines {
  display: grid;
  gap: 7px;
  width: 100%;
}

.summary-lines span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.summary-total-line {
  margin-top: 5px;
  padding-top: 9px;
  border-top: 1px solid rgba(216, 173, 84, 0.22);
  color: var(--gold-soft);
}

/* Middle column: includes */
.ticket-includes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding: 44px 32px;
  background: var(--charcoal);
  color: var(--white);
}

.ticket-includes li {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.ticket-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Right column: payment */
.payment-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 44px 34px;
  border-left: 1px solid rgba(216, 173, 84, 0.16);
  background: rgba(9, 8, 7, 0.55);
}

.payment-col h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-soft);
}

.payment-col p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.payment-status {
  min-height: 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gold-soft) !important;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.steps {
  padding: 96px 0;
  background: var(--paper);
}

.steps .section-heading h2 { color: var(--ink); }
.steps .section-heading p  { color: var(--muted); }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-grid article {
  padding: 36px 28px;
  border: 1px solid rgba(110, 101, 95, 0.15);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.step-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: #1e1308;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

.step-grid h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-grid p {
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   CHAMPIONS GALLERY
══════════════════════════════════════════════════════ */
.champions {
  padding: 96px 0;
  background: var(--black);
  color: var(--white);
}

.champions .section-heading h2 { color: var(--gold-soft); }
.champions .section-heading p  { color: rgba(255, 255, 255, 0.55); }

.champion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: flex-end;
  gap: 22px;
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
}

.champion-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 173, 84, 0.22);
  transition: border-color 280ms ease;
}

.champion-card:hover {
  border-color: rgba(216, 173, 84, 0.55);
}

.champion-card:hover .champ-photo img {
  transform: scale(1.04);
}

.champ-photo img {
  transition: transform 600ms ease;
}

.champion-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 20px 22px;
  background: linear-gradient(to top, rgba(9, 8, 7, 0.94) 0%, transparent 100%);
}

.champion-caption span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.champion-caption strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 16px;
  color: var(--white);
}

/* Featured center card — taller, highlighted */
.champion-featured {
  border-color: rgba(216, 173, 84, 0.45);
  box-shadow: 0 0 0 1px rgba(216, 173, 84, 0.18), var(--shadow-lg);
}

/* ══════════════════════════════════════════════════════
   EVENT DETAILS
══════════════════════════════════════════════════════ */
.details-section {
  padding: 96px 0;
  background: var(--white);
}

.details-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}

.details-info .section-heading h2 { color: var(--ink); }

.detail-list { margin-top: 8px; }

.detail-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(110, 101, 95, 0.14);
  padding: 18px 0;
  align-items: baseline;
}

.detail-list dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.detail-list dd {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.detail-email {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sample e-ticket card */
.ticket-preview-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(100%, 440px);
  justify-self: center;
  min-height: 680px;
  padding: 36px;
  background: linear-gradient(145deg, var(--red-dark), var(--charcoal));
  border: 1px solid rgba(216, 173, 84, 0.3);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.tp-body {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 18px;
  align-items: center;
  align-self: center;
  width: 100%;
}

.tp-details {
  display: grid;
  gap: 9px;
}

.tp-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.tp-details strong {
  display: block;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid rgba(216, 173, 84, 0.3);
  padding-bottom: 18px;
  margin-bottom: 16px;
}

.tp-event-name {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.tp-ticket-type {
  font-family: Cinzel, Georgia, serif;
  font-size: 16px;
  color: var(--white);
}

.tp-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.tp-ticket-num {
  font-family: "Courier New", monospace;
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}

/* Non-scannable QR preview graphic */
.qr-placeholder {
  display: grid;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  width: 140px;
  margin: 0;
  padding: 12px;
  background: rgba(216, 173, 84, 0.08);
  border: 1px dashed rgba(216, 173, 84, 0.44);
  border-radius: 10px;
}

.qr-placeholder span {
  display: block;
}

.qr-placeholder img {
  display: block;
  width: 108px;
  height: 108px;
  object-fit: contain;
  padding: 4px;
  background: #fff;
}

.qr-preview-label {
  margin-top: 8px;
  color: var(--gold-soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.qr-icon-line {
  width: 68%;
  height: 2px;
  background: var(--gold-soft);
  opacity: 0.7;
}

.qr-icon-dot {
  width: 54px;
  height: 54px;
  margin: 0 -8px;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(216, 173, 84, 0.22);
}

.tp-footer {
  align-self: end;
  width: 100%;
  text-align: center;
}

.tp-footer p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.tp-note {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.46) !important;
  margin-top: 12px !important;
  border-top: 1px solid rgba(216, 173, 84, 0.18);
  padding-top: 12px;
}

/* ══════════════════════════════════════════════════════
   VENUE
══════════════════════════════════════════════════════ */
.venue {
  padding: 0;
  background: linear-gradient(145deg, var(--charcoal), var(--red-dark));
  color: var(--white);
}

.venue-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.venue-map {
  position: relative;
  min-height: 420px;
  background: #090607;
  border-right: 1px solid rgba(216, 173, 84, 0.2);
  overflow: hidden;
}

.venue-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  filter: grayscale(0.6) invert(0.9) contrast(1.1) brightness(0.9);
  opacity: 0.75;
  transition: filter 300ms ease, opacity 300ms ease;
  border: none;
}

.venue-map iframe:hover {
  filter: none;
  opacity: 1;
}

.venue-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 6vw, 72px);
}

.venue-copy h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--gold-soft);
  margin: 12px 0 16px;
}

.venue-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════
   CONTACT & PROGRAMME
══════════════════════════════════════════════════════ */
.contact {
  padding: 96px 0;
  background: var(--charcoal);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.info-card {
  padding: 40px;
  border: 1px solid rgba(216, 173, 84, 0.16);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  transition: border-color 200ms ease, background 200ms ease;
  height: 100%;
}

.info-card:hover {
  border-color: rgba(216, 173, 84, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.info-card h3 {
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--gold-soft);
  margin: 10px 0 16px;
}

.info-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(216, 173, 84, 0.16);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 4vw, 64px);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-name {
  font-family: Cinzel, Georgia, serif;
  font-size: 14px;
  color: var(--gold-soft);
  margin-bottom: 4px;
}

.footer-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 180ms ease;
}
.footer-email:hover { color: var(--gold-soft); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px clamp(20px, 4vw, 64px);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}


/* ══════════════════════════════════════════════════════
   CHECKOUT MODAL
   ══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 8, 7, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: linear-gradient(145deg, #180d0e, #0e0708);
  border: 1px solid rgba(216, 173, 84, 0.3);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.7),
    0 0 32px rgba(109, 15, 20, 0.25);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.modal-header {
  margin-bottom: 28px;
  text-align: center;
}

.modal-header h2 {
  font-family: Cinzel, Georgia, serif;
  font-size: 24px;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.ticket-picker-trigger {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 173, 84, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  outline: none;
}

.form-group select,
.ticket-picker-trigger {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d8ad54' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}

#ticket_qty option {
  /* Native Windows menus need explicit foreground and background colors. */
  color: #111111;
  background-color: #ffffff;
}

.ticket-picker-trigger {
  min-height: 44px;
  text-align: left;
  line-height: 1.5;
  cursor: pointer;
  letter-spacing: 0;
}

@media (max-width: 380px) {
  .ticket-picker-trigger {
    min-height: 68px;
  }
}

.ticket-picker-list {
  position: fixed;
  z-index: 2001;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #211b1c;
  color: #f8f5f1;
  border: 1px solid #84745e;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  font: 14px/1.5 Inter, sans-serif;
  letter-spacing: 0;
  color-scheme: dark;
  scrollbar-width: thin;
}

.ticket-picker-list[hidden] {
  display: none;
}

.ticket-picker-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.ticket-picker-option[aria-selected="true"] {
  color: #f4d78e;
}

.ticket-picker-option.is-active {
  background: #46392b;
  outline: 1px solid #b99a59;
  outline-offset: -1px;
}

.form-group input:focus,
.form-group select:focus,
.ticket-picker-trigger:focus-visible,
.ticket-picker-trigger[aria-expanded="true"] {
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 8px rgba(216, 173, 84, 0.15);
}

.form-group .field-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.price-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px dashed rgba(216, 173, 84, 0.2);
  border-bottom: 1px dashed rgba(216, 173, 84, 0.2);
  margin: 28px 0;
}

.price-summary span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.price-summary strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-soft);
}

.modal-footer-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP LANDSCAPE  (≥ 961px)
   ══════════════════════════════════════════════════════ */
@media (min-width: 961px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    text-align: left;
    padding-top: 112px;
    padding-bottom: 80px;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    max-width: 620px;
    flex: 1;
  }

  .hero h1 {
    text-align: left;
    font-size: clamp(40px, 4.8vw, 76px);
    line-height: 1.0;
  }

  .hero-subtitle {
    text-align: left;
    max-width: 520px;
  }

  .event-strip {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px 40px;
    margin: 28px 0;
    justify-content: flex-start;
  }

  .event-strip-item {
    border-left: none;
    padding: 0;
  }

  .event-strip-item + .event-strip-item:not(.venue-item) {
    border-left: 1px solid var(--gold-dim);
    padding-left: 40px;
  }

  .event-strip-item.venue-item {
    grid-column: span 2;
    border-top: 1px solid var(--gold-dim);
    padding: 16px 0 0 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    order: 0;
    margin-bottom: 0;
    margin-right: 20px; /* offset accent border translation */
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 960px)
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .main-nav { display: none; }

  .hero-content {
    padding-bottom: 52px;
    justify-content: flex-start;
    padding-top: 130px;
  }

  .hero-visual {
    margin-bottom: 36px;
  }

  .event-strip {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin: 28px auto;
  }

  .event-strip-item {
    border-left: none;
    border-top: 1px solid var(--gold-dim);
    padding: 14px 0 0 0;
    text-align: center;
  }

  .event-strip-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .step-grid { grid-template-columns: repeat(2, 1fr); }

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

  .champion-card:last-child {
    grid-column: span 2;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }

  .details-layout { grid-template-columns: 1fr; }
  .ticket-preview-card { max-width: 480px; }

  .venue-layout { grid-template-columns: 1fr; }
  .venue-map { min-height: 300px; border-right: none; border-bottom: 1px solid rgba(216, 173, 84, 0.2); }
  .venue-map iframe { min-height: 300px; }

  .contact-layout { grid-template-columns: 1fr; }

  .ticket-panel { grid-template-columns: 1fr; }
  .payment-col { border-left: none; border-top: 1px solid rgba(216, 173, 84, 0.16); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600px)
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .site-header { padding: 12px 18px; }

  .ticket-preview-card { min-height: 0; padding: 26px; }
  .tp-body { grid-template-columns: 1fr; gap: 20px; }
  .qr-placeholder { width: 140px; justify-self: center; }

  .brand-logo { height: 44px; }

  .nav-cta { min-height: 38px; padding: 0 14px; font-size: 10.5px; }

  .hero-content { padding: 96px 18px 52px; }

  .hero h1 { font-size: 48px; }



  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }

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

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

  .champion-grid { grid-template-columns: 1fr; }
  .champion-card,
  .champion-card:last-child {
    grid-column: span 1;
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .champion-featured { order: -1; } /* Show Miss Queen first on mobile */

  .champ-photo { height: 360px; }
  .champion-featured .champ-photo { height: 400px; }

  .detail-list div { grid-template-columns: 1fr; gap: 5px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-right { flex-direction: column; align-items: flex-start; width: 100%; }
  .footer-right .button { width: 100%; justify-content: center; }

  .info-card { padding: 24px; }

  .section-inner { width: calc(100% - 36px); }

  /* Checkout Modal mobile bottom sheet effect */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    padding: 32px 20px 24px;
    transform: translateY(100%);
    border-left: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(109, 15, 20, 0.3);
  }

  .modal-overlay.active .modal-content {
    transform: translateY(0);
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }

  .modal-header {
    margin-bottom: 20px;
  }

  .modal-header h2 {
    font-size: 20px;
  }

  .price-summary {
    margin: 20px 0;
    padding: 14px 0;
  }
}
