:root {
  --kv-navy: #0A1B3D;
  --kv-navy-deep: #06132D;
  --kv-navy-soft: #17335F;
  --kv-gold: #C8922A;
  --kv-gold-dark: #8B5A0A;
  --kv-gold-text: #9A6816;
  --kv-gold-pale: #F5E8C9;
  --kv-paper: #FAF8F3;
  --kv-white: #FFFFFF;
  --kv-mist: #E6E9EE;
  --kv-mist-light: #F1F3F6;
  --kv-sand: #EBDCC2;
  --kv-ink: #07152F;
  --kv-muted: #586579;
  --kv-line: rgba(10, 27, 61, .14);
  --kv-line-light: rgba(255, 255, 255, .16);
  --kv-shadow: 0 24px 70px rgba(6, 19, 45, .12);
  --kv-shadow-strong: 0 38px 120px rgba(6, 19, 45, .22);
  --kv-radius-sm: 16px;
  --kv-radius: 26px;
  --kv-radius-lg: 44px;
  --kv-max: 1240px;
  --kv-font: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --kv-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--kv-ink);
  background: var(--kv-paper);
  font-family: var(--kv-font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--kv-gold-pale); color: var(--kv-navy); }

.skip-link {
  position: fixed; left: 18px; top: -100px; z-index: 9999;
  background: var(--kv-navy); color: white; padding: 12px 18px;
  border-radius: 12px; text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.kv-shell { overflow: clip; }
.kv-wrap { width: min(calc(100% - 40px), var(--kv-max)); margin-inline: auto; }
.kv-narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.kv-section { position: relative; padding: clamp(82px, 10vw, 150px) 0; }
.kv-section--tight { padding: clamp(58px, 7vw, 96px) 0; }
.kv-section--white { background: var(--kv-white); }
.kv-section--mist { background: var(--kv-mist-light); }
.kv-section--sand { background: linear-gradient(135deg, var(--kv-paper), #F2E9D9); }
.kv-section--navy { background: var(--kv-navy); color: white; }
.kv-section--gold { background: var(--kv-gold); color: var(--kv-navy); }

h1, h2, h3, h4 { margin: 0; line-height: 1.03; letter-spacing: -.045em; text-wrap: balance; }
h1 { font-size: clamp(58px, 9.6vw, 138px); font-weight: 780; }
h2 { font-size: clamp(42px, 6vw, 82px); font-weight: 750; }
h3 { font-size: clamp(25px, 2.7vw, 38px); font-weight: 730; }
h4 { font-size: 20px; font-weight: 750; }
p { margin: 0; }

.kv-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 20px; color: var(--kv-gold-text); font-size: 12px;
  font-weight: 850; letter-spacing: .17em; text-transform: uppercase;
}
.kv-eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.kv-section--navy .kv-eyebrow { color: #E2B866; }
.kv-lead { max-width: 840px; font-size: clamp(20px, 2.25vw, 30px); line-height: 1.48; color: #344258; }
.kv-section--navy .kv-lead { color: rgba(255,255,255,.78); }
.kv-copy { color: var(--kv-muted); max-width: 740px; }
.kv-gold-text { color: var(--kv-gold-text); }
.kv-navy-text { color: var(--kv-navy); }
.kv-serif { font-family: var(--kv-serif); font-weight: 400; font-style: italic; }

.kv-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
  border-bottom: 1px solid transparent;
}
.kv-header.is-scrolled {
  background: rgba(250, 248, 243, .9);
  border-color: var(--kv-line);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 8px 30px rgba(6, 19, 45, .05);
}
.kv-header--dark:not(.is-scrolled) { color: white; }
.kv-header--dark.is-scrolled { color: var(--kv-navy); }
.kv-header__inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.kv-brand { display: inline-flex; align-items: center; gap: 13px; min-width: 250px; text-decoration: none; }
.kv-brand__mark { width: 43px; height: 43px; object-fit: contain; }
.kv-brand__text { display: flex; flex-direction: column; line-height: 1; }
.kv-brand__text strong { color: var(--kv-navy); font-size: 15px; font-weight: 820; letter-spacing: .17em; }
.kv-header--dark:not(.is-scrolled) .kv-brand__text strong { color: white; }
.kv-brand__text span { margin-top: 7px; color: var(--kv-muted); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.kv-header--dark:not(.is-scrolled) .kv-brand__text span { color: rgba(255,255,255,.62); }
.kv-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 32px); }
.kv-nav a { position: relative; text-decoration: none; font-size: 13px; font-weight: 780; }
.kv-nav a:not(.kv-button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--kv-gold); transition: right .2s ease; }
.kv-nav a:hover::after, .kv-nav a[aria-current="page"]::after { right: 0; }
.kv-menu-button { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.kv-menu-button span { display: block; width: 27px; height: 2px; margin: 5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.kv-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 23px; border-radius: 999px;
  border: 1px solid transparent; background: var(--kv-navy); color: white;
  text-decoration: none; font-size: 14px; font-weight: 820; line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.kv-button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(6,19,45,.18); }
.kv-button--gold { background: var(--kv-gold); color: var(--kv-navy); }
.kv-button--gold:hover { background: #D29C34; }
.kv-button--light { background: white; color: var(--kv-navy); }
.kv-button--ghost { background: transparent; color: var(--kv-navy); border-color: rgba(10,27,61,.26); }
.kv-section--navy .kv-button--ghost, .kv-hero--dark .kv-button--ghost { color: white; border-color: rgba(255,255,255,.28); }
.kv-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.kv-arrow { width: 18px; height: 18px; }

/* HERO */
.kv-hero {
  min-height: max(760px, 100svh); display: grid; align-items: center;
  padding: 130px 0 76px; position: relative; isolation: isolate;
  background:
    radial-gradient(circle at 79% 22%, rgba(200,146,42,.16), transparent 29%),
    radial-gradient(circle at 16% 78%, rgba(235,220,194,.65), transparent 30%),
    var(--kv-paper);
}
.kv-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(10,27,61,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(10,27,61,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 86%);
}
.kv-hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.kv-hero__copy { position: relative; z-index: 2; }
.kv-hero__title { color: var(--kv-navy); }
.kv-hero__title span { display: block; }
.kv-hero__title .kv-hero__line-small {
  font-family: var(--kv-serif); font-size: .49em; font-weight: 400; font-style: italic;
  color: var(--kv-gold-text); letter-spacing: -.035em; margin: .08em 0 .02em .05em;
}
.kv-hero__text { max-width: 720px; margin-top: 30px; color: #304057; font-size: clamp(20px, 2vw, 28px); line-height: 1.52; }
.kv-hero__micro { display: flex; flex-wrap: wrap; gap: 13px 24px; margin-top: 29px; color: var(--kv-muted); font-size: 12px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.kv-hero__micro span { display: inline-flex; align-items: center; gap: 9px; }
.kv-hero__micro span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--kv-gold); }

.kv-hero-symbol { min-height: 610px; position: relative; display: grid; place-items: center; }
.kv-hero-symbol__halo { position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(200,146,42,.17), rgba(200,146,42,.025) 55%, transparent 72%); }
.kv-hero-symbol__ring { position: absolute; width: min(94%, 620px); aspect-ratio: 1; border: 1px solid rgba(10,27,61,.12); border-radius: 50%; }
.kv-hero-symbol__ring::before, .kv-hero-symbol__ring::after { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(10,27,61,.08); border-radius: 50%; }
.kv-hero-symbol__ring::after { inset: 18%; }
.kv-hero-symbol__image { width: min(92%, 580px); position: relative; z-index: 2; filter: drop-shadow(0 28px 26px rgba(6,19,45,.15)); transform: translateZ(0); }
.kv-hero-symbol__label { position: absolute; right: 0; bottom: 8%; width: 220px; padding: 18px 20px; border: 1px solid rgba(10,27,61,.11); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: var(--kv-shadow); backdrop-filter: blur(12px); }
.kv-hero-symbol__label strong { display: block; color: var(--kv-navy); font-size: 13px; letter-spacing: .11em; text-transform: uppercase; }
.kv-hero-symbol__label span { display: block; margin-top: 7px; color: var(--kv-muted); font-family: var(--kv-serif); font-size: 18px; font-style: italic; line-height: 1.32; }
.kv-scroll-hint { position: absolute; left: 50%; bottom: 22px; translate: -50% 0; display: flex; align-items: center; gap: 10px; color: var(--kv-muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.kv-scroll-hint::before { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--kv-gold), transparent); }

/* Intro / manifesto */
.kv-manifesto { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(46px, 8vw, 120px); align-items: start; }
.kv-manifesto__aside { position: sticky; top: 126px; }
.kv-manifesto__question { font-family: var(--kv-serif); color: var(--kv-navy); font-size: clamp(35px, 4.2vw, 60px); line-height: 1.08; font-style: italic; letter-spacing: -.04em; }
.kv-manifesto__body { display: grid; gap: 34px; }
.kv-manifesto__body > p { color: #35445A; font-size: clamp(20px, 2vw, 28px); line-height: 1.58; }
.kv-manifesto__body > p:first-child::first-letter { float: left; margin: .07em .15em 0 0; color: var(--kv-gold-text); font-family: var(--kv-serif); font-size: 4em; line-height: .75; }
.kv-manifesto__line { height: 1px; background: linear-gradient(90deg, var(--kv-gold), var(--kv-line), transparent); }

.kv-signature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(56px, 8vw, 100px); background: var(--kv-line); border: 1px solid var(--kv-line); border-radius: var(--kv-radius); overflow: hidden; }
.kv-signature-card { min-height: 340px; padding: 34px; background: white; display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, background .25s ease; }
.kv-signature-card:hover { background: var(--kv-paper); }
.kv-signature-card__icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--kv-mist-light); color: var(--kv-navy); font-family: var(--kv-serif); font-size: 30px; }
.kv-signature-card__num { color: var(--kv-gold-text); font-size: 11px; font-weight: 850; letter-spacing: .16em; }
.kv-signature-card h3 { margin-top: 19px; }
.kv-signature-card p { margin-top: 17px; color: var(--kv-muted); }

