/* ============================================================================
   The Reum Group — site styles
   Design system: Archivo / Cormorant / IBM Plex Mono / Spectral
   Warm off-white paper, deep navy, muted gold. Values preserved from the
   approved Claude Design prototypes; responsive behaviour added for production.
   ========================================================================== */

:root {
  /* surfaces */
  --paper:        #fbfaf7;
  --paper-warm:   #f1ece2;   /* What We Do / story / founder note bands, cards */
  --paper-warm-2: #f3eee4;   /* Focus Areas alternating bands */
  --navy:         #1a2531;
  --navy-deep:    #16202b;   /* opportunity / contact callout */
  --footer:       #15171b;

  /* ink */
  --ink:          #1c1e22;
  --ink-strong:   #23262b;

  /* gold */
  --gold:         #c9a968;
  --gold-deep:    #9a7d44;   /* eyebrow / accents on light */
  --gold-light:   #d8be8f;   /* eyebrow / accents on dark */

  /* lines */
  --line:         #e7e2d8;
  --line-card:    #ece8df;
  --line-input:   #e2ddd2;

  --gutter: 6vw;
}

/* --- reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: #e7d9bd; }

img { display: block; }
a { color: inherit; }

input::placeholder, textarea::placeholder { color: #9a9ba0; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold) !important; }

/* --- shared atoms ---------------------------------------------------------- */
.mono {
  font-family: 'IBM Plex Mono', monospace;
}

/* eyebrow + optional rule */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}
.eyebrow__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  white-space: nowrap;
}
.eyebrow__label--light { color: var(--gold-light); }
.eyebrow__rule { flex: 1; height: 1px; background: var(--line); }
.eyebrow__rule--dark { background: rgba(216,190,143,.32); }
.eyebrow__rule--short { flex: none; width: 60px; background: #d8cdb8; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  border: none;
  font-family: 'Archivo', sans-serif;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold     { background: var(--gold); color: var(--navy); padding: 16px 30px; }
.btn--gold:hover { box-shadow: 0 10px 24px -12px rgba(201,169,104,.7); }
.btn--paper    { background: #f6f4ef; color: var(--navy); padding: 15px 28px; }
.btn--paper .btn__arrow { color: var(--gold-deep); }
.btn--ghost    { background: transparent; color: #f6f4ef; padding: 15px 26px;
                 border: 1px solid rgba(246,244,239,.34); font-weight: 500; border-radius: 7px; }
.btn--ghost:hover { background: rgba(246,244,239,.08); }
.btn--dark     { background: var(--navy); color: #f6f4ef; padding: 15px 30px; border-radius: 8px; }
.btn--dark .btn__arrow { color: var(--gold-light); }
.btn--dark:hover { background: #223043; }
.btn--pill     { border-radius: 10px; padding: 15px 28px; }

/* section padding helpers */
.section { padding: clamp(64px,9vw,108px) var(--gutter); }
.gutter-x { padding-left: var(--gutter); padding-right: var(--gutter); }

/* ============================================================================
   NAV
   ========================================================================== */
.nav { position: relative; z-index: 30; }
.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px var(--gutter);
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; cursor: pointer; }
.logo__mono { display: flex; align-items: center; gap: 8px; }
.logo__r {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  font-size: 30px;
  line-height: .8;
  color: #f6f4ef;
}
.logo__bar { width: 1px; height: 23px; background: var(--gold); }
.logo__word {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--gold);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(246,244,239,.82);
}
.nav__links a { color: inherit; text-decoration: none; transition: color .2s ease; }
.nav__links a:not(.nav__cta):hover { color: #f6f4ef; }
.nav__links a.is-active {
  color: #f6f4ef;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  border-radius: 24px;
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 600;
}
.nav__cta:hover { background: #d4b676; border-color: #d4b676; }

/* light nav variant (article page) */
.nav--light .nav__inner { border-bottom: 1px solid #ece7dc; }
.nav--light .logo__r { color: var(--navy-deep); }
.nav--light .logo__word { color: var(--gold-deep); }
.nav--light .nav__links { color: #54565c; }
.nav--light .nav__links a:not(.nav__cta):hover { color: var(--navy-deep); }
.nav--light .nav__links a.is-active { color: var(--navy-deep); }

/* hamburger (hidden on desktop) — tapered three-line mark */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: #f6f4ef;
}
.nav__toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; }
.nav__toggle span:nth-child(1) { width: 24px; }
.nav__toggle span:nth-child(2) { width: 24px; }
.nav__toggle span:nth-child(3) { width: 17px; }
.nav--light .nav__toggle { color: var(--navy-deep); }

/* pull the hero up so it sits behind the transparent nav */
.hero-pull { margin-top: -86px; }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,16,23,.74) 0%,
    rgba(16,23,32,.2) 20%,
    rgba(16,23,32,.12) 46%,
    rgba(15,21,30,.66) 78%,
    rgba(13,18,26,.9) 100%);
}
.hero__content {
  position: relative;
  padding: 0 var(--gutter) 8vh;
  max-width: 1500px;
}
.hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
  white-space: nowrap;
}
.hero__title {
  font-size: clamp(44px,6vw,82px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.025em;
  color: #f8f6f1;
  margin: 0 0 26px;
  text-shadow: 0 2px 30px rgba(10,14,20,.5);
}
.hero__lead {
  font-size: clamp(16px,1.35vw,20px);
  line-height: 1.6;
  color: rgba(244,242,236,.9);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(10,14,20,.5);
}
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 38px; }

