/* =========================================================================
   DYLAN "BEERS" — Personal Field Dossier
   Aesthetic: warm near-black, cinematic-editorial, field-manual.
   Archivo Black display · Spectral editorial body · JetBrains Mono labels.
   One brass accent, used sparingly. No gradients. No AI tells.
   ========================================================================= */

:root {
  /* Lifted off pure-black to a dark olive-charcoal — still cinematic, less flat. */
  --bg:        #12150E;
  --bg-2:      #171B12;
  --surface:   #1C2117;
  --surface-2: #232818;
  --text:      #ECEDE4;        /* bone */
  --muted:     #9AA086;        /* olive-gray */
  --faint:     #666B55;
  /* Duotone accents: brass = agent/trust · olive = military · vital = medic/health */
  --brass:     #CDA64E;
  --brass-dim: #9C7E3B;
  --olive:     #93A05F;        /* military field green / olive drab */
  --olive-dim: #6C763F;
  --vital:     #5FC08C;        /* medic + health green (desaturated, not neon) */
  --vital-dim: #3E8A63;
  --line:      rgba(236, 237, 228, 0.11);
  --line-2:    rgba(236, 237, 228, 0.055);
  --brass-wash: rgba(205, 166, 78, 0.09);
  --olive-wash: rgba(147, 160, 95, 0.10);
  --vital-wash: rgba(95, 192, 140, 0.10);

  --space-2xs: 0.25rem; --space-xs: 0.5rem; --space-sm: 0.75rem;
  --space-md: 1rem;  --space-lg: 1.5rem; --space-xl: 2rem;
  --space-2xl: 3rem; --space-3xl: 4.5rem; --space-4xl: 7rem;
  --section-y: clamp(3.5rem, 9vw, 8rem);

  --display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --sans:    "Archivo", system-ui, -apple-system, sans-serif;
  --serif:   "Spectral", Georgia, "Times New Roman", serif;
  --mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1280px;
  --measure: 62ch;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; animation-iteration-count: 1 !important; }
}
body {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.66;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brass); color: var(--bg); }
:focus-visible { outline: 1.5px solid var(--brass); outline-offset: 3px; }

/* Subtle film-grain over the whole page — gives the warm-black ground texture
   instead of dead flat. Cheap, GPU-friendly, sits above bg below content. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout primitives ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; position: relative; z-index: 1; }
.section { padding-block: var(--section-y); position: relative; z-index: 1; }
.band { border-top: 1px solid var(--line); }
.band--alt { background: var(--bg-2); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brass); color: var(--bg); padding: var(--space-sm) var(--space-md);
  font-family: var(--mono); font-size: 0.78rem;
}
.skip-link:focus { left: var(--space-md); top: var(--space-md); }

/* ---------- Type primitives ---------- */
h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 400; line-height: 0.94;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.mono {
  font-family: var(--mono); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.eyebrow {
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brass);
  display: inline-flex; align-items: center; gap: 0.75em;
}
.eyebrow::before {
  content: ""; width: 1.9em; height: 1px; background: var(--brass); opacity: 0.8;
}
.lede {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.18rem, 1.9vw, 1.5rem);
  line-height: 1.5; color: var(--text); max-width: var(--measure);
}
.prose { max-width: var(--measure); }
.prose p { color: #CFCCC5; }
.prose p + p { margin-top: var(--space-lg); }
.prose em { color: var(--text); font-style: italic; }

/* Section header pattern: mono index + brass eyebrow + big display title */
.shead { display: grid; gap: var(--space-md); margin-bottom: var(--space-2xl); }
.shead__idx { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--faint); }
.shead__title { font-size: clamp(2rem, 5.5vw, 4rem); }

