/* ============================================================
   Strategic Orb Systems (STRATORB) — orbcore.io
   Production stylesheet — vanilla CSS, no build step.

   Register: monochrome private-bank. Pure white ground,
   near-black ink, a disciplined grey scale, hairline rules as
   the primary structural device. No colour accent, no
   drop-shadows, no hover "lifts" — calm, formal, institutional.
   Type: Fraunces (light, large optical size) for display +
   numerals; Inter for UI and body.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Monochrome ink scale */
  --color-ink: #0a0a0b;           /* near-black — headings & strong UI */
  --color-primary: #0a0a0b;
  --color-primary-700: #141416;
  --color-primary-600: #232326;
  --color-text: #232427;          /* body ink */
  --color-muted: #6a6c6e;         /* secondary text (AA on white) */
  --color-faint: #8d8f91;         /* tertiary / captions */

  /* No chromatic accent — links and focus use ink. */
  --color-accent: #0a0a0b;
  --color-accent-strong: #000000;

  /* Grounds */
  --color-bg: #ffffff;            /* white ground */
  --color-surface: #ffffff;
  --color-surface-2: #f6f6f4;     /* faint neutral band */
  --color-surface-3: #f0f0ed;

  /* Hairlines */
  --color-line: #e6e6e2;          /* hairline rule */
  --color-line-strong: #d4d4cf;   /* stronger rule / borders */

  --maxw: 1160px;
  --maxw-narrow: 760px;
  --radius: 2px;
  --radius-sm: 2px;

  /* Shadows kept essentially flat — the design relies on rules, not depth. */
  --shadow-sm: none;
  --shadow-md: 0 1px 0 var(--color-line-strong);
  --shadow-lg: 0 24px 60px rgba(10, 10, 11, 0.10);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;

  --step--1: clamp(0.8rem, 0.77rem + 0.16vw, 0.88rem);
  --step-0: clamp(1rem, 0.97rem + 0.16vw, 1.075rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.34vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.26rem + 0.7vw, 1.8rem);
  --step-3: clamp(1.7rem, 1.42rem + 1.4vw, 2.5rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.5vw, 3.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  /* Fraunces variable: light display weight, large optical size. */
  font-weight: 340;
  font-variation-settings: "opsz" 140, "SOFT" 0, "WONK" 0;
  line-height: 1.12;
  color: var(--color-ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.018em;
}
h1 { font-size: var(--step-4); font-weight: 300; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); font-weight: 400; letter-spacing: -0.012em; }
h4 { font-weight: 500; }
p { margin: 0 0 1rem; }

a { color: var(--color-accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent-strong); }

