﻿/* ============================================================
   대한과일협회 — multi-page editorial site
   Warm paper bg, large quiet typography, restrained clay accent.
   ============================================================ */

@import url("colors_and_type.css");

/* ---------- Reset ---------- */
html, body { margin: 0; padding: 0; }
body {
  background: var(--surface-1);
  color: var(--ink-1);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main { display: block; min-height: calc(100vh - 56px - 380px); }
img { display: block; max-width: 100%; }

/* ============================================================
   NAV — minimal, almost invisible
   ============================================================ */
.kfa-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 243, .78);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(28, 25, 22, .06);
}
.kfa-nav__inner {
  max-width: 1280px; margin: 0 auto;
  height: 56px; padding: 0 32px;
  display: flex; align-items: center; gap: 24px;
}
.kfa-nav__brand {
  font-weight: 600; font-size: 15px; letter-spacing: 0;
  color: var(--ink-1); text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
}
.kfa-nav__list {
  list-style: none; margin: 0 auto 0 8px; padding: 0;
  display: flex; gap: 28px;
}
.kfa-nav__list a {
  color: var(--ink-2); text-decoration: none;
  font-size: 14px; font-weight: 400;
  white-space: nowrap;
  transition: color 200ms var(--ease-standard);
}
.kfa-nav__list a:hover { color: var(--ink-1); }
.kfa-nav__list a.is-active { color: var(--ink-1); font-weight: 500; }
.kfa-nav__util { display: flex; align-items: center; gap: 16px; }
.kfa-nav__login {
  font-size: 14px; color: var(--ink-2); text-decoration: none;
  white-space: nowrap;
}
.kfa-nav__login:hover { color: var(--ink-1); }

/* ============================================================
   Shared primitives
   ============================================================ */
.kfa-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0;
}
.kfa-nowrap { white-space: nowrap; }

.kfa-link-arrow {
  color: var(--brand); text-decoration: none;
  font-size: 16px; font-weight: 500;
  transition: opacity 200ms;
}
.kfa-link-arrow::after {
  content: " →"; display: inline-block;
  transition: transform 360ms var(--ease-emph);
  margin-left: 6px;
}
.kfa-link-arrow:hover::after { transform: translateX(5px); }

/* ============================================================
   Generic page head — used by every subpage
   ============================================================ */
.kfa-page-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(80px, 14vw, 160px) 32px clamp(56px, 8vw, 96px);
  text-align: center;
}
.kfa-page-head--left { text-align: left; }
.kfa-page-head__h {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  color: var(--ink-1);
  margin: 20px 0 24px;
}
.kfa-page-head__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0 auto;
  max-width: 540px;
}
.kfa-page-head--left .kfa-page-head__sub { margin-left: 0; }
.kfa-page-head__cta { margin-top: 36px; }

/* ============================================================
   HERO (index)
   ============================================================ */
.kfa-hero {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px 96px;
  gap: 80px;
}
.kfa-hero__inner { max-width: 540px; }
.kfa-hero__title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  color: var(--ink-1);
  margin: 0;
}
.kfa-hero__sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 36px 0 0;
}
.kfa-hero__cta { margin-top: 40px; }

/* ---------- Slideshow ---------- */
.kfa-slides {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.25),
              0 1px 2px rgba(0,0,0,.06);
}
.kfa-slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1100ms var(--ease-emph),
              transform 1300ms var(--ease-emph);
  pointer-events: none;
}
.kfa-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.kfa-slide.is-leaving {
  opacity: 0;
  transform: translateX(-60px);
}
.kfa-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.kfa-slide figcaption {
  position: absolute; left: 24px; bottom: 56px;
  font-size: 12px; font-weight: 500;
  color: rgba(255, 255, 255, .92);
  letter-spacing: .02em;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.kfa-slides__dots {
  position: absolute; left: 0; right: 0; bottom: 24px;
  display: flex; justify-content: center; gap: 8px;
  z-index: 2;
}
.kfa-slides__dots button {
  width: 24px; height: 2px;
  background: rgba(255,255,255,.4);
  border: 0; padding: 12px 0;
  background-clip: content-box;
  cursor: pointer;
  transition: background-color 220ms var(--ease-standard);
}
.kfa-slides__dots button.is-active { background: rgba(255,255,255,.95); background-clip: content-box; }
.kfa-slides__dots button:hover { background: rgba(255,255,255,.7); background-clip: content-box; }

.kfa-home-media {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px clamp(120px, 16vw, 200px);
}
.kfa-home-media__head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}
.kfa-home-media h2 {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.32;
  color: var(--ink-1);
  margin: 18px 0 0;
}
.kfa-home-media__preview {
  border-top: 1px solid var(--ink-5);
}
.kfa-home-media__preview a {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(280px, .78fr);
  gap: 28px;
  align-items: baseline;
  padding: 30px 4px;
  border-bottom: 1px solid var(--ink-5);
  color: var(--ink-1);
  text-decoration: none;
  transition: padding-left 320ms var(--ease-emph);
}
.kfa-home-media__preview a:hover { padding-left: 18px; }
.kfa-home-media__preview span {
  color: var(--brand);
  font: 500 12px/1.4 var(--font-mono);
  letter-spacing: .08em;
}
.kfa-home-media__preview h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.38;
  margin: 0;
}
.kfa-home-media__preview p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Legacy single-photo container kept for other pages that still use it. */
.kfa-hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.kfa-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}