/* Hairline divider with brass tick */
.rule { display: flex; align-items: center; gap: var(--space-md); }
.rule__line { flex: 1; height: 1px; background: var(--line); }
.rule__dot { width: 5px; height: 5px; background: var(--brass); transform: rotate(45deg); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav.is-stuck {
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brandmark { display: inline-flex; align-items: baseline; gap: 0.55em; }
.brandmark__sig { font-family: var(--display); font-size: 1.02rem; letter-spacing: 0.02em; text-transform: uppercase; }
.brandmark__tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--brass); text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.nav__link {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: color .25s var(--ease); position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link--cta {
  color: var(--text); border: 1px solid var(--line); padding: 0.7em 1.15em;
  transition: border-color .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.nav__link--cta:hover { border-color: var(--brass); background: var(--brass); color: var(--bg); }
@media (max-width: 720px) {
  .nav__links .nav__link:not(.nav__link--cta) { display: none; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 96px; padding-bottom: var(--space-3xl);
  overflow: hidden;
}
/* Faint coordinate-grid framing — HUD/field-manual cue, very low contrast */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: clamp(64px, 9vw, 128px) clamp(64px, 9vw, 128px);
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 30% 40%, #000 25%, transparent 78%);
          mask-image: radial-gradient(ellipse 80% 75% at 30% 40%, #000 25%, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: var(--space-xl); }
.hero__name {
  font-family: var(--display);
  font-size: clamp(3.4rem, 13vw, 11rem);
  line-height: 0.86; letter-spacing: -0.02em; text-transform: uppercase;
}
.hero__line {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.05rem); line-height: 1.32; color: var(--text);
  max-width: 26ch; margin-top: var(--space-xl);
}
.hero__line b { font-style: normal; font-weight: 600; color: #fff; }

.hero__meta {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md) var(--space-xl);
}
.tag {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 0.6em;
}
.tag::before { content: ""; width: 4px; height: 4px; background: var(--brass); transform: rotate(45deg); flex: none; }

.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: clamp(2.5rem, 6vw, 3.5rem); }

/* Scroll cue pinned bottom-right */
.hero__scroll {
  position: absolute; right: 0; bottom: var(--space-xl); z-index: 2;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint); display: flex; align-items: center; gap: 0.7em;
  writing-mode: vertical-rl;
}
.hero__scroll::after { content: ""; width: 1px; height: 48px; background: linear-gradient(var(--brass), transparent); animation: drip 2.4s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--mono); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05em 1.7em; border: 1px solid var(--line); background: transparent; color: var(--text);
  cursor: pointer; transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--brass); border-color: var(--brass); color: var(--bg); }
.btn--solid:hover { background: #d8b563; border-color: #d8b563; }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* =========================================================================
   STAT / SERVICE RECORD STRIP
   ========================================================================= */
.record {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  border: 1px solid var(--line);
}
.record__cell { padding: clamp(1.25rem, 3vw, 2rem); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.record__cell:last-child { border-right: none; }
.record__num { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3.1rem); line-height: 1; }
.record__num .u { color: var(--brass); }
.record__lbl { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: var(--space-sm); }

/* =========================================================================
   DOSSIER / BIO — two column editorial
   ========================================================================= */
.dossier { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 860px) { .dossier { grid-template-columns: 1fr; } }
.dossier__aside { position: sticky; top: 110px; }
@media (max-width: 860px) { .dossier__aside { position: static; } }
.dossier__title { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.dossier__sig { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--brass); margin-top: var(--space-lg); }
.dossier__prose p { font-size: 1.12rem; }
.pull {
  font-family: var(--display); text-transform: uppercase; font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.05; letter-spacing: -0.01em; color: var(--text);
  margin: var(--space-2xl) 0; padding-top: var(--space-lg); border: none;
  position: relative;
}
.pull::before {
  content: ""; position: absolute; left: 0; top: 0; width: clamp(2.5rem, 6vw, 4rem); height: 2px;
  background: var(--brass);
}
.pull span { color: var(--brass); }

/* =========================================================================
   CAPABILITIES — three disciplines, asymmetric (NOT identical cards)
   ========================================================================= */
.disciplines { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.disc {
  background: var(--bg); padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-lg) var(--space-xl); align-items: start;
  transition: background-color .4s var(--ease);
}
.disc:hover { background: var(--bg-2); }
.disc__no { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; color: var(--brass); padding-top: 0.5em; }
.disc__h { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1; letter-spacing: -0.01em; }
.disc__body { grid-column: 2; }
.disc__desc { color: #C7C4BD; max-width: 54ch; margin-top: var(--space-sm); }
.disc__list { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-md); margin-top: var(--space-lg); }
.disc__list li { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 0.4em 0.75em; border: 1px solid var(--line); }
@media (max-width: 620px) { .disc { grid-template-columns: 1fr; gap: var(--space-md); } .disc__body { grid-column: 1; } }

/* =========================================================================
   WORK MANIFEST — numbered editorial list, not cards
   ========================================================================= */
.manifest { border-top: 1px solid var(--line); }
.entry {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr) minmax(0, 1.1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: baseline;
  padding: clamp(1.5rem, 3.5vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  position: relative; transition: padding-left .4s var(--ease);
}
a.entry:hover { padding-left: var(--space-md); }
.entry__no { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--faint); }
.entry__name { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2.15rem); line-height: 1; letter-spacing: -0.01em; }
.entry__role { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-top: var(--space-sm); display: inline-block; }
.entry__desc { color: #BDBAB3; font-size: 1.02rem; line-height: 1.5; }
.entry__meta { display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-xs); text-align: right; }
.entry__status { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 0.55em; white-space: nowrap; }
.entry__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex: none; }
.entry__status.is-live::before { background: #6FBF7A; box-shadow: 0 0 0 0 rgba(111,191,122,0.6); animation: pulse 2.6s var(--ease) infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(111,191,122,0.5); } 70% { box-shadow: 0 0 0 7px rgba(111,191,122,0); } 100% { box-shadow: 0 0 0 0 rgba(111,191,122,0); } }
.entry__link { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); display: inline-flex; align-items: center; gap: 0.45em; transition: color .3s var(--ease); }
a.entry:hover .entry__link { color: var(--brass); }
a.entry:hover .entry__link .arr { transform: translateX(3px); }
.entry__link .arr { transition: transform .3s var(--ease); }
@media (max-width: 860px) {
  .entry { grid-template-columns: 2.5rem 1fr; row-gap: var(--space-sm); }
  .entry__desc { grid-column: 2; }
  .entry__meta { grid-column: 2; align-items: flex-start; text-align: left; flex-direction: row; gap: var(--space-md); flex-wrap: wrap; }
}

