/* ============================================
   NexXt Level Hypotheken — Stylesheet
   Corporate financial — navy + orange + white
   ============================================ */

:root {
  /* Brand */
  --navy: #1e3a8a;
  --navy-deep: #1e3160;
  --navy-light: #2c4ba8;
  --navy-tint: #e0e7ff;
  --navy-bg: #f0f4ff;

  --orange: #f59e0b;
  --orange-deep: #d97706;
  --orange-light: #fef3c7;
  --orange-soft: #fffbeb;

  --paper: #ffffff;
  --paper-2: #f8fafc;
  --paper-3: #f1f5f9;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;

  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-muted: #475569;
  --muted: #64748b;

  --green-check: #10b981;

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 4px 18px rgba(15, 23, 42, 0.05);
  --shadow-card: 0 8px 30px rgba(15, 23, 42, 0.08);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(38px, 5.5vw, 60px); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 600; }

.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--paper); }

.accent { color: var(--orange-deep); }
.dark .accent { color: var(--orange); }

p { line-height: 1.65; max-width: 65ch; color: var(--ink-soft); }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: var(--ink-soft); }
.dark p, .dark .lead { color: rgba(255,255,255,0.8); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--orange); }

/* ---------- Top bar (slim info strip) ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar a { color: inherit; transition: color .2s var(--ease); }
.topbar a:hover { color: var(--orange); }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 14px; height: 14px; }

/* ---------- Navigation ---------- */
.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-logo .x-orange { color: var(--orange-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.is-active { color: var(--navy); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}
.btn-orange:hover { background: var(--orange-deep); color: var(--paper); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35); }
.btn-navy {
  background: var(--navy);
  color: var(--paper);
}
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: var(--paper); color: var(--navy); border-color: var(--paper); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  color: var(--orange);
  background: rgba(245,158,11,0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245,158,11,0.25);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--paper);
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  color: rgba(255,255,255,0.85);
  max-width: 60ch;
  margin-bottom: 36px;
  font-size: clamp(17px, 1.5vw, 20px);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(70px, 9vw, 110px) 0;
}
.section.tint { background: var(--paper-2); }
.section.tint-blue { background: var(--navy-bg); }
.section.dark {
  background: var(--navy-deep);
  color: var(--paper);
}
.section.dark p { color: rgba(255,255,255,0.78); }

.section-header {
  max-width: 740px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { margin-bottom: 14px; }

/* ---------- Numbered approach cards (3 cards, big numbers) ---------- */
.numbered-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.num-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.num-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy-light);
  box-shadow: var(--shadow-card);
}
.num-card .num {
  font-size: 44px;
  font-weight: 300;
  color: var(--navy-light);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  display: block;
  font-feature-settings: "tnum";
}
.num-card h3 {
  color: var(--orange-deep);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.num-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Project types grid (variety section) ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.project-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-tile:hover { border-color: var(--orange); transform: translateY(-2px); }
.project-tile .tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.project-tile .tile-icon svg { width: 20px; height: 20px; }
.project-tile h4 {
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
}
.project-tile p {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Article / methodology card row ---------- */
.article-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.article-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-card); }
.article-card .top-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}
.article-card .top-band::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245,158,11,0.18), transparent 60%);
}
.article-card .badge {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  position: relative;
}
.article-card .top-band h3 {
  color: var(--paper);
  font-size: 22px;
  position: relative;
  margin-bottom: 4px;
}
.article-card .top-band .subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  position: relative;
}
.article-card .body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card .body p {
  font-size: 15px;
  margin-bottom: 18px;
}
.article-card .read-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: gap .2s var(--ease);
}
.article-card .read-link:hover { gap: 14px; }

/* ---------- Step accordion (numbered phases) ---------- */
.steps {
  display: grid;
  gap: 14px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.step:hover { border-color: var(--navy-light); }
.step-head {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.step-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--navy-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--ease), background .2s var(--ease);
  flex-shrink: 0;
}
.step.is-open .step-toggle { transform: rotate(45deg); background: var(--orange); color: var(--ink); }
.step-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.step.is-open .step-body { max-height: 800px; }
.step-body-inner {
  padding: 0 28px 26px 88px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.step-body-inner p { font-size: 15px; margin-bottom: 14px; }
.step-body-inner ul {
  margin-top: 8px;
}
.step-body-inner ul li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.step-body-inner ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}
.step-body-inner strong { color: var(--ink); font-weight: 600; }

/* ---------- Info card (AFM/POG style — 2-col with logo + text) ---------- */
.info-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.info-card-visual {
  background: var(--navy-bg);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 200px;
}
.info-card-visual .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--navy-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.info-card-visual .icon-wrap svg { width: 32px; height: 32px; }
.info-card-visual .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.info-card-content h3 { margin-bottom: 14px; }
.info-card-content p { margin-bottom: 14px; font-size: 15.5px; }