/* ============================================================
   TSTC — four sequential sense moments
   ============================================================ */
.kfa-senses {
  display: grid; gap: clamp(80px, 12vw, 120px);
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px clamp(120px, 16vw, 200px);
}
.kfa-sense {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.kfa-sense.is-right .kfa-sense__letter { order: 2; }
.kfa-sense__letter {
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 400;
  line-height: .82;
  letter-spacing: 0;
  color: var(--brand);
  opacity: .13;
  user-select: none;
  text-align: center;
}
.kfa-sense__copy { max-width: 440px; }
.kfa-sense__en {
  font-size: 12px; font-weight: 500;
  letter-spacing: .14em;
  color: var(--brand);
  margin: 0 0 24px;
  text-transform: uppercase;
}
.kfa-sense__en .ko {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-3);
  font-weight: 500;
  font-size: 13px;
}
.kfa-sense__line {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.32;
  color: var(--ink-1);
  margin: 0;
}

/* ============================================================
   Coordinator — situational list
   ============================================================ */
.kfa-coord-cases {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px clamp(120px, 16vw, 200px);
}
.kfa-coord-cases ul { list-style: none; padding: 0; margin: 0; }
.kfa-coord-cases li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--ink-5);
  align-items: baseline;
}
.kfa-coord-cases li:last-child { border-bottom: 1px solid var(--ink-5); }
.kfa-coord-cases__tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
}
.kfa-coord-cases li p {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--ink-1);
  margin: 0;
}

.kfa-coord-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px 100px;
  text-align: center;
}
.kfa-coord-intro p {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink-1);
  margin: 0 0 34px;
}
.kfa-coord-map {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 32px 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-5);
}
.kfa-coord-map div {
  padding: 30px 24px 0 0;
  border-right: 1px solid var(--ink-5);
}
.kfa-coord-map div:last-child { border-right: 0; }
.kfa-coord-map span {
  color: var(--brand);
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .08em;
}
.kfa-coord-map h2 {
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  margin: 22px 0 14px;
}
.kfa-coord-map p {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}
.kfa-coord-credentials {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px 160px;
  text-align: center;
}
.kfa-coord-credentials h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.38;
  margin: 22px 0;
}
.kfa-coord-credentials p:last-child {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.75;
}

/* ============================================================
   About
   ============================================================ */
.kfa-about-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px clamp(120px, 16vw, 200px);
  text-align: center;
}
.kfa-about-body p {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 48px;
}

