/* ============================================================
   CKM Workforce Solutions & Strategic Advisory
   Premium Executive Design System
   Navy · White · Gold
   ============================================================ */

:root {
  /* Brand palette */
  --navy-900: #081A33;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1B3F73;
  --navy-100: #E8EDF5;
  --navy-050: #F4F7FB;
  --gold-600: #A67C1B;
  --gold-500: #C9A227;
  --gold-300: #E3C766;
  --gold-100: #F7EFD8;
  --white: #FFFFFF;
  --ink: #1A2433;
  --grey-600: #5A6678;
  --grey-300: #C4CCD8;
  --grey-100: #EEF1F6;

  /* Typography */
  --font-display: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2.5rem;
  --s-5: 4rem;
  --s-6: 6.5rem;

  /* Radii & shadows */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 8px 30px rgba(8, 26, 51, 0.08);
  --shadow-lift: 0 18px 50px rgba(8, 26, 51, 0.14);
  --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.25);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--navy-800); letter-spacing: -0.015em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.75rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; color: var(--navy-800); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-600);
  margin-bottom: var(--s-2);
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--gold-500); }

.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--grey-600); max-width: 46ch; }
.section-intro { max-width: 62ch; color: var(--grey-600); margin-top: var(--s-2); }

/* On-dark variants */
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark p, .on-dark .lede, .on-dark .section-intro { color: rgba(255,255,255,0.78); }
.on-dark .eyebrow { color: var(--gold-300); }
.on-dark .eyebrow::before { background: var(--gold-300); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
section { padding: var(--s-6) 0; }
section.tight { padding: var(--s-5) 0; }
.bg-soft { background: var(--navy-050); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%); }

.grid { display: grid; gap: var(--s-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 1.4rem 0;
}
.site-header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); box-shadow: var(--shadow-soft); padding: 0.75rem 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.logo-badge {
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(8,26,51,0.18);
  transition: height 0.3s var(--ease);
}
.logo-badge img { height: 40px; width: auto; display: block; transition: height 0.3s var(--ease); }
.site-header.scrolled .logo-badge img { height: 34px; }
.footer-logo .logo-badge { display: inline-flex; }
.footer-logo .logo-badge img { height: 48px; }
.brand-mark { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--navy-800); letter-spacing: 0.02em; }
.brand-mark span { color: var(--gold-500); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-600); font-weight: 600; }

.header-dark .brand-mark { color: var(--white); }
.header-dark .brand-sub { color: rgba(255,255,255,0.65); }
.site-header.scrolled .brand-mark { color: var(--navy-800); }
.site-header.scrolled .brand-sub { color: var(--grey-600); }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--navy-800); position: relative; padding: 0.3rem 0; }
.header-dark .nav-links a { color: rgba(255,255,255,0.88); }
.site-header.scrolled .nav-links a { color: var(--navy-800); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-500); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { white-space: nowrap; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; z-index: 110; }
.nav-toggle span {
  display: block; width: 26px; height: 2px; margin: 6px auto; border-radius: 2px;
  background: var(--navy-800); transition: transform 0.35s var(--ease), opacity 0.25s;
}
.header-dark .nav-toggle span { background: var(--white); }
.site-header.scrolled .nav-toggle span { background: var(--navy-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.9rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  border: 1.5px solid transparent;
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-gold { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-300); transform: translateY(-2px); }

.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-lift); }

.btn-outline { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }

.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }

.text-link { font-weight: 600; color: var(--navy-700); display: inline-flex; align-items: center; gap: 0.4rem; border-bottom: 1.5px solid var(--gold-500); padding-bottom: 2px; transition: gap 0.3s var(--ease); }
.text-link:hover { gap: 0.7rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(201,162,39,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 10% 90%, rgba(27,63,115,0.5) 0%, transparent 60%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  position: relative; overflow: hidden;
  padding: 9rem 0 6rem;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--white); max-width: 17ch; }
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero .lede { color: rgba(255,255,255,0.75); margin: var(--s-3) 0 var(--s-4); }
.hero-ctas { display: flex; gap: var(--s-2); flex-wrap: wrap; }

.hero-stats { display: flex; gap: clamp(1.5rem, 5vw, 4rem); margin-top: var(--s-5); flex-wrap: wrap; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3rem); color: var(--gold-300); font-weight: 700; line-height: 1; }
.stat .label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }

/* Page hero (interior pages) */
.page-hero {
  padding: 11rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(201,162,39,0.12) 0%, transparent 50%),
    linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 100%);
}
.page-hero h1 { color: var(--white); max-width: 20ch; }
.page-hero .lede { color: rgba(255,255,255,0.75); margin-top: var(--s-3); }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: var(--s-3); letter-spacing: 0.05em; }
.breadcrumb a:hover { color: var(--gold-300); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border-radius: var(--radius-md);
  padding: var(--s-4); box-shadow: var(--shadow-soft);
  border: 1px solid rgba(8,26,51,0.05);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card h3 { margin: var(--s-2) 0 var(--s-1); }
.card p { color: var(--grey-600); font-size: 0.98rem; }

.card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(140deg, var(--gold-100), var(--gold-300));
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-800);
}
.card-icon svg { width: 26px; height: 26px; }

.card-dark { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); border: 1px solid rgba(255,255,255,0.08); }
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.72); }

.card-number { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-500); font-weight: 700; line-height: 1; }

/* Service cards */
.service-card { display: flex; flex-direction: column; }
.service-card .tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-600); margin-bottom: var(--s-1); }
.service-card ul { margin: var(--s-2) 0; }
.service-card li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; color: var(--grey-600); font-size: 0.95rem; }
.service-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold-500); font-weight: 700; }
.service-card .text-link { margin-top: auto; align-self: flex-start; }

/* ---------- Journey strip ---------- */
.journey { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.journey-step { text-align: center; flex: 1; min-width: 96px; }
.journey-step .dot {
  width: 46px; height: 46px; margin: 0 auto 0.7rem; border-radius: 50%;
  border: 1.5px solid var(--gold-500); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
}
.journey-step .label { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.journey-arrow { color: var(--gold-500); font-size: 1.2rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 2.4rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1.5px; background: linear-gradient(var(--gold-500), var(--navy-100)); }
.timeline-item { position: relative; padding-bottom: var(--s-4); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.4rem; top: 6px; width: 17px; height: 17px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--gold-500);
}
.timeline-item .year { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-600); }
.timeline-item h4 { margin: 0.3rem 0; }
.timeline-item p { color: var(--grey-600); font-size: 0.98rem; max-width: 60ch; }

/* ---------- FAQ accordion ---------- */
.faq-row { border-bottom: 1px solid var(--grey-100); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 1.4rem 3rem 1.4rem 0; position: relative;
  font-size: 1.05rem; font-weight: 600; color: var(--navy-800);
}
.faq-q::after {
  content: "+"; position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold-500); font-weight: 400; transition: transform 0.3s var(--ease);
}
.faq-row.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 0 1.4rem; color: var(--grey-600); max-width: 70ch; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-800); letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit; font-size: 0.98rem; color: var(--ink);
  padding: 0.85rem 1.1rem; border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm); background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.form-note { font-size: 0.82rem; color: var(--grey-600); }
.form-success { display: none; padding: var(--s-3); border-radius: var(--radius-sm); background: var(--gold-100); color: var(--navy-800); font-weight: 500; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 60% 100% at 90% 50%, rgba(201,162,39,0.18) 0%, transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.72); margin-top: 0.6rem; max-width: 50ch; }

/* ---------- Case studies ---------- */
.case-card { overflow: hidden; }
.case-meta { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: var(--s-2); }
.chip {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  background: var(--navy-050); color: var(--navy-700); border: 1px solid var(--navy-100);
}
.chip-gold { background: var(--gold-100); color: var(--gold-600); border-color: var(--gold-300); }
.case-block { margin-top: var(--s-2); }
.case-block .k { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-600); }
.case-block p { margin-top: 0.3rem; }
.case-result { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-800); font-weight: 700; }

/* ---------- Insights ---------- */
.insight-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.insight-visual { height: 180px; position: relative; background: linear-gradient(140deg, var(--navy-800), var(--navy-600)); display:flex; align-items:flex-end; padding: 1.2rem; }
.insight-visual.v2 { background: linear-gradient(140deg, var(--navy-700), var(--gold-600)); }
.insight-visual.v3 { background: linear-gradient(140deg, var(--gold-500), var(--navy-700)); }
.insight-visual .chip { background: rgba(255,255,255,0.14); color: var(--white); border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.insight-body { padding: var(--s-3); display: flex; flex-direction: column; flex: 1; }
.insight-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.insight-body .meta { font-size: 0.8rem; color: var(--grey-600); margin-top: auto; padding-top: var(--s-2); }

/* ---------- Resource cards ---------- */
.resource-card { display: flex; gap: var(--s-3); align-items: flex-start; }
.resource-icon {
  flex-shrink: 0; width: 60px; height: 76px; border-radius: 8px;
  background: linear-gradient(150deg, var(--navy-800), var(--navy-600));
  position: relative; display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
}
.resource-icon::after { content: ""; position: absolute; top: 0; right: 0; border: 9px solid; border-color: var(--gold-500) var(--white) transparent var(--gold-300); border-radius: 0 0 0 6px; }

/* ---------- Industry tiles ---------- */
.industry-tile {
  border-radius: var(--radius-md); padding: var(--s-4);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.industry-tile::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,162,39,0.22), transparent 70%);
}
.industry-tile:hover { transform: translateY(-6px); border-color: var(--gold-500); }
.industry-tile h3 { color: var(--white); margin: var(--s-2) 0 var(--s-1); }
.industry-tile p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.industry-tile .num { font-family: var(--font-display); color: var(--gold-300); font-size: 1rem; letter-spacing: 0.1em; }