.section-switch { display: flex; align-items: baseline; gap: var(--space-md); margin: var(--space-3xl) 0 var(--space-lg); }
.section-switch__k { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); }
.section-switch__t { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.1rem, 2.2vw, 1.5rem); letter-spacing: -0.01em; }
.section-switch__line { flex: 1; height: 1px; background: var(--line); }

/* =========================================================================
   ETHOS — full-bleed editorial statement
   ========================================================================= */
.ethos { background: var(--bg-2); }
.ethos__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
@media (max-width: 860px) { .ethos__grid { grid-template-columns: 1fr; } }
.ethos__statement { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.28; color: var(--text); }
.ethos__statement b { font-weight: 600; color: #fff; }
.ethos__cols { columns: 2; column-gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 620px) { .ethos__cols { columns: 1; } }
.ethos__cols p { break-inside: avoid; color: #C7C4BD; font-size: 1.02rem; }
.ethos__cols p + p { margin-top: var(--space-md); }
.creed { list-style: none; margin-top: var(--space-2xl); display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.creed li { background: var(--bg-2); padding: var(--space-lg); display: grid; grid-template-columns: auto 1fr; gap: var(--space-lg); align-items: baseline; }
.creed__k { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; color: var(--brass); text-transform: uppercase; }
.creed__v { font-family: var(--serif); color: #CFCCC5; }
.creed__v b { font-family: var(--display); font-size: 0.95rem; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text); display: block; margin-bottom: 0.2em; }

/* Referral band — tasteful CTA below the engage grid */
.referral {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg);
  flex-wrap: wrap; margin-top: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line); padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--bg);
}
.referral__txt { max-width: 60ch; }
.referral__k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.referral__p { color: #C7C4BD; font-size: 1rem; line-height: 1.5; margin-top: var(--space-sm); }
.referral .btn { flex: none; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact { text-align: left; }
.contact__big { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.6rem, 9vw, 7rem); line-height: 0.9; letter-spacing: -0.02em; }
.contact__big a { transition: color .3s var(--ease); }
.contact__big a:hover { color: var(--brass); }
.contact__sub { font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: #CFCCC5; max-width: 50ch; margin-top: var(--space-xl); }
.contact__row { display: flex; flex-wrap: wrap; gap: var(--space-md) var(--space-2xl); margin-top: clamp(2.5rem, 6vw, 3.5rem); }
.contact__chan { display: grid; gap: var(--space-2xs); }
.contact__chan .k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.contact__chan .v { font-family: var(--mono); font-size: 0.92rem; letter-spacing: 0.02em; color: var(--text); transition: color .3s var(--ease); }
a.contact__chan:hover .v { color: var(--brass); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.foot { border-top: 1px solid var(--line); padding-block: var(--space-2xl); }
.foot__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md); }
.foot__c { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.foot__coord { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }

/* =========================================================================
   TBD CHIP — placeholder for facts the orchestrator fills in.
   Visible in preview, greppable as the token "TBD" in source.
   ========================================================================= */
.tbd {
  font-family: var(--mono); font-size: 0.66em; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--bg); background: var(--brass);
  padding: 0.15em 0.6em; border-radius: 0; display: inline-block; vertical-align: middle;
  white-space: nowrap;
}
.tbd--ghost { color: var(--brass); background: transparent; border: 1px dashed var(--brass-dim); }

/* Intentional "verified / on file" badge — confident, not placeholder. */
.verified { font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.03em; color: var(--vital); display: inline-flex; align-items: center; gap: 0.45em; }
.verified::before { content: "✓"; font-size: 0.92em; color: var(--vital); }
.verified--brass { color: var(--brass); }
.verified--brass::before { color: var(--brass); }

/* Intentional framed photo placeholder marker (replaces loud TBD-IMAGE chip). */
.photoslot__mark { font-family: var(--serif); font-size: 1.7rem; line-height: 1; color: var(--accent-local); opacity: 0.5; }

/* =========================================================================
   REGISTERED AGENT CARD — a digital credential / ID card.
   Reads like an official field credential: seal, mono labels, brass rule.
   ========================================================================= */
.cardwrap { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .cardwrap { grid-template-columns: 1fr; } }

.agentcard {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.9);
}
.agentcard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border: 1px solid var(--brass-wash); margin: 7px;
}
.agentcard__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-md); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--line); }
.agentcard__issuer { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); line-height: 1.7; }
.agentcard__issuer b { color: var(--brass); font-weight: 500; }
.agentcard__seal {
  width: 46px; height: 46px; border: 1px solid var(--brass); border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-size: 1.05rem; color: var(--brass);
  flex: none; position: relative;
}
.agentcard__seal::before { content: ""; position: absolute; inset: 4px; border: 1px dashed var(--brass-dim); border-radius: 50%; opacity: 0.6; }