.kfa-about-manifesto {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px 96px;
  text-align: center;
}
.kfa-about-manifesto p:first-child {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink-1);
  margin: 0 0 34px;
}
.kfa-about-manifesto p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.8;
}
.kfa-belief-rows {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 120px;
  border-top: 1px solid var(--ink-5);
}
.kfa-belief-row {
  display: grid;
  grid-template-columns: 80px minmax(0, .85fr) minmax(280px, 1fr);
  gap: 32px;
  padding: 34px 4px;
  border-bottom: 1px solid var(--ink-5);
  align-items: baseline;
}
.kfa-belief-row span {
  font: 500 12px/1 var(--font-mono);
  color: var(--brand);
}
.kfa-belief-row h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}
.kfa-belief-row p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}
.kfa-identity-strip {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 160px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-5);
}
.kfa-identity-strip div {
  padding: 28px 24px 0 0;
  border-right: 1px solid var(--ink-5);
}
.kfa-identity-strip div:last-child { border-right: 0; }
.kfa-identity-strip span {
  display: block;
  color: var(--ink-4);
  font-size: 12px;
  margin-bottom: 12px;
}
.kfa-identity-strip strong {
  display: block;
  color: var(--ink-1);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

/* ============================================================
   Editorial depth blocks — about / coordinator / ESG
   ============================================================ */
.kfa-editorial-lead {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px clamp(96px, 14vw, 160px);
  text-align: center;
}
.kfa-editorial-lead p {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.3vw, 46px);
  font-weight: 400;
  line-height: 1.36;
  color: var(--ink-1);
  margin: 0 0 28px;
}
.kfa-editorial-lead span {
  display: block;
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.8;
}
.kfa-split-thought {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.kfa-split-thought > div {
  border-top: 1px solid var(--ink-5);
  padding-top: 34px;
}
.kfa-split-thought h2,
.kfa-data-story h2,
.kfa-section-kicker h2,
.kfa-practice-flow h2,
.kfa-context-system h2,
.kfa-esg-scale__lead h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.38;
  margin: 18px 0 26px;
}
.kfa-split-thought ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink-6);
}
.kfa-split-thought li {
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-6);
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
}
.kfa-data-story,
.kfa-esg-scale {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: start;
}
.kfa-data-story__copy,
.kfa-esg-scale__lead {
  border-top: 1px solid var(--ink-5);
  padding-top: 34px;
}
.kfa-data-story__copy p:last-child,
.kfa-context-system > p,
.kfa-esg-scale__lead h2 + p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.78;
}
.kfa-data-story__copy .kfa-link-arrow {
  display: inline-block;
  margin-top: 24px;
}
.kfa-stat-stack,
.kfa-esg-metrics {
  border-top: 1px solid var(--ink-5);
}
.kfa-stat-stack div,
.kfa-esg-metrics div {
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-5);
}
.kfa-stat-stack strong,
.kfa-esg-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 12px;
}
.kfa-stat-stack span,
.kfa-esg-metrics span {
  display: block;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.6;
}
.kfa-philosophy-flow,
.kfa-problem-scenes,
.kfa-esg-scenes {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
}
.kfa-flow-row,
.kfa-scene-line {
  display: grid;
  grid-template-columns: 92px minmax(0, .72fr) minmax(300px, 1fr);
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--ink-5);
}
.kfa-flow-row:last-child,
.kfa-scene-line:last-child {
  border-bottom: 1px solid var(--ink-5);
}
.kfa-flow-row span,
.kfa-scene-line span {
  color: var(--brand);
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kfa-flow-row h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.36;
  margin: 0;
}
.kfa-flow-row p,
.kfa-scene-line p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.76;
  margin: 0;
}
.kfa-closing-statement {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px clamp(130px, 17vw, 210px);
  text-align: center;
}
.kfa-closing-statement p {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  line-height: 1.42;
  color: var(--ink-1);
  margin: 0 0 34px;
}
.kfa-role-duo {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.kfa-role-duo div {
  border-top: 1px solid var(--ink-5);
  border-bottom: 1px solid var(--ink-5);
  padding: 36px 44px 40px 0;
}
.kfa-role-duo div + div {
  border-left: 1px solid var(--ink-5);
  padding-left: 44px;
}
.kfa-role-duo span {
  color: var(--brand);
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kfa-role-duo h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.36;
  margin: 24px 0 16px;
}
.kfa-role-duo p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.76;
  margin: 0;
}
.kfa-section-kicker {
  max-width: 620px;
  margin-bottom: 40px;
}
.kfa-practice-flow,
.kfa-context-system,
.kfa-bar-story,
.kfa-source-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
}
.kfa-practice-flow ol {
  list-style: none;
  counter-reset: practice;
  padding: 0;
  margin: 36px 0 0;
  border-top: 1px solid var(--ink-5);
}
.kfa-practice-flow li {
  counter-increment: practice;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-5);
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.7;
}
.kfa-practice-flow li::before {
  content: "0" counter(practice);
  color: var(--brand);
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .08em;
  align-self: baseline;
}
.kfa-practice-flow li span {
  color: var(--ink-1);
  font-weight: 500;
  margin-right: 10px;
}
.kfa-license-meta {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px 72px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.kfa-license-meta span {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.5;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-5);
}
.kfa-levels {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
}
.kfa-level-row {
  display: grid;
  grid-template-columns: 92px minmax(0, .9fr) minmax(280px, .8fr);
  gap: 34px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--ink-5);
}
.kfa-level-row:last-child {
  border-bottom: 1px solid var(--ink-5);
}
.kfa-level-row > span {
  color: var(--brand);
  font: 500 13px/1 var(--font-mono);
  letter-spacing: .08em;
}
.kfa-level-row h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.36;
  margin: 0 0 14px;
}
.kfa-level-row p {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.76;
  margin: 0;
}
.kfa-level-row ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink-6);
}
.kfa-level-row li {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-6);
}
.kfa-cert-route {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px clamp(110px, 15vw, 180px);
  text-align: center;
}
.kfa-cert-route h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.38;
  margin: 18px 0 34px;
}
.kfa-cert-route > p:last-child {
  max-width: 620px;
  margin: 34px auto 0;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.75;
}
.kfa-route-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.kfa-route-line span {
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.kfa-route-line b {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--ink-5);
}
.kfa-coord-credentials a {
  display: inline-block;
  margin-top: 28px;
}
.kfa-bar-story {
  max-width: 980px;
}
.kfa-bars {
  border-top: 1px solid var(--ink-5);
}
.kfa-bar-row {
  display: grid;
  grid-template-columns: 86px 1fr 220px;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--ink-5);
}
.kfa-bar-row span {
  color: var(--brand);
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .08em;
}
.kfa-bar-track {
  height: 8px;
  background: var(--ink-6);
  overflow: hidden;
}
.kfa-bar-track i {
  display: block;
  width: var(--w);
  height: 100%;
  background: var(--brand);
}
.kfa-bar-row em {
  color: var(--ink-3);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}
