/* ============================================================
   KingKrete Design System v4
   Expanded palette · refined typography · proper hierarchy
   ============================================================ */

:root {
  /* Brand red */
  --kk-red:        #E30613;
  --kk-red-dark:   #B8050F;
  --kk-red-light:  #FF1A28;
  --kk-red-soft:   #FEF2F3;
  --kk-red-tint:   #FDE2E5;

  /* Black + warm greys (the missing palette) */
  --kk-ink:        #0E0E12;     /* Body text, deep black */
  --kk-charcoal:   #1C1C22;     /* Dark surfaces */
  --kk-graphite:   #2A2B33;
  --kk-stone-900:  #3A3B44;
  --kk-stone-700:  #5B5C66;
  --kk-stone-500:  #82838E;
  --kk-stone-400:  #A4A5AE;
  --kk-stone-300:  #C7C8CF;
  --kk-stone-200:  #E2E3E7;
  --kk-stone-100:  #ECEDF0;
  --kk-stone-75:   #F2F3F6;
  --kk-stone-50:   #F8F8FA;
  --kk-stone-25:   #FBFBFD;
  --kk-cream:      #FAF8F5;     /* Warm off-white for variety */
  --kk-cream-deep: #F2EFE9;
  --kk-white:      #FFFFFF;

  /* Functional tokens — using greys instead of pure black for richer hierarchy */
  --bg:            var(--kk-white);
  --surface:       var(--kk-white);
  --surface-alt:   var(--kk-stone-50);
  --surface-warm:  var(--kk-cream);
  --surface-dark:  var(--kk-charcoal);   /* was pure ink — now warm charcoal */
  --surface-deep:  var(--kk-ink);
  --text:          var(--kk-ink);
  --text-strong:   var(--kk-ink);
  --text-soft:     var(--kk-stone-700);
  --text-muted:    var(--kk-stone-500);
  --rule:          var(--kk-stone-200);
  --rule-soft:     var(--kk-stone-100);
  --accent:        var(--kk-red);
  --accent-hover:  var(--kk-red-dark);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --fs-display: clamp(2.75rem, 5vw + 0.5rem, 4.75rem);
  --fs-h1:      clamp(2.25rem, 3vw + 1rem, 3.5rem);
  --fs-h2:      clamp(1.75rem, 2vw + 1rem, 2.5rem);
  --fs-h3:      1.5rem;
  --fs-h4:      1.125rem;
  --fs-lead:    1.1875rem;
  --fs-body:    1rem;
  --fs-sm:      0.875rem;
  --fs-xs:      0.8125rem;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 88px; --s-10: 112px;

  /* Layout */
  --container-max: 1240px;
  --container-pad: 32px;
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Effects */
  --shadow-xs:  0 1px 2px rgba(14,14,18,0.04);
  --shadow-sm:  0 2px 4px rgba(14,14,18,0.05), 0 1px 2px rgba(14,14,18,0.03);
  --shadow-md:  0 8px 24px rgba(14,14,18,0.07), 0 2px 6px rgba(14,14,18,0.04);
  --shadow-lg:  0 24px 56px rgba(14,14,18,0.10), 0 6px 16px rgba(14,14,18,0.06);
  --shadow-red: 0 12px 32px rgba(227,6,19,0.22);
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:     180ms var(--ease);
  --t:          280ms var(--ease);
}