.agentcard__id { display: grid; grid-template-columns: 84px 1fr; gap: var(--space-lg); align-items: center; padding: var(--space-xl) 0; }
.agentcard__idrow { padding: var(--space-lg) 0 var(--space-md); }

/* Verify-license CTA — the credential's proof: links to the official registry */
.agentcard__verify {
  display: grid; gap: 0.3em; padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--brass); background: var(--brass-wash);
  transition: background-color .3s var(--ease);
}
.agentcard__verify:hover { background: color-mix(in oklab, var(--brass) 18%, transparent); }
.agentcard__verify-k { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.agentcard__verify-v { font-family: var(--sans); font-size: 0.92rem; color: var(--text); font-weight: 500; display: inline-flex; align-items: center; gap: 0.5em; }
.agentcard__verify:hover .arr { transform: translateX(3px); }
.agentcard__verify .arr { transition: transform .3s var(--ease); color: var(--brass); }
.agentcard__photo {
  width: 84px; height: 100px; background: var(--bg-2); border: 1px solid var(--line);
  display: grid; place-items: center; text-align: center; gap: 0.3em; padding: var(--space-xs);
}
.agentcard__photo .tbd { font-size: 0.56rem; }
.agentcard__name { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 0.96; letter-spacing: -0.01em; }
.agentcard__title { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-top: var(--space-sm); }

.agentcard__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--space-md); }
.afield { background: var(--surface); padding: var(--space-md); display: grid; gap: 0.35em; }
.afield--wide { grid-column: 1 / -1; }
.afield__k { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.afield__v { font-family: var(--mono); font-size: 0.92rem; letter-spacing: 0.02em; color: var(--text); }
.afield__v a { transition: color .25s var(--ease); }
.afield__v a:hover { color: var(--brass); }

.agentcard__strip { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid var(--line); }
.agentcard__sig { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--text); }
.agentcard__barcode { display: flex; gap: 2px; height: 26px; align-items: stretch; opacity: 0.7; }
.agentcard__barcode i { width: 2px; background: var(--muted); display: block; }
.agentcard__barcode i:nth-child(3n) { width: 1px; }
.agentcard__barcode i:nth-child(4n) { width: 3px; background: var(--faint); }

.cardside__lede { font-size: clamp(1.1rem, 2vw, 1.35rem); }
.cardside__list { list-style: none; margin-top: var(--space-xl); display: grid; gap: var(--space-md); }
.cardside__list li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: baseline; color: #C7C4BD; }
.cardside__list .k { font-family: var(--mono); font-size: 0.7rem; color: var(--brass); letter-spacing: 0.1em; }

