/* ============================================================
   Ardura Capital — firm site
   Institutional M&A "quiet luxury": navy canvas, gold hairlines,
   Fraunces serif display + General Sans body. Restrained, confident.
   ============================================================ */

:root {
  --navy:    #0d1b2a;
  --navy2:   #162032;
  --navy3:   #1d2a3d;
  --gold:    #b8974a;
  --gold-l:  #d4af6a;
  --white:   #ffffff;
  --off:     #f5f6f8;
  --gray:    #6b7280;
  --light:   #e5e7eb;
  --line:    rgba(184,151,74,0.22);
  --ink:     #e8ebf0;
  --ink-dim: rgba(232,235,240,0.62);
  --ink-faint: rgba(232,235,240,0.40);

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans:  'General Sans', 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--navy);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  /* engraved fine grid + soft gold/blue light wash */
  background-image:
    radial-gradient(ellipse 70% 90% at 82% -5%, rgba(184,151,74,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 5% 100%, rgba(40,84,140,0.16) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-attachment: fixed, fixed, fixed, fixed;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: rgba(184,151,74,0.30); color: var(--white); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ── Type scale ─────────────────────────────────────────── */
.serif { font-family: var(--serif); }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.8;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
h1 em, h2 em, h3 em, .serif em { font-style: italic; color: var(--gold-l); font-weight: 400; }

.display {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 300;
}
.h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 350; }
.lead {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-dim);
  max-width: 56ch;
  line-height: 1.75;
  font-weight: 350;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled { background: rgba(10,21,33,0.94); border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 2rem;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand img { height: 67px; width: auto; }
.brand-text {
  font-family: var(--serif);
  font-size: 1.18rem; font-weight: 400; letter-spacing: 0.02em; color: var(--white);
}
.brand-text b { color: var(--gold); font-weight: 400; }

.nav-mid { display: flex; align-items: center; gap: 2.3rem; }
.nav-links { display: flex; gap: 2.1rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-dim); position: relative; padding: 2px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.4rem; }

/* Language switcher */
.lang { display: flex; gap: 1px; align-items: center; }
.lang button {
  background: none; border: none; cursor: pointer;
  color: var(--ink-faint); font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 0.3rem 0.5rem; transition: color 0.2s var(--ease); position: relative;
}
.lang button:hover { color: var(--ink); }
.lang button.active { color: var(--gold); }
.lang button:not(:last-child)::after {
  content: ''; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  height: 11px; width: 1px; background: rgba(255,255,255,0.16);
}

.nav-cta {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: 0.62rem 1.3rem; border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }

.mobile-menu { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 1.8rem; border-radius: 2px; cursor: pointer;
  transition: all 0.3s var(--ease); border: 1px solid transparent; font-family: var(--sans);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 12px 30px -12px rgba(184,151,74,0.5); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-l); }

/* ── Sections ───────────────────────────────────────────── */
.section { padding: clamp(5rem, 11vh, 9rem) 0; position: relative; }
.section-head { max-width: 64ch; margin-bottom: 3.5rem; }
.section-head .eyebrow { margin-bottom: 1.5rem; }
.section-head .h2 { margin-bottom: 1.4rem; color: var(--white); }

.rule { height: 1px; background: var(--line); border: none; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { position: relative; padding-top: clamp(9rem, 18vh, 13rem); padding-bottom: clamp(4rem, 8vh, 7rem); }
.hero-eyebrow { margin-bottom: 2.2rem; }
.hero .display { color: var(--white); max-width: 16ch; margin-bottom: 1.8rem; }
.hero-sub { margin-bottom: 2.8rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.facts {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 9vh, 7rem);
  border-top: 1px solid var(--line);
}
.fact { padding: 1.9rem 1.6rem 1.9rem 0; border-right: 1px solid rgba(255,255,255,0.07); }
.fact:last-child { border-right: none; }
.fact-val { font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 350; color: var(--white); line-height: 1; }
.fact-val em { font-style: italic; color: var(--gold); }
.fact-lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.7rem; }

/* ── Generic content blocks ─────────────────────────────── */
.alt { background: var(--navy2); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

.two-col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }

