/* ============================================================
   Kingdom Church · kingdomlondon.ca
   Page-specific styles on top of design-system.css
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--canvas-dark);
  color: var(--body-on-dark);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---- bracket helpers ----------------------------------------- */
.bracket-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--body-on-dark);
  transition: color var(--dur-base) var(--ease-out);
}
.bracket-pill::before { content: "[\00a0"; color: var(--muted); }
.bracket-pill::after  { content: "\00a0]"; color: var(--muted); }
.bracket-pill:hover { color: var(--primary); }
.bracket-pill.active { color: var(--primary); }
.bracket-pill.active::before, .bracket-pill.active::after { color: var(--primary); }

/* ---- top nav ------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 24px 40px;
  background: linear-gradient(180deg, rgba(11,15,26,0.92) 60%, rgba(11,15,26,0) 100%);
  backdrop-filter: blur(8px);
  transition: padding var(--dur-base) var(--ease-out);
}
.nav.compact { padding: 16px 40px; background: rgba(11,15,26,0.94); }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-dark);
}
.nav-brand .crown {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}
.nav-brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-brand .word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.nav-brand .tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 24px;
}
.nav-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: pulse 1.4s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---- shared --------------------------------------------------- */
.page-wrap { padding-top: 86px; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
.eyebrow-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  padding: 24px 0 80px;
  overflow: hidden;
}
.hero-stage {
  position: relative;
  height: clamp(380px, 56vw, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-glyphs {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 0;
  overflow: hidden;
}
.hero-glyphs--multiline {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 0;
  inset: 0 auto;
  left: 50%;
  width: min(1600px, 108vw);
  transform: translateX(-50%);
  height: 100%;
}
.hero-glyphs .hero-line {
  display: contents;
}
.hero-glyphs--multiline .hero-line {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.hero-glyph {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(180px, 30vw, 460px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--primary);
  user-select: none;
  flex: 0 0 auto;
  white-space: nowrap;
}
.hero-glyphs--multiline .hero-glyph {
  font-size: clamp(140px, 24vw, 340px);
  letter-spacing: -0.04em;
  line-height: 0.78;
}
.hero-glyph.center { color: var(--primary); }
.hero-image {
  position: relative;
  z-index: 2;
  width: clamp(340px, 46vw, 720px);
  aspect-ratio: 16/10;
  background: transparent;
  overflow: hidden;
  border-radius: 0;
}
.hero-image image-slot,
.hero-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-meta {
  position: absolute;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-strong);
}
.hero-meta.tl { top: 12px; left: 40px; }
.hero-meta.tr { top: 12px; right: 40px; text-align: right; }
.hero-meta.bl { bottom: 12px; left: 40px; }
.hero-meta.br { bottom: 12px; right: 40px; text-align: right; }
.hero-meta .accent { color: var(--primary); }

.hero-copy {
  position: relative;
  z-index: 4;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-copy p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-on-dark);
  max-width: 38ch;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* primary CTA */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn-primary:hover { background: var(--primary-active); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out);
}
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--body-on-dark);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--hairline-on-dark);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.btn-ghost:hover { background: var(--surface-elevated-dark); border-color: var(--muted); }

/* ============================================================
   EDITORIAL VISION BLOCK
   ============================================================ */
.editorial {
  position: relative;
  padding: 96px 0;
}
.editorial-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.editorial-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--on-dark);
  margin: 0;
}
.editorial-headline .y { color: var(--primary); }
.editorial-headline .em-dash { color: var(--muted-strong); padding: 0 0.1em; }
.editorial-headline .portrait {
  display: inline-block;
  width: clamp(80px, 8vw, 130px);
  height: clamp(70px, 6.5vw, 100px);
  background: var(--surface-elevated-dark);
  vertical-align: middle;
  margin: 0 8px;
  position: relative;
  top: -0.18em;
  overflow: hidden;
}
.editorial-headline .portrait image-slot,
.editorial-headline .portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }

.editorial-tag {
  position: absolute;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.editorial-tag.t1 { top: 6%;  left: -16px; }
.editorial-tag.t2 { top: 28%; right: 12%; }
.editorial-tag.t3 { top: 48%; left: 22%; }
.editorial-tag.t4 { bottom: 18%; left: -8px; }

.editorial-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding: 0 40px;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   JOURNEY (Poetry of Process analog)
   ============================================================ */
.journey {
  position: relative;
  padding: 64px 0 96px;
}
.journey-headline-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  padding: 60px 0 0;
}
.journey-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(140px, 18vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--surface-card-dark);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.journey-headline {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 64px);
  letter-spacing: -0.025em;
  color: var(--on-dark);
  line-height: 1.05;
}
.journey-headline .y { color: var(--primary); }

