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

:root {
  --navy: #1f2a44;
  --navy-deep: #162036;
  --gold: #c9a34a;
  --gold-light: #e0c070;
  --cream: #f6f4ef;
  --cream-dark: #ede9e2;
  --white: #FFFFFF;
  --text-muted: rgba(242,239,233,0.55);
  --text-muted-dark: rgba(28,40,64,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 60px;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(20,29,48,0.97);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-cta {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: var(--navy); background: var(--gold);
  padding: 10px 24px; border-radius: 3px;
  text-decoration: none; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── SHARED ── */
section { padding: 100px 60px; }

.overline {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px;
}
.overline-gold { color: var(--gold); }
.overline-navy { color: var(--navy); opacity: 0.4; }

.section-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.2;
  margin-bottom: 28px;
}
.section-headline-dark { color: var(--navy); }
.section-headline-light { color: var(--white); }

.body-text { font-size: 15px; font-weight: 300; line-height: 1.85; }
.body-dark { color: rgba(28,40,64,0.72); }
.body-light { color: var(--text-muted); }
.max-prose { max-width: 580px; }

/* Divider elements */
.hr-line { flex: 1; height: 1px; background: var(--gold); }
.hr-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin: 0 6px; }
.hr-tick { width: 1px; height: 10px; background: var(--gold); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.hero-rule {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 36px;
  animation: fadeDown 1s ease 0.2s both;
}
.hero-overline {
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.15;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-headline em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--text-muted);
  max-width: 500px; margin: 0 auto 44px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-btn {
  display: inline-block;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--navy); background: var(--gold);
  padding: 14px 36px; border-radius: 3px;
  text-decoration: none; transition: all 0.2s;
  animation: fadeUp 0.8s ease 0.7s both;
}
.hero-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.hero-meta {
  margin-top: 18px; font-size: 11px; letter-spacing: 0.08em;
  color: var(--text-muted);
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-bottom-rule {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  width: 60%; opacity: 0.3;
}

/* ── PATTERN ── */
#pattern {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.pattern-quote {
  border-left: 2px solid var(--gold);
  padding-left: 24px; margin: 32px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-style: italic; font-weight: 400;
  color: var(--navy); line-height: 1.5;
}
.pattern-right { display: flex; flex-direction: column; gap: 24px; }
.pattern-card {
  background: var(--white); border-radius: 4px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold);
}
.pattern-card-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.pattern-card-text {
  font-size: 14px; font-weight: 300; line-height: 1.7;
  color: rgba(28,40,64,0.75);
}

/* ── ABOUT ── */
#about {
  background: var(--navy);
  text-align: center;
}
.about-body { max-width: 640px; margin: 0 auto; }
.about-body .section-headline { margin-bottom: 28px; }
.about-pillars {
  display: flex; justify-content: center;
  margin-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.pillar {
  flex: 1; padding: 28px 20px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.2);
}
.pillar:last-child { border-right: none; }
.pillar-name {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 6px;
}
.pillar-desc { font-size: 12px; font-weight: 300; color: var(--text-muted); line-height: 1.6; }

/* ── OFF SCRIPT ── */
#offscript {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.offscript-tag {
  display: inline-block;
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 5px 14px; border-radius: 2px;
  text-transform: uppercase; margin-bottom: 20px;
}
.offscript-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300; color: var(--navy);
  line-height: 1.1; margin-bottom: 8px;
}
.offscript-subtitle {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--gold); margin-bottom: 28px;
}
.offscript-details { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.detail-row { display: flex; align-items: flex-start; gap: 14px; }
.detail-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; color: var(--gold); min-width: 20px; margin-top: 2px;
}
.detail-text { font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(28,40,64,0.72); }
.offscript-right { padding-top: 20px; }
.ticket-box {
  background: var(--navy); border-radius: 6px;
  padding: 36px 32px; position: relative; overflow: hidden;
}
.ticket-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.ticket-early-bird {
  display: inline-block;
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy);
  background: var(--gold); padding: 4px 12px;
  border-radius: 2px; margin-bottom: 16px;
}
.ticket-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 52px; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 4px;
}
.ticket-currency { font-size: 18px; vertical-align: super; }
.ticket-label {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.1em; margin-bottom: 24px;
}
.ticket-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.tick {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tick::after {
  content: ''; width: 5px; height: 3px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg) translateY(-1px);
}
.ticket-feature-text { font-size: 13px; font-weight: 300; color: var(--text-muted); }
.ticket-btn {
  display: block; width: 100%; text-align: center;
  margin-top: 28px; padding: 14px;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  border-radius: 3px; text-decoration: none; transition: all 0.2s;
}
.ticket-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.ticket-note {
  font-size: 11px; color: var(--text-muted);
  text-align: center; margin-top: 12px; letter-spacing: 0.04em;
}

/* ── TEAM ── */
#team {
  background: var(--navy-deep);
  padding: 100px 60px;
}
.team-header { margin-bottom: 48px; }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px; padding: 36px 32px;
  position: relative;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.team-photo {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--gold); letter-spacing: 0.05em;
  overflow: hidden;
}
.team-photo-img {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; margin-bottom: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  display: block;
}
.team-role {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 8px;
}
.team-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 400; color: var(--white);
  margin-bottom: 16px;
}
.team-bio { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-muted); }

/* ── FAQ ── */
#faq { background: var(--cream); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 48px;
}
.faq-item {
  background: var(--white); padding: 28px 32px;
  border-bottom: 1px solid var(--cream-dark);
}
.faq-q {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 500; color: var(--navy);
  margin-bottom: 12px; line-height: 1.3;
}
.faq-a { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(28,40,64,0.65); }

/* ── FINAL CTA ── */
#cta {
  background: var(--navy);
  text-align: center; padding: 120px 60px;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-rule {
  display: flex; align-items: center;
  max-width: 300px; margin: 0 auto 48px; opacity: 0.4;
}
.cta-hl {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; line-height: 1.3;
  color: var(--white); max-width: 580px;
  margin: 0 auto 16px;
}
.cta-hl em { color: var(--gold); font-style: normal; }
.cta-sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 40px; letter-spacing: 0.06em;
}
.cta-btn-main {
  display: inline-block; padding: 16px 48px;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  border-radius: 3px; text-decoration: none;
  transition: all 0.2s; text-transform: uppercase;
}
.cta-btn-main:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-socials {
  display: flex; justify-content: center;
  gap: 32px; margin-top: 48px;
}
.cta-social {
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25); text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
}
.cta-social:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 32px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(201,163,74,0.12);
  text-align: center;
}

.footer-logo {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
}

.footer-logo span {
  color: var(--gold);
  opacity: 0.7;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 800px;
  line-height: 1.6;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  section { padding: 72px 24px; }
  #pattern { grid-template-columns: 1fr; gap: 40px; }
  #offscript { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .about-pillars { flex-direction: column; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .pillar:last-child { border-bottom: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  #cta { padding: 80px 24px; }
  #team { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 14px; }
  .ticket-box { padding: 24px 20px; }
  .team-card { padding: 24px 20px; }
  .faq-item { padding: 20px; }
}