/* Index list (criteria) */
.ledger { border-top: 1px solid var(--line); }
.ledger-row {
  display: grid; grid-template-columns: 0.5fr 1fr 1.4fr; gap: 2rem; align-items: baseline;
  padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.35s var(--ease);
}
.ledger-row:hover { padding-left: 0.6rem; }
.ledger-k { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.ledger-v { font-family: var(--serif); font-size: 1.5rem; font-weight: 350; color: var(--white); line-height: 1.1; }
.ledger-n { font-size: 0.92rem; color: var(--ink-dim); }

/* Cards grid (thesis) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 2.2rem 2rem;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.card:hover { border-color: var(--line); transform: translateY(-3px); background: linear-gradient(160deg, rgba(184,151,74,0.07), rgba(255,255,255,0.012)); }
.card-num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 1.2rem; }
.card h3 { font-size: 1.22rem; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }
.card p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.7; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { position: relative; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.step-n { position: absolute; top: -0.9rem; left: 0; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold); background: var(--navy); padding-right: 0.7rem; }
.step.on-alt .step-n { background: var(--navy2); }
.step h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: 0.6rem; }
.step p { font-size: 0.88rem; color: var(--ink-dim); line-height: 1.65; }

/* Value panels */
.panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.panel { border: 1px solid rgba(255,255,255,0.09); border-radius: 4px; overflow: hidden; }
.panel--a { background: linear-gradient(165deg, rgba(184,151,74,0.06), rgba(255,255,255,0.012)); }
.panel--b { background: var(--navy); }
.panel-h { padding: 2.2rem 2.2rem 1.6rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.badge {
  display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-l); border: 1px solid var(--line);
  padding: 0.3rem 0.8rem; border-radius: 2rem; margin-bottom: 1.2rem;
}
.panel-h h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.7rem; }
.panel-h p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.65; }
.panel-list { list-style: none; padding: 1.6rem 2.2rem 2.2rem; display: flex; flex-direction: column; gap: 1.4rem; }
.panel-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 0.55rem; }
.panel-list strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.panel-list span { font-size: 0.86rem; color: var(--ink-dim); line-height: 1.6; }

/* ── Vertical cards (big) ───────────────────────────────── */
.verticals { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vert {
  position: relative; border: 1px solid rgba(255,255,255,0.09); border-radius: 5px;
  padding: 2.6rem; overflow: hidden; display: flex; flex-direction: column;
  min-height: 360px; transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
}
.vert::before {
  content: ''; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(184,151,74,0.10), transparent 60%);
}
.vert:hover { border-color: var(--line); transform: translateY(-4px); }
.vert-tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.4rem; position: relative; }
.vert h3 { font-size: 2rem; color: var(--white); margin-bottom: 1rem; position: relative; }
.vert p { font-size: 0.96rem; color: var(--ink-dim); line-height: 1.7; position: relative; flex-grow: 1; }
.vert-meta { display: flex; gap: 1.6rem; margin: 1.6rem 0; position: relative; flex-wrap: wrap; }
.vert-meta div { font-size: 0.8rem; color: var(--ink-faint); }
.vert-meta b { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--white); font-weight: 400; margin-bottom: 0.1rem; }
.vert-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-l); position: relative; }
.vert-link .arrow { transition: transform 0.3s var(--ease); }
.vert:hover .vert-link .arrow { transform: translateX(5px); }
.vert--ext .vert-tag::after { content: '↗'; margin-left: 0.4rem; }

/* ── The arc (four doors) ───────────────────────────────── */
.arc { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: arc; }
.door {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 5px;
  padding: 2.3rem 1.9rem 2rem; overflow: hidden; min-height: 320px;
  background: linear-gradient(168deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.door::before {
  content: ''; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transition: width 0.5s var(--ease);
}
.door:hover { border-color: var(--line); transform: translateY(-4px); background: linear-gradient(168deg, rgba(184,151,74,0.08), rgba(255,255,255,0.012)); }
.door:hover::before { width: 100%; }
.door-n { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem; }
.door h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.85rem; }
.door p { font-size: 0.9rem; color: var(--ink-dim); line-height: 1.65; flex-grow: 1; }
.door-link { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-l); }
.door-link .arrow { transition: transform 0.3s var(--ease); }
.door:hover .door-link .arrow { transform: translateX(5px); }
.door-conn { display: none; }

/* ── Exit mechanism band (the trust unlock) ─────────────── */
.exit { background: var(--navy2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.exit::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background: radial-gradient(ellipse 60% 80% at 90% 10%, rgba(184,151,74,0.10), transparent 60%);
}
.exit .wrap { position: relative; }
.exit-head { text-align: center; max-width: 60ch; margin: 0 auto 3.2rem; }
.exit-head .eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.exit-head .exit-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); line-height: 1.08; margin-bottom: 1.2rem; }
.exit-head .lead { margin: 0 auto; text-align: center; }
.exit-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: ex; }
.exit-step { position: relative; padding-top: 2.6rem; }
.exit-step::before {
  counter-increment: ex; content: counter(ex);
  position: absolute; top: 0; left: 0;
  font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--gold);
  width: 2.4rem; height: 2.4rem; line-height: 2.4rem; text-align: center;
  border: 1px solid var(--line); border-radius: 50%;
}
.exit-step h4 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: 0.55rem; line-height: 1.2; }
.exit-step p { font-size: 0.88rem; color: var(--ink-dim); line-height: 1.65; }
.exit-foot {
  margin-top: 3.2rem; text-align: center; max-width: 64ch; margin-left: auto; margin-right: auto;
  font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--gold-l); line-height: 1.5;
}