/* ============================================================
   Reset & base
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--text-strong);
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.015em; }
h4 { font-size: var(--fs-h4); letter-spacing: -0.01em; font-weight: 600; }
.display { font-size: var(--fs-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
p { color: var(--text-soft); line-height: 1.65; }
p.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--text); max-width: 60ch; }

::selection { background: var(--accent); color: var(--kk-white); }

/* ============================================================
   Layout
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section          { padding: var(--s-10) 0; }
.section-tight    { padding: var(--s-8) 0; }
.section-alt      { background: var(--surface-alt); }
.section-warm     { background: var(--surface-warm); }
.section-dark     { background: var(--surface-dark); color: var(--kk-white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--kk-white); }
.section-dark p   { color: var(--kk-stone-400); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.eyebrow::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.section-dark .eyebrow { color: var(--kk-red-light); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: 1fr 1fr; align-items: end; gap: var(--s-7); }
}
.section-head--centered {
  grid-template-columns: 1fr !important;
  text-align: center;
}
.section-head--centered > * { margin-left: auto; margin-right: auto; }
.section-head--centered .eyebrow { justify-content: center; }
.section-head--centered p { max-width: 60ch; }
.section-head p { max-width: 52ch; }

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--s-7);
}
.site-logo { display: inline-flex; align-items: center; height: 100%; text-decoration: none; }
.site-logo__img { height: 50px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: var(--s-7); }
.site-nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--t-fast);
}
.site-nav a:hover::after { width: 100%; }

.region-switcher {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text);
  background: var(--kk-stone-75);
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all var(--t-fast);
}
.region-switcher:hover {
  background: var(--kk-red-soft);
  color: var(--accent);
  border-color: var(--accent);
}
.region-switcher::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.region-switcher::after { content: '▾'; font-size: 0.7em; margin-left: 2px; opacity: 0.6; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 13px 22px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary { background: var(--accent); color: var(--kk-white) !important; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-red); }
.btn--secondary { background: var(--kk-ink); color: var(--kk-white) !important; }
.btn--secondary:hover { background: var(--kk-charcoal); }
.btn--ghost { background: var(--surface); border-color: var(--rule); color: var(--text); }
.btn--ghost:hover { border-color: var(--text); }
.btn--arrow::after { content: '→'; font-weight: 400; transition: transform var(--t-fast); }
.btn--arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   Hero — full-bleed cinematic image (v6)
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--kk-white);
  background: var(--kk-charcoal);
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroPan 20s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0%   { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,18,0.92) 0%, rgba(14,14,18,0.78) 35%, rgba(14,14,18,0.45) 65%, rgba(14,14,18,0.55) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(227,6,19,0.25) 0%, transparent 50%);
  z-index: 1;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; padding-top: var(--s-9); padding-bottom: var(--s-9); }
.hero .eyebrow { color: var(--kk-red-light); }
.hero h1, .hero h1 * { color: var(--kk-white); }
.hero h1.display .accent { color: var(--kk-red-light); }
.hero__copy p { color: rgba(255,255,255,0.82); }
.hero__chip-row .chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  color: var(--kk-white);
  backdrop-filter: blur(8px);
}
.hero .btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
  color: var(--kk-white);
  backdrop-filter: blur(8px);
}
.hero .btn--ghost:hover { background: var(--kk-white); color: var(--kk-ink); border-color: var(--kk-white); }
.hero__stats {
  padding-top: var(--s-7);
  margin-top: var(--s-7);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stats .stat__value { color: var(--kk-white); }
.hero__stats .stat__value .unit { color: var(--kk-red-light); }
.hero__stats .stat__label { color: rgba(255,255,255,0.6); }

.hero__floating-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: var(--s-5);
  margin-top: var(--s-6);
  max-width: 360px;
  color: var(--kk-white);
}
.hero__floating-card__head {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kk-red-light);
  margin-bottom: var(--s-3);
}
.hero__floating-card__head::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--kk-red-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(227,6,19,0.2);
  animation: networkPulse 2s infinite;
}
.hero__floating-card__body {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-9); }
}

.hero__copy h1 { margin-bottom: var(--s-5); }
.hero__copy h1 .accent { color: var(--accent); }
.hero__copy p {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 56ch;
  margin-bottom: var(--s-6);
}
.hero__cta { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.hero__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-6);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 12px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-soft);
  background: var(--kk-white);
  border: 1px solid var(--rule);
  border-radius: 999px;
}
.chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Hero visual — actual photograph with overlay treatment */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--kk-ink);
}
.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.hero__visual:hover .hero__visual-img { transform: scale(1.04); }
.hero__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 50%, rgba(14,14,18,0.7) 100%),
    linear-gradient(135deg, rgba(227,6,19,0.0) 0%, rgba(227,6,19,0.18) 100%);
  pointer-events: none;
}
.hero__visual-badge {
  position: absolute;
  top: var(--s-5);
  left: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 8px 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--kk-ink);
  z-index: 2;
}
.hero__visual-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(227,6,19,0.2);
}
.hero__visual-caption {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
  right: var(--s-6);
  color: var(--kk-white);
  z-index: 2;
}
.hero__visual-caption-eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--kk-red-light);
  margin-bottom: var(--s-2);
}
.hero__visual-caption-title {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--kk-white);
}