/* hero "launching soon" pill (Insights) */
.pill-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 24px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* ============================================================================
   INTRO STATEMENT
   ========================================================================== */
.intro {
  padding: clamp(64px,10vw,118px) var(--gutter);
  max-width: 1120px;
}
.intro__text {
  font-size: clamp(24px,3vw,38px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink-strong);
  margin: 0;
}
.intro__text .muted { color: #9a9aa0; }

/* ============================================================================
   GENERIC HEADINGS
   ========================================================================== */
.h2 {
  font-size: clamp(28px,3.6vw,42px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0;
}

/* ============================================================================
   DARK BAND
   ========================================================================== */
.band-dark {
  background: var(--navy);
  color: #eef0f2;
  padding: clamp(64px,9vw,108px) var(--gutter);
}
.band-dark--round { border-radius: 20px 20px 0 0; }
.band-dark__kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}
.band-dark__statement {
  font-size: clamp(26px,3.4vw,42px);
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #f8f6f1;
  margin: 0;
}

/* ============================================================================
   GRIDS
   ========================================================================== */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(28px,3vw,52px); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* What We Do columns */
.do-num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #bcbdc2; margin-bottom: 20px; }
.do-title { font-size: 21px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 12px; }
.do-text { font-size: 15px; line-height: 1.62; color: #5e6168; margin: 0; }

/* ============================================================================
   PRINCIPLES (home + about)
   ========================================================================== */
.principle { border-top: 1px solid var(--line); padding-top: 22px; }
.principle__num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--gold); margin-bottom: 18px; }
.principle__title { font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 10px; }
.principle__text { font-size: 14.5px; line-height: 1.66; color: #5e6168; margin: 0; }

/* home principles use a two-column split */
.principles-split {
  border-top: 1px solid #e2ddd2;
  padding-top: clamp(48px,6vw,72px);
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px,6vw,96px);
  align-items: start;
}
.principles-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 48px; }
.principles-split .principle { padding-top: 18px; }
.principles-split .principle__title { font-size: 17px; margin-bottom: 8px; }
.principles-split .principle__text { font-size: 14px; line-height: 1.62; color: #6a6d74; }

/* ============================================================================
   PROCESS STEPS (dark band — home / opportunities)
   ========================================================================== */
.step { border-top: 1px solid rgba(216,190,143,.4); padding-top: 26px; }
.step__num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .06em; color: #cbb083; margin-bottom: 20px; }
.step__title { font-size: 24px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 14px; color: #f8f6f1; }
.step__text { font-size: 15px; line-height: 1.64; color: #a8aeb6; margin: 0; }

/* ============================================================================
   FEATURED CAROUSEL (home)
   ========================================================================== */
.carousel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}
.carousel-arrows { display: flex; gap: 10px; flex: none; }
.carousel-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid #d8d2c6;
  background: #fff;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .25s, border-color .25s, background .25s;
}
.carousel-arrow:hover { border-color: var(--gold-deep); background: #f8f4ea; }

.carousel-viewport {
  position: relative;
  height: 432px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.carousel-viewport.is-dragging { cursor: grabbing; }

.proj-card {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 340px;
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform-origin: top center;
  will-change: transform, opacity;
}
.proj-card__img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}
.proj-card__cat {
  position: absolute;
  top: 14px; right: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f6f4ef;
  background: rgba(18,26,35,.66);
  border: 1px solid rgba(246,244,239,.34);
  border-radius: 20px;
  padding: 4px 10px;
}
.proj-card__body { padding: 26px 28px; }
.proj-card__row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 12px; }
.proj-card__name { font-size: 21px; font-weight: 600; letter-spacing: -.01em; margin: 0; line-height: 1.18; }
.proj-card__status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: #f4ecdc;
  border-radius: 20px;
  padding: 5px 11px;
  white-space: nowrap;
  flex: none;
  margin-top: 3px;
}
.proj-card__desc { font-size: 14px; line-height: 1.6; color: #5e6168; margin: 0; }

.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 18px; }
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: #d8d2c6;
  transition: width .4s, background .4s;
}
.carousel-dot.is-active { width: 26px; background: var(--gold-deep); }