::selection { background: var(--color-ink); color: #fff; }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -120%;
  z-index: 1000;
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1.1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.25rem); }
.container-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(3.5rem, 7.5vw, 6.5rem); }
.section--tight { padding-block: clamp(2.25rem, 5vw, 4rem); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.lead { font-size: var(--step-1); color: var(--color-muted); line-height: 1.55; font-weight: 400; }
.section-head { max-width: 58ch; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.btn-primary { background: var(--color-ink); color: #fff; }
.btn-primary:hover { background: var(--color-primary-600); color: #fff; }
.btn-secondary { background: var(--color-ink); color: #fff; }
.btn-secondary:hover { background: var(--color-primary-600); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-ink); border-color: var(--color-line-strong); }
.btn-ghost:hover { border-color: var(--color-ink); background: transparent; color: var(--color-ink); }
.btn-on-dark { background: #fff; color: var(--color-ink); }
.btn-on-dark:hover { background: #ececea; color: var(--color-ink); }
.btn-on-dark.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-on-dark.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: #fff; }
.btn .arrow { transition: transform 0.18s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(115%) blur(10px);
  -webkit-backdrop-filter: saturate(115%) blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-weight: 400;
}
.brand:hover { color: var(--color-ink); }
/* STRATORB monogram (transparent black PNG, retina-ready) */
.brand-logo { flex: none; width: auto; height: 30px; display: block; }
/* Hairline divider between mark and wordmark — a quiet institutional lockup. */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-left: 0.85rem;
  border-left: 1px solid var(--color-line-strong);
}
.brand-name { font-size: 1.12rem; letter-spacing: 0.005em; font-weight: 400; }
.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.12rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.16s var(--ease);
}
.nav-links a:hover { color: var(--color-ink); }
.nav-links a[aria-current="page"] {
  color: var(--color-ink);
  font-weight: 600;
  box-shadow: inset 0 -1px 0 var(--color-ink);
  border-radius: 0;
}
.nav-cta { margin-left: 0.6rem; }
.nav-cta .btn { padding: 0.65rem 1.2rem; }

.nav-toggle {
  display: none;
  flex: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-ink);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-lg);
    padding: 0.6rem clamp(1.2rem, 4vw, 2.25rem) 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links li + li { border-top: 1px solid var(--color-line); }
  .nav-links a { padding: 0.95rem 0.5rem; font-size: 1rem; }
  .nav-links a[aria-current="page"] { box-shadow: none; }
  .nav-cta { margin: 0.75rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; padding: 0.9rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}
.hero .container { position: relative; z-index: 2; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
}
.hero h1 { color: var(--color-ink); max-width: 15ch; margin-bottom: 1.25rem; }
.hero .eyebrow { color: var(--color-muted); }
.hero-lead { font-size: var(--step-1); color: var(--color-muted); max-width: 44ch; margin-bottom: 2.25rem; font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* The monogram, dignified as a contained institutional seal
   rather than a loose oversized logo. */
.hero-orb { display: grid; place-items: center; }
.hero-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100%, 340px);
  padding: clamp(2.25rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  background: #fff;
  border: 1px solid var(--color-line-strong);
  position: relative;
}
/* faint inner rule for a sealed, engraved feel */
.hero-seal::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--color-line);
  pointer-events: none;
}
.hero-logo { width: clamp(108px, 15vw, 144px); height: auto; }
.seal-rule { width: 46px; height: 1px; background: var(--color-line-strong); margin: 1.5rem 0 1.1rem; }
.seal-word {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-ink);
  padding-left: 0.34em; /* optical balance for tracking */
}
.seal-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.55rem;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-orb { order: -1; justify-items: center; }
  .hero h1 { max-width: 18ch; }
  .hero-seal { width: min(100%, 300px); }
}

/* ---------- Pillars / strip ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  background: var(--color-surface);
  border-right: 1px solid var(--color-line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background 0.2s var(--ease);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: var(--color-surface-2); }
.pillar .num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-faint);
  letter-spacing: 0.04em;
}
.pillar h3 { margin-top: 0.6rem; }
.pillar p { color: var(--color-muted); margin-bottom: 0; }

@media (max-width: 760px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--color-line); }
  .pillar:last-child { border-bottom: 0; }
}

/* ---------- Value props (Foresight / Influence / Execution) ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.value-card {
  position: relative;
  background: transparent;
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--color-ink);
}
.value-card .ico {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--color-line-strong);
  background: #fff;
  color: var(--color-ink);
  margin-bottom: 1.25rem;
}
.value-card .ico svg { width: 24px; height: 24px; }
.value-card h3 { margin-bottom: 0.5rem; }
.value-card p { color: var(--color-muted); margin-bottom: 0; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Split / about ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: 0; }
}
.panel-dark {
  background: var(--color-ink);
  color: #cfd0ce;
  border-radius: var(--radius);
  padding: clamp(1.85rem, 4vw, 3rem);
}
.panel-dark h2, .panel-dark h3 { color: #fff; }
.panel-dark p { color: #cfd0ce; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.14); }
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat .n { font-family: var(--font-serif); font-size: var(--step-2); color: var(--color-ink); font-weight: 300; line-height: 1; }
.stat .l { font-size: var(--step--1); color: var(--color-muted); }
.panel-dark .stat .n { color: #fff; }
.panel-dark .stat .l { color: #9fa1a0; }

/* ---------- Capability chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; padding: 0; list-style: none; }
.chip {
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line-strong);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}
.panel-dark .chip {
  color: #fff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}
@media (max-width: 760px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--color-surface);
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: background 0.2s var(--ease);
  scroll-margin-top: 110px;
}
.service-card:hover { background: var(--color-surface-2); }
.service-card .svc-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-faint);
}
.service-card h3 { font-size: var(--step-1); margin-bottom: 0.1rem; }
.service-card p { color: var(--color-muted); margin-bottom: 0; }
.service-card .svc-icon {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--color-line-strong);
  background: #fff;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}
.service-card .svc-icon svg { width: 24px; height: 24px; }

/* ---------- Methodology steps ---------- */
.method-list { display: grid; gap: 0; counter-reset: step; border-top: 1px solid var(--color-line); }
.method-step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.75rem;
  align-items: start;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}