/* Hero stat strip */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  padding-top: var(--s-7);
  margin-top: var(--s-8);
  border-top: 1px solid var(--rule);
}
@media (max-width: 720px) { .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); } }
.stat__value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.stat__value .unit { color: var(--accent); font-size: 1.5rem; margin-left: 2px; }
.stat__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: var(--s-2);
}

/* ============================================================
   Certifications strip
   ============================================================ */

.cert-strip {
  background: var(--bg);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  padding: var(--s-5) 0;
}
.cert-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}
@media (min-width: 880px) {
  .cert-strip__inner { flex-direction: row; justify-content: space-between; }
}
.cert-strip__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.cert-strip__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}
.cert-strip__item {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 4px 0;
}
.cert-strip__divider { width: 1px; height: 16px; background: var(--rule); }

/* ============================================================
   Global footprint — abstract network + locations grid (NO map)
   ============================================================ */

.footprint-network {
  background: var(--kk-ink);
  border-radius: var(--radius-xl);
  padding: var(--s-7) var(--s-6);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--kk-graphite);
  margin-bottom: var(--s-7);
}
.footprint-network::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: 0.7;
}
.footprint-network::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 80%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(227,6,19,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.footprint-network__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 880px) {
  .footprint-network__inner { grid-template-columns: 1fr 1.2fr; }
}
.footprint-network__copy h3 {
  color: var(--kk-white);
  font-size: 1.75rem;
  margin-bottom: var(--s-4);
}
.footprint-network__copy p {
  color: var(--kk-stone-300);
  max-width: 38ch;
}

/* Network SVG visualization (abstract — no continents) */
.network-svg { width: 100%; height: auto; aspect-ratio: 5/3; }
.network-svg .node-pulse {
  transform-origin: center;
  animation: networkPulse 2.6s var(--ease) infinite;
}
@keyframes networkPulse {
  0% { transform: scale(0.5); opacity: 0.5; }
  100% { transform: scale(3.0); opacity: 0; }
}
.network-svg .node-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  fill: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.network-svg .node-label-sub {
  font-family: var(--font-sans);
  font-size: 7.5px;
  font-weight: 500;
  fill: rgba(227,6,19,0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.network-svg .arc {
  stroke: rgba(227,6,19,0.4);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 4 4;
  animation: arcShimmer 8s linear infinite;
}
@keyframes arcShimmer { to { stroke-dashoffset: -32; } }

/* Locations grid (replaces the map) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s-3);
}
.location-card {
  background: var(--kk-charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: var(--s-5);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.location-card:hover {
  background: var(--kk-graphite);
  transform: translateY(-2px);
  border-color: rgba(227,6,19,0.4);
}
.location-card--hq {
  background: linear-gradient(135deg, var(--kk-charcoal) 0%, #2A1418 100%);
  border-color: rgba(227,6,19,0.3);
}
.location-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kk-stone-400);
  margin-bottom: var(--s-3);
}
.location-card__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--kk-stone-500);
}
.location-card--hq .location-card__badge { color: var(--kk-red-light); }
.location-card--hq .location-card__badge::before {
  background: var(--accent);
  box-shadow: 0 0 8px rgba(227,6,19,0.6);
}
.location-card__city {
  color: var(--kk-white);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.location-card__country {
  font-size: var(--fs-xs);
  color: var(--kk-stone-400);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Locations strip stats */
.footprint-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  padding-top: var(--s-6);
  margin-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 720px) { .footprint-stats { grid-template-columns: repeat(2, 1fr); } }
.fp-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--kk-white);
  letter-spacing: -0.025em;
  line-height: 1;
}
.fp-stat__num .accent { color: var(--accent); }
.fp-stat__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--kk-stone-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--s-2);
  line-height: 1.4;
}

/* ============================================================
   Division cards
   ============================================================ */

