/*
 * INNOVATE CAPITAL PARTNERS — Mockup Stylesheet
 * Niche: Boutique UK fundraising advisory connecting early-stage founders with verified HNWI/family office investors (compliance-led, £1-10m rounds, EIS/SEIS)
 * Character: Editorial institutional trust. Dark navy primary, warm gold accent, cream light sections. Serif display headlines set against generous whitespace and photojournalistic London imagery.
 *
 * Synthesised from 3 references:
 *   - Typography (serif H + sans B) from: Balderton (editorial weight) + Founders Capital (clarity)
 *   - Radius approach from: Founders Capital + Antler (sharp, 4-8px)
 *   - Hero variant (split, asymmetric) from: Antler composition + Founders Capital confidence
 *   - Section padding (generous 100-120px) from: Balderton + Founders Capital
 *   - Distinctive move borrowed: Antler's italicised-word emphasis ("Further—Faster") adapted as elegant serif italics on key phrases
 */

/* ============ TOKENS ============ */
:root {
  /* Brand palette — chosen for a white-on-dark logo + UK finance tradition */
  --ink:          #0B1528;   /* deep navy — primary surface on dark sections */
  --ink-2:        #0F1B36;   /* navy tint — panels inside dark sections */
  --ink-3:        #162745;   /* hover / border on dark */
  --gold:         #C9A961;   /* warm brass — wealth-management accent */
  --gold-2:       #B18D43;   /* deeper gold for hovers */
  --gold-soft:    rgba(201, 169, 97, 0.14);
  --cream:        #F5F1E8;   /* editorial warm off-white for alternate sections */
  --paper:        #FBFAF7;   /* primary light section */
  --text:         #0B1528;   /* primary body text on light */
  --text-muted:   #524E47;   /* secondary text on light */
  --text-light:   rgba(255,255,255, 0.98);
  --text-light-2: rgba(255,255,255, 0.78);
  --text-light-3: rgba(255,255,255, 0.55);
  --line:         rgba(11,21,40, 0.12);
  --line-dark:    rgba(255,255,255, 0.14);

  /* Radius */
  --r-sm: 2px;
  --r:    4px;
  --r-md: 6px;
  --r-lg: 8px;

  /* Spacing */
  --section-pad-y: clamp(72px, 10vh, 128px);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --max:   1240px;
  --max-narrow: 960px;

  /* Type */
  --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { color-scheme: light; scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.015em; margin: 0; text-wrap: balance; line-height: 1.08; }
p  { margin: 0; text-wrap: pretty; }
a  { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 21, 40, 0.7);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(11, 21, 40, 0.96);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.55);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo img { height: 68px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text-light-2);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
  padding: 0.35rem 0;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--text-light); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: var(--r);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: none;
}
.nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 2px solid var(--text-light); outline-offset: 3px; }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 0.5rem 0.65rem;
  color: var(--text-light);
}
.mobile-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-light);
  margin: 4px 0;
}