/* Principles */
.kv-principles-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.kv-principles-intro { position: sticky; top: 124px; }
.kv-principles-intro p { margin-top: 25px; color: rgba(255,255,255,.68); max-width: 430px; }
.kv-principles-list { display: grid; }
.kv-principle { display: grid; grid-template-columns: 92px 1fr; gap: 26px; padding: 34px 0; border-top: 1px solid var(--kv-line-light); }
.kv-principle:last-child { border-bottom: 1px solid var(--kv-line-light); }
.kv-principle__number { color: #E2B866; font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.kv-principle h3 { color: white; }
.kv-principle p { margin-top: 16px; color: rgba(255,255,255,.66); max-width: 700px; }
.kv-principle__word { display: inline-block; margin-top: 22px; color: #E2B866; font-family: var(--kv-serif); font-size: 17px; font-style: italic; }

/* role tabs */
.kv-role-shell { margin-top: 58px; border: 1px solid var(--kv-line); border-radius: var(--kv-radius-lg); overflow: hidden; background: white; box-shadow: var(--kv-shadow); }
.kv-role-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--kv-line); }
.kv-role-tab { min-height: 76px; border: 0; border-right: 1px solid var(--kv-line); background: white; color: var(--kv-muted); padding: 16px; font-size: 13px; font-weight: 800; cursor: pointer; }
.kv-role-tab:last-child { border-right: 0; }
.kv-role-tab[aria-selected="true"] { color: var(--kv-navy); background: var(--kv-gold-pale); }
.kv-role-panel { display: none; grid-template-columns: .78fr 1.22fr; min-height: 420px; }
.kv-role-panel.is-active { display: grid; }
.kv-role-panel__visual { position: relative; overflow: hidden; background: var(--kv-navy); color: white; padding: 48px; display: flex; flex-direction: column; justify-content: space-between; }
.kv-role-panel__visual::after { content: ""; position: absolute; width: 390px; height: 390px; right: -160px; bottom: -190px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 48px rgba(255,255,255,.035), 0 0 0 96px rgba(255,255,255,.025); }
.kv-role-panel__visual span { color: #E2B866; font-size: 12px; font-weight: 820; letter-spacing: .15em; text-transform: uppercase; }
.kv-role-panel__visual strong { position: relative; z-index: 1; font-family: var(--kv-serif); font-size: clamp(36px, 4vw, 58px); font-weight: 400; font-style: italic; line-height: 1.08; }
.kv-role-panel__content { padding: clamp(38px, 6vw, 72px); }
.kv-role-panel__content ul { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 16px; }
.kv-role-panel__content li { position: relative; padding-left: 28px; color: #405069; }
.kv-role-panel__content li::before { content: ""; position: absolute; left: 0; top: .63em; width: 10px; height: 10px; border: 2px solid var(--kv-gold); border-radius: 50%; }

/* Bridge */
.kv-bridge { position: relative; overflow: hidden; border-radius: var(--kv-radius-lg); background: var(--kv-navy); color: white; box-shadow: var(--kv-shadow-strong); }
.kv-bridge::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at 32% 50%, black, transparent 69%); }
.kv-bridge__grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 610px; }
.kv-bridge__visual { position: relative; display: grid; place-items: center; padding: 44px; }
.kv-bridge__visual img { width: min(94%, 510px); filter: drop-shadow(0 30px 34px rgba(0,0,0,.28)); }
.kv-bridge__copy { position: relative; z-index: 1; padding: clamp(54px, 8vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.kv-bridge__copy p { margin-top: 27px; color: rgba(255,255,255,.72); max-width: 650px; }
.kv-bridge__steps { display: grid; gap: 0; margin-top: 36px; border-top: 1px solid var(--kv-line-light); }
.kv-bridge__step { display: grid; grid-template-columns: 46px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--kv-line-light); color: rgba(255,255,255,.72); }
.kv-bridge__step strong { color: #E2B866; }

/* questions / cards */
.kv-question-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 54px; }
.kv-question-card { min-height: 290px; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: white; display: flex; flex-direction: column; justify-content: space-between; }
.kv-question-card span { color: var(--kv-gold-text); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.kv-question-card p { font-family: var(--kv-serif); color: var(--kv-navy); font-size: clamp(27px, 3.2vw, 45px); font-style: italic; line-height: 1.12; }

/* CTA & footer */
.kv-cta { display: grid; grid-template-columns: 1.18fr .82fr; gap: 44px; align-items: end; padding: clamp(42px, 7vw, 84px); border: 1px solid var(--kv-line); border-radius: var(--kv-radius-lg); background: white; box-shadow: var(--kv-shadow); }
.kv-cta p { margin-top: 24px; color: var(--kv-muted); max-width: 720px; }
.kv-cta__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.kv-footer { padding: 70px 0 28px; background: var(--kv-navy-deep); color: white; }
.kv-footer__grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 60px; }
.kv-footer__brand { max-width: 470px; }
.kv-footer__brand-row { display: flex; align-items: center; gap: 17px; }
.kv-footer__brand-row img { width: 54px; height: 54px; object-fit: contain; }
.kv-footer__brand-row strong { font-size: 17px; letter-spacing: .16em; }
.kv-footer p { margin-top: 20px; color: rgba(255,255,255,.62); }
.kv-footer h4 { color: #E2B866; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.kv-footer ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.kv-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.kv-footer a:hover { color: white; }
.kv-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--kv-line-light); color: rgba(255,255,255,.48); font-size: 12px; }