.kfa-data-note {
  color: var(--ink-4);
  font-size: 13px;
  line-height: 1.7;
  margin: 24px 0 0;
}
.kfa-context-system {
  text-align: center;
}
.kfa-context-system h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.kfa-context-system > p {
  max-width: 640px;
  margin: 0 auto 48px;
}
.kfa-system-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.kfa-system-line span {
  color: var(--ink-1);
  font-size: 15px;
  line-height: 1;
  padding: 12px 0;
}
.kfa-system-line b {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--ink-5);
}
.kfa-source-list {
  padding-bottom: clamp(130px, 17vw, 210px);
  border-top: 1px solid var(--ink-5);
  display: grid;
  gap: 16px;
}
.kfa-source-list .kfa-eyebrow {
  margin-top: 28px;
}
.kfa-source-list a {
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
}
.kfa-source-list a:hover {
  color: var(--brand);
}

/* ============================================================
   Market — photo + one line
   ============================================================ */
.kfa-market-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(80px, 14vw, 160px) 32px clamp(120px, 16vw, 200px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kfa-market-page__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.kfa-market-page__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.kfa-market-page__cap {
  position: absolute; left: 20px; bottom: 20px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.kfa-market-page__copy { max-width: 460px; }
.kfa-market-page__h {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 20px 0 36px;
  color: var(--ink-1);
}

/* ============================================================
   Notice list
   ============================================================ */
.kfa-notice-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px clamp(120px, 16vw, 200px);
}
.kfa-notice__list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--ink-5);
}
.kfa-notice__list li {
  display: grid;
  grid-template-columns: 80px 1fr 110px;
  align-items: baseline;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--ink-5);
  cursor: pointer;
  transition: background-color 200ms var(--ease-standard);
}
.kfa-notice__list li:hover { background: var(--surface-2); }
.kfa-notice__tag {
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}
.kfa-notice__title {
  font-size: 17px; font-weight: 400; letter-spacing: 0;
  color: var(--ink-1);
  line-height: 1.5;
}
.kfa-notice__date {
  font-size: 13px; color: var(--ink-4); text-align: right;
  font-feature-settings: "tnum";
}

/* ============================================================
   Media — daily card news and market notes
   ============================================================ */
.kfa-media-featured {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px clamp(96px, 13vw, 160px);
}
.kfa-media-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, 1.08fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}
.kfa-media-hero__copy h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.32;
  color: var(--ink-1);
  margin: 24px 0;
}
.kfa-media-hero__copy > p {
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.72;
  margin: 0;
  max-width: 480px;
}
.kfa-media-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-5);
  border-bottom: 1px solid var(--ink-5);
  margin-top: 48px;
}
.kfa-media-metrics div {
  padding: 20px 18px 20px 0;
  border-right: 1px solid var(--ink-5);
}
.kfa-media-metrics div:last-child { border-right: 0; }
.kfa-media-metrics strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-1);
  line-height: 1.35;
}
.kfa-media-metrics span {
  display: block;
  color: var(--ink-4);
  font-size: 12px;
  margin-top: 8px;
}
.kfa-cardnews {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.kfa-cardnews li {
  min-height: 210px;
  background: var(--surface-0);
  border: 1px solid var(--ink-5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kfa-cardnews li:first-child {
  grid-column: span 2;
  min-height: 260px;
  background: var(--brand-ink);
  color: var(--surface-1);
}
.kfa-cardnews span {
  font: 500 12px/1 var(--font-mono);
  color: var(--brand);
}
.kfa-cardnews li:first-child span { color: rgba(250,247,243,.58); }
.kfa-cardnews p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.42;
  color: inherit;
}
.kfa-media-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px clamp(96px, 12vw, 150px);
  text-align: center;
}
.kfa-media-note h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.38;
  margin: 22px 0;
}
.kfa-media-note p:last-child {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 560px;
}
.kfa-media-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 32px clamp(120px, 16vw, 200px);
}
.kfa-media-list__head { margin-bottom: 36px; }
.kfa-media-list__head h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
  margin: 16px 0 0;
}
.kfa-media-items { border-top: 1px solid var(--ink-5); }
.kfa-media-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 4px;
  border-bottom: 1px solid var(--ink-5);
}
.kfa-media-item time {
  color: var(--ink-4);
  font-size: 13px;
  font-feature-settings: "tnum";
}
.kfa-media-item span {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kfa-media-item h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.38;
  margin: 8px 0 10px;
  color: var(--ink-1);
}
.kfa-media-item p {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 620px;
}
.kfa-media-empty {
  text-align: center;
  color: var(--ink-4);
}