/* ============================================================================
   OPPORTUNITY / CTA CALLOUT (image + gradient)
   ========================================================================== */
.callout {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
  color: #f6f4ef;
}
.callout__img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.callout__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(20,29,39,.95) 0%, rgba(20,29,39,.82) 48%, rgba(20,29,39,.6) 100%);
}
.callout__inner {
  position: relative;
  padding: clamp(48px,7vw,88px) clamp(40px,6vw,80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.callout__title {
  font-size: clamp(24px,3vw,36px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0;
  max-width: 24ch;
}
.callout__action { justify-self: end; text-align: right; }

/* ============================================================================
   FOCUS AREAS — pillar rows
   ========================================================================== */
.pillar { padding: clamp(56px,7vw,88px) var(--gutter); }
.pillar--warm { background: var(--paper-warm-2); }
.pillar__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
}
.pillar__grid--rev { grid-template-columns: 1.08fr 0.92fr; }
.pillar__media {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
}
.pillar__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pillar__num {
  font-family: 'Cormorant', serif;
  font-size: clamp(56px,6vw,76px);
  line-height: .82;
  font-weight: 600;
  color: #cdb588;
  margin: 0 0 16px;
}
.pillar__title {
  font-size: clamp(28px,3.2vw,40px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
.pillar__lead { font-size: 16.5px; line-height: 1.72; color: #4d5056; margin: 0 0 16px; max-width: 52ch; }
.pillar__sub  { font-size: 14.5px; line-height: 1.66; color: #7a7d83; margin: 0 0 24px; max-width: 52ch; }
.pillar__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 13.5px;
  color: #3d4045;
  background: #fff;
  border: 1px solid var(--line-input);
  border-radius: 24px;
  padding: 9px 16px;
  white-space: nowrap;
}

/* ============================================================================
   CARDS (continue exploring / featured / more)
   ========================================================================== */
.link-card {
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-card);
  display: block;
  transition: transform .2s ease, box-shadow .2s ease;
}
.link-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(20,29,39,.4); }
.link-card__img { height: 160px; background-color: var(--navy); background-size: cover; background-position: center; }
.link-card__body { padding: 24px 26px; }
.link-card__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.link-card__title { font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin: 0; white-space: nowrap; }
.link-card__arrow { color: var(--gold-deep); font-size: 18px; }
.link-card__text { font-size: 14px; line-height: 1.6; color: #5e6168; margin: 0; }

/* ============================================================================
   FORMS
   ========================================================================== */
.form-card {
  background: #fff;
  border: 1px solid var(--line-card);
  border-radius: 18px;
  padding: clamp(28px,3vw,40px);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.field { margin-bottom: 22px; }
.field--last { margin-bottom: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.field label, .field-label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8c92;
  margin-bottom: 9px;
}
.input, .select, .textarea {
  width: 100%;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line-input);
  border-radius: 9px;
  padding: 13px 15px;
}
.textarea { line-height: 1.6; resize: vertical; }
.select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.select-wrap { position: relative; }
.select-wrap__chev { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; color: var(--gold-deep); font-size: 12px; }
.form-actions { display: flex; justify-content: flex-end; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-actions--split { justify-content: space-between; }
.field-error { border-color: #c0563f !important; }
.form-note { font-size: 12.5px; line-height: 1.5; color: #8a8c92; max-width: 30ch; }

/* two-column form layout (Opportunities / Contact) */
.form-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(48px,6vw,80px);
  align-items: start;
}

/* compact process steps (Opportunities) */
.steps-sm { gap: 40px; }
.steps-sm .step { padding-top: 24px; }
.steps-sm .step__num { margin-bottom: 18px; }
.steps-sm .step__title { font-size: 21px; margin-bottom: 12px; }
.steps-sm .step__text { font-size: 14.5px; }

/* confidentiality strip */
.confidential {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  background: var(--paper-warm);
  border-radius: 12px;
}
.confidential span { font-size: 13.5px; line-height: 1.55; color: #54575d; }

/* form status messages (injected by forms.js) */
.form-status { font-size: 14px; font-weight: 600; margin: 0; }
.form-status--ok { color: #2f7d5c; }
.form-status--err { color: #c0563f; }

/* newsletter signup (dark) */
.signup-row { display: flex; gap: 12px; flex-wrap: wrap; }
.signup-row .input {
  flex: 1; min-width: 220px;
  color: #f6f4ef;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 15px 16px;
}
.signup-row .input::placeholder { color: #8c929b; }
.signup-fine { font-size: 12.5px; color: #7c828a; margin: 14px 0 0; }

/* ============================================================================
   OPPORTUNITIES — audience cards
   ========================================================================== */
.aud-card { background: var(--paper-warm); border-radius: 16px; padding: 36px 36px 34px; }
.aud-card__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.aud-card__title { font-size: 23px; font-weight: 600; letter-spacing: -.015em; margin: 0; }
.aud-card__num { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #bca877; }
.aud-card__text { font-size: 15px; line-height: 1.66; color: #54575d; margin: 0 0 18px; }
.aud-card__for { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }

/* ============================================================================
   ABOUT — story / mission / founder
   ========================================================================== */
.split { display: grid; gap: clamp(40px,5vw,72px); align-items: center; }
.split--story { grid-template-columns: 1.08fr 0.92fr; }
.split--founder { grid-template-columns: 0.62fr 1.38fr; gap: clamp(40px,5vw,64px); }
.media-portrait { position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; background: var(--navy); }
.media-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.story__title { font-size: clamp(28px,3.4vw,38px); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; margin: 0 0 26px; max-width: 18ch; }
.story__p { font-size: 16px; line-height: 1.7; color: #53565c; margin: 0 0 18px; max-width: 46ch; }
.story__p:last-child { margin-bottom: 0; }

.founder-seal {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.founder-seal::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 38%, #243140 0%, #18222e 70%);
}
.founder-seal__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.founder-seal__mono { display: flex; align-items: center; gap: 8px; }
.founder-seal__r { font-family: 'Cormorant', serif; font-weight: 600; font-size: 52px; line-height: .8; color: var(--gold); }
.founder-seal__bar { width: 1px; height: 40px; background: rgba(201,169,104,.6); }
.founder-seal__cap { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: #7c8896; }

.quote-spectral {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: clamp(22px,2.4vw,27px);
  line-height: 1.5;
  letter-spacing: -.005em;
  color: var(--ink-strong);
  margin: 0 0 28px;
  max-width: 40ch;
}
.byline { display: flex; align-items: center; gap: 14px; }
.byline__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.byline__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.byline__role { font-size: 14px; color: #6a6d74; }

/* ============================================================================
   CONTACT — audience rail + what-happens-next
   ========================================================================== */
.rail { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.rail__row { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.rail__tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); min-width: 78px; padding-top: 3px; }
.rail__text { font-size: 15px; line-height: 1.6; color: #54575d; }
.labels-gold .field-label { color: #8a6c42; }

.next-band { background: var(--navy-deep); border-radius: 20px; padding: clamp(44px,5vw,72px) clamp(36px,5vw,72px); color: #f6f4ef; }
.next-num { font-family: 'Cormorant', serif; font-size: 46px; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 18px; }
.next-title { font-size: 19px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 10px; color: #f8f6f1; min-height: 46px; }
.next-text { font-size: 15px; line-height: 1.66; color: #aeb4bc; margin: 0; max-width: 32ch; }

/* ============================================================================
   INSIGHTS index
   ========================================================================== */
.cat-row {
  padding: 32px var(--gutter);
  border-bottom: 1px solid #ece7dc;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.cat-chip {
  font-size: 13.5px; color: #54575d;
  background: var(--paper-warm);
  border-radius: 24px;
  padding: 9px 18px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: 'Archivo', sans-serif;
  transition: background .2s, color .2s;
}
.cat-chip:hover { background: #e9e2d4; }
.cat-chip.is-active { font-weight: 600; background: var(--navy); color: #f6f4ef; }

.featured-grid {
  text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px,5vw,56px);
  align-items: center;
}
.featured-grid__media { position: relative; aspect-ratio: 16/11; border-radius: 16px; overflow: hidden; background: var(--navy); }
.featured-grid__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-grid__tag {
  position: absolute; top: 18px; left: 18px;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold-light); border-radius: 20px; padding: 6px 13px;
}
.meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); }
.meta-row .muted { color: #9a9ba0; }
.meta-row__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.featured-grid h2 { font-size: clamp(28px,3.4vw,36px); line-height: 1.15; font-weight: 700; letter-spacing: -.02em; margin: 0 0 18px; max-width: 18ch; }
.featured-grid p { font-size: 16.5px; line-height: 1.7; color: #5e6168; margin: 0 0 26px; max-width: 48ch; }
.read-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--navy); }
.read-link span { color: var(--gold-deep); }

.post-row {
  text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 120px 1fr auto; gap: 36px; align-items: center;
  padding: 32px 0; border-bottom: 1px solid #ece7dc;
  transition: opacity .2s;
}
.post-row:hover { opacity: .7; }
.post-row__cat { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.post-row__title { font-size: clamp(20px,2vw,24px); font-weight: 600; letter-spacing: -.015em; margin: 0 0 8px; }
.post-row__text { font-size: 15px; line-height: 1.6; color: #6a6d74; margin: 0; max-width: 60ch; }
.post-row__status { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: #9a9ba0; white-space: nowrap; }

/* ============================================================================
   ARTICLE
   ========================================================================== */
.article-head { padding: 48px var(--gutter) 0; max-width: 1000px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); text-decoration: none; margin-bottom: 48px; }
.back-link:hover { text-decoration: underline; }
.article-title { font-size: clamp(38px,5vw,60px); line-height: 1.08; font-weight: 700; letter-spacing: -.025em; color: var(--navy); margin: 0 0 28px; max-width: 20ch; }
.article-byline { display: flex; align-items: center; gap: 16px; padding-bottom: 40px; border-bottom: 1px solid #ece7dc; flex-wrap: wrap; }
.article-byline__mono { display: flex; align-items: center; gap: 8px; }
.article-byline__r { font-family: 'Cormorant', serif; font-weight: 600; font-size: 26px; line-height: .8; color: var(--gold-deep); }
.article-byline__bar { width: 1px; height: 18px; background: var(--gold); }
.article-byline__name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.article-byline__meta { font-size: 14px; color: #6a6d74; }

.article-lead-img { padding: 56px var(--gutter) 0; max-width: 1180px; margin: 0 auto; }
.article-lead-img__frame { position: relative; aspect-ratio: 16/8; border-radius: 18px; overflow: hidden; background: var(--navy); }
.article-lead-img__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.article-body { padding: 72px var(--gutter) 0; max-width: 720px; margin: 0 auto; }
.article-lede { font-family: 'Spectral', serif; font-weight: 400; font-size: 23px; line-height: 1.6; color: #2a2d33; margin: 0 0 40px; }
.article-body p { font-size: 18px; line-height: 1.78; color: #3a3d43; margin: 0 0 26px; }
.article-body h2 { font-size: 28px; font-weight: 700; letter-spacing: -.02em; color: var(--navy); margin: 0 0 18px; }
.pullquote { border-left: 3px solid var(--gold); padding: 8px 0 8px 32px; margin: 44px 0; }
.pullquote p { font-family: 'Cormorant', serif; font-weight: 500; font-style: italic; font-size: 32px; line-height: 1.32; letter-spacing: -.01em; color: var(--navy); margin: 0; }
.article-tags { margin: 48px 0 0; padding-top: 32px; border-top: 1px solid #ece7dc; display: flex; flex-wrap: wrap; gap: 10px; }
.tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); background: var(--paper-warm); border-radius: 24px; padding: 8px 15px; }

.signup-block {
  background: var(--navy); color: #eef0f2; border-radius: 20px;
  padding: clamp(48px,6vw,72px);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.signup-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,5vw,64px); align-items: center; }
@media (max-width: 900px) { .signup-cols { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--footer); color: #c7c8cc; padding: clamp(56px,7vw,84px) var(--gutter) 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__brand-mark { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer__desc { font-size: 14px; line-height: 1.66; color: #84858a; margin: 0; max-width: 38ch; }
.footer__col { font-size: 14px; line-height: 2.1; color: #a4a5aa; }
.footer__col a { color: inherit; text-decoration: none; }
.footer__col a:hover { color: #e7d9bd; }
.footer__col-head { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6a6b70; margin-bottom: 10px; }
.footer__bar { padding-top: 24px; display: flex; justify-content: space-between; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #6a6b70; }
.footer__bar span { white-space: nowrap; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 36px; }
  .principles-split { grid-template-columns: 1fr; gap: 40px; }
  .callout__inner { grid-template-columns: 1fr; gap: 28px; }
  .callout__action { justify-self: start; text-align: left; }
  .pillar__grid, .pillar__grid--rev { grid-template-columns: 1fr; gap: 36px; }
  .pillar__grid--rev .pillar__media { order: -1; }
  .split--story, .split--founder { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .featured-grid { grid-template-columns: 1fr; gap: 28px; }
  .signup-block { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  /* mobile nav — dark dropdown card anchored top-right (all pages) */
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: calc(100% - 4px); right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #16202b;
    border: 1px solid rgba(201,169,104,.28);
    border-radius: 14px;
    padding: 12px 14px;
    min-width: 212px;
    box-shadow: 0 26px 60px -22px rgba(8,12,18,.7);
    display: none;
    z-index: 60;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(:last-child) {
    color: #eceae3 !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 13px 8px;
    font-size: 15px;
  }
  .nav__links a.is-active { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav__cta { justify-content: center; margin-top: 8px; padding: 13px 18px; border-radius: 10px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .field-row > div { margin-bottom: 22px; }
  .principles-split__grid { grid-template-columns: 1fr; gap: 28px; }
  .post-row { grid-template-columns: 1fr; gap: 8px; }
  .post-row__status { margin-top: 4px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --gutter: 7vw; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 7vh; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; gap: 10px; }
  .form-actions--split { justify-content: flex-start; }
}

/* ============================================================================
   INSIGHTS — restructure (flagship band, deep-dive list, article link-up/series)
   ========================================================================== */
/* Flagship band — pinned philosophy essay on the hub */
.flagship {
  text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch;
  border-radius: 18px; overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 30px 70px -40px rgba(13,21,32,.6);
  transition: box-shadow .3s, transform .3s;
}
.flagship:hover { transform: translateY(-3px); box-shadow: 0 36px 80px -38px rgba(13,21,32,.66); }
.flagship__body { padding: clamp(38px,4.4vw,58px); display: flex; flex-direction: column; justify-content: center; }
.flagship__labels { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; flex-wrap: wrap; }
.flagship__pill { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold-light); border-radius: 24px; padding: 6px 14px; white-space: nowrap; }
.flagship__eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }
.flagship__title { font-family: 'Archivo', sans-serif; font-size: clamp(34px,4.4vw,52px); line-height: 1.06; font-weight: 700; letter-spacing: -.025em; margin: 0 0 22px; max-width: 16ch; color: #f8f6f1; }
.flagship__deck { font-size: clamp(16px,1.3vw,18.5px); line-height: 1.72; color: #b6bcc4; margin: 0 0 34px; max-width: 46ch; }
.flagship__cta { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: #f6f4ef; }
.flagship__cta span { color: var(--gold-light); }
.flagship__media { position: relative; min-height: 340px; background: var(--navy); }
.flagship__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.flagship__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(22,32,43,.6) 0%,rgba(22,32,43,.05) 30%); }

/* Deep-dive list — section header + the facet eyebrow and rank number that
   extend the existing .post-row grid */
.dd-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 6px; }
.dd-head__label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }
.dd-head__sub { font-size: 13.5px; color: #8a8d94; white-space: nowrap; }
.dd-head__rule { flex: 1; height: 1px; background: #e7e2d8; }
.post-row__facet { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: #b39a5f; margin-bottom: 10px; }
.post-row__rank { font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 500; color: #cdbf9f; white-space: nowrap; }

/* Article top bar — back-link + "part of our philosophy" pill */
.article-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 44px; }
.article-topbar .back-link { margin-bottom: 0; }
.phil-pill { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; background: var(--paper-warm); border-radius: 24px; padding: 9px 16px; transition: background .2s; }
.phil-pill:hover { background: #e9e2d4; }
.phil-pill span { color: var(--gold-deep); }

/* Article link-up band (deep-dives only) */
.linkup { text-decoration: none; color: inherit; display: block; border: 1px solid #e6dfce; border-radius: 16px; padding: 30px 32px; background: #f6f1e6; transition: border-color .2s, background .2s; }
.linkup:hover { background: #f1ead9; border-color: #ddd2bb; }
.linkup__label { font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.linkup__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.linkup__title { font-size: clamp(20px,2.4vw,26px); font-weight: 700; letter-spacing: -.02em; color: var(--navy); }
.linkup__cta { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.linkup__cta span { color: var(--gold-deep); }

/* Article series header */
.series-head { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.series-head__label { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }
.series-head__rule { flex: 1; height: 1px; background: #e7e2d8; }

@media (max-width: 820px) {
  .flagship { grid-template-columns: 1fr; }
  .flagship__media { min-height: 220px; }
  .dd-head { flex-wrap: wrap; gap: 6px 16px; }
  .post-row__rank { color: #b39a5f; }
}