/* CHILD CITY */
.cc-hero { min-height: max(720px, 94svh); padding: 138px 0 82px; display: grid; align-items: center; position: relative; overflow: hidden; background: var(--kv-navy); color: white; }
.cc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 24%, rgba(200,146,42,.19), transparent 30%), linear-gradient(110deg, transparent 54%, rgba(255,255,255,.035)); }
.cc-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(44px, 7vw, 105px); align-items: center; position: relative; }
.cc-hero h1 { color: white; }
.cc-hero h1 span { color: #E2B866; }
.cc-hero__lead { margin-top: 28px; max-width: 760px; color: rgba(255,255,255,.76); font-size: clamp(20px, 2.1vw, 29px); }
.cc-orbit { min-height: 560px; position: relative; display: grid; place-items: center; }
.cc-orbit__ring { position: absolute; width: min(88%, 520px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.cc-orbit__ring:nth-child(2) { width: min(64%, 380px); }
.cc-orbit__ring:nth-child(3) { width: min(39%, 235px); border-color: rgba(200,146,42,.58); }
.cc-orbit__core { position: relative; z-index: 2; width: 170px; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--kv-gold); color: var(--kv-navy); text-align: center; font-size: 13px; font-weight: 850; letter-spacing: .09em; line-height: 1.25; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.cc-orbit__label { position: absolute; z-index: 2; min-width: 150px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(6,19,45,.78); color: rgba(255,255,255,.8); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-align: center; text-transform: uppercase; backdrop-filter: blur(10px); }
.cc-orbit__label--1 { top: 12%; right: 6%; }
.cc-orbit__label--2 { bottom: 13%; right: 2%; }
.cc-orbit__label--3 { bottom: 17%; left: 0; }
.cc-orbit__label--4 { top: 17%; left: 3%; }

.kv-definition-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.kv-definition-sticky { position: sticky; top: 125px; }
.kv-definition-sticky__statement { color: var(--kv-navy); font-family: var(--kv-serif); font-size: clamp(38px, 4.6vw, 65px); font-style: italic; line-height: 1.08; }
.kv-definition-body { display: grid; gap: 30px; }
.kv-definition-body > p { color: #34445A; font-size: clamp(20px, 2vw, 27px); }
.kv-notice { padding: 24px 26px; border-left: 4px solid var(--kv-gold); border-radius: 0 16px 16px 0; background: var(--kv-gold-pale); color: #44341E; }
.kv-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 64px; overflow: hidden; border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: var(--kv-line); }
.kv-metric { padding: 35px; background: white; }
.kv-metric strong { display: block; color: var(--kv-gold-text); font-family: var(--kv-serif); font-size: 64px; font-weight: 400; }
.kv-metric span { display: block; margin-top: 6px; color: var(--kv-muted); }

.cc-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 55px; }
.cc-area { min-height: 330px; padding: 30px; border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: white; display: flex; flex-direction: column; justify-content: space-between; transition: transform .22s ease, box-shadow .22s ease; }
.cc-area:hover { transform: translateY(-5px); box-shadow: var(--kv-shadow); }
.cc-area__index { color: var(--kv-gold-text); font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.cc-area h3 { margin-top: 19px; font-size: 29px; }
.cc-area p { margin-top: 15px; color: var(--kv-muted); }
.cc-area__line { height: 2px; margin-top: 26px; background: linear-gradient(90deg, var(--kv-gold), transparent); }

.cc-cycle { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 62px; border-top: 1px solid var(--kv-line-light); border-bottom: 1px solid var(--kv-line-light); }
.cc-cycle__item { position: relative; min-height: 330px; padding: 36px 30px; border-right: 1px solid var(--kv-line-light); }
.cc-cycle__item:last-child { border-right: 0; }
.cc-cycle__num { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(226,184,102,.54); border-radius: 50%; color: #E2B866; font-family: var(--kv-serif); font-size: 25px; }
.cc-cycle__item h3 { margin-top: 50px; color: white; }
.cc-cycle__item p { margin-top: 16px; color: rgba(255,255,255,.65); }

.cc-tools { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px; }
.cc-tool { min-height: 350px; padding: clamp(30px, 4vw, 48px); border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: white; }
.cc-tool__type { color: var(--kv-gold-text); font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.cc-tool h3 { margin-top: 32px; }
.cc-tool p { margin-top: 18px; color: var(--kv-muted); }
.cc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cc-chip { padding: 7px 11px; border: 1px solid var(--kv-line); border-radius: 999px; color: var(--kv-muted); font-size: 11px; font-weight: 750; }

/* MILOSLAVOV */
.ms-hero { min-height: max(720px, 94svh); padding: 138px 0 82px; display: grid; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--kv-paper), #EFE4D2); }
.ms-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 14% 20%, rgba(200,146,42,.13), transparent 26%), linear-gradient(rgba(10,27,61,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(10,27,61,.03) 1px, transparent 1px); background-size: auto, 44px 44px, 44px 44px; }
.ms-map { min-height: 570px; position: relative; border-radius: 48% 48% 28px 28px; overflow: hidden; background: var(--kv-navy); box-shadow: var(--kv-shadow-strong); }
.ms-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; }
.ms-map svg { position: absolute; inset: 8% 5%; width: 90%; height: 84%; }
.ms-map__label { position: absolute; padding: 9px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(6,19,45,.8); color: white; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.ms-map__label--1 { top: 19%; left: 10%; }
.ms-map__label--2 { right: 8%; top: 30%; }
.ms-map__label--3 { left: 31%; bottom: 12%; }
.ms-projects { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.ms-project { min-height: 330px; padding: 32px; border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: white; display: flex; flex-direction: column; justify-content: space-between; }
.ms-project__type { color: var(--kv-gold-text); font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.ms-project p { margin-top: 17px; color: var(--kv-muted); }
.ms-project__dot { width: 13px; height: 13px; border-radius: 50%; background: var(--kv-gold); box-shadow: 0 0 0 8px var(--kv-gold-pale); }

/* animation */
.kv-reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.25,1); }
.kv-reveal.is-visible { opacity: 1; transform: none; }
.kv-float { animation: kvFloat 6s ease-in-out infinite; }
@keyframes kvFloat { 0%,100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(-12px) rotate(.5deg); } }

:focus-visible { outline: 3px solid var(--kv-gold); outline-offset: 4px; }

@media (max-width: 1050px) {
  .kv-nav { position: fixed; inset: 84px 16px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--kv-line); border-radius: 22px; background: rgba(250,248,243,.98); color: var(--kv-navy); box-shadow: var(--kv-shadow-strong); }
  .nav-open .kv-nav { display: flex; }
  .kv-nav a { padding: 14px; }
  .kv-nav a:not(.kv-button)::after { display: none; }
  .kv-menu-button { display: block; }
  .kv-header--dark:not(.is-scrolled) .kv-menu-button { color: white; }
  .nav-open .kv-menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .kv-menu-button span:nth-child(2) { opacity: 0; }
  .nav-open .kv-menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .kv-hero__grid, .cc-hero__grid { grid-template-columns: 1fr; }
  .kv-hero { padding-top: 142px; }
  .kv-hero-symbol { min-height: 490px; }
  .kv-hero-symbol__image { width: min(72%, 490px); }
  .kv-hero-symbol__label { right: 5%; }
  .kv-manifesto, .kv-principles-layout, .kv-definition-grid { grid-template-columns: 1fr; }
  .kv-manifesto__aside, .kv-principles-intro, .kv-definition-sticky { position: static; }
  .kv-signature-grid { grid-template-columns: 1fr; }
  .kv-signature-card { min-height: 270px; }
  .kv-bridge__grid { grid-template-columns: 1fr; }
  .kv-bridge__visual { min-height: 430px; }
  .kv-bridge__visual img { width: min(65%, 450px); }
  .kv-cta { grid-template-columns: 1fr; }
  .kv-cta__actions { justify-content: flex-start; }
  .cc-area-grid, .ms-projects { grid-template-columns: repeat(2, 1fr); }
  .cc-cycle { grid-template-columns: repeat(2, 1fr); }
  .cc-cycle__item:nth-child(2) { border-right: 0; }
  .cc-cycle__item:nth-child(-n+2) { border-bottom: 1px solid var(--kv-line-light); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .kv-wrap, .kv-narrow { width: min(calc(100% - 28px), var(--kv-max)); }
  .kv-header__inner { min-height: 74px; }
  .kv-brand { min-width: 0; }
  .kv-brand__mark { width: 37px; height: 37px; }
  .kv-brand__text strong { font-size: 12px; letter-spacing: .13em; }
  .kv-brand__text span { font-size: 8px; }
  .kv-nav { inset: 74px 12px auto; }
  .kv-section { padding: 78px 0; }
  h1 { font-size: clamp(52px, 17vw, 88px); }
  h2 { font-size: clamp(38px, 11vw, 58px); }
  .kv-hero { min-height: auto; padding: 118px 0 68px; }
  .kv-hero__text { font-size: 20px; }
  .kv-hero-symbol { min-height: 390px; margin-top: 12px; }
  .kv-hero-symbol__image { width: min(90%, 420px); }
  .kv-hero-symbol__label { right: 0; bottom: 0; width: 190px; }
  .kv-scroll-hint { display: none; }
  .kv-manifesto__body > p { font-size: 20px; }
  .kv-signature-card { min-height: 250px; padding: 28px; }
  .kv-principle { grid-template-columns: 1fr; gap: 12px; }
  .kv-role-tabs { grid-template-columns: repeat(2, 1fr); }
  .kv-role-tab:nth-child(2) { border-right: 0; }
  .kv-role-tab:nth-child(-n+2) { border-bottom: 1px solid var(--kv-line); }
  .kv-role-panel.is-active { grid-template-columns: 1fr; }
  .kv-role-panel__visual { min-height: 290px; padding: 34px; }
  .kv-role-panel__content { padding: 34px; }
  .kv-bridge { border-radius: 28px; }
  .kv-bridge__visual { min-height: 330px; }
  .kv-bridge__visual img { width: min(78%, 360px); }
  .kv-bridge__copy { padding: 38px 28px 48px; }
  .kv-question-grid, .cc-tools, .cc-area-grid, .ms-projects { grid-template-columns: 1fr; }
  .kv-question-card { min-height: 245px; }
  .kv-cta { padding: 34px 26px; border-radius: 28px; }
  .kv-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .kv-footer__bottom { flex-direction: column; }
  .cc-hero, .ms-hero { min-height: auto; padding: 118px 0 76px; }
  .cc-orbit { min-height: 420px; }
  .cc-orbit__label { min-width: 118px; font-size: 9px; }
  .kv-metrics { grid-template-columns: 1fr; }
  .cc-cycle { grid-template-columns: 1fr; }
  .cc-cycle__item, .cc-cycle__item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--kv-line-light); }
  .cc-cycle__item:last-child { border-bottom: 0; }
  .ms-map { min-height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .kv-reveal { opacity: 1; transform: none; }
}

/* =========================================================
   V3 — typografická presnosť, vizuálny systém a lokálne profily
   ========================================================= */

/* Izolácia od globálnych pravidiel Divi/WordPressu. */
.kv-shell {
  --kv-reading: 68ch;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
}
.kv-shell p,
.kv-shell li,
.kv-shell blockquote {
  line-height: 1.58 !important;
  text-wrap: pretty;
  orphans: 3;
  widows: 3;
}
.kv-shell h1,
.kv-shell h2,
.kv-shell h3,
.kv-shell h4 {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.04 !important;
  text-wrap: balance;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
.kv-shell .kv-serif {
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
}
.kv-shell .kv-eyebrow,
.kv-shell .cc-area__index,
.kv-shell .cc-tool__type,
.kv-shell .cc-system-layer__type,
.kv-shell .cc-location-card__status,
.kv-shell .cc-pathway__phase {
  line-height: 1.35 !important;
}
.kv-shell .kv-lead {
  max-width: 760px;
  line-height: 1.48 !important;
  letter-spacing: -.012em;
}
.kv-shell .kv-definition-body > p {
  line-height: 1.38 !important;
}
.kv-gold-light { color: #E2B866; }

/* Konzistentný rytmus a optická šírka textu. */
.kv-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 76px);
}
.kv-section-heading .kv-lead { justify-self: end; }
.kv-section-heading--dark .kv-lead { color: rgba(255,255,255,.72); }

/* Hladší pohyb loga a kruhov CHILD CITY. */
.kv-hero-symbol__halo { animation: kvHalo 7s ease-in-out infinite; }
.kv-hero-symbol__ring { animation: kvRing 18s linear infinite; }
.cc-orbit__ring { animation: ccOrbit 18s linear infinite; }
.cc-orbit__ring:nth-child(2) { animation-direction: reverse; animation-duration: 24s; }
.cc-orbit__ring:nth-child(3) { animation-duration: 13s; }
@keyframes kvHalo { 0%,100% { transform: scale(.98); opacity: .82; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes kvRing { to { transform: rotate(360deg); } }
@keyframes ccOrbit { to { transform: rotate(360deg); } }

/* Definition / systémové vrstvy */
.cc-definition { overflow: hidden; }
.cc-definition::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -250px;
  top: 90px;
  border: 1px solid rgba(10,27,61,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(10,27,61,.018), 0 0 0 136px rgba(10,27,61,.012);
  pointer-events: none;
}
.cc-definition__layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(52px, 8vw, 118px);
  align-items: start;
}
.cc-definition__intro { position: sticky; top: 122px; }
.cc-definition__intro .kv-lead { margin-top: 30px; color: #33435A; }

.cc-impact-lens {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  align-items: center;
  margin-top: 44px;
  padding: 18px;
  border: 1px solid var(--kv-line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(245,232,201,.35));
  box-shadow: 0 20px 54px rgba(6,19,45,.08);
}
.cc-impact-lens__source,
.cc-impact-lens__result {
  min-height: 150px;
  padding: 23px;
  border-radius: 17px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cc-impact-lens__source { background: var(--kv-mist-light); }
.cc-impact-lens__result { background: var(--kv-navy); color: white; }
.cc-impact-lens span { color: var(--kv-gold-text); font-size: 10px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.cc-impact-lens__result span { color: #E2B866; }
.cc-impact-lens strong { display: block; margin-top: 18px; font-size: 15px; line-height: 1.42; }
.cc-impact-lens__flow { position: relative; height: 34px; }
.cc-impact-lens__flow::before { content: ""; position: absolute; left: 9px; right: 9px; top: 50%; height: 1px; background: var(--kv-gold); }
.cc-impact-lens__flow i { position: absolute; left: 50%; top: 50%; width: 29px; height: 29px; translate: -50% -50%; border: 1px solid var(--kv-gold); border-radius: 50%; background: white; }
.cc-impact-lens__flow i::after { content: "→"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--kv-gold-text); font-style: normal; font-weight: 800; }

.cc-system-stack { position: relative; display: grid; gap: 16px; }
.cc-system-stack::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 64px;
  bottom: 64px;
  width: 1px;
  background: linear-gradient(var(--kv-gold), rgba(10,27,61,.16));
}
.cc-system-layer {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 100px;
  gap: 22px;
  align-items: center;
  min-height: 238px;
  padding: 34px;
  border: 1px solid var(--kv-line);
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 46px rgba(6,19,45,.07);
  transition: transform .28s cubic-bezier(.2,.75,.25,1), box-shadow .28s ease, border-color .28s ease;
}
.cc-system-layer:hover { transform: translateX(-8px); box-shadow: 0 28px 72px rgba(6,19,45,.13); border-color: rgba(200,146,42,.38); }
.cc-system-layer::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--kv-gold), transparent 74%); opacity: .8; }
.cc-system-layer__index {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,146,42,.42);
  border-radius: 50%;
  background: white;
  color: var(--kv-gold-text);
  font-size: 11px;
  font-weight: 850;
}
.cc-system-layer__type { color: var(--kv-gold-text); font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.cc-system-layer h3 { margin-top: 13px; font-size: clamp(26px, 2.45vw, 36px); }
.cc-system-layer p { margin-top: 14px; color: var(--kv-muted); font-size: 16px; }
.cc-system-layer__glyph { position: relative; width: 90px; height: 90px; justify-self: end; opacity: .95; }
.cc-system-layer__glyph span { position: absolute; display: block; border: 1px solid rgba(10,27,61,.24); }
.cc-system-layer--framework .cc-system-layer__glyph span { inset: 8px; border-radius: 50%; }
.cc-system-layer--framework .cc-system-layer__glyph span:nth-child(2) { inset: 25px; border-color: var(--kv-gold); }
.cc-system-layer--framework .cc-system-layer__glyph span:nth-child(3) { inset: 39px; background: var(--kv-navy); border-radius: 50%; }
.cc-system-layer--standard .cc-system-layer__glyph span { left: 12px; right: 12px; height: 14px; border-radius: 999px; background: var(--kv-mist-light); }
.cc-system-layer--standard .cc-system-layer__glyph span:nth-child(1) { top: 12px; }
.cc-system-layer--standard .cc-system-layer__glyph span:nth-child(2) { top: 38px; right: 28px; background: var(--kv-gold-pale); border-color: var(--kv-gold); }
.cc-system-layer--standard .cc-system-layer__glyph span:nth-child(3) { top: 64px; right: 19px; }
.cc-system-layer--masterplan .cc-system-layer__glyph span { width: 22px; bottom: 10px; border: 0; border-radius: 8px 8px 2px 2px; background: var(--kv-navy); }
.cc-system-layer--masterplan .cc-system-layer__glyph span:nth-child(1) { left: 8px; height: 34px; }
.cc-system-layer--masterplan .cc-system-layer__glyph span:nth-child(2) { left: 35px; height: 63px; background: var(--kv-gold); }
.cc-system-layer--masterplan .cc-system-layer__glyph span:nth-child(3) { left: 62px; height: 48px; background: var(--kv-navy-soft); }

.cc-proof-strip {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  align-items: stretch;
  margin-top: clamp(60px, 8vw, 100px);
  border: 1px solid var(--kv-line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--kv-navy);
  color: white;
  box-shadow: var(--kv-shadow);
}
.cc-proof-strip__statement { padding: 34px 40px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--kv-line-light); }
.cc-proof-strip__statement span { color: #E2B866; font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.cc-proof-strip__statement strong { margin-top: 12px; font-family: var(--kv-serif); font-size: clamp(23px, 2.6vw, 36px); font-weight: 400; font-style: italic; line-height: 1.2; }
.cc-proof-strip__metrics { display: grid; grid-template-columns: repeat(3, 1fr); }
.cc-proof-strip__metrics > div { padding: 30px; display: grid; align-content: center; border-right: 1px solid var(--kv-line-light); }
.cc-proof-strip__metrics > div:last-child { border-right: 0; }
.cc-proof-strip__metrics strong { color: #E2B866; font-family: var(--kv-serif); font-size: 54px; font-weight: 400; line-height: 1; }
.cc-proof-strip__metrics span { margin-top: 8px; color: rgba(255,255,255,.66); font-size: 13px; }
.cc-precision-note { margin-top: 26px; }

/* Vizuálne označenie deviatich oblastí */
.cc-area { min-height: 372px; isolation: isolate; }
.cc-area__visual { position: relative; width: 100%; height: 82px; margin-bottom: 28px; overflow: hidden; border-radius: 17px; background: linear-gradient(135deg, var(--kv-mist-light), var(--kv-paper)); }
.cc-area__visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,27,61,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(10,27,61,.055) 1px, transparent 1px); background-size: 18px 18px; }
.cc-area__visual i { position: absolute; display: block; }
.cc-area__visual--governance i { width: 14px; border-radius: 999px 999px 4px 4px; bottom: 16px; background: var(--kv-navy); }
.cc-area__visual--governance i:nth-child(1){left:24px;height:27px}.cc-area__visual--governance i:nth-child(2){left:48px;height:45px;background:var(--kv-gold)}.cc-area__visual--governance i:nth-child(3){left:72px;height:58px}
.cc-area__visual--voice i { width: 21px; height: 21px; top: 29px; border: 2px solid var(--kv-navy); border-radius: 50%; }
.cc-area__visual--voice i:nth-child(1){left:24px}.cc-area__visual--voice i:nth-child(2){left:55px;border-color:var(--kv-gold)}.cc-area__visual--voice i:nth-child(3){left:86px}
.cc-area__visual--mobility i { top: 39px; height: 3px; background: var(--kv-navy); transform-origin: left; }
.cc-area__visual--mobility i:nth-child(1){left:20px;width:75px;transform:rotate(-16deg)}.cc-area__visual--mobility i:nth-child(2){left:79px;width:55px;transform:rotate(18deg);background:var(--kv-gold)}.cc-area__visual--mobility i:nth-child(3){left:126px;width:34px;transform:rotate(-12deg)}
.cc-area__visual--play i { border-radius: 50%; border: 2px solid var(--kv-navy); }
.cc-area__visual--play i:nth-child(1){width:46px;height:46px;left:22px;top:18px}.cc-area__visual--play i:nth-child(2){width:27px;height:27px;left:66px;top:29px;border-color:var(--kv-gold)}.cc-area__visual--play i:nth-child(3){width:13px;height:13px;left:99px;top:36px;background:var(--kv-navy)}
.cc-area__visual--health i:nth-child(1){width:54px;height:3px;left:24px;top:39px;background:var(--kv-navy)}.cc-area__visual--health i:nth-child(2){width:3px;height:54px;left:49px;top:14px;background:var(--kv-navy)}.cc-area__visual--health i:nth-child(3){width:16px;height:16px;left:88px;top:32px;border-radius:50%;background:var(--kv-gold)}
.cc-area__visual--inclusion i { width: 34px; height: 34px; top: 24px; border-radius: 50%; border: 2px solid var(--kv-navy); }
.cc-area__visual--inclusion i:nth-child(1){left:22px}.cc-area__visual--inclusion i:nth-child(2){left:46px;border-color:var(--kv-gold)}.cc-area__visual--inclusion i:nth-child(3){left:70px}
.cc-area__visual--learning i { bottom: 18px; width: 28px; border-radius: 3px 3px 12px 12px; border: 2px solid var(--kv-navy); border-top: 0; }
.cc-area__visual--learning i:nth-child(1){left:24px;height:43px}.cc-area__visual--learning i:nth-child(2){left:55px;height:52px;border-color:var(--kv-gold)}.cc-area__visual--learning i:nth-child(3){left:86px;height:35px}
.cc-area__visual--climate i:nth-child(1){left:30px;top:15px;width:50px;height:50px;border:2px solid var(--kv-gold);border-radius:50%}.cc-area__visual--climate i:nth-child(2){left:96px;top:19px;width:3px;height:46px;background:var(--kv-navy);transform:rotate(28deg)}.cc-area__visual--climate i:nth-child(3){left:111px;top:19px;width:3px;height:46px;background:var(--kv-navy);transform:rotate(-28deg)}
.cc-area__visual--data i { bottom: 17px; width: 15px; background: var(--kv-navy); border-radius: 5px 5px 2px 2px; }
.cc-area__visual--data i:nth-child(1){left:26px;height:24px}.cc-area__visual--data i:nth-child(2){left:51px;height:43px;background:var(--kv-gold)}.cc-area__visual--data i:nth-child(3){left:76px;height:54px}

/* Nástroje */
.cc-tool { position: relative; overflow: hidden; min-height: 390px; }
.cc-tool::after { content: ""; position: absolute; right: -80px; bottom: -100px; width: 220px; height: 220px; border: 1px solid rgba(10,27,61,.07); border-radius: 50%; box-shadow: 0 0 0 35px rgba(10,27,61,.018); }
.cc-tool__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.cc-tool__symbol { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid var(--kv-line); border-radius: 18px; color: var(--kv-gold-text); font-family: var(--kv-serif); font-size: 22px; font-style: italic; }
.cc-tool__symbol--nodes { position: relative; }
.cc-tool__symbol--nodes i { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--kv-navy); }
.cc-tool__symbol--nodes i:nth-child(1){left:14px;top:16px}.cc-tool__symbol--nodes i:nth-child(2){right:14px;top:16px;background:var(--kv-gold)}.cc-tool__symbol--nodes i:nth-child(3){left:27px;bottom:14px}
.cc-tool__symbol--nodes::before,.cc-tool__symbol--nodes::after{content:"";position:absolute;width:25px;height:1px;background:var(--kv-line);top:30px}.cc-tool__symbol--nodes::before{left:13px;transform:rotate(28deg)}.cc-tool__symbol--nodes::after{right:13px;transform:rotate(-28deg)}

/* CTA metodika v praxi */
.cc-practice-cta { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 610px; overflow: hidden; border: 1px solid var(--kv-line); border-radius: 42px; background: white; box-shadow: var(--kv-shadow-strong); }
.cc-practice-cta__visual { position: relative; overflow: hidden; background: var(--kv-navy); }
.cc-practice-cta__visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 34px 34px; }
.cc-practice-cta__map { position: absolute; inset: 12%; }
.cc-practice-cta__map::before,.cc-practice-cta__map::after { content:""; position:absolute; border: 5px solid transparent; border-top-color: rgba(255,255,255,.84); border-radius: 50%; }
.cc-practice-cta__map::before { inset: 8% 6% 12% 0; transform: rotate(-19deg); }
.cc-practice-cta__map::after { inset: 20% 0 0 13%; border-top-color: var(--kv-gold); transform: rotate(27deg); }
.cc-practice-cta__map span { position: absolute; z-index: 2; width: 17px; height: 17px; border-radius: 50%; background: white; box-shadow: 0 0 0 8px rgba(255,255,255,.08); }
.cc-practice-cta__map span:nth-child(1){left:12%;top:31%}.cc-practice-cta__map span:nth-child(2){left:48%;top:51%;background:var(--kv-gold)}.cc-practice-cta__map span:nth-child(3){right:7%;top:20%}
.cc-practice-cta__map i { position:absolute;z-index:3;padding:8px 11px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(6,19,45,.82); }
.cc-practice-cta__map i:nth-of-type(1){left:4%;top:18%;width:90px}.cc-practice-cta__map i:nth-of-type(2){right:2%;top:40%;width:110px}.cc-practice-cta__map i:nth-of-type(3){left:27%;bottom:13%;width:125px}
.cc-practice-cta__copy { padding: clamp(48px, 7vw, 92px); display: flex; flex-direction: column; justify-content: center; }
.cc-practice-cta__copy p:not(.kv-eyebrow) { margin-top: 28px; color: var(--kv-muted); max-width: 650px; }