/* ── ArduraCare proof block ─────────────────────────────── */
.proof {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  border: 1px solid rgba(255,255,255,0.09); border-radius: 6px; overflow: hidden;
  background: linear-gradient(160deg, rgba(184,151,74,0.06), rgba(255,255,255,0.012));
  padding: clamp(2.4rem, 5vw, 3.6rem);
}
.proof-aside { border-right: 1px solid var(--line); padding-right: clamp(1.5rem, 4vw, 3rem); }
.proof-aside .eyebrow { margin-bottom: 1.2rem; }
.proof-aside h3 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1.6rem; }
.proof-meta { display: flex; flex-direction: column; gap: 1.1rem; }
.proof-meta div { display: flex; flex-direction: column; }
.proof-meta b { font-family: var(--serif); font-size: 1.15rem; color: var(--white); font-weight: 400; }
.proof-meta span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.15rem; }
.proof-body p { font-size: 1rem; color: var(--ink-dim); line-height: 1.75; margin-bottom: 1.8rem; }

/* ── Team teaser ────────────────────────────────────────── */
.teaser { text-align: center; max-width: 60ch; margin: 0 auto; }
.teaser .eyebrow { justify-content: center; margin-bottom: 1.4rem; }
.teaser h2 { color: var(--white); margin-bottom: 1.2rem; }
.teaser .lead { margin: 0 auto 2rem; text-align: center; }

/* ── Capability blocks (Capabilities page) ──────────────── */
.cap {
  border: 1px solid rgba(255,255,255,0.09); border-radius: 6px; overflow: hidden;
  background: linear-gradient(168deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
}
.cap + .cap { margin-top: 1.6rem; }
.cap-head { padding: 2.4rem clamp(1.8rem, 4vw, 2.6rem) 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.cap-tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.cap-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--white); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.cap-cell { padding: 1.8rem clamp(1.8rem, 4vw, 2.6rem) 2rem; border-right: 1px solid rgba(255,255,255,0.07); }
.cap-cell:last-child { border-right: none; }
.cap-cell h4 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.7rem; }
.cap-cell p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.65; }
.cap-foot { padding: 1.6rem clamp(1.8rem, 4vw, 2.6rem) 2.2rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.cap-exit-box { padding: 1.8rem clamp(1.8rem, 4vw, 2.6rem) 2.2rem; border-top: 1px solid var(--line); background: rgba(184,151,74,0.04); }
.cap-exit-box h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--white); margin-bottom: 1.1rem; }
.cap-exit-list { list-style: none; display: grid; gap: 0.85rem; margin-bottom: 1.2rem; }
.cap-exit-list li { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; font-size: 0.92rem; color: var(--ink-dim); line-height: 1.6; }
.cap-exit-list .dot { margin-top: 0.5rem; }
.cap-exit-note { font-size: 0.92rem; color: var(--gold-l); font-style: italic; }
.cap-proof-line { display: block; margin-top: 1.2rem; font-size: 0.9rem; color: var(--ink-dim); }
.cap-proof-line a, .cap-proof-line { transition: color 0.2s var(--ease); }
.cap-proof-line:hover { color: var(--gold-l); }

/* ── Team / signature cards ─────────────────────────────── */
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.tcard {
  border: 1px solid rgba(255,255,255,0.09); border-radius: 5px; padding: 2.4rem;
  background: linear-gradient(165deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01));
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.tcard:hover { border-color: var(--line); transform: translateY(-3px); }
.tcard-top { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 1.8rem; }
.tphoto {
  width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0; object-fit: cover;
  border: 1px solid var(--line); box-shadow: 0 0 0 4px rgba(184,151,74,0.07);
  filter: grayscale(0.15) contrast(1.02);
}
.tphoto.initials {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.9rem; color: var(--gold);
  background: var(--navy2);
}
.tname { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); line-height: 1.15; }
.trole { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-top: 0.4rem; }
.tbio { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.7; margin-bottom: 1.6rem; }
.tmeta { display: flex; flex-direction: column; gap: 0.65rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.4rem; }
.tmeta a, .tmeta span { display: inline-flex; align-items: center; gap: 0.65rem; font-size: 0.86rem; color: var(--ink-dim); transition: color 0.2s var(--ease); }
.tmeta a:hover { color: var(--gold-l); }
.tmeta .ico { width: 15px; color: var(--gold); flex-shrink: 0; opacity: 0.85; }
.ttags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.4rem; }
.ttag { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-dim); border: 1px solid rgba(255,255,255,0.12); padding: 0.28rem 0.75rem; border-radius: 2rem; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.cinfo-item { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: start; }
.cinfo-item:first-of-type { border-top: 1px solid var(--line); }
.cinfo-ico { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 3px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; }
.cinfo-k { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.25rem; }
.cinfo-v { color: var(--ink); font-size: 0.96rem; }
.cinfo-v a:hover { color: var(--gold-l); }