/* =========================================================================
   STRATEGIES — client-benefit concepts. Numbered editorial grid, not cards.
   ========================================================================= */
.strats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 720px) { .strats { grid-template-columns: 1fr; } }
.strat { background: var(--bg); padding: clamp(1.5rem, 3.5vw, 2.25rem); transition: background-color .4s var(--ease); }
.strat:hover { background: var(--bg-2); }
.strat__head { display: flex; align-items: baseline; gap: var(--space-md); }
.strat__no { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--brass); }
.strat__name { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1; letter-spacing: -0.01em; }
.strat__for { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: var(--space-sm); display: inline-block; }
.strat__desc { color: #C7C4BD; margin-top: var(--space-md); font-size: 1rem; line-height: 1.55; max-width: 46ch; }

/* =========================================================================
   WORK WITH ME — primary client CTA band + secondary recruiting lane
   ========================================================================= */
.engage { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
@media (max-width: 860px) { .engage { grid-template-columns: 1fr; } }
.engage__primary { display: flex; flex-direction: column; justify-content: center; }
.engage__big { font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 0.9; letter-spacing: -0.02em; }
.engage__sub { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem); color: #CFCCC5; max-width: 42ch; margin-top: var(--space-lg); }
.engage__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-top: var(--space-xl); }
.recruit {
  border: 1px solid var(--line); padding: clamp(1.5rem, 3.5vw, 2.25rem);
  display: flex; flex-direction: column; gap: var(--space-md); background: var(--bg-2);
}
.recruit__k { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); }
.recruit__h { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1; letter-spacing: -0.01em; }
.recruit__p { color: #BDBAB3; font-size: 0.98rem; line-height: 1.55; }
.recruit__link { margin-top: auto; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); display: inline-flex; align-items: center; gap: 0.5em; transition: color .3s var(--ease); }
.recruit__link:hover { color: var(--brass); }
.recruit__link .arr { transition: transform .3s var(--ease); }
.recruit__link:hover .arr { transform: translateX(4px); }

/* =========================================================================
   SECTION ACCENT HELPERS — swap the brass thread for olive / vital per section
   ========================================================================= */
.acc-olive { --accent-local: var(--olive); }
.acc-vital { --accent-local: var(--vital); }
:root { --accent-local: var(--brass); }
.eyebrow--alt { color: var(--accent-local); }
.eyebrow--alt::before { background: var(--accent-local); }
.rule__dot--alt { background: var(--accent-local); }

/* =========================================================================
   PHOTO SLOT — cinematic HUD-framed image slot.
   Holds a TBD-IMAGE placeholder now; drop <img> in later (object-fit cover).
   ========================================================================= */