/* =========================================================
   CHILD CITY v praxi — univerzálny hub
   ========================================================= */
.cc-practice-hero { min-height: max(760px, 100svh); padding: 138px 0 82px; display: grid; align-items: center; position: relative; overflow: hidden; background: var(--kv-navy); color: white; }
.cc-practice-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 35%, rgba(200,146,42,.18), transparent 31%), radial-gradient(circle at 15% 80%, rgba(23,51,95,.8), transparent 38%); }
.cc-practice-hero__grid { position: relative; display:grid; grid-template-columns: 1.02fr .98fr; gap: clamp(50px, 7vw, 105px); align-items:center; }
.cc-practice-hero h1 { color: white; font-size: clamp(58px, 7.8vw, 116px); }
.cc-practice-hero h1 span { color: #E2B866; }
.cc-practice-hero__lead { margin-top: 30px; max-width: 760px; color: rgba(255,255,255,.76); font-size: clamp(20px,2.05vw,28px); }

.cc-network { position:relative; min-height:600px; border:1px solid rgba(255,255,255,.13); border-radius: 46% 46% 34px 34px; overflow:hidden; background: rgba(6,19,45,.58); box-shadow: 0 35px 100px rgba(0,0,0,.27); }
.cc-network__grid { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);background-size:36px 36px; }
.cc-network__route { position:absolute; border:1px solid rgba(226,184,102,.5); border-radius:50%; }
.cc-network__route--a{inset:10% 13% 23% 5%;transform:rotate(-18deg)}.cc-network__route--b{inset:23% 5% 8% 19%;transform:rotate(25deg);border-color:rgba(255,255,255,.24)}.cc-network__route--c{inset:8% 30% 7% 29%;transform:rotate(7deg);border-color:rgba(255,255,255,.17)}
.cc-network__node { position:absolute;z-index:3;display:flex;align-items:center;gap:9px;padding:9px 13px;border:1px solid rgba(255,255,255,.17);border-radius:999px;background:rgba(6,19,45,.86);color:rgba(255,255,255,.78);font-size:10px;font-weight:850;letter-spacing:.12em;text-transform:uppercase; }
.cc-network__node i { width:8px;height:8px;border-radius:50%;background:var(--kv-gold);box-shadow:0 0 0 6px rgba(200,146,42,.13); }
.cc-network__node--1{left:8%;top:20%}.cc-network__node--2{right:6%;top:28%}.cc-network__node--3{right:12%;bottom:16%}.cc-network__node--4{left:7%;bottom:22%}
.cc-network__core { position:absolute;z-index:4;left:50%;top:50%;translate:-50% -50%;width:210px;height:210px;display:grid;place-items:center;border:1px solid rgba(226,184,102,.5);border-radius:50%;background:radial-gradient(circle,rgba(200,146,42,.15),rgba(6,19,45,.95) 68%);box-shadow:0 0 0 24px rgba(255,255,255,.025),0 0 0 48px rgba(255,255,255,.018); }
.cc-network__core img { width:106px;filter:drop-shadow(0 16px 18px rgba(0,0,0,.2)); }
.cc-network__core span { position:absolute;bottom:31px;color:rgba(255,255,255,.64);font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase; }