.divisions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-4);
}
.division-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
.division-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--kk-stone-100);
}
.division-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease), filter 400ms var(--ease);
  filter: grayscale(20%);
}
.division-card:hover .division-card__image img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.division-card__body {
  padding: var(--s-5) var(--s-6) var(--s-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.division-card:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.division-card__icon {
  display: none;
}
.division-card__icon--header {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(14,14,18,0.78);
  backdrop-filter: blur(8px);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.division-card__icon--header svg { width: 18px; height: 18px; color: var(--kk-white); }
.division-card:hover .division-card__icon--header { background: var(--accent); }
.division-card__icon svg { width: 22px; height: 22px; color: var(--text); }
.division-card:hover .division-card__icon { background: var(--kk-red-soft); }
.division-card:hover .division-card__icon svg { color: var(--accent); }
.division-card__num {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--s-2);
}
.division-card h3 { font-size: 1.25rem; margin-bottom: var(--s-3); line-height: 1.2; }
.division-card p { font-size: var(--fs-sm); line-height: 1.55; flex: 1; margin-bottom: var(--s-4); }
.division-card__cta {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: color var(--t-fast);
}
.division-card__cta::after {
  content: '→';
  font-weight: 400;
  transition: transform var(--t-fast);
}
.division-card:hover .division-card__cta { color: var(--accent); }
.division-card:hover .division-card__cta::after { transform: translateX(4px); }

/* ============================================================
   Markets grid
   ============================================================ */

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-4);
}
.market-tile {
  position: relative;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all var(--t);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.market-tile__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--kk-stone-100);
}
.market-tile__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--ease);
}
.market-tile:hover .market-tile__image img { transform: scale(1.08); }
.market-tile__body { padding: var(--s-5) var(--s-6) var(--s-6); flex: 1; }
.market-tile:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.market-tile__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--s-4);
  padding: 3px 10px;
  background: var(--kk-red-soft);
  border-radius: var(--radius-xs);
}
.market-tile h4 { margin-bottom: var(--s-2); font-size: 1.1875rem; }
.market-tile p { font-size: var(--fs-sm); line-height: 1.55; margin: 0; }

/* ============================================================
   Values
   ============================================================ */

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
}
.value-card {
  padding: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  transition: all var(--t-fast);
}
.value-card:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.value-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: var(--kk-red-soft);
  color: var(--accent);
  border-radius: var(--radius-xs);
  font-weight: 700;
  font-size: var(--fs-sm);
  margin-bottom: var(--s-4);
}
.value-card h4 { margin-bottom: var(--s-2); color: var(--text-strong); }
.value-card p { font-size: var(--fs-sm); }

/* ============================================================
   CTA Band
   ============================================================ */

.cta-band {
  background: linear-gradient(135deg, var(--kk-charcoal) 0%, var(--kk-graphite) 50%, var(--kk-charcoal) 100%);
  color: var(--kk-white);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(227,6,19,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) { .cta-band__inner { grid-template-columns: 2fr 1fr; } }
.cta-band h2 { color: var(--kk-white); max-width: 20ch; }
.cta-band p { color: var(--kk-stone-300); max-width: 48ch; margin-top: var(--s-3); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: linear-gradient(180deg, var(--kk-graphite) 0%, var(--kk-charcoal) 50%, var(--kk-ink) 100%);
  color: var(--kk-stone-300);
  padding: var(--s-8) 0 var(--s-5);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.site-footer h4 {
  color: var(--kk-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-4);
}
.site-footer ul li { margin-bottom: var(--s-2); font-size: var(--fs-sm); }
.site-footer ul li a { color: var(--kk-stone-300); }
.site-footer ul li a:hover { color: var(--kk-white); }
.site-footer__logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: var(--s-4);
  background: var(--kk-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  width: fit-content;
}
.site-footer__brand p {
  color: var(--kk-stone-400);
  font-size: var(--fs-sm);
  max-width: 38ch;
  line-height: 1.6;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-5);
  font-size: var(--fs-xs);
  color: var(--kk-stone-500);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.site-footer__bottom a { color: var(--kk-stone-400); margin: 0 var(--s-2); }
.site-footer__bottom a:hover { color: var(--kk-white); }

/* ============================================================
   Capability grid (What We Do)
   ============================================================ */

.capability-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .capability-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .capability-grid { grid-template-columns: repeat(4, 1fr); } }

.capability {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--t);
}
.capability:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--text);
}
.capability__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.capability__body { padding: var(--s-5) var(--s-5) var(--s-6); }
.capability__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
  padding: 3px 10px;
  background: var(--kk-red-soft);
  border-radius: var(--radius-xs);
}
.capability h4 {
  font-size: 1.0625rem;
  line-height: 1.3;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.capability p { font-size: var(--fs-sm); line-height: 1.55; margin: 0; }

/* ============================================================
   Image strip (featured industries)
   ============================================================ */

.image-strip {
  background: var(--kk-ink);
  padding: 0;
}
.image-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 880px) { .image-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.image-strip__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0;
}
.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease), filter 800ms var(--ease);
  filter: grayscale(40%) brightness(0.75);
}
.image-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,14,18,0.5) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity var(--t);
}
.image-strip__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.9);
}
.image-strip__item figcaption {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  color: var(--kk-white);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  z-index: 1;
}
.image-strip__item figcaption::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
}