/* Media as KFA worldview translation, not a news board. */
.kfa-media-index-head {
  max-width: 920px;
  margin: 0 auto;
  padding: 132px 32px 84px;
  text-align: center;
}
.kfa-media-index-head h1 {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.24;
  color: var(--ink-1);
  margin: 24px 0 26px;
}
.kfa-media-index-head p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.8;
}
.kfa-media-rows {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 160px;
  border-top: 1px solid var(--ink-5);
}
.kfa-media-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: baseline;
  padding: 34px 4px;
  border-bottom: 1px solid var(--ink-5);
  color: var(--ink-1);
  text-decoration: none;
  transition: padding-left 320ms var(--ease-emph), color 200ms var(--ease-standard);
}
.kfa-media-row:hover {
  padding-left: 18px;
  color: var(--brand);
}
.kfa-media-row__name {
  font: 500 13px/1.4 var(--font-mono);
  letter-spacing: .08em;
  color: var(--brand);
}
.kfa-media-row__desc {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.42;
  color: var(--ink-1);
}
.kfa-media-row__latest {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-4);
}
.kfa-media-section-head {
  max-width: 940px;
  margin: 0 auto;
  padding: 128px 32px 84px;
  text-align: left;
}
.kfa-media-section-head h1 {
  font-family: var(--font-serif);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.28;
  margin: 22px 0 28px;
}
.kfa-media-section-head p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.76;
}
.kfa-article-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px 160px;
  border-top: 1px solid var(--ink-5);
}
.kfa-article-list a,
.kfa-article-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 36px;
  padding: 36px 4px;
  border-bottom: 1px solid var(--ink-5);
  color: var(--ink-1);
  text-decoration: none;
}
.kfa-article-list a {
  transition: padding-left 320ms var(--ease-emph);
}
.kfa-article-list a:hover {
  padding-left: 18px;
}
.kfa-article-list time {
  color: var(--ink-4);
  font-size: 13px;
  line-height: 1.6;
  font-feature-settings: "tnum";
}
.kfa-article-list h2 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.34;
  margin: 0 0 12px;
}
.kfa-article-list p {
  margin: 0;
  max-width: 620px;
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.7;
}
.kfa-story-article {
  padding-bottom: 160px;
}
.kfa-story-head {
  max-width: 920px;
  margin: 0 auto;
  padding: 128px 32px 72px;
  text-align: center;
}
.kfa-story-head h1 {
  font-family: var(--font-serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 1.22;
  margin: 24px 0;
}
.kfa-story-head p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-3);
  font-size: 19px;
  line-height: 1.76;
}
.kfa-story-photo {
  max-width: 1120px;
  margin: 0 auto 84px;
  padding: 0 32px;
}
.kfa-story-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.kfa-story-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.kfa-story-body p {
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.88;
  margin: 0 0 34px;
}
.kfa-story-body blockquote {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.42;
  color: var(--brand);
  margin: 70px 0;
  padding: 0;
}
.kfa-story-stat {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: center;
  border-top: 1px solid var(--ink-5);
  border-bottom: 1px solid var(--ink-5);
  padding: 36px 0;
  margin: 64px 0;
}
.kfa-story-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 86px;
  font-weight: 400;
  line-height: .9;
  color: var(--brand);
}
.kfa-story-stat span {
  display: block;
  color: var(--ink-4);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 12px;
}
.kfa-story-stat p {
  margin: 0;
}
.kfa-next-article {
  max-width: 720px;
  margin: 86px auto 0;
  padding: 32px;
  border-top: 1px solid var(--ink-5);
  border-bottom: 1px solid var(--ink-5);
}
.kfa-next-article span {
  display: block;
  color: var(--ink-4);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kfa-next-article a {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.35;
  color: var(--ink-1);
  text-decoration: none;
}
.kfa-next-article a:hover {
  color: var(--brand);
}

/* ============================================================
   TSTC interactive test
   ============================================================ */
.tstc-screen {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(80px, 14vw, 160px) 32px clamp(120px, 16vw, 200px);
  min-height: calc(100vh - 56px - 380px);
}

/* Intro */
.tstc-intro { text-align: center; }
.tstc-intro__h {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.32;
  color: var(--ink-1);
  margin: 24px 0 32px;
}
.tstc-intro__sub {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: .04em;
  margin: 0 0 64px;
}
.tstc-intro__cta { display: flex; justify-content: center; }

/* Buttons */
.tstc-btn {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 500;
  letter-spacing: 0;
  background: var(--ink-1); color: var(--surface-1);
  border: 0; cursor: pointer;
  border-radius: 999px;
  padding: 14px 36px;
  transition: opacity 200ms var(--ease-standard),
              transform 200ms var(--ease-emph);
}
.tstc-btn:hover { opacity: .88; }
.tstc-btn:active { transform: scale(.98); }
.tstc-btn--ghost {
  background: transparent; color: var(--ink-2);
  border: 1px solid var(--ink-5);
  padding: 12px 28px;
}
.tstc-btn--ghost:hover { color: var(--ink-1); border-color: var(--ink-3); }

/* -------------- Profile -------------- */
.tstc-profile { max-width: 720px; text-align: center; }
.tstc-profile__step {
  font: 500 12px/1 var(--font-mono);
  color: var(--ink-4);
  letter-spacing: .12em;
  margin: 0 0 28px;
}
.tstc-profile__h {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.32;
  color: var(--ink-1);
  margin: 0 0 56px;
}
.tstc-profile__opt {
  font-family: var(--font-sans);
  font-size: 16px;
  background: transparent;
  border: 0;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 200ms var(--ease-standard),
              background-color 200ms var(--ease-standard),
              border-color 200ms var(--ease-standard);
}

/* Rows (hairline list) — gender / channel / frequency */
.tstc-profile__field.is-rows {
  display: block;
  border-top: 1px solid var(--ink-5);
}
.tstc-profile__field.is-rows .tstc-profile__opt {
  display: block;
  width: 100%;
  padding: 22px 8px;
  border-bottom: 1px solid var(--ink-5);
  text-align: left;
  font-size: 17px;
  position: relative;
}
.tstc-profile__field.is-rows .tstc-profile__opt::after {
  content: "→";
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  color: var(--brand);
  font-size: 18px;
  transition: opacity 220ms, transform 320ms var(--ease-emph);
}
.tstc-profile__field.is-rows .tstc-profile__opt:hover {
  color: var(--ink-1); padding-left: 18px;
}
.tstc-profile__field.is-rows .tstc-profile__opt:hover::after {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.tstc-profile__field.is-rows .tstc-profile__opt.is-chosen { color: var(--brand); }

/* Grid (region) — 4-col map of provinces */
.tstc-profile__field.is-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--ink-5);
}
.tstc-profile__field.is-grid .tstc-profile__opt {
  padding: 18px 12px;
  border-right: 1px solid var(--ink-5);
  border-bottom: 1px solid var(--ink-5);
  font-size: 14px;
  background: var(--surface-0);
}
.tstc-profile__field.is-grid .tstc-profile__opt:hover {
  background: var(--brand-lt);
  color: var(--brand-dk);
}
.tstc-profile__field.is-grid .tstc-profile__opt.is-chosen {
  background: var(--brand);
  color: #fff;
}

