/* ============================================================
   Champions Network — Chapter landing page
   Shared by every chapter page generated from
   chapter-kit/templates/landing.html. Brand tokens match
   champions.css; layout is self-contained so a chapter page
   can ship without the full site stylesheet.
   ============================================================ */

:root {
  --gold: #BB8C3A;
  --gold-light: #d4a854;
  --gold-pale: #f1e2c2;
  --blue: #0876A9;
  --navy: #055A81;
  --navy-deep: #033f5c;
  --navy-ink: #021e2e;
  --light: #ECF4F9;
  --white: #fff;
  --ink: #14202d;
  --ink-mid: #3d5166;
  --ink-soft: #6b8099;
  --maxw: 1080px;
  --radius: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: block;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.01em; line-height: 1.02; text-transform: uppercase; }
.accent { color: var(--gold-light); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-ink);
  padding: 0.85rem 0;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar img { height: 34px; width: auto; }
.topbar a.back {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(236,244,249,0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.topbar a.back:hover { color: var(--gold-light); }
.topbar a.back svg { width: 16px; height: 16px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 55%, var(--navy-ink) 100%);
  color: var(--white);
  padding: 3.5rem 0 0;
  overflow: hidden;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.15rem); margin: 0.7rem 0 0; }
.hero .lede {
  margin-top: 1.1rem;
  font-size: 1.06rem;
  line-height: 1.6;
  color: rgba(236,244,249,0.9);
}
.hero__facts {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
}
.fact .k {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.fact .v { display: block; font-size: 1.02rem; color: var(--white); }
.fact .v b { font-weight: 600; }

.hero__cta { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--ghost { border-color: rgba(236,244,249,0.4); color: rgba(236,244,249,0.9); background: transparent; }
.btn--ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--blue); transform: translateY(-1px); }

.hero__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(187,140,58,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}
.hero__photo img { width: 100%; height: 380px; object-fit: cover; object-position: center 28%; }
/* Cinematic vignette — sits above the photo, below the caption. */
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(125% 135% at 50% 40%, rgba(2,30,46,0) 44%, rgba(2,30,46,0.3) 80%, rgba(2,30,46,0.56) 100%),
    linear-gradient(to right, rgba(3,63,92,0.26) 0%, rgba(3,63,92,0) 38%);
}
.hero__photo figcaption {
  position: absolute;
  z-index: 1;
  left: 0; right: 0; bottom: 0;
  padding: 2.6rem 1.15rem 0.95rem;
  background: linear-gradient(to top, rgba(2,30,46,0.96) 0%, rgba(2,30,46,0.55) 45%, rgba(2,30,46,0) 100%);
  font-size: 0.84rem;
  color: rgba(236,244,249,0.9);
}
.hero__photo figcaption b { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.015em; color: #fff; font-weight: 400; }

.hero__rule { margin-top: 3.2rem; height: 1px; background: rgba(187,140,58,0.35); }

/* ---------- two-audience cards ---------- */
.section { padding: 4rem 0; }
.section--light { background: var(--light); }
.section__hdr { max-width: 700px; margin-bottom: 2.2rem; }
.section__hdr h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 0.55rem; }
.section__hdr p { margin-top: 0.85rem; color: var(--ink-mid); }

.aud { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.aud-card {
  background: var(--white);
  border: 1px solid rgba(5,90,129,0.14);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: 0 2px 14px rgba(5,90,129,0.06);
}
.aud-card h3 { font-size: 1.55rem; color: var(--navy); margin: 0.5rem 0 0.7rem; }
.aud-card p { font-size: 0.95rem; color: var(--ink-mid); }
.aud-card p + p { margin-top: 0.7rem; }
.aud-card strong { font-weight: 600; color: var(--ink); }
.aud-card ul { list-style: none; margin-top: 0.9rem; }
.aud-card li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.93rem;
  color: var(--ink-mid);
}
.aud-card li + li { margin-top: 0.55rem; }
.aud-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.62rem;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.aud-card li b { font-weight: 600; color: var(--ink); }

.verse {
  margin-top: 2.4rem;
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.7);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.verse q {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.16rem;
  line-height: 1.5;
  color: var(--navy-deep);
  quotes: none;
}
.verse cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- schedule ---------- */
.sched { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 0.85rem; list-style: none; }
.sched li {
  background: var(--white);
  border: 1px solid rgba(5,90,129,0.16);
  border-radius: 8px;
  padding: 0.95rem 1.05rem;
}
.sched li .d {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.sched li .note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--gold);
  font-weight: 600;
}
.sched-foot { margin-top: 1.3rem; font-size: 0.9rem; color: var(--ink-mid); }

/* ---------- RSVP ---------- */
.section--rsvp {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-ink) 100%);
  color: var(--white);
}
.rsvp { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.rsvp__intro h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-top: 0.55rem; }
.rsvp__intro p { margin-top: 0.9rem; color: rgba(236,244,249,0.85); font-size: 0.98rem; }
.rsvp__contact {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(187,140,58,0.35);
  font-size: 0.92rem;
  color: rgba(236,244,249,0.85);
}
.rsvp__contact .k {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.rsvp__contact a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(212,168,84,0.5); }
.rsvp__contact a:hover { color: var(--gold-light); }

.rsvp__qr { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.9rem; }
.rsvp__qr img { width: 92px; height: 92px; background: #fff; padding: 5px; border-radius: 6px; }
.rsvp__qr span { font-size: 0.8rem; color: rgba(236,244,249,0.7); line-height: 1.5; }

.card-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid rgba(5,90,129,0.22);
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
}
.form-group textarea { resize: vertical; min-height: 92px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8,118,169,0.12);
}
.form-note { font-size: 0.76rem; color: var(--ink-soft); margin: 0.4rem 0 1.1rem; line-height: 1.5; }
.hp { position: absolute; left: -9999px; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.form-status.is-ok { display: block; background: rgba(8,118,169,0.1); border: 1px solid rgba(8,118,169,0.3); color: var(--navy); }
.form-status.is-err { display: block; background: rgba(187,60,58,0.08); border: 1px solid rgba(187,60,58,0.3); color: #8a2f2d; }

.form-done { text-align: center; padding: 1.5rem 0.5rem; }
.form-done h3 { font-size: 1.75rem; color: var(--navy); margin-bottom: 0.6rem; }
.form-done p { color: var(--ink-mid); font-size: 0.95rem; }
.form-done svg { width: 46px; height: 46px; color: var(--gold); margin: 0 auto 0.9rem; }

/* ---------- footer ---------- */
.foot {
  background: var(--navy-ink);
  color: rgba(236,244,249,0.6);
  padding: 2.4rem 0;
  font-size: 0.82rem;
}
.foot .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.foot img { height: 30px; width: auto; opacity: 0.85; }
.foot a { color: rgba(236,244,249,0.8); text-decoration: none; }
.foot a:hover { color: var(--gold-light); }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { padding-top: 2.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__photo img { height: 260px; }
  .hero__rule { margin-top: 2.4rem; }
  .aud { grid-template-columns: 1fr; }
  .rsvp { grid-template-columns: 1fr; gap: 2.2rem; }
  .section { padding: 3rem 0; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero__facts { gap: 0.9rem 1.5rem; }
  .card-form { padding: 1.5rem 1.2rem; }
  .topbar a.back span { display: none; }
}