/* ============================================================
   Expanded footer
   ============================================================ */

.footer-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--s-7);
}
@media (min-width: 880px) {
  .footer-intro { grid-template-columns: 1.4fr 1fr; gap: var(--s-9); align-items: start; }
}
.footer-intro__brand .site-footer__logo { margin-bottom: var(--s-5); }
.footer-intro__copy {
  color: var(--kk-stone-300);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 60ch;
}
.footer-intro__newsletter h4 {
  color: var(--kk-white);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
}
.footer-intro__newsletter p {
  color: var(--kk-stone-400);
  font-size: var(--fs-sm);
  margin-bottom: var(--s-4);
  max-width: 36ch;
}
.newsletter-form {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.newsletter-form__input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--kk-white);
  font: inherit;
  font-size: var(--fs-sm);
}
.newsletter-form__input::placeholder { color: var(--kk-stone-500); }
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.newsletter-form__btn { padding: 13px 18px; }

.footer-col h4 {
  color: var(--kk-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--s-4);
}
.footer-col ul li { margin-bottom: var(--s-2); font-size: var(--fs-sm); }
.footer-col ul li a { color: var(--kk-stone-300); transition: color var(--t-fast); }
.footer-col ul li a:hover { color: var(--kk-white); }

.footer-regions {
  margin-top: var(--s-7);
  padding-top: var(--s-7);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-regions__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}
.footer-regions__head h4 {
  color: var(--kk-white);
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-transform: none;
}
.footer-regions__head span {
  font-size: var(--fs-xs);
  color: var(--kk-stone-500);
  letter-spacing: 0.04em;
}
.footer-regions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s-3);
}
.footer-region {
  padding: var(--s-4);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
}
.footer-region--hq { border-color: rgba(227,6,19,0.3); background: rgba(227,6,19,0.05); }
.footer-region__badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kk-stone-500);
  margin-bottom: var(--s-2);
}
.footer-region--hq .footer-region__badge { color: var(--kk-red-light); }
.footer-region__city {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--kk-white);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.footer-region__addr {
  font-size: 0.75rem;
  color: var(--kk-stone-400);
  line-height: 1.5;
  margin-bottom: var(--s-2);
}
.footer-region__email {
  font-size: 0.75rem;
  color: var(--kk-stone-300);
  font-weight: 500;
  word-break: break-all;
}
.footer-region__email:hover { color: var(--accent); }

/* Footer grid for link columns */
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Breadcrumbs
   ============================================================ */

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span:last-child { color: var(--text); font-weight: 600; }
.bc-sep { color: var(--kk-stone-300); }

/* ============================================================
   Division landing pages (rich)
   ============================================================ */

.divisions__grid--rich .division-card { min-height: 220px; }
.division-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.division-hero {
  padding: var(--s-6) 0 var(--s-7);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--s-8);
}
.division-hero h1 { margin-bottom: var(--s-4); }
.division-hero__stats {
  display: flex;
  gap: var(--s-5);
  margin-top: var(--s-5);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
}
.division-hero__stats span {
  padding: 6px 12px;
  background: var(--kk-stone-75);
  border-radius: 999px;
}