/* ---------- Values ---------- */
.value-row { display: grid; grid-template-columns: 220px 1fr; gap: var(--s-3); padding: var(--s-3) 0; border-bottom: 1px solid var(--grey-100); align-items: start; }
.value-row h3 { color: var(--gold-600); font-style: italic; }
.value-row p { color: var(--grey-600); max-width: 65ch; }

/* ---------- Assessment steps ---------- */
.step-row { display: grid; grid-template-columns: 90px 1fr; gap: var(--s-3); padding: var(--s-3) 0; border-bottom: 1px solid var(--grey-100); }
.step-row:last-child { border-bottom: 0; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%;
  border: 1.5px solid var(--gold-500); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
}
.step-row p { color: var(--grey-600); max-width: 62ch; }

/* ---------- Trust bar ---------- */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap; opacity: 0.85; }
.trust-item { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-600); display: flex; align-items: center; gap: 0.6rem; }
.trust-item::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding: var(--s-6) 0 var(--s-3); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s-4); padding-bottom: var(--s-4); border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: var(--s-2); }
.site-footer li { padding: 0.28rem 0; }
.site-footer a:hover { color: var(--gold-300); }
.footer-brand .brand-mark { color: var(--white); font-size: 1.9rem; }
.footer-brand p { margin-top: var(--s-2); max-width: 34ch; font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--s-2); padding-top: var(--s-3); font-size: 0.82rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; }

/* ---------- Reading progress & back-to-top ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  z-index: 200; transition: width 0.1s linear;
}
.back-to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: var(--navy-800); color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s, background 0.3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--navy-600); }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--gold-500); color: var(--navy-900);
  padding: 0.8rem 1.4rem; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2.5px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Hero credential chips ---------- */
.stat .num-text { font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--gold-300); font-weight: 700; line-height: 1.3; padding-top: 0.35rem; }

/* ---------- Compact cards (home Why CKM / Industries) ---------- */
.mini-card { padding: var(--s-3); }
.mini-card h4 { margin: 0.9rem 0 0.4rem; }
.mini-card p { font-size: 0.92rem; }
.mini-card .card-icon { width: 46px; height: 46px; border-radius: 12px; }
.mini-card .card-icon svg { width: 22px; height: 22px; }

/* ---------- Leadership ---------- */
.leader-card { display: grid; grid-template-columns: 220px 1fr; gap: var(--s-4); align-items: start; }
.leader-portrait {
  width: 220px; aspect-ratio: 4/5; border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.leader-portrait::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 15%, rgba(201,162,39,0.28), transparent 55%); }
.leader-portrait span { font-family: var(--font-display); font-size: 3.2rem; color: var(--gold-300); font-weight: 700; z-index: 1; }
.leader-role { color: var(--gold-600); font-weight: 600; font-size: 0.95rem; margin-bottom: 1rem; }
.leader-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.2rem; }
@media (max-width: 720px) { .leader-card { grid-template-columns: 1fr; } .leader-portrait { width: 100%; max-width: 260px; } }

/* ---------- Footer legal row ---------- */
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.55); }
.footer-legal a:hover { color: var(--gold-300); }

/* ---------- Reveal animations ----------
   Hidden/visible states are owned by the yewho motion engine (motion.css:
   `.js .reveal` → `.reveal.in`), which is gated on `html.js` so no-JS users
   always see content. Only the per-item stagger delays remain here. */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: var(--s-4); }
  .journey-arrow { display: none; }
  .journey { justify-content: flex-start; }
  .journey-step { flex: 0 0 30%; margin-bottom: var(--s-2); }
}

@media (max-width: 720px) {
  section { padding: var(--s-5) 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .step-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 8rem 0 4.5rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0; background: var(--navy-900);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    z-index: 105;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--white) !important; font-size: 1.3rem; font-family: var(--font-display); }
  .nav-cta { margin-top: 1rem; }
}