.photoslot {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  overflow: hidden; aspect-ratio: 4 / 5;
}
.photoslot--wide { aspect-ratio: 16 / 10; }
.photoslot--tall { aspect-ratio: 3 / 4; }
.photoslot img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* duotone-friendly treatment for real photos — subtle, keeps the cinematic tone */
.photoslot.is-duotone img { filter: grayscale(0.35) contrast(1.06) brightness(0.92); }
.photoslot__ph {
  position: absolute; inset: 0; display: grid; place-content: center; gap: var(--space-sm);
  text-align: center; padding: var(--space-lg);
  background-image:
    linear-gradient(var(--line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 28px 28px;
}
.photoslot__ph .tbd { margin-inline: auto; }
.photoslot__phlabel { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
/* corner ticks */
.photoslot::before, .photoslot::after {
  content: ""; position: absolute; width: 14px; height: 14px; z-index: 2; pointer-events: none;
  border: 1px solid var(--accent-local); opacity: 0.85;
}
.photoslot::before { top: 9px; left: 9px; border-right: none; border-bottom: none; }
.photoslot::after  { bottom: 9px; right: 9px; border-left: none; border-top: none; }
.photoslot__cap {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); background: color-mix(in oklab, var(--bg) 78%, transparent);
  padding: 0.5em 0.85em; backdrop-filter: blur(4px);
  border-top: 1px solid var(--line); border-right: 1px solid var(--line);
}
.photoslot__cap b { color: var(--accent-local); font-weight: 500; }

/* =========================================================================
   HERO PORTRAIT — suit photo, right side on wide screens
   ========================================================================= */
.hero__layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 920px) { .hero__layout { grid-template-columns: 1fr; } .hero__portrait { display: none; } }
.hero__portrait { position: relative; }
.hero__portrait .photoslot { aspect-ratio: 3 / 4.2; }

/* =========================================================================
   THE DIFFERENTIATOR — featured value-add, vital green
   ========================================================================= */
.diff { background: var(--bg-2); position: relative; overflow: hidden; }
.diff__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
@media (max-width: 860px) { .diff__inner { grid-template-columns: 1fr; } }
.diff__kicker { color: var(--vital); }
.diff__big {
  font-family: var(--display); text-transform: uppercase; font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 0.96; letter-spacing: -0.015em; margin-top: var(--space-md);
}
.diff__big span { color: var(--vital); }
.diff__lede { font-size: clamp(1.12rem, 1.9vw, 1.4rem); margin-top: var(--space-xl); }
.diff__lede b { color: #fff; font-weight: 600; }
.diff__creds { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-xl); }
.diff__creds li {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); padding: 0.55em 0.9em; border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 0.55em;
}
.diff__creds li::before { content: ""; width: 5px; height: 5px; background: var(--vital); transform: rotate(45deg); flex: none; }
.diff__offer {
  border: 1px solid var(--line); background: var(--surface); padding: clamp(1.5rem, 3.5vw, 2.25rem);
}
.diff__offer h3 { font-family: var(--display); text-transform: uppercase; font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1; letter-spacing: -0.01em; }
.diff__offer .vital { color: var(--vital); }
.diff__offer ul { list-style: none; margin-top: var(--space-lg); display: grid; gap: var(--space-md); }
.diff__offer li { display: grid; grid-template-columns: auto 1fr; gap: var(--space-md); align-items: baseline; color: #C8CABF; font-size: 0.98rem; }
.diff__offer li .n { font-family: var(--mono); font-size: 0.68rem; color: var(--vital); letter-spacing: 0.08em; }
.disclaimer {
  margin-top: var(--space-xl); padding-top: var(--space-md); border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.66rem; line-height: 1.7; letter-spacing: 0.04em;
  color: var(--muted); max-width: 70ch;
}

/* =========================================================================
   SERVICE SECTIONS — Military (olive) & Medical (vital). Cinematic.
   ========================================================================= */
.svc__head { display: grid; gap: var(--space-md); margin-bottom: var(--space-2xl); max-width: 60ch; }
.svc__title { font-size: clamp(2.1rem, 6vw, 4.4rem); }
.svc__title span { color: var(--accent-local); }
.svc__lede { font-size: clamp(1.12rem, 1.9vw, 1.4rem); color: #CFCFC6; }

/* layout: text column + photo gallery */
.svc__body { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .svc__body { grid-template-columns: 1fr; } }

/* dossier-style stat rows for service record */
.svc__rec { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--space-lg); }
.svc__rec li { background: var(--bg); padding: var(--space-lg); display: grid; grid-template-columns: auto 1fr; gap: var(--space-lg); align-items: baseline; }
.band--alt .svc__rec li { background: var(--bg-2); }
.svc__rec .k { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-local); white-space: nowrap; }
.svc__rec .v { color: #CFCCC4; }
.svc__rec .v b { font-family: var(--display); font-size: 0.98rem; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text); display: block; margin-bottom: 0.18em; }

.svc__prose p { color: #CFCCC4; }
.svc__prose p + p { margin-top: var(--space-lg); }

/* photo gallery: one lead + two supporting */
.svc__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.svc__gallery .photoslot--lead { grid-column: 1 / -1; }
@media (max-width: 480px) { .svc__gallery { grid-template-columns: 1fr; } }

.svc__pull {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.3; color: var(--text); margin-top: var(--space-xl); padding-top: var(--space-lg);
  position: relative;
}
.svc__pull::before { content: ""; position: absolute; left: 0; top: 0; width: clamp(2.5rem,6vw,4rem); height: 2px; background: var(--accent-local); }

/* Text-forward service record (photo-free): 3-up record strip + large pull quote */
.svc__rec--wide { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .svc__rec--wide { grid-template-columns: 1fr; } }
.svc__rec--wide li { grid-template-columns: 1fr; gap: var(--space-sm); align-items: start; }
.svc__pull--big { font-size: clamp(1.5rem, 3.6vw, 2.5rem); line-height: 1.18; max-width: 30ch; margin-top: var(--space-2xl); }

/* =========================================================================
   REVEAL — one orchestrated page-load + scroll-in
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
