/* ---------- Tokens ---------- */
:root {
  --navy-deep: #10142b;
  --navy: #1c2350;
  --navy-soft: #2a2f63;
  --sunset-orange: #ef7a3c;
  --sunset-pink: #e8555f;
  --gold: #f2b544;
  --gold-light: #ffd982;
  --cream: #fbf4e6;
  --cream-deep: #f3e6c9;
  --ink: #1a1530;
  --ink-soft: #4a4460;
  --white: #ffffff;

  --font-display: "Baloo 2", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1180px;
  --radius: 18px;
  color-scheme: light;
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(242, 181, 68, 0.35);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-nav-cta {
  background: var(--navy-deep);
  color: var(--gold-light);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav-cta:hover { background: var(--navy); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 244, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 21, 48, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--navy-deep);
}
.brand-divider {
  width: 1px;
  height: 20px;
  background: rgba(26,21,48,0.2);
}
.brand-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  gap: 28px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
}
.site-nav a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .brand-sub { display: none; }
  .brand-divider { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-deep);
}
.hero-poster {
  display: block;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  object-fit: contain;
}

.hero-band {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 32px 0 36px;
}
.hero-band-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--gold); }
.eyebrow-hero { color: var(--gold-light); }

.hero-band-text { max-width: 620px; }
.hero-tagline {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}

.hero-deadline {
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 16px 26px;
  text-align: right;
  flex-shrink: 0;
}
.hero-deadline-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}
.hero-deadline-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-event {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
}
.hero-event strong { color: var(--gold-light); }

@media (max-width: 640px) {
  .hero-deadline { text-align: left; }
  .hero-band-inner { align-items: flex-start; }
}

/* ---------- Sections ---------- */
.section {
  padding: 88px 0;
}
.section-light { background: var(--cream); }
.section-dark {
  background: var(--navy-deep);
  background-image: radial-gradient(circle at 85% 0%, var(--navy-soft) 0%, var(--navy-deep) 55%);
}
.section-accent { background: var(--cream-deep); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy-deep);
  margin-bottom: 18px;
  max-width: 720px;
}
.section-title-light { color: var(--white); }

.section-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-lead-light { color: rgba(255,255,255,0.78); }

/* ---------- Overview value grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(26,21,48,0.06);
}
.value-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- Style reference grid ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}
.ref-tile {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-soft);
}
.ref-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ref-tile:hover img { transform: scale(1.06); }

/* ---------- Steps ---------- */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(26,21,48,0.1);
}
.steps-list .step:last-child { border-bottom: 1px solid rgba(26,21,48,0.1); }
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--sunset-orange);
  flex-shrink: 0;
  width: 56px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- Dates & criteria ---------- */
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 820px) {
  .dates-grid { grid-template-columns: 1fr; }
}
.date-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 18px rgba(26,21,48,0.06);
}
.date-card-primary {
  background: var(--navy-deep);
  color: var(--white);
}
.date-card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--sunset-orange);
  margin-bottom: 10px;
}
.date-card-primary .date-card-label { color: var(--gold); }
.date-card-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy-deep);
  margin-bottom: 4px;
}
.date-card-primary .date-card-value { color: var(--white); }
.date-card-sub {
  font-size: 14px;
  color: var(--ink-soft);
}
.date-card-primary .date-card-sub { color: rgba(255,255,255,0.7); }

.criteria-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 18px rgba(26,21,48,0.06);
}
.criteria-box h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy-deep);
  margin-bottom: 18px;
}
.criteria-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.criteria-box li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.criteria-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sunset-orange);
}

/* ---------- Submit / form ---------- */
.btn-submit-cta {
  font-size: 18px;
  padding: 18px 40px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-brand .brand-mark {
  color: var(--white);
  letter-spacing: 0.4px;
}
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-note, .footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-note a {
  color: var(--gold);
  text-decoration: none;
}
.footer-note a:hover { text-decoration: underline; }