.method-step .step-no {
  counter-increment: step;
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 300;
  color: var(--color-faint);
  line-height: 1;
}
.method-step h3 { margin-bottom: 0.4rem; }
.method-step p { color: var(--color-muted); margin-bottom: 0; }
@media (max-width: 600px) {
  .method-step { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ---------- Insights ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.article-card:hover { border-color: var(--color-line-strong); }
.article-thumb { aspect-ratio: 16 / 8; background: var(--color-ink); position: relative; }
.article-thumb svg { width: 100%; height: 100%; display: block; }
.article-body { padding: 1.6rem 1.75rem 1.85rem; display: flex; flex-direction: column; flex: 1; }
.article-meta { font-size: var(--step--1); color: var(--color-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.7rem; }
.article-card h3 { font-size: var(--step-1); }
.article-card p { color: var(--color-muted); }
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  padding: 0.22rem 0.6rem;
}

.insight-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--color-line); }
.insight-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid var(--color-line);
}
.insight-list .bullet { flex: none; color: var(--color-faint); font-weight: 400; font-family: var(--font-serif); }
.insight-list .it { font-weight: 600; color: var(--color-ink); }

/* ---------- CTA band (recurring) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  color: #cfd0ce;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; }
.cta-band .eyebrow { color: #9fa1a0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c4c5c3; margin-bottom: 0; }
@media (max-width: 800px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.5rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: var(--step--1); font-weight: 600; color: var(--color-ink); }
.field input, .field textarea {
  font: inherit;
  font-size: var(--step-0);
  color: var(--color-text);
  background: #fff;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-ink);
  box-shadow: 0 0 0 2px rgba(10,10,11,0.12);
}
.field textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: var(--step--1); color: var(--color-muted); margin-top: 0.75rem; }
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.05rem;
  border-radius: var(--radius-sm);
  background: var(--color-surface-2);
  border: 1px solid var(--color-line-strong);
  color: var(--color-ink);
  font-weight: 600;
}

/* newsletter inline */
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.newsletter-form input {
  flex: 1 1 220px;
  font: inherit;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--color-text);
}
.newsletter-form input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }

/* ---------- Contact details ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.detail-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.detail-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--color-line); }
.detail-list li:first-child { padding-top: 0; }
.detail-list .ico { flex: none; width: 42px; height: 42px; border-radius: var(--radius); border: 1px solid var(--color-line-strong); background: #fff; color: var(--color-ink); display: grid; place-items: center; }
.detail-list .ico svg { width: 22px; height: 22px; }
.detail-list .k { font-size: var(--step--1); color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.detail-list .v { font-weight: 600; color: var(--color-ink); }
.detail-list a { color: var(--color-ink); font-weight: 600; }

/* ---------- Legal / prose ---------- */
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--color-text); }
.prose .updated { color: var(--color-muted); font-size: var(--step--1); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: var(--step--1); color: var(--color-muted); padding-top: 1.75rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; margin-left: 0.4rem; color: var(--color-line-strong); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--color-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-ink); }
.breadcrumb [aria-current="page"] { color: var(--color-ink); font-weight: 600; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--color-line);
}
.page-hero .inner { padding-block: clamp(2.5rem, 5.5vw, 4.25rem); max-width: 64ch; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #b3b4b2;
  padding-block: clamp(2.75rem, 5vw, 4rem);
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: var(--step--1); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 1rem; font-weight: 600; }
/* STRATORB monogram (vector), knocked out to white in the dark footer */
.footer-logo { width: auto; height: 36px; display: block; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-sub { color: #8f9290; }
.footer-about { max-width: 40ch; color: #8f9290; margin-top: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.footer-links a { color: #b3b4b2; text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--step--1);
  color: #818381;
}
.footer-bottom a { color: #b3b4b2; }
.footer-bottom a:hover { color: #fff; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-surface { background: var(--color-surface-2); }
.divider { height: 1px; background: var(--color-line); border: 0; margin-block: 0; }