.cc-local-principle { display:grid;grid-template-columns: .92fr 1.08fr;gap:clamp(60px,8vw,120px);align-items:center; }
.cc-local-principle__copy .kv-lead { margin-top:30px;color:#34445A; }
.cc-adaptation-visual { position:relative;display:grid;gap:14px;padding:24px;border:1px solid var(--kv-line);border-radius:34px;background:linear-gradient(145deg,var(--kv-paper),white);box-shadow:var(--kv-shadow); }
.cc-adaptation-visual > div { position:relative;min-height:128px;padding:24px 26px;border:1px solid var(--kv-line);border-radius:20px;background:white;display:flex;flex-direction:column;justify-content:center; }
.cc-adaptation-visual span { color:var(--kv-gold-text);font-size:10px;font-weight:850;letter-spacing:.15em;text-transform:uppercase; }
.cc-adaptation-visual strong { margin-top:10px;color:var(--kv-navy);font-size:17px;line-height:1.4; }
.cc-adaptation-visual__source::after,.cc-adaptation-visual__context::after { content:"";position:absolute;right:26px;width:44px;height:44px;border:1px solid var(--kv-line);border-radius:50%; }
.cc-adaptation-visual__source::before { content:"";position:absolute;right:40px;width:16px;height:16px;border-radius:50%;background:var(--kv-gold);z-index:2; }
.cc-adaptation-visual__context::before { content:"";position:absolute;right:38px;width:20px;height:20px;border:2px solid var(--kv-navy);border-radius:4px;z-index:2;transform:rotate(45deg); }
.cc-adaptation-visual__merge { min-height:58px!important;border:0!important;background:transparent!important;padding:0!important; }
.cc-adaptation-visual__merge::before { content:"+";position:absolute;left:50%;top:50%;translate:-50% -50%;display:grid;place-items:center;width:40px;height:40px;border:1px solid var(--kv-gold);border-radius:50%;background:white;color:var(--kv-gold-text);font-size:22px;font-weight:500; }
.cc-adaptation-visual__merge i { position:absolute;top:50%;height:1px;background:var(--kv-line);width:calc(50% - 36px); }.cc-adaptation-visual__merge i:nth-child(1){left:0}.cc-adaptation-visual__merge i:nth-child(2){right:0}.cc-adaptation-visual__merge i:nth-child(3){display:none}
.cc-adaptation-visual__result { background:var(--kv-navy)!important;color:white;border-color:var(--kv-navy)!important;box-shadow:0 20px 45px rgba(6,19,45,.18); }
.cc-adaptation-visual__result span{color:#E2B866}.cc-adaptation-visual__result strong{color:white}

.cc-pathway { position:relative;display:grid;gap:14px; }
.cc-pathway::before { content:"";position:absolute;left:53px;top:60px;bottom:60px;width:1px;background:linear-gradient(var(--kv-gold),rgba(10,27,61,.12)); }
.cc-pathway__step { position:relative;display:grid;grid-template-columns:74px 150px minmax(0,1fr);gap:28px;align-items:center;min-height:210px;padding:30px 38px;border:1px solid var(--kv-line);border-radius:26px;background:white;transition:transform .25s ease,box-shadow .25s ease; }
.cc-pathway__step:hover { transform:translateX(8px);box-shadow:var(--kv-shadow); }
.cc-pathway__number { position:relative;z-index:2;display:grid;place-items:center;width:47px;height:47px;border:1px solid var(--kv-gold);border-radius:50%;background:white;color:var(--kv-gold-text);font-size:11px;font-weight:850; }
.cc-pathway__visual { position:relative;height:110px;border-radius:18px;overflow:hidden;background:var(--kv-mist-light); }
.cc-pathway__visual::before { content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(10,27,61,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(10,27,61,.05) 1px,transparent 1px);background-size:18px 18px; }
.cc-pathway__visual span { position:absolute;display:block; }
.cc-pathway__visual span:first-child { width:54px;height:54px;left:21px;top:28px;border:2px solid var(--kv-navy);border-radius:50%; }
.cc-pathway__visual span:last-child { width:17px;height:17px;right:25px;top:47px;border-radius:50%;background:var(--kv-gold);box-shadow:0 0 0 10px rgba(200,146,42,.12); }
.cc-pathway__phase { color:var(--kv-gold-text);font-size:10px;font-weight:850;letter-spacing:.15em;text-transform:uppercase; }
.cc-pathway h3 { margin-top:10px; }.cc-pathway p{margin-top:13px;color:var(--kv-muted);max-width:750px}

.cc-local-profile { display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(50px,8vw,112px);align-items:center; }
.cc-local-profile__intro p:not(.kv-eyebrow){margin-top:27px;color:rgba(255,255,255,.68);max-width:630px}
.cc-profile-screen { overflow:hidden;border:1px solid rgba(255,255,255,.16);border-radius:27px;background:white;color:var(--kv-navy);box-shadow:0 35px 110px rgba(0,0,0,.32);transform:perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.cc-profile-screen__top { height:42px;padding:0 15px;display:flex;align-items:center;gap:7px;background:#EEF0F3;border-bottom:1px solid rgba(10,27,61,.08); }.cc-profile-screen__top span{width:7px;height:7px;border-radius:50%;background:#C8CDD4}.cc-profile-screen__top b{margin-left:auto;color:#738095;font-size:9px;letter-spacing:.08em}
.cc-profile-screen__hero { min-height:220px;padding:35px;display:flex;justify-content:space-between;align-items:center;background:linear-gradient(135deg,var(--kv-paper),var(--kv-sand)); }.cc-profile-screen__hero small{color:var(--kv-gold-text);font-size:9px;font-weight:850;letter-spacing:.16em}.cc-profile-screen__hero strong{display:block;margin-top:13px;font-size:32px;line-height:1.02}.cc-profile-screen__hero i{width:120px;height:120px;border:1px solid rgba(10,27,61,.18);border-radius:50%;box-shadow:0 0 0 22px rgba(10,27,61,.03),inset 0 0 0 34px var(--kv-gold-pale)}
.cc-profile-screen__stats { display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--kv-line);border-bottom:1px solid var(--kv-line); }.cc-profile-screen__stats span{padding:18px 12px;border-right:1px solid var(--kv-line);color:#657186;font-size:9px;text-transform:uppercase}.cc-profile-screen__stats span:last-child{border-right:0}.cc-profile-screen__stats b{display:block;margin-bottom:6px;color:var(--kv-gold-text);font-size:13px}
.cc-profile-screen__content { display:grid;grid-template-columns:1.2fr .8fr;gap:12px;padding:22px; }.cc-profile-screen__content i{display:block;min-height:92px;border-radius:12px;background:var(--kv-mist-light)}.cc-profile-screen__content i:first-child{grid-row:span 2;min-height:196px}.cc-profile-screen__content i:nth-child(2){background:var(--kv-navy)}.cc-profile-screen__content i:nth-child(3){background:var(--kv-gold-pale)}
.cc-profile-features { display:grid;grid-template-columns:repeat(4,1fr);margin-top:80px;border-top:1px solid var(--kv-line-light);border-bottom:1px solid var(--kv-line-light); }
.cc-profile-feature { min-height:290px;padding:34px 28px;border-right:1px solid var(--kv-line-light); }.cc-profile-feature:last-child{border-right:0}.cc-profile-feature>span{color:#E2B866;font-size:11px;font-weight:850;letter-spacing:.15em}.cc-profile-feature h3{margin-top:44px;color:white;font-size:27px}.cc-profile-feature p{margin-top:15px;color:rgba(255,255,255,.62);font-size:15px}

.cc-location-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:54px; }
.cc-location-card { overflow:hidden;border:1px solid var(--kv-line);border-radius:30px;background:white;box-shadow:0 18px 52px rgba(6,19,45,.08);transition:transform .25s ease,box-shadow .25s ease; }
.cc-location-card:hover { transform:translateY(-6px);box-shadow:var(--kv-shadow-strong); }
.cc-location-card__image,.cc-location-card__visual { position:relative;display:block;min-height:330px;overflow:hidden;background:var(--kv-navy); }
.cc-location-card__image img { width:100%;height:330px;object-fit:cover;transition:transform .45s ease; }.cc-location-card:hover .cc-location-card__image img{transform:scale(1.025)}
.cc-location-card__visual::before { content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:30px 30px; }
.cc-location-card__visual::after { content:"";position:absolute;inset:15% 10%;border:5px solid transparent;border-top-color:rgba(255,255,255,.8);border-radius:50%;transform:rotate(-16deg);box-shadow:inset 0 20px 0 -18px var(--kv-gold); }
.cc-location-card__visual span{position:absolute;z-index:2;width:15px;height:15px;border-radius:50%;background:var(--kv-gold);box-shadow:0 0 0 8px rgba(200,146,42,.13)}.cc-location-card__visual span:nth-child(1){left:18%;top:28%}.cc-location-card__visual span:nth-child(2){right:20%;top:40%;background:white}.cc-location-card__visual span:nth-child(3){left:47%;bottom:21%}
.cc-location-card__body { padding:34px 36px 38px; }.cc-location-card__status{color:var(--kv-gold-text);font-size:10px;font-weight:850;letter-spacing:.15em;text-transform:uppercase}.cc-location-card h3{margin-top:15px;font-size:clamp(27px,3vw,40px)}.cc-location-card h3 a{text-decoration:none}.cc-location-card p{margin-top:16px;color:var(--kv-muted)}.cc-location-card__link{display:inline-flex;align-items:center;gap:10px;margin-top:28px;color:var(--kv-navy);font-size:13px;font-weight:850;text-decoration:none}.cc-location-card__link span{color:var(--kv-gold-text);font-size:17px}.cc-location-card--empty{grid-column:1/-1;display:grid;grid-template-columns:.88fr 1.12fr}.cc-location-card--empty .cc-location-card__visual{min-height:390px}.cc-location-card--empty .cc-location-card__body{display:flex;flex-direction:column;justify-content:center;padding:clamp(40px,7vw,82px)}

/* V3 responzivita */
@media (max-width: 1120px) {
  .cc-definition__layout,
  .cc-practice-hero__grid,
  .cc-local-principle,
  .cc-local-profile { grid-template-columns: 1fr; }
  .cc-definition__intro { position: static; }
  .cc-system-stack { margin-top: 10px; }
  .cc-network { min-height: 540px; }
  .cc-profile-screen { transform: none; }
  .cc-profile-features { grid-template-columns: repeat(2,1fr); }
  .cc-profile-feature:nth-child(2) { border-right: 0; }
  .cc-profile-feature:nth-child(-n+2) { border-bottom: 1px solid var(--kv-line-light); }
}

@media (max-width: 860px) {
  .kv-section-heading { grid-template-columns: 1fr; align-items:start; }
  .kv-section-heading .kv-lead { justify-self:start; }
  .cc-proof-strip { grid-template-columns: 1fr; }
  .cc-proof-strip__statement { border-right:0;border-bottom:1px solid var(--kv-line-light); }
  .cc-impact-lens { grid-template-columns:1fr;gap:10px; }
  .cc-impact-lens__flow { height:52px;transform:rotate(90deg); }
  .cc-practice-cta { grid-template-columns:1fr; }
  .cc-practice-cta__visual { min-height:430px; }
  .cc-pathway__step { grid-template-columns:64px 118px minmax(0,1fr);padding:26px;gap:20px; }
  .cc-location-card--empty { grid-template-columns:1fr; }
}

@media (max-width: 700px) {
  .kv-shell p,.kv-shell li { line-height:1.55!important; }
  .cc-system-layer { grid-template-columns:46px minmax(0,1fr);min-height:auto;padding:25px;gap:16px; }
  .cc-system-layer__glyph { display:none; }
  .cc-system-stack::before { left:48px;top:50px;bottom:50px; }
  .cc-proof-strip__metrics { grid-template-columns:1fr; }
  .cc-proof-strip__metrics>div { border-right:0;border-bottom:1px solid var(--kv-line-light); }
  .cc-proof-strip__metrics>div:last-child { border-bottom:0; }
  .cc-area { min-height:350px; }
  .cc-network { min-height:430px;border-radius:32px; }
  .cc-network__core { width:155px;height:155px; }.cc-network__core img{width:76px}.cc-network__core span{bottom:21px;font-size:7px}.cc-network__node{font-size:8px;padding:7px 9px}.cc-network__node--1{left:3%}.cc-network__node--2{right:2%}.cc-network__node--3{right:4%}.cc-network__node--4{left:3%}
  .cc-adaptation-visual { padding:15px;border-radius:25px; }.cc-adaptation-visual>div{padding:21px;min-height:116px}.cc-adaptation-visual__source::before,.cc-adaptation-visual__source::after,.cc-adaptation-visual__context::before,.cc-adaptation-visual__context::after{display:none}
  .cc-pathway::before { left:46px; }
  .cc-pathway__step { grid-template-columns:54px minmax(0,1fr); }.cc-pathway__visual{display:none}
  .cc-profile-screen__hero{padding:25px;min-height:190px}.cc-profile-screen__hero strong{font-size:23px}.cc-profile-screen__hero i{width:82px;height:82px}.cc-profile-screen__stats{grid-template-columns:repeat(2,1fr)}.cc-profile-screen__stats span:nth-child(2){border-right:0}.cc-profile-screen__stats span:nth-child(-n+2){border-bottom:1px solid var(--kv-line)}
  .cc-profile-features { grid-template-columns:1fr; }.cc-profile-feature,.cc-profile-feature:nth-child(2){border-right:0;border-bottom:1px solid var(--kv-line-light)}.cc-profile-feature:last-child{border-bottom:0}
  .cc-location-grid { grid-template-columns:1fr; }.cc-location-card__image,.cc-location-card__visual{min-height:250px}.cc-location-card__image img{height:250px}.cc-location-card__body{padding:28px}
}

@media (prefers-reduced-motion: reduce) {
  .kv-hero-symbol__halo,
  .kv-hero-symbol__ring,
  .cc-orbit__ring { animation:none!important; }
}

/* Jemné korekcie po vizuálnom audite */
.cc-definition__intro h2 { font-size: clamp(42px, 5.25vw, 74px); }
.cc-practice-cta__map { overflow: hidden; }

/* =========================================================
   V4 — production audit: accessibility, performance, scale
   ========================================================= */

:root {
  --kv-focus-inner: #fff;
  --kv-focus-outer: #7b4d00;
  --kv-header-height: 84px;
}

.kvcc-fullscreen { overflow-x: hidden; }
.kvcc-fullscreen #wpadminbar { position: fixed; }
.kv-shell { min-height: 100vh; isolation: isolate; }
.kv-shell [id] { scroll-margin-top: calc(var(--kv-header-height) + 24px); }
.kv-shell main:focus { outline: none; }
.kv-shell a,
.kv-shell button { -webkit-tap-highlight-color: transparent; }

/* Progressive enhancement: content remains visible when JavaScript is off. */
.kv-reveal { opacity: 1; transform: none; }
.kv-motion .kv-reveal { opacity: 0; transform: translateY(20px); }
.kv-motion .kv-reveal.is-visible { opacity: 1; transform: none; }

/* Two-colour focus stays visible on both light and dark surfaces. */
.kv-shell :focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--kv-focus-inner);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--kv-focus-outer);
  border-radius: 6px;
}

.skip-link { font-weight: 800; }
.skip-link:focus { top: 18px; }

.kv-header { min-height: var(--kv-header-height); }
.kv-header__inner { min-height: var(--kv-header-height); }
.kv-nav a:not(.kv-button) { min-height: 44px; display: inline-flex; align-items: center; }
.kv-menu-button { width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; }
.kv-menu-backdrop { display: none; position: fixed; inset: 0; z-index: 990; border: 0; background: rgba(6,19,45,.44); backdrop-filter: blur(4px); }
.nav-open .kv-menu-backdrop { display: block; }

.kv-brand__text span { font-size: 11px; }
.kv-nav a { font-size: 14px; }
.kv-eyebrow { font-size: 13px; }
.kv-scroll-hint { min-height: 44px; color: var(--kv-muted); text-decoration: none; }
.kv-scroll-hint::after { content: "↓"; color: var(--kv-gold-text); font-size: 17px; }
.kv-lead--spaced { margin-top: 26px; }
.kv-gold-light { color: #e7bd6a; }

.kv-role-tab { min-height: 56px; }
.kv-role-panel[hidden] { display: none !important; }

/* Refined typographic scale and safer line wrapping. */
.kv-shell h1 { max-width: 12ch; }
.kv-shell h2 { max-width: 18ch; }
.kv-shell h3 { line-height: 1.12 !important; }
.kv-shell p { max-width: 76ch; }
.kv-shell .kv-hero__text,
.kv-shell .kv-lead,
.kv-shell .cc-hero__lead,
.kv-shell .cc-practice-hero__lead { text-wrap: pretty; }

.cc-system-layer__type,
.cc-area__index,
.cc-tool__type,
.cc-pathway__phase,
.cc-location-card__status,
.cc-impact-lens span,
.cc-proof-strip__statement span { font-size: 12px; }
.cc-chip { font-size: 12px; }
.cc-profile-feature p { color: rgba(255,255,255,.74); }
.cc-cycle__item p { color: rgba(255,255,255,.74); }
.kv-footer__bottom { color: rgba(255,255,255,.62); }

/* Remove inline-style dependencies from templates. */
.kv-location-title { font-size: clamp(54px,8.7vw,122px); color: var(--kv-navy); }
.kv-heading-spaced { margin-top: 20px; }
.kv-notice--spaced { margin-top: 32px; }

/* Generic, scalable local profile. */
.lp-hero {
  min-height: max(760px, 96svh);
  padding: 138px 0 82px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(200,146,42,.15), transparent 27%),
    linear-gradient(135deg, var(--kv-paper), #efe4d2);
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(10,27,61,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(10,27,61,.032) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.lp-hero__grid { position: relative; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(430px,.96fr); gap: clamp(48px,8vw,116px); align-items: center; }
.lp-hero__copy h1 { color: var(--kv-navy); font-size: clamp(54px,8.1vw,116px); max-width: 9ch; }
.lp-hero__copy .kv-lead { margin-top: 30px; }
.lp-meta { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 42px; border-top: 1px solid var(--kv-line); border-bottom: 1px solid var(--kv-line); }
.lp-meta span { min-height: 105px; padding: 22px 20px 20px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--kv-line); }
.lp-meta span:not(:first-child) { padding-left: 20px; }
.lp-meta span:last-child { border-right: 0; }
.lp-meta small { color: var(--kv-gold-text); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.lp-meta strong { margin-top: 9px; color: var(--kv-navy); font-size: 16px; line-height: 1.3; }
.lp-map { position: relative; min-height: 590px; overflow: hidden; border-radius: 48% 48% 32px 32px; background: var(--kv-navy); box-shadow: var(--kv-shadow-strong); }
.lp-map__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 34px 34px; }
.lp-map svg { position: absolute; inset: 6% 4%; width: 92%; height: 88%; }
.lp-map__label { position: absolute; padding: 10px 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(6,19,45,.84); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lp-map__label--1 { top: 18%; left: 9%; }
.lp-map__label--2 { top: 31%; right: 8%; }
.lp-map__label--3 { bottom: 13%; left: 31%; }
.lp-map__brand { position: absolute; right: 25px; bottom: 24px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.lp-map__brand img { width: 56px; height: auto; }
.lp-intro { display: grid; grid-template-columns: minmax(0,.92fr) minmax(360px,1.08fr); gap: clamp(50px,9vw,128px); align-items: start; }
.lp-intro__statement { position: sticky; top: 122px; }
.lp-intro__statement h2 { font-size: clamp(34px,4.5vw,62px); line-height: 1.12 !important; }
.lp-intro__copy { display: grid; gap: 34px; }
.lp-intro__copy p { color: #344258; font-size: clamp(20px,2.2vw,29px); line-height: 1.5 !important; }
.lp-evidence-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin-top: clamp(64px,8vw,110px); overflow: hidden; border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: var(--kv-line); }
.lp-evidence-card { min-height: 230px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: var(--kv-white); }
.lp-evidence-card span { color: var(--kv-gold-text); font-family: var(--kv-serif); font-size: 35px; }
.lp-evidence-card p { color: var(--kv-navy); font-size: 18px; font-weight: 700; line-height: 1.42 !important; }
.lp-priority-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; }
.lp-priority-card { position: relative; min-height: 260px; padding: 34px; overflow: hidden; border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: var(--kv-white); box-shadow: 0 16px 42px rgba(6,19,45,.06); }
.lp-priority-card span { color: var(--kv-gold-text); font-size: 12px; font-weight: 850; letter-spacing: .14em; }
.lp-priority-card h3 { margin-top: 62px; max-width: 15ch; }
.lp-priority-card i { position: absolute; width: 105px; height: 105px; right: -23px; bottom: -23px; border: 1px solid rgba(10,27,61,.14); border-radius: 50%; box-shadow: inset 0 0 0 28px var(--kv-gold-pale); }
.lp-portfolio { display: grid; grid-template-columns: minmax(310px,.78fr) minmax(0,1.22fr); gap: clamp(54px,9vw,126px); align-items: start; }
.lp-portfolio__intro { position: sticky; top: 122px; }
.lp-portfolio__intro p:not(.kv-eyebrow) { margin-top: 28px; color: rgba(255,255,255,.74); }
.lp-project-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--kv-line-light); border-radius: var(--kv-radius); background: var(--kv-line-light); }
.lp-project { min-height: 150px; padding: 28px 30px; display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: 22px; align-items: center; background: rgba(255,255,255,.045); }
.lp-project span { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(231,189,106,.55); border-radius: 50%; color: #e7bd6a; font-size: 12px; font-weight: 850; }
.lp-project h3 { color: #fff; font-size: clamp(24px,2.5vw,34px); }
.lp-project b { color: rgba(255,255,255,.58); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.lp-metric-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--kv-line); border-radius: var(--kv-radius); background: var(--kv-line); }
.lp-metric { min-height: 230px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; background: var(--kv-white); }
.lp-metric strong { color: var(--kv-gold-text); font-family: var(--kv-serif); font-size: 50px; font-weight: 400; }
.lp-metric span { color: var(--kv-navy); font-size: 17px; font-weight: 750; }
.lp-privacy-notice { margin-top: 34px; }

@media (hover: hover) and (pointer: fine) {
  .cc-system-layer:hover { transform: translateX(-8px); }
  .cc-area:hover,
  .cc-location-card:hover { transform: translateY(-5px); }
  .kv-button:hover { transform: translateY(-2px); }
}

@media (max-width: 1050px) {
  :root { --kv-header-height: 74px; }
  .kv-menu-button { display: flex; }
  .kv-nav {
    z-index: 1001;
    max-height: calc(100dvh - 94px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .kv-nav a:not(.kv-button) { min-height: 52px; }
  .lp-hero__grid,
  .lp-intro,
  .lp-portfolio { grid-template-columns: 1fr; }
  .lp-intro__statement,
  .lp-portfolio__intro { position: static; }
  .lp-map { min-height: 520px; }
  .lp-evidence-grid,
  .lp-metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .kv-brand__text span { font-size: 10px; letter-spacing: .08em; }
  .kv-nav a { font-size: 16px; }
  .kv-eyebrow { font-size: 12px; }
  .kv-shell h1 { max-width: none; }
  .kv-shell h2 { max-width: none; }
  .lp-hero { min-height: auto; padding: 118px 0 74px; }
  .lp-hero__copy h1 { max-width: none; font-size: clamp(48px,15vw,78px); }
  .lp-meta { grid-template-columns: 1fr; }
  .lp-meta span,
  .lp-meta span:not(:first-child) { min-height: 82px; padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--kv-line); }
  .lp-meta span:last-child { border-bottom: 0; }
  .lp-map { min-height: 410px; border-radius: 38% 38% 25px 25px; }
  .lp-map__label { font-size: 10px; padding: 8px 10px; }
  .lp-map__brand { right: 16px; bottom: 16px; font-size: 10px; }
  .lp-evidence-grid,
  .lp-priority-grid,
  .lp-metric-grid { grid-template-columns: 1fr; }
  .lp-evidence-card,
  .lp-metric { min-height: 190px; }
  .lp-project { grid-template-columns: 46px minmax(0,1fr); }
  .lp-project b { grid-column: 2; }
}

@media (forced-colors: active) {
  .kv-shell :focus-visible { outline: 3px solid CanvasText; box-shadow: none; }
  .kv-button,
  .kv-role-tab,
  .cc-location-card,
  .lp-priority-card { border: 1px solid CanvasText; }
}

@media print {
  .kv-header,
  .kv-menu-backdrop,
  .kv-scroll-hint,
  .kv-actions,
  .kv-footer { display: none !important; }
  .kv-section,
  .kv-hero,
  .cc-hero,
  .cc-practice-hero,
  .lp-hero { padding: 32px 0 !important; min-height: 0 !important; }
  .kv-reveal { opacity: 1 !important; transform: none !important; }
  * { box-shadow: none !important; }
}

/* WordPress toolbar accommodation. */
.admin-bar .kv-header { top: 32px; }
.admin-bar .kv-nav { max-height: calc(100dvh - 126px); }
.admin-bar [id] { scroll-margin-top: calc(var(--kv-header-height) + 52px); }

@media (max-width: 782px) {
  .admin-bar .kv-header { top: 46px; }
  .admin-bar .kv-nav { max-height: calc(100dvh - 140px); }
  .admin-bar [id] { scroll-margin-top: calc(var(--kv-header-height) + 66px); }
}

/* Brand mark variants and final readability corrections. */
.kv-brand__marks { position: relative; flex: 0 0 43px; width: 43px; height: 43px; display: block; }
.kv-brand__marks .kv-brand__mark { position: absolute; inset: 0; width: 43px; height: 43px; transition: opacity .2s ease; }
.kv-brand__mark--reverse { opacity: 0; }
.kv-header--dark:not(.is-scrolled) .kv-brand__mark--color { opacity: 0; }
.kv-header--dark:not(.is-scrolled) .kv-brand__mark--reverse { opacity: 1; }

.kv-brand__text span,
.kv-scroll-hint,
.kv-signature-card__num,
.cc-orbit__label,
.cc-system-layer__index,
.cc-adaptation-visual span,
.cc-pathway__number,
.cc-pathway__phase,
.cc-network__node,
.cc-network__core span,
.cc-profile-screen__top b,
.cc-profile-screen__hero small,
.cc-profile-screen__stats span,
.cc-profile-feature > span,
.lp-map__label,
.lp-map__brand { font-size: 12px; }

.kv-footer h3 { color: #e2b866; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 1050px) {
  .kv-brand__marks { flex-basis: 37px; width: 37px; height: 37px; }
  .kv-brand__marks .kv-brand__mark { width: 37px; height: 37px; }
}

@media (max-width: 760px) {
  .kv-brand__text span,
  .cc-orbit__label,
  .cc-network__node,
  .cc-network__core span { font-size: 11px; }
}

/* Minimum readable size for informative microcopy. */
.kv-question-card span,
.cc-area__index,
.cc-tool__type,
.cc-chip,
.cc-impact-lens span,
.cc-system-layer__type,
.cc-proof-strip__statement span,
.cc-location-card__status,
.cc-profile-feature > span,
.cc-profile-screen__top b,
.cc-profile-screen__hero small,
.cc-profile-screen__stats span { font-size: 12px; }

@media (max-width: 760px) {
  .kv-brand__text span,
  .cc-orbit__label,
  .cc-network__node,
  .cc-network__core span,
  .lp-map__label,
  .lp-map__brand { font-size: 12px; }
}

/* Mobile menu glyph: keep the three bars from shrinking inside the flex button. */
.kv-menu-button { flex-direction: column; }
.kv-menu-button span { flex: 0 0 2px; }