/* ---------- Initiative spotlight (NexXt Wonen) ---------- */
.spotlight {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  box-shadow: var(--shadow-card);
}
.spotlight-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-content .badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}
.spotlight-content h2 { margin-bottom: 14px; font-size: clamp(28px, 3.5vw, 38px); }
.spotlight-content p { margin-bottom: 20px; font-size: 16px; }
.spotlight-targets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 8px 0 24px;
}
.spotlight-target {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13.5px;
  background: var(--paper-2);
}
.spotlight-target strong { display: block; color: var(--navy); margin-bottom: 2px; font-size: 14px; }
.spotlight-target span { color: var(--ink-soft); }
.spotlight-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.spotlight-visual {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  min-height: 380px;
}

/* ---------- Quote / founder ---------- */
.quote-block {
  background: var(--navy-deep);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -40px;
  right: 30px;
  font-size: 240px;
  color: var(--orange);
  opacity: 0.18;
  line-height: 1;
  font-family: Georgia, serif;
}
.quote-block .quote-text {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  max-width: 50ch;
}
.quote-block .quote-author {
  font-weight: 700;
  font-size: 16px;
  position: relative;
}
.quote-block .quote-role {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  position: relative;
}

/* ---------- Stats strip (dark) ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-top: 50px;
}
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ---------- CTA section ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: clamp(60px, 7vw, 90px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.15), transparent 60%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta h2 { color: var(--paper); }
.cta h2 .accent { color: var(--orange); }
.cta-info {
  display: grid;
  gap: 20px;
}
.cta-info .row { border-top: 1px solid rgba(255,255,255,0.18); padding-top: 14px; }
.cta-info .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.cta-info .value { font-size: 17px; font-weight: 600; color: var(--paper); }
.cta-info a.value:hover { color: var(--orange); }

/* ---------- Footer ---------- */
.foot {
  background: var(--navy-deep);
  color: var(--paper);
  padding: 56px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-brand-block .foot-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  display: inline-block;
}
.foot-brand-block .foot-logo .x-orange { color: var(--orange); }
.foot-brand-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  max-width: 32ch;
}
.foot-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  transition: color .2s var(--ease);
}
.foot-col a:hover { color: var(--orange); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Page header (subpages) ---------- */
.page-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12), transparent 60%);
  pointer-events: none;
}
.page-head .crumbs {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  position: relative;
}
.page-head .crumbs a:hover { color: var(--orange); }
.page-head h1 {
  color: var(--paper);
  margin-bottom: 16px;
  position: relative;
  max-width: 16ch;
}
.page-head h1 .accent { color: var(--orange); }
.page-head .lead {
  color: rgba(255,255,255,0.85);
  max-width: 65ch;
  position: relative;
}

/* ---------- Two-column block (text + sidebar) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}
.two-col .left h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 14px; }
.two-col .left .num-prefix {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-deep);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.two-col .right p { margin-bottom: 16px; font-size: 16px; }

/* ---------- Bullets ---------- */
.tick-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.tick-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.tick-list li:last-child { border-bottom: none; }
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background-color: var(--green-check);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='black'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='black'/></svg>") no-repeat center / contain;
}
.tick-list li strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ---------- About / values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  border-top: 3px solid var(--orange);
  padding: 26px 26px;
  background: var(--paper);
  border-radius: 0 0 var(--radius) var(--radius);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.value-card .vnum {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: grid; gap: 24px; }
.contact-info-list .row { border-top: 1px solid var(--line); padding-top: 14px; }
.contact-info-list .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-info-list .value { font-size: 17px; font-weight: 600; color: var(--ink); }
.contact-info-list a.value:hover { color: var(--orange-deep); }

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 22px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--paper);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-submit {
  background: var(--orange);
  color: var(--ink);
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form-submit:hover { background: var(--orange-deep); color: var(--paper); transform: translateY(-1px); }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

.map-wrap {
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- About grid ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-grid .info-list {
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.about-grid .info-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  gap: 14px;
}
.about-grid .info-list .lbl {
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.no-js .reveal,
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .numbered-cards { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .article-row { grid-template-columns: 1fr; }
  .info-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .info-card-visual { padding: 32px; min-height: 160px; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-visual { min-height: 280px; }
  .spotlight-content { padding: 36px 28px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid .info-list li { grid-template-columns: 130px 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .topbar-left { width: 100%; justify-content: flex-start; gap: 16px; }
  .topbar-right { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 22px var(--gutter);
    gap: 14px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    box-shadow: var(--shadow-card);
  }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  :root { --gutter: 18px; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .stat-item:last-child { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .spotlight-targets { grid-template-columns: 1fr; }
  .step-head { grid-template-columns: 50px 1fr auto; gap: 14px; padding: 18px 22px; }
  .step-num { width: 36px; height: 36px; font-size: 15px; }
  .step-title { font-size: 16px; }
  .step-body-inner { padding: 18px 22px 22px 70px; }
  .contact-form-card { padding: 26px 22px; }
  .quote-block::before { font-size: 160px; right: 14px; top: -20px; }

  .section-header { margin-bottom: 32px; }
  .section { padding: 56px 0; }

  .cta { padding: 56px 0; }

  .about-grid .info-list li { grid-template-columns: 1fr; gap: 4px; }
  .about-grid .info-list .lbl { margin-bottom: 0; }
}