/* Chips (household) — inline number selector */
.tstc-profile__field.is-chips {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.tstc-profile__field.is-chips .tstc-profile__opt {
  min-width: 80px;
  padding: 16px 22px;
  border: 1px solid var(--ink-5);
  border-radius: 999px;
  font-size: 16px; font-weight: 500;
}
.tstc-profile__field.is-chips .tstc-profile__opt:hover {
  border-color: var(--ink-3); color: var(--ink-1);
}
.tstc-profile__field.is-chips .tstc-profile__opt.is-chosen {
  background: var(--ink-1); color: #fff; border-color: var(--ink-1);
}

/* -------------- Progress -------------- */
.tstc-progress {
  display: flex; align-items: center; gap: 24px;
  margin: 0 0 80px;
}
.tstc-progress__bar {
  flex: 1; height: 1px; background: var(--ink-5);
  position: relative;
}
.tstc-progress__bar span {
  display: block; height: 1px;
  background: var(--brand);
  transition: width 600ms var(--ease-emph);
}
.tstc-progress__num {
  font: 500 12px/1 var(--font-mono);
  color: var(--ink-4);
  letter-spacing: .08em;
  white-space: nowrap;
}

/* -------------- Question -------------- */
.tstc-question__h {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.32;
  color: var(--ink-1);
  margin: 0 0 56px;
  white-space: pre-line;
}

.tstc-options {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--ink-5);
}
.tstc-options li { border-bottom: 1px solid var(--ink-5); }
.tstc-options li.is-chosen .tstc-option { color: var(--brand); }
.tstc-option {
  display: block; width: 100%;
  background: transparent; border: 0;
  padding: 22px 8px;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 220ms var(--ease-standard),
              padding-left 320ms var(--ease-emph);
  position: relative;
}
.tstc-option::after {
  content: "→";
  position: absolute; right: 8px; top: 50%;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  color: var(--brand);
  font-size: 18px;
  transition: opacity 220ms, transform 320ms var(--ease-emph);
}
.tstc-option:hover { color: var(--ink-1); padding-left: 18px; }
.tstc-option:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* -------------- Result -------------- */
.tstc-result { max-width: 920px; }
.tstc-result__head { text-align: center; margin-bottom: clamp(60px, 8vw, 96px); }
.tstc-result__h {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 20px 0 24px;
  color: var(--ink-1);
}
.tstc-result__profile {
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink-3);
  margin: 0;
}