.journey-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}
.journey-photo {
  aspect-ratio: 4/3;
  background: var(--surface-elevated-dark);
  position: relative;
  overflow: hidden;
}
.journey-photo image-slot,
.journey-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }

.journey-caption {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.65;
  color: var(--body-on-dark);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.journey-caption .left { text-align: left; }
.journey-caption .right { text-align: left; }

/* timeline phases (extra interactive piece) */
.timeline {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-on-dark);
  border-bottom: 1px solid var(--hairline-on-dark);
}
.timeline-step {
  padding: 32px 24px;
  border-right: 1px solid var(--hairline-on-dark);
  position: relative;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.timeline-step:last-child { border-right: none; }
.timeline-step:hover { background: var(--surface-card-dark); }
.timeline-step.current { background: var(--surface-card-dark); }
.timeline-step.current::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  height: 2px;
  width: 100%;
  background: var(--primary);
}
.timeline-step .phase-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.timeline-step.current .phase-num { color: var(--primary); }
.timeline-step .phase-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  margin-bottom: 8px;
}
.timeline-step .phase-when {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 16px;
}
.timeline-step .phase-body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--body-on-dark);
}
.live-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(252, 227, 142, 0.12);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.live-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.4s infinite ease-in-out;
}

/* ============================================================
   DNA pillars block
   ============================================================ */
.dna {
  position: relative;
  padding: 96px 0 64px;
}
.dna-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--on-dark);
}
.dna-headline .y { color: var(--primary); }
.dna-headline .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.dna-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--hairline-on-dark);
  border: 1px solid var(--hairline-on-dark);
}
.dna-cell {
  background: var(--canvas-dark);
  padding: 32px;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.dna-cell:hover { background: var(--surface-card-dark); }
.dna-cell .num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 24px;
}
.dna-cell:hover .num { color: var(--primary); }
.dna-cell .pillar-icon {
  margin-bottom: 24px;
  color: var(--primary);
  width: 32px;
  height: 32px;
}
.dna-cell .pillar-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--on-dark);
  margin-bottom: 16px;
}
.dna-cell .pillar-body {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body-on-dark);
  margin-top: auto;
}

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leaders {
  position: relative;
  padding: 80px 0 64px;
  border-top: 1px solid var(--hairline-on-dark);
}
.leaders-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.leaders-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--on-dark);
}
.leaders-headline .y { color: var(--primary); }
.leaders-portrait {
  margin-top: 40px;
  aspect-ratio: 4/5;
  background: var(--surface-elevated-dark);
  overflow: hidden;
}
.leaders-portrait image-slot,
.leaders-portrait img { width: 100%; height: 100%; display: block; object-fit: cover; }
.leaders-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.leaders-text { padding-top: 32px; }
.leaders-text .eyebrow-tag { color: var(--primary); margin-bottom: 16px; display: block; }
.leaders-text p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-on-dark);
  margin: 0 0 18px;
}
.leaders-text p strong { color: var(--on-dark); font-weight: 600; }
.affiliations {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-on-dark);
}
.aff-item .label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.aff-item .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--on-dark);
}

/* ============================================================
   BIBLE CONVERSATIONS CARD
   ============================================================ */
