/* Homepage-specific layout */

.kd-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 40px;
  border-bottom: 1px solid var(--line);
}
.kd-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}
.kd-hero-meta { text-align: left; }
.kd-hero-side { text-align: right; }

.kd-hero-center { display: flex; justify-content: center; }
.kd-hero-circle {
  position: relative;
  width: 320px;
  height: 320px;
  color: var(--paper-dim);
}
.kd-hero-circle svg { width: 100%; height: 100%; }
.kd-hero-mark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.kd-hero-est { color: var(--paper-muted); font-size: 11px; letter-spacing: 0.18em; }
.kd-hero-year {
  font-size: 56px;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.kd-hero-year em { color: var(--bronze); font-style: italic; }

.kd-hero-title {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.93;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
  text-align: center;
  text-wrap: pretty;
}
.kd-hero-title em { font-style: italic; color: var(--bronze); }

.kd-hero-rule {
  height: 1px;
  background: var(--line-strong);
  margin: 56px 0 16px;
}
.kd-hero-foot {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--paper-muted);
  letter-spacing: 0.18em;
}

/* Hero variants via tweak */
body[data-hero-variant="split"] .kd-hero-grid { display: none; }
body[data-hero-variant="split"] .kd-hero-title {
  text-align: left;
  font-size: clamp(48px, 7vw, 104px);
}
body[data-hero-variant="stack"] .kd-hero-grid {
  grid-template-columns: 1fr;
}
body[data-hero-variant="stack"] .kd-hero-meta,
body[data-hero-variant="stack"] .kd-hero-side {
  text-align: center;
}

/* Prologue */
.kd-prologue {
  border-bottom: 1px solid var(--line);
  padding: 96px 32px;
}
.kd-prologue-inner {
  max-width: 980px;
  margin: 0 auto;
}
.kd-prologue-lede {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--paper);
  margin: 24px 0 64px;
  max-width: 60ch;
  text-wrap: pretty;
}
.kd-prologue-lede em { font-style: italic; color: var(--bronze); }
.kd-prologue-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper-dim);
  max-width: 880px;
}
.kd-prologue-cols p { margin: 0; }
.kd-prologue-cols em { color: var(--paper); }

/* Fact strip */
.kd-facts {
  border-bottom: 1px solid var(--line);
}
.kd-facts-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.kd-fact {
  padding: 48px 24px;
  border-right: 1px solid var(--line);
}
.kd-fact:last-child { border-right: 0; }
.kd-fact-num {
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--paper);
  font-weight: 400;
  line-height: 1;
}
.kd-fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-muted);
  margin-top: 16px;
  line-height: 1.4;
}

/* Featured */
.kd-featured {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 32px;
  border-bottom: 1px solid var(--line);
}
.kd-featured-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  gap: 32px;
}
.kd-featured-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 12px 0 0;
}
.kd-featured-head h2 em { color: var(--bronze); font-style: italic; }
.kd-featured-body {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 56px;
  align-items: start;
}
.kd-featured-img { width: 100%; }
.kd-featured-text { padding-top: 12px; }
.kd-featured-lede {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 40px;
  color: var(--paper);
}
.kd-meta {
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.kd-meta > div {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.kd-meta dt {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper-muted);
}
.kd-meta dd {
  font-family: var(--serif);
  font-size: 18px;
  margin: 6px 0 0;
  color: var(--paper);
}
.kd-featured-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 4px;
}

/* Section grid */
.kd-sections {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 32px;
}
.kd-sections-head {
  margin-bottom: 56px;
}
.kd-sections-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin: 12px 0 0;
}
.kd-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.kd-section {
  display: block;
  position: relative;
  cursor: pointer;
  transition: transform .3s;
}
.kd-section:hover { transform: translateY(-4px); }
.kd-section-num {
  font-size: 11px;
  color: var(--bronze);
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.kd-section-img {
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.kd-section h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.kd-section p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--paper-dim);
  margin: 0 0 16px;
  max-width: 38ch;
}
.kd-section-arrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-muted);
  transition: color .2s;
}
.kd-section:hover .kd-section-arrow { color: var(--bronze); }

/* Voices */
.kd-voices {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: 96px 32px;
}
.kd-voices-head {
  max-width: var(--maxw);
  margin: 0 auto 56px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.kd-voices-head h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  margin: 12px 0 0;
  letter-spacing: -0.01em;
  line-height: 1;
}
.kd-voices-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.kd-voice {
  border: 1px solid var(--line);
  padding: 32px 28px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color .2s;
  cursor: pointer;
}
.kd-voice:hover { border-color: var(--bronze); }
.kd-voice-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--paper);
}
.kd-voice-name { font-size: 22px; margin-top: 4px; }
.kd-voice blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--paper-dim);
  flex: 1;
}
.kd-voice-wave {
  display: flex; align-items: end; gap: 2px;
  height: 36px;
  margin-top: 8px;
}
.kd-voice-wave span {
  flex: 1;
  background: var(--paper-muted);
  opacity: 0.5;
  min-height: 2px;
}

/* Contribute strip */
.kd-contrib {
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.kd-contrib-inner {
  max-width: 760px;
  margin: 0 auto;
}
.kd-contrib h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  margin: 16px 0 24px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  text-wrap: pretty;
}
.kd-contrib h2 em { color: var(--bronze); font-style: italic; }
.kd-contrib p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper-dim);
  margin: 0 0 40px;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}