.form-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.09); border-radius: 5px; padding: 2.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.5rem; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.13);
  border-radius: 3px; padding: 0.8rem 1rem; color: var(--white); font-family: var(--sans);
  font-size: 0.92rem; outline: none; transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(232,235,240,0.28); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.fg select option { background: var(--navy2); color: var(--white); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.76rem; color: var(--ink-faint); margin-top: 0.9rem; }
#form-success { display: none; margin-top: 1rem; padding: 0.9rem 1.1rem; border: 1px solid rgba(184,151,74,0.4); background: rgba(184,151,74,0.08); border-radius: 3px; color: var(--gold-l); font-size: 0.9rem; }

/* ── Quote / statement band ─────────────────────────────── */
.statement { text-align: center; padding: clamp(5rem, 12vh, 9rem) 0; }
.statement .q { font-family: var(--serif); font-weight: 300; font-size: clamp(1.7rem, 3.5vw, 2.9rem); line-height: 1.25; color: var(--white); max-width: 22ch; margin: 0 auto 1.6rem; }
.statement .q em { font-style: italic; color: var(--gold-l); }
.statement .attr { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }

/* ── CTA strip ──────────────────────────────────────────── */
.cta-strip { text-align: center; padding: clamp(4.5rem, 10vh, 7rem) 0; border-top: 1px solid var(--line); }
.cta-strip .h2 { color: var(--white); margin-bottom: 1.2rem; }
.cta-strip .lead { margin: 0 auto 2.4rem; text-align: center; }

/* ── Footer ─────────────────────────────────────────────── */
.foot { background: #0a1521; border-top: 1px solid var(--line); padding: 3.5rem 0 2.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.8rem; }
.foot-brand .brand-text { font-size: 1.3rem; }
.foot-tag { font-size: 0.88rem; color: var(--ink-dim); max-width: 38ch; margin-top: 1rem; line-height: 1.65; }
.foot-col h5 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.1rem; }
.foot-col a, .foot-col span { display: block; font-size: 0.9rem; color: var(--ink-dim); margin-bottom: 0.65rem; transition: color 0.2s var(--ease); }
.foot-col a:hover { color: var(--gold-l); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.07); }
.foot-bottom p { font-size: 0.78rem; color: var(--ink-faint); }

/* ── Reveal animation ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-mid { gap: 0; }
  .mobile-menu {
    position: fixed; inset: 76px 0 auto 0; background: rgba(10,21,33,0.98);
    backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 1.5rem 2rem 2rem; display: none; flex-direction: column; gap: 1.3rem; z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
  .mobile-menu a.active { color: var(--gold); }
  .mobile-menu .nav-cta { display: inline-flex; width: fit-content; margin-top: 0.5rem; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .cards { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.4rem; }
  .panels, .verticals, .team, .contact-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: none; }
  .ledger-row { grid-template-columns: 1fr; gap: 0.5rem; }

  .arc { grid-template-columns: 1fr 1fr; }
  .exit-steps { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.5rem; }
  .proof { grid-template-columns: 1fr; gap: 2rem; }
  .proof-aside { border-right: none; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 2rem; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .cap-cell:last-child { border-bottom: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 1.3rem; }
  .nav-inner { padding: 0 1.3rem; }
  .mobile-menu { inset: 76px 0 auto 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 1.4rem 0; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .tcard-top { flex-direction: column; text-align: center; }
  .arc { grid-template-columns: 1fr; }
  .exit-steps { grid-template-columns: 1fr; }
}

/* ── Home fork (two audience paths) ─────────────────────── */
.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 2.6rem; }
.fork-card {
  display: block; padding: 2.2rem; border: 1px solid var(--line); border-radius: 10px;
  text-decoration: none; color: inherit; background: rgba(255,255,255,0.02);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.fork-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(255,255,255,0.04); }
.fork-k { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.fork-h { font-family: var(--serif); font-size: 1.55rem; font-weight: 350; color: var(--white); margin: 0.7rem 0 0.6rem; line-height: 1.15; }
.fork-card p { color: var(--ink-dim); margin-bottom: 1.2rem; }
@media (max-width: 760px) { .fork { grid-template-columns: 1fr; } }

/* ── Image feature band ─────────────────────────────────── */
.imgband { background-size: cover; background-position: center; padding: clamp(4rem, 9vw, 7rem) 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.imgband-q { font-size: clamp(1.5rem, 3.2vw, 2.4rem); font-weight: 350; color: var(--white); max-width: 22ch; line-height: 1.2; }
.imgband-q em { font-style: italic; color: var(--gold); }
.imgband-a { margin-top: 1rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