.gatherings {
  padding: 64px 0 32px;
}
.gather-card {
  background: var(--surface-card-dark);
  border-radius: var(--r-2xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.gather-card .scripture {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  color: var(--on-dark);
  margin-bottom: 18px;
}
.gather-card .scripture-ref {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
.gather-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.gather-meta-cell {
  border-left: 1px solid var(--hairline-on-dark);
  padding-left: 16px;
}
.gather-meta-cell .label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.gather-meta-cell .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--on-dark);
}
.gather-countdown {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.gather-countdown .unit {
  font-size: 0.3em;
  color: var(--body-on-dark);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 12px;
}
.gather-acts {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gather-chapter {
  padding: 6px 10px;
  border-radius: var(--r-sm);
  background: var(--surface-elevated-dark);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-strong);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}
.gather-chapter:hover { background: var(--surface-elevated-dark); color: var(--on-dark); }
.gather-chapter.done { color: var(--muted); background: transparent; border: 1px solid var(--hairline-on-dark); }
.gather-chapter.now { background: var(--primary); color: var(--on-primary); font-weight: 600; }
.gather-chapter.upcoming { background: transparent; color: var(--muted); border: 1px solid var(--hairline-on-dark); }

/* ============================================================
   CONNECT FORM
   ============================================================ */
.connect {
  padding: 80px 0 96px;
}
.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.connect-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--on-dark);
}
.connect-headline .y { color: var(--primary); }
.connect-sub {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--body-on-dark);
  max-width: 42ch;
}
.connect-direct {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-on-dark);
}
.connect-direct .item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.connect-direct .label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.connect-direct .value {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--on-dark);
  font-weight: 500;
}

.form { display: flex; flex-direction: column; gap: 16px; }
.input-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--hairline-on-dark);
  padding: 18px 0;
  transition: border-color var(--dur-base) var(--ease-out);
}
.input-wrap:focus-within { border-color: var(--primary); }
.bracket {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  width: 24px;
  text-align: center;
  font-weight: 400;
}
.input-wrap input, .input-wrap textarea, .input-wrap select {
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--on-dark);
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  resize: none;
}
.input-wrap input::placeholder, .input-wrap textarea::placeholder {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
.input-wrap select { color: var(--muted); }
.input-wrap select option { color: var(--on-dark); background: var(--canvas-dark); }
.form .row { display: flex; gap: 12px; justify-content: space-between; align-items: center; margin-top: 16px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--on-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.form-submit:hover { background: var(--primary-active); }
.form-submit:active { transform: scale(0.98); }
.form-submit.disabled { background: var(--primary-disabled); color: var(--muted); cursor: not-allowed; }
.form-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.form-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--r-lg);
  padding: 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--body-on-dark);
  line-height: 1.6;
}
.form-success .check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--success);
  color: var(--canvas-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-top: 96px;
  background: var(--canvas-dark);
}
.footer-bar {
  border-top: 1px solid var(--hairline-on-dark);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 96px;
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--on-dark);
}
.footer-brand .crown {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}
.footer-brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.footer-brand .word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.footer-brand .tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-strong);
  max-width: 44ch;
}
.footer-tagline::before { content: "[ "; color: var(--muted); }
.footer-tagline::after { content: " ]"; color: var(--muted); }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col a { color: var(--body-on-dark); transition: color var(--dur-base) var(--ease-out); }
.footer-col a:hover { color: var(--primary); }
.footer-col a::before { content: "[ "; color: var(--muted); }
.footer-col a::after  { content: " ]"; color: var(--muted); }

/* row of portraits */
.community-row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
  padding: 0 40px;
}
.community-row .cube {
  aspect-ratio: 3/4;
  background: var(--surface-elevated-dark);
  overflow: hidden;
  filter: grayscale(1) brightness(0.9);
  transition: filter var(--dur-slow) var(--ease-out);
}
.community-row .cube:hover { filter: grayscale(0) brightness(1); }
.community-row image-slot { width: 100%; height: 100%; display: block; }

/* mega outro */
.outro {
  padding: 32px 0 16px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--on-dark);
}
.outro .dot {
  color: var(--primary);
  padding: 0 0.06em;
}

.bottom-bar {
  border-top: 1px solid var(--hairline-on-dark);
  padding: 18px 40px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.bottom-bar .right { justify-self: end; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive  */
@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-brand .crown { width: 26px; height: 26px; }
  .nav-brand .word { font-size: 15px; }
  .nav-brand .tag { font-size: 8px; letter-spacing: 0.14em; }
  .container, .container-wide { padding: 0 20px; }
  .hero-copy { grid-template-columns: 1fr; gap: 24px; }
  .editorial-foot { padding: 0 20px; }
  .leaders-grid { grid-template-columns: 1fr; gap: 40px; }
  .dna-grid { grid-template-columns: 1fr 1fr; }
  .connect-grid { grid-template-columns: 1fr; gap: 40px; }
  .gather-card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-step:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .community-row { grid-template-columns: repeat(5, 1fr); }
  .bottom-bar { grid-template-columns: 1fr; gap: 8px; padding: 16px 20px; }
}