/* ============ HERO LOAD ANIMATION (CSS — runs independent of JS) ============ */
@keyframes icp-fade-up {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes icp-fade-scale {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
.hero .hero-eyebrow { animation: icp-fade-up 0.7s 0.10s ease-out both; }
.hero h1            { animation: icp-fade-up 0.9s 0.28s ease-out both; }
.hero .hero-lede    { animation: icp-fade-up 0.7s 0.58s ease-out both; }
.hero .hero-ctas    { animation: icp-fade-up 0.6s 0.78s ease-out both; }
.hero .hero-image   { animation: icp-fade-scale 1.1s 0.35s ease-out both; }
.hero .hero-badge   { animation: icp-fade-up 0.7s 1.00s ease-out both; }

@media (prefers-reduced-motion: reduce) {
  .hero .hero-eyebrow,
  .hero h1,
  .hero .hero-lede,
  .hero .hero-ctas,
  .hero .hero-image,
  .hero .hero-badge { animation: none; }
}

/* ============ HERO — SPLIT ASYMMETRIC ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  overflow: hidden;
  padding: calc(var(--section-pad-y) + 60px) 0 var(--section-pad-y);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(201, 169, 97, 0.12), transparent 60%),
    radial-gradient(ellipse at 20% 120%, rgba(22, 39, 69, 0.8), transparent 50%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
}
.hero-lede {
  font-size: 1.18rem;
  color: var(--text-light-2);
  line-height: 1.55;
  margin-bottom: 2.2rem;
  max-width: 34rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--r);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: var(--gold); }
.btn-dark {
  background: var(--ink);
  color: var(--text-light);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-light-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-light-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: gap 0.2s, color 0.2s;
  padding: 0.3rem 0;
}
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover { gap: 0.6rem; color: var(--gold-2); }

.hero-figure {
  position: relative;
}
.hero-image {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.55);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 21, 40, 0.55) 100%);
}
.hero-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  color: var(--ink);
  padding: 1.1rem 1.3rem;
  border-radius: var(--r);
  max-width: 280px;
  font-size: 0.82rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.45);
}
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.25rem; letter-spacing: 0; }

/* Smaller hero for inner pages */
.hero.is-compact {
  padding: calc(var(--section-pad-y) + 60px) 0 calc(var(--section-pad-y) * 0.6);
}
.hero.is-compact .hero-grid {
  grid-template-columns: 1fr;
  max-width: 960px;
  text-align: center;
}
.hero.is-compact .hero-eyebrow { justify-content: center; }
.hero.is-compact h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.hero.is-compact .hero-lede { margin-left: auto; margin-right: auto; }

/* Inner hero with photo above and tagline below */
.hero.is-inner {
  padding: calc(var(--section-pad-y) + 60px) 0 0;
  background: var(--ink);
}
.hero.is-inner .hero-grid {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: var(--max-narrow);
  padding-bottom: var(--section-pad-y);
}

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--cream);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap; }
.trust-strip-inner .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* ============ SECTION BASE ============ */
.section {
  padding: var(--section-pad-y) 0;
  position: relative;
}
.section-dark  { background: var(--ink); color: var(--text-light); }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }

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