/* Radar diagram */
.tstc-radar-wrap {
  display: grid; place-items: center;
  margin: 0 auto clamp(72px, 10vw, 120px);
  max-width: 460px;
}
.tstc-radar {
  width: 100%;
  height: auto;
  display: block;
}
.tstc-radar__ring {
  fill: none;
  stroke: var(--ink-5);
  stroke-width: 1;
}
.tstc-radar__axis {
  stroke: var(--ink-6);
  stroke-width: 1;
}
.tstc-radar__fill {
  fill: var(--brand);
  fill-opacity: .14;
  stroke: var(--brand);
  stroke-width: 1.5;
  stroke-linejoin: round;
}
.tstc-radar__dot {
  fill: var(--brand);
  stroke: var(--surface-1);
  stroke-width: 3;
}
.tstc-radar__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .02em;
  fill: var(--ink-2);
}

/* Axes (text interpretation) */
.tstc-axes { display: grid; gap: clamp(72px, 10vw, 120px); }
.tstc-axis { display: grid; gap: 28px; }
.tstc-axis__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink-5);
}
.tstc-axis__letter {
  font-family: var(--font-display);
  font-size: 112px;
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  color: var(--brand);
  opacity: .18;
}
.tstc-axis__en {
  font-size: 12px; font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 8px;
}
.tstc-axis__en span {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-3);
  font-weight: 500;
  font-size: 13px;
}
.tstc-axis__poles {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--ink-3);
  margin: 0;
}
.tstc-axis__bar {
  position: relative;
  height: 1px;
  background: var(--ink-5);
  margin: 0 12px;
}
.tstc-axis__bar span {
  position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--surface-1);
}
.tstc-axis__lines {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: grid; gap: 14px;
  max-width: 680px;
}
.tstc-axis__lines li {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-1);
  letter-spacing: 0;
}

.tstc-result__foot {
  margin-top: clamp(80px, 12vw, 140px);
  padding-top: 56px;
  border-top: 1px solid var(--ink-5);
  text-align: center;
}
.tstc-result__foot p {
  font-size: 14px; color: var(--ink-3); line-height: 1.7;
  margin: 0 0 32px;
}
.tstc-result__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}