.families-grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .families-grid { grid-template-columns: 1fr 1fr; } }
.family-block {
  display: block;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
}
.family-block:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.family-block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--s-5);
}
.family-block__count {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: var(--s-2);
}
.family-block__head h3 { font-size: 1.5rem; }
.family-block__arrow {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: transform var(--t-fast);
}
.family-block:hover .family-block__arrow {
  color: var(--accent);
  transform: translateX(6px);
}
.family-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-2);
}
.family-preview__thumb {
  aspect-ratio: 1;
  background-color: var(--kk-stone-75);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xs);
}

/* ============================================================
   Family landing — products grid
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-4);
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.product-card__img {
  aspect-ratio: 1;
  background-color: var(--kk-stone-75);
  background-size: cover;
  background-position: center;
}
.product-card__body { padding: var(--s-5); }
.product-card__line {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-2);
}
.product-card h4 {
  font-size: 1.0625rem;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
}
.product-card__cta {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  gap: var(--s-2);
}
.product-card:hover .product-card__cta { color: var(--accent); }

/* ============================================================
   Product detail page
   ============================================================ */

.product-hero {
  padding: var(--s-7) 0 var(--s-8);
  background: linear-gradient(180deg, var(--kk-white) 0%, var(--kk-stone-25) 100%);
  border-bottom: 1px solid var(--rule);
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 880px) {
  .product-hero__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.product-hero__copy h1 {
  font-size: 2.5rem;
  margin-bottom: var(--s-4);
  letter-spacing: -0.025em;
}
.product-hero__copy .eyebrow { margin-bottom: var(--s-3); }
.product-hero__copy .lead { margin-bottom: var(--s-5); }

.product-meta {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: var(--s-4);
  margin-bottom: var(--s-5);
}
.product-meta__row {
  display: flex;
  justify-content: space-between;
  padding: var(--s-2) 0;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--rule-soft);
}
.product-meta__row:last-child { border-bottom: 0; }
.product-meta__row span { color: var(--text-muted); }
.product-meta__row strong { color: var(--text); font-weight: 600; }

.product-hero__visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--kk-white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.product-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--s-5);
}

.product-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 880px) { .product-content { grid-template-columns: 1.6fr 1fr; } }
.product-content__main h2 {
  font-size: 1.75rem;
  margin-bottom: var(--s-4);
}
.product-content__main h3 {
  font-size: 1.25rem;
  margin: var(--s-7) 0 var(--s-3);
  letter-spacing: -0.015em;
}
.product-content__main p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  max-width: 65ch;
  margin-bottom: var(--s-4);
}
.product-list {
  list-style: none;
  padding: 0;
}
.product-list li {
  position: relative;
  padding: var(--s-2) 0 var(--s-2) 28px;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--text-soft);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.product-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 2px;
  background: var(--accent);
}

/* Download card */
.dl-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
}
.dl-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--s-2);
  letter-spacing: -0.015em;
}
.dl-card p {
  font-size: var(--fs-sm);
  margin-bottom: var(--s-4);
}
.dl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--rule);
  gap: var(--s-3);
}
.dl-row__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
}
.dl-row__code {
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.dl-row__link {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-xs);
  white-space: nowrap;
  transition: all var(--t-fast);
}
.dl-row__link:hover {
  background: var(--accent);
  color: var(--kk-white);
  border-color: var(--accent);
}

.quick-card {
  background: var(--kk-stone-50);
  border-radius: var(--radius);
  padding: var(--s-5);
  border-left: 3px solid var(--accent);
}
.quick-card h4 { margin-bottom: var(--s-2); }
.quick-card p { font-size: var(--fs-sm); margin-bottom: var(--s-4); }