.section-eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
  font-weight: 500;
}
.section-dark .section-eyebrow { color: var(--gold); }
.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.06;
  margin-bottom: 1.25rem;
  max-width: 28ch;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-lede {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 3rem;
}
.section-dark .section-lede { color: var(--text-light-2); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header-stack { grid-column: 1 / -1; max-width: 72ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ============ DUAL TRACK CARDS (HOME) ============ */
.dual-track {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.track-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem 2.25rem;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.track-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 25px 50px -25px rgba(11, 21, 40, 0.22); }
.track-card .track-num {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
  display: block;
}
.track-card h3 {
  font-size: 1.85rem;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}
.track-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.track-card ul {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
}
.track-card ul li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.track-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ============ THREE PILLARS ============ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.section-dark .pillar {
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.pillar:last-child { border-right: none; }
.pillar {
  padding: 2.5rem 2rem 2.75rem;
  position: relative;
}
.pillar .pillar-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.pillar h3 {
  font-size: 1.45rem;
  line-height: 1.22;
  margin-bottom: 0.85rem;
  max-width: 22ch;
}
.pillar p {
  color: var(--text-light-2);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 32ch;
}

/* ============ STEPS (HOW WE WORK, JOURNEY) ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.section-dark .step { border-color: var(--line-dark); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step h3 {
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
  line-height: 1.2;
  font-family: var(--font-display);
  font-weight: 400;
}
.step p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60ch;
}
.section-dark .step p { color: var(--text-light-2); }

/* ============ FEATURE GRID (DIFFERENTIATORS) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.section-dark .feature-grid { border-color: var(--line-dark); }
.feature-item {
  padding: 2.2rem 1.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.section-dark .feature-item { border-color: var(--line-dark); }
.feature-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.feature-item h4 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 0.65rem;
  max-width: 22ch;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.section-dark .feature-item p { color: var(--text-light-2); }

/* ============ SECTORS / CHIPS ============ */
.sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.sector-chip {
  padding: 0.65rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.02em;
  background: var(--paper);
}
.section-dark .sector-chip { border-color: var(--line-dark); color: var(--text-light); background: transparent; }

/* ============ SPLIT SECTION (IMAGE + TEXT) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: 0 35px 70px -30px rgba(11, 21, 40, 0.28);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }

.split.is-reverse .split-content { order: -1; }
.split .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: var(--gold-soft);
  color: var(--gold-2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

/* ============ QUOTE BLOCK ============ */
.quote-block {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}
.quote-block p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.8rem;
}
.quote-cite {
  font-size: 0.85rem;
  color: var(--text-light-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ COMPLIANCE PANEL ============ */
.compliance-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 2.25rem 2.25rem;
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem;
  align-items: start;
}
.compliance-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.compliance-panel p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.compliance-panel p:last-child { margin-bottom: 0; }
.compliance-panel strong { color: var(--text); font-weight: 600; }

/* ============ COMPLIANCE NOTES ON DARK ============ */
.compliance-note {
  border-left: 2px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  color: var(--text-light-3);
  font-size: 0.82rem;
  line-height: 1.55;
  max-width: 64ch;
  margin-top: 2rem;
}

/* ============ CTA BLOCK ============ */
.cta-block {
  background: var(--ink);
  color: var(--text-light);
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 97, 0.14), transparent 60%),
    radial-gradient(ellipse at 10% 110%, rgba(22, 39, 69, 0.9), transparent 50%);
  z-index: 0;
}
.cta-block .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
}
.cta-block h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
  color: var(--text-light);
}
.cta-block h2 em { font-style: italic; color: var(--gold); }
.cta-block p {
  color: var(--text-light-2);
  font-size: 1.1rem;
  margin-bottom: 2.25rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-block .hero-ctas { justify-content: center; }

/* ============ CONTACT FORM ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-meta h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.1rem; }
.contact-meta p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.4rem; }
.contact-meta a { color: var(--gold-2); border-bottom: 1px solid var(--gold-soft); }
.contact-meta a:hover { border-color: var(--gold-2); }
.contact-meta dl { margin: 2rem 0 0; }
.contact-meta dt { font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); margin-top: 1.3rem; }
.contact-meta dd { margin: 0.4rem 0 0; color: var(--text); font-size: 1rem; line-height: 1.5; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 0.98rem;
  border: 1px solid var(--line);
  background: white;
  padding: 0.85rem 0.95rem;
  border-radius: var(--r);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.form-check input { margin-top: 3px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--text-light-2);
  padding: 5rem 0 2.25rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 78px; margin-bottom: 1.3rem; }
.footer-brand p { font-size: 0.92rem; color: var(--text-light-3); line-height: 1.55; max-width: 26rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a {
  color: var(--text-light-2);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light-3);
  letter-spacing: 0.04em;
}
.footer-bottom p { max-width: 720px; line-height: 1.5; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-figure { order: -1; }
  .hero-image { aspect-ratio: 4 / 3; max-height: 380px; }
  .hero-badge { position: static; margin-top: 1.5rem; max-width: 100%; }

  .section-header { grid-template-columns: 1fr; }
  .dual-track { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .section-dark .pillar { border-right: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }

  .split { grid-template-columns: 1fr; }
  .split.is-reverse .split-content { order: 0; }

  .compliance-panel { grid-template-columns: 1fr; gap: 1rem; }
  .compliance-panel .compliance-label { font-size: 0.82rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step-num { font-size: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { flex: 1 1 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 0.8rem; font-size: 0.78rem; }
  .trust-strip-inner .dot { display: none; }
}

/* ============ SMALL MOBILE NAV ============ */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--text-light);
  padding: 2rem var(--gutter);
  flex-direction: column;
}
#mobile-nav.is-open { display: flex; }
#mobile-nav .mobile-nav-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 3rem;
}
#mobile-nav .mobile-nav-close {
  background: none; border: 1px solid var(--line-dark); color: var(--text-light);
  width: 38px; height: 38px; border-radius: var(--r);
  font-size: 1.2rem;
}
#mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.2rem; }
#mobile-nav a { color: var(--text-light); font-family: var(--font-display); font-size: 1.8rem; letter-spacing: -0.01em; }
#mobile-nav .nav-cta { margin-top: 2rem; display: inline-flex; align-self: flex-start; }