@media (max-width: 720px) {
  .tstc-axis__head { grid-template-columns: 1fr; gap: 16px; }
  .tstc-axis__letter { font-size: 96px; text-align: left; }
  .tstc-result__actions { gap: 20px; }
  .tstc-profile__field.is-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.kfa-foot {
  background: var(--surface-2);
  color: var(--ink-2);
  padding: 80px 32px 48px;
  border-top: 1px solid var(--ink-6);
}
.kfa-foot__inner { max-width: 1100px; margin: 0 auto; }
.kfa-foot__lead {
  font-size: 13px; line-height: 1.7;
  color: var(--ink-3); margin: 0 0 56px;
  font-weight: 500;
}
.kfa-foot__cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding-bottom: 40px;
}
.kfa-foot__col h4 {
  font-size: 12px; font-weight: 500; color: var(--ink-1); margin: 0 0 16px;
  letter-spacing: .02em;
}
.kfa-foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.kfa-foot__col a { color: var(--ink-3); text-decoration: none; font-size: 12px; }
.kfa-foot__col a:hover { color: var(--ink-1); }
.kfa-foot__rule { border-top: 1px solid var(--ink-5); }
.kfa-foot__base {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 24px;
  font-size: 12px; color: var(--ink-3); line-height: 1.7;
}
.kfa-foot__legal { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.kfa-foot__legal a { color: var(--ink-3); text-decoration: none; }
.kfa-foot__legal a:hover { color: var(--ink-1); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .kfa-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px 80px;
    gap: 48px;
  }
  .kfa-hero__photo, .kfa-slides { aspect-ratio: 5/4; max-height: 560px; }
  .kfa-sense {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .kfa-sense.is-right .kfa-sense__letter { order: 0; }
  .kfa-sense__copy { margin: 0 auto; }
  .kfa-sense__letter { font-size: 180px; }
  .kfa-coord-cases li { grid-template-columns: 1fr; gap: 8px; }
  .kfa-market-page { grid-template-columns: 1fr; gap: 40px; }
  .kfa-market-page__photo { aspect-ratio: 16/10; max-height: 480px; }
  .kfa-home-media h2 { font-size: 32px; }
  .kfa-home-media__head {
    display: block;
    margin-bottom: 34px;
  }
  .kfa-home-media__head .kfa-link-arrow {
    display: inline-block;
    margin-top: 22px;
  }
  .kfa-home-media__preview a {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px 0;
  }
  .kfa-home-media__preview a:hover { padding-left: 0; }
  .kfa-home-media__preview h3 { font-size: 23px; }
  .kfa-about-manifesto p:first-child,
  .kfa-coord-intro p,
  .kfa-coord-credentials h2 {
    font-size: 28px;
  }
  .kfa-belief-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }
  .kfa-coord-map,
  .kfa-identity-strip {
    grid-template-columns: 1fr;
  }
  .kfa-coord-map div,
  .kfa-identity-strip div {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink-5);
  }
  .kfa-coord-map div:last-child,
  .kfa-identity-strip div:last-child {
    border-bottom: 0;
  }
  .kfa-split-thought,
  .kfa-data-story,
  .kfa-esg-scale,
  .kfa-role-duo {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .kfa-role-duo div,
  .kfa-role-duo div + div {
    border-left: 0;
    padding: 32px 0;
  }
  .kfa-role-duo div:first-child {
    border-bottom: 0;
  }
  .kfa-flow-row,
  .kfa-scene-line {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }
  .kfa-practice-flow li {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }
  .kfa-license-meta {
    justify-content: flex-start;
    padding-bottom: 56px;
  }
  .kfa-level-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }
  .kfa-route-line {
    justify-content: flex-start;
  }
  .kfa-bar-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .kfa-system-line {
    justify-content: flex-start;
  }
  .kfa-media-hero { grid-template-columns: 1fr; }
  .kfa-cardnews { grid-template-columns: 1fr; }
  .kfa-cardnews li:first-child { grid-column: span 1; }
  .kfa-media-metrics { grid-template-columns: 1fr; }
  .kfa-media-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--ink-5);
  }
  .kfa-media-metrics div:last-child { border-bottom: 0; }
  .kfa-media-item { grid-template-columns: 1fr; gap: 10px; }
  .kfa-media-index-head,
  .kfa-media-section-head,
  .kfa-story-head { padding-top: 88px; }
  .kfa-media-index-head h1,
  .kfa-story-head h1 { font-size: 40px; }
  .kfa-media-section-head h1 { font-size: 36px; }
  .kfa-media-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }
  .kfa-media-row:hover { padding-left: 0; }
  .kfa-media-row__desc { font-size: 22px; }
  .kfa-article-list a,
  .kfa-article-list article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px 0;
  }
  .kfa-article-list a:hover { padding-left: 0; }
  .kfa-article-list h2 { font-size: 25px; }
  .kfa-story-photo { margin-bottom: 56px; }
  .kfa-story-photo img { aspect-ratio: 4 / 3; }
  .kfa-story-body p { font-size: 17px; line-height: 1.82; }
  .kfa-story-body blockquote { font-size: 28px; margin: 54px 0; }
  .kfa-story-stat { grid-template-columns: 1fr; gap: 20px; }
  .kfa-foot__cols { grid-template-columns: 1fr 1fr; }
  .kfa-foot__base { flex-direction: column; }
}

@media (max-width: 600px) {
  .kfa-nav__list { display: none; }
  .kfa-home-media,
  .kfa-coord-intro,
  .kfa-coord-map,
  .kfa-coord-credentials,
  .kfa-about-manifesto,
  .kfa-belief-rows,
  .kfa-identity-strip,
  .kfa-editorial-lead,
  .kfa-split-thought,
  .kfa-data-story,
  .kfa-philosophy-flow,
  .kfa-closing-statement,
  .kfa-role-duo,
  .kfa-problem-scenes,
  .kfa-practice-flow,
  .kfa-license-meta,
  .kfa-levels,
  .kfa-cert-route,
  .kfa-esg-scale,
  .kfa-bar-story,
  .kfa-esg-scenes,
  .kfa-context-system,
  .kfa-source-list {
    padding-left: 24px;
    padding-right: 24px;
  }
  .kfa-home-media h2 { font-size: 29px; }
  .kfa-about-manifesto p:first-child,
  .kfa-coord-intro p,
  .kfa-coord-credentials h2 {
    font-size: 25px;
  }
  .kfa-split-thought h2,
  .kfa-data-story h2,
  .kfa-section-kicker h2,
  .kfa-practice-flow h2,
  .kfa-context-system h2,
  .kfa-esg-scale__lead h2,
  .kfa-role-duo h2 {
    font-size: 25px;
  }
  .kfa-practice-flow li {
    grid-template-columns: 1fr;
  }
  .kfa-license-meta {
    display: grid;
    gap: 8px;
  }
  .kfa-level-row h3,
  .kfa-cert-route h2 {
    font-size: 25px;
  }
  .kfa-route-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }
  .kfa-route-line b {
    width: 1px;
    height: 24px;
    margin-left: 10px;
  }
  .kfa-system-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }
  .kfa-system-line b {
    width: 1px;
    height: 24px;
    margin-left: 10px;
  }
  .kfa-notice__list li { grid-template-columns: 60px 1fr; }
  .kfa-notice__date { display: none; }
  .kfa-foot__cols { grid-template-columns: 1fr; gap: 32px; }
}