/* Related products grid */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3);
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--t-fast);
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: inherit;
  border-color: var(--text);
}
.related-card__img {
  aspect-ratio: 1;
  background-color: var(--kk-stone-75);
  background-size: cover;
  background-position: center;
}
.related-card__body { padding: var(--s-3); }
.related-card__line {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.related-card__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   Download Center
   ============================================================ */

.dc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  padding: var(--s-6);
  background: var(--kk-stone-50);
  border-radius: var(--radius);
}
@media (min-width: 720px) { .dc-stats { grid-template-columns: repeat(4, 1fr); } }
.dc-stat__num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.dc-stat__label {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dc-divisions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s-3);
}
.dc-division {
  display: block;
  padding: var(--s-5);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--t);
}
.dc-division:hover {
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.dc-division__num {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.dc-division__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--s-2) 0;
  letter-spacing: -0.015em;
}
.dc-division__count {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ============================================================
   Contact page
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.4fr 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: var(--s-4); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 560px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-soft);
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--t-fast);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { resize: vertical; }
.contact-form button { margin-top: var(--s-3); align-self: flex-start; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s-5);
}
.contact-card__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.contact-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.contact-card__addr {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  margin-bottom: var(--s-3);
  line-height: 1.6;
}
.contact-card__email {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
}
.contact-regions {
  display: grid;
  gap: var(--s-3);
}
.contact-region {
  padding: var(--s-3) var(--s-4);
  background: var(--kk-stone-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.contact-region__city {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
}
.contact-region a {
  font-size: var(--fs-sm);
  color: var(--accent);
  font-weight: 500;
}

/* Market tiles as links */
.market-tile--linked {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   HQ band — feature the real building photo with text overlaid
   ============================================================ */

.hq-band {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--kk-white);
  background: var(--kk-charcoal);
}
.hq-band__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hq-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hq-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(14,14,18,0.85) 0%,
    rgba(14,14,18,0.72) 40%,
    rgba(14,14,18,0.20) 80%,
    rgba(14,14,18,0.10) 100%);
  z-index: 1;
}
.hq-band > .container { position: relative; z-index: 2; padding: var(--s-8) var(--container-pad); }
.hq-band__copy {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.hq-band__copy .eyebrow { color: var(--kk-red-light); margin-bottom: 0; }
.hq-band__copy h2 {
  color: var(--kk-white);
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-2);
}
.hq-band__copy p {
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: var(--s-3);
}
.hq-band__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  margin-bottom: var(--s-4);
}
.hq-band__detail-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kk-red-light);
  margin-bottom: var(--s-2);
}
.hq-band__detail-value {
  font-size: var(--fs-sm);
  color: var(--kk-white);
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .hq-band__overlay {
    background: linear-gradient(180deg,
      rgba(14,14,18,0.45) 0%,
      rgba(14,14,18,0.88) 50%,
      rgba(14,14,18,0.92) 100%);
  }
  .hq-band__copy h2 { font-size: 1.875rem; }
  .hq-band__details { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* ============================================================
   Featured project section
   ============================================================ */

.featured-project {
  position: relative;
  background: linear-gradient(135deg, var(--kk-charcoal) 0%, var(--kk-graphite) 100%);
  color: var(--kk-white);
  overflow: hidden;
  padding: 0;
}
.featured-project h1, .featured-project h2, .featured-project h3, .featured-project h4 { color: var(--kk-white); }
.featured-project .eyebrow { color: var(--kk-red-light); }
.featured-project p { color: rgba(255,255,255,0.78); }
.featured-project__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 540px;
}
@media (min-width: 880px) { .featured-project__grid { grid-template-columns: 1fr 1fr; } }
.featured-project__image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.featured-project__image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 12s ease-in-out;
}
.featured-project:hover .featured-project__image img { transform: scale(1.08); }
.featured-project__copy {
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.featured-project__copy::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 500px; height: 500px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(227,6,19,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.featured-project__copy h2 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-5);
  max-width: 18ch;
}
.featured-project__copy p {
  color: rgba(255,255,255,0.78);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: var(--s-5);
}
.featured-project__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--s-3);
}
.featured-project__stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--kk-white);
  letter-spacing: -0.025em;
  line-height: 1;
}
.featured-project__stat-num .accent { color: var(--kk-red-light); }
.featured-project__stat-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--s-2);
}

/* ============================================================
   Mobile
   ============================================================ */

@media (max-width: 880px) {
  .site-nav { display: none; }
  .hero { min-height: 70vh; }
  .hero__bg-overlay {
    background:
      linear-gradient(180deg, rgba(14,14,18,0.85) 0%, rgba(14,14,18,0.8) 100%),
      radial-gradient(circle at 50% 50%, rgba(227,6,19,0.2) 0%, transparent 60%);
  }
  .featured-project__copy { padding: var(--s-7) var(--s-5); }
  .featured-project__copy h2 { font-size: 1.875rem; }
}
@media (max-width: 560px) {
  :root { --container-pad: 20px; }
  .featured-project__stats { grid-template-columns: 1fr; }
}
