/* =================================================================
   ENDURING — "Build to outlast."
   A patient-capital holding company. The mountain is the metaphor:
   slow ascent, long horizons, durable ground beneath every step.
   ================================================================= */

/* ---------- Tokens ---------- */
:root{
  /* ---- Brand palette — Enduring style guide, verbatim ---- */
  --blue:#193661;   /* Enduring Blue   · PANTONE 534    */
  --brass:#a6832c;  /* Enduring Brass  · PANTONE 4007 C · accent only, ≤15% */
  --black:#000000;  /* Rich Black                        */
  --gray:#a7a9ac;   /* 40% Gray        · PANTONE Cool Gray 6 */
  --white:#ffffff;

  /* ---- Surfaces ---- */
  --ink:var(--black);            /* deepest bands, footer, drawer */
  --navy:var(--blue);            /* mid bands */
  --paper:var(--white);          /* light bands */
  --ivory:var(--white);          /* type on dark */
  --navy-glass:rgba(25,54,97,.86);

  /* ---- Ink, by surface ----
     Defaults are for light surfaces; the surface classes below re-point them.
     40% Gray is deliberately NOT used for body text on white — it measures
     2.36:1, well under the 4.5:1 floor. On white, secondary type is Enduring
     Blue at 12.06:1. */
  --slate:var(--blue);           /* secondary type on light */
  --slate-light:var(--gray);     /* fine print on dark */
  --mist:var(--gray);            /* secondary type on dark: 5.12 on blue, 8.91 on black */

  /* ---- Accent, contrast-gated ----
     Brass clears AA for body-size text only on Rich Black (5.90:1). On
     Enduring Blue it is 3.39:1 and on white 3.56:1 — both fail. So small
     accent text swaps colour per surface via --accent-sm, while display-size
     type and non-text marks (rules, dots, fills, icons) keep brass
     everywhere, where the 3:1 threshold applies and is met. */
  --accent-sm:var(--blue);       /* small accent type — light surfaces */

  --line:rgba(0,0,0,.14);
  --line-light:rgba(255,255,255,.18);

  --shadow-sm:0 1px 2px rgba(0,0,0,.07), 0 4px 14px rgba(0,0,0,.07);
  --shadow-lg:0 24px 60px -24px rgba(0,0,0,.42);

  /* Tiempos Headline is a commercial Klim licence; the guide names Georgia as
     the sanctioned fallback. Swap the first family here if the licence lands. */
  --serif:Georgia, "Times New Roman", serif;
  --sans:"Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container:1240px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --gutter:clamp(1.4rem, 5vw, 6rem);
}

/* Surface scopes re-point the ink tokens. Rich Black keeps brass accents;
   Enduring Blue and photo overlays fall back to white. */
/* No black surfaces, so every dark band is Enduring Blue — where brass is
   3.39:1 and cannot carry small text. Brass therefore survives only as fills,
   rules, icons and display-size type. */
.bg-ink,.bg-navy,.hero,.phero,.cta-band,.site-footer,.drawer{--accent-sm:var(--white)}
.bg-ink,.bg-navy,.hero,.phero,.cta-band,.site-footer,.drawer{--slate:var(--gray)}
/* White panels nested inside a dark section must take the light-surface ink
   back, or they inherit 40% Gray and land at 2.36:1 on white. */
.form-card,.contact-card,.pager-card,.dropdown{--slate:var(--blue);--accent-sm:var(--blue)}
/* ...and the mirror case: a black card dropped into a light section. */
.card--dark{--slate:var(--gray);--accent-sm:var(--white)}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body{
  font-family:var(--sans);
  background:var(--paper);
  color:var(--ink);
  font-size:clamp(.9375rem,1vw,1rem); /* guide: ~15px digital body */
  line-height:1.7;
  letter-spacing:.005em;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
::selection{background:var(--brass);color:var(--ink)}

/* ---------- Type ---------- */
/* Georgia is wider and rounder than Fraunces was, so the display tracking is
   eased off; -.02em read as cramped on the larger sizes. */
h1,h2,h3,h4{font-family:var(--serif);font-weight:400;line-height:1.06;letter-spacing:-.015em}
h1{font-size:clamp(2.7rem,6.8vw,6rem)}
h2{font-size:clamp(2rem,4.2vw,3.6rem)}
h3{font-size:clamp(1.35rem,2vw,1.85rem);letter-spacing:-.005em}
.display-italic{font-style:italic;font-weight:400}
.lede{font-size:clamp(1.2rem,1.8vw,1.55rem);line-height:1.5;color:var(--slate);font-weight:300;letter-spacing:-.01em}

/* Guide: subheaders & callouts are Roboto Black, all caps. */
.eyebrow{
  font-family:var(--sans);font-size:.72rem;font-weight:900;
  letter-spacing:.28em;text-transform:uppercase;color:var(--accent-sm);
  display:inline-flex;align-items:center;gap:.7rem;
}
.eyebrow::before{content:"";width:34px;height:1px;background:var(--brass)}
.eyebrow.center::after{content:"";width:34px;height:1px;background:var(--brass)}
.eyebrow.center{justify-content:center}
/* solid badge variant — for placing the eyebrow over bright imagery */
.eyebrow.badge{background:var(--brass);color:var(--black);padding:.5rem .95rem;border-radius:3px;
  box-shadow:0 6px 22px -10px rgba(0,0,0,.6)}
.eyebrow.badge::before,.eyebrow.badge::after{display:none}

/* ---------- Layout ---------- */
.container{max-width:var(--container);margin-inline:auto;padding-inline:var(--gutter)}
.section{padding-block:clamp(4.5rem,9vw,9rem)}
.section--tight{padding-block:clamp(3rem,6vw,5.5rem)}
.center{text-align:center}
.measure{max-width:62ch}
.measure-sm{max-width:48ch}

/* ---------- Buttons ---------- */
.btn{
  position:relative;display:inline-flex;align-items:center;gap:.7rem;
  font-family:var(--sans);font-size:.82rem;font-weight:900;letter-spacing:.14em;
  text-transform:uppercase;padding:1.05rem 1.9rem;border-radius:2px;
  border:1px solid transparent;cursor:pointer;overflow:hidden;
  transition:color .5s var(--ease),background .5s var(--ease),border-color .5s var(--ease);
}
.btn .arrow{transition:transform .45s var(--ease)}
.btn:hover .arrow{transform:translateX(5px)}
/* Rich Black on brass is 5.90:1 — the one brass pairing that clears AA. */
.btn--primary{background:var(--brass);color:var(--black)}
.btn--primary:hover{background:var(--blue);color:var(--white)}
.btn--ghost{border-color:currentColor;color:var(--blue)}
.btn--ghost:hover{background:var(--ink);color:var(--ivory);border-color:var(--ink)}
.btn--light{border-color:var(--line-light);color:var(--ivory)}
.btn--light:hover{background:var(--ivory);color:var(--ink)}

/* animated text link */
.tlink{
  position:relative;display:inline-flex;align-items:center;gap:.5rem;
  font-weight:900;font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;color:var(--accent-sm);
}
.tlink::after{content:"";position:absolute;left:0;bottom:-4px;width:100%;height:1px;
  background:currentColor;transform:scaleX(0);transform-origin:right;transition:transform .45s var(--ease)}
.tlink:hover::after{transform:scaleX(1);transform-origin:left}
.tlink .arrow{transition:transform .4s var(--ease)}
.tlink:hover .arrow{transform:translateX(4px)}

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:100;
  transition:background .5s var(--ease),box-shadow .5s var(--ease),padding .5s var(--ease);
  padding-block:1.4rem;
}
/* Unscrolled, the header floats over photography whose top edge can be sky-
   bright. This scrim guarantees a backdrop dark enough for white nav type
   (5.2:1 even against a pure-white photo) and fades out once the solid glass
   takes over on scroll. */
.site-header::before{content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:linear-gradient(180deg,rgba(25,54,97,.74),rgba(25,54,97,0));
  transition:opacity .5s var(--ease)}
.site-header.scrolled::before{opacity:0}
.site-header.scrolled{background:var(--navy-glass);backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 1px 0 var(--line-light);padding-block:.85rem}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1.6rem}
/* flex:none on both — as a shrinkable flex item in the nav row the wordmark
   got squeezed horizontally (aspect 6.2 instead of 7.8), which is exactly
   the letter-spacing distortion the real logo is meant to fix. It scales
   down by height instead, so the letterforms stay true. */
.brand{display:flex;align-items:center;color:var(--ivory);flex:none}
/* plated logo — the lettering is only ~48% of the plate height, so these are
   about double the bare-wordmark heights to keep the letterforms the same
   size. Capped so the wider badge still clears the nav at ~1000px. */
.brand__logo{height:clamp(34px,3.4vw,46px);width:auto;display:block;flex:none}
.brand--footer .brand__logo{height:56px}
.nav__menu{display:flex;align-items:center;gap:.1rem;list-style:none;flex:none}
.nav__item{position:relative;flex:none}
/* white, not 40% Gray — gray over the header scrim is only 2.2:1. State is
   carried by the brass underline instead of a colour shift. */
.nav__link{
  position:relative;display:flex;align-items:center;gap:.4rem;color:var(--white);
  font-size:.76rem;font-weight:500;letter-spacing:.04em;padding:.6rem .78rem;
  text-transform:uppercase;white-space:nowrap;
}
.nav__link::after{content:"";position:absolute;left:.78rem;right:.78rem;bottom:.34rem;height:1px;
  background:var(--brass);transform:scaleX(0);transform-origin:right;
  transition:transform .35s var(--ease)}
.nav__link:hover::after,.nav__item.active>.nav__link::after{transform:scaleX(1);transform-origin:left}
.nav__link .caret{width:8px;height:8px;opacity:.6;transition:transform .35s var(--ease)}
.nav__item:hover .caret{transform:rotate(180deg)}

/* dropdown */
.dropdown{
  position:absolute;top:calc(100% + 10px);left:50%;transform:translateX(-50%) translateY(8px);
  background:var(--paper);border:1px solid var(--line);border-radius:6px;box-shadow:var(--shadow-lg);
  min-width:280px;padding:.55rem;opacity:0;visibility:hidden;transition:all .35s var(--ease);
}
.nav__item:hover .dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown a{display:block;padding:.85rem 1rem;border-radius:4px;transition:background .25s}
.dropdown a:hover{background:var(--ivory)}
.dropdown .dd-title{display:block;font-family:var(--serif);font-size:1.05rem;color:var(--ink);letter-spacing:-.01em;line-height:1.2}
.dropdown .dd-sub{display:block;font-size:.78rem;color:var(--slate);margin-top:.2rem;line-height:1.3}
/* Connect lives only in the CTA button, which carries its own dropdown */
.nav__cta-wrap{position:relative;margin-left:.4rem;flex:none}
.nav__cta{padding:.85rem 1.35rem;font-size:.72rem;letter-spacing:.1em}
.nav__cta .caret{width:8px;height:8px;opacity:.7;transition:transform .35s var(--ease)}
.nav__cta-wrap:hover .caret{transform:rotate(180deg)}
.nav__cta-wrap:hover .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
/* right-anchored so the panel can't run off the viewport edge */
.dropdown--end{left:auto;right:0;transform:translateY(8px)}
/* lock glyph on the private portal dropdown item */
.dropdown .dd-lock{display:inline-flex;vertical-align:middle;margin-right:.45rem;color:var(--brass)}
.dropdown .dd-lock .lock{width:12px;height:12px}

.nav__toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:.4rem}
.nav__toggle span{width:26px;height:2px;background:var(--ivory);transition:.4s var(--ease)}

/* mobile drawer */
.drawer{
  position:fixed;inset:0;z-index:99;background:var(--blue);
  transform:translateX(100%);transition:transform .6s var(--ease);
  display:flex;flex-direction:column;justify-content:center;padding:var(--gutter);
}
.drawer.open{transform:translateX(0)}
.drawer a{font-family:var(--serif);font-size:1.7rem;color:var(--ivory);padding:.55rem 0;
  border-bottom:1px solid var(--line-light)}
.drawer a:last-child{border:0}
.drawer .drawer__group{font-size:.7rem;letter-spacing:.25em;text-transform:uppercase;font-weight:900;
  color:var(--accent-sm);font-family:var(--sans);margin-top:1.6rem;margin-bottom:.4rem}

/* =================================================================
   HERO
   ================================================================= */
.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;color:var(--ivory)}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{width:100%;height:100%;object-fit:cover;transform:scale(1.08);
  animation:slowZoom 18s var(--ease) forwards}
@keyframes slowZoom{to{transform:scale(1)}}
/* photo overlays are Enduring Blue, so imagery reads as brand rather than
   neutral grey. The old gradient thinned to .22 across the middle — exactly
   where the headline sits — leaving white type at 2.3:1 over the bright sky
   in hero-dawn.jpg. It now stays light only in the upper third, where no
   type lands, and holds .86+ from 62% down. */
.hero__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,
    rgba(25,54,97,.58) 0%,rgba(25,54,97,.40) 26%,
    rgba(25,54,97,.86) 62%,rgba(25,54,97,.93) 100%)}
.hero__inner{position:relative;z-index:2;width:100%;padding-bottom:clamp(4rem,9vh,8rem);padding-top:9rem}
.hero h1{max-width:16ch}
.hero h1 .ln{display:block;overflow:hidden;padding-bottom:.16em}
.hero h1 .ln>span{display:block;transform:translateY(115%);animation:riseIn 1s var(--ease) forwards}
.hero h1 .ln:nth-child(2)>span{animation-delay:.12s}
/* white, not brass. Brass over photography tops out near 2.6:1 even against
   a heavy overlay — the italic serif carries the emphasis instead, and the
   brass badge and primary button keep the accent present in the hero. */
.hero h1 .ln em{font-style:italic;color:var(--white)}
@keyframes riseIn{to{transform:translateY(0)}}
/* white, matching .phero p — 40% Gray lands at 4.12:1 against the brightest
   patch of hero-dawn.jpg behind this line */
.hero__sub{margin-top:1.8rem;max-width:46ch;font-size:clamp(1.05rem,1.5vw,1.3rem);
  font-weight:300;color:var(--white);opacity:0;animation:fadeUp 1s var(--ease) .6s forwards}
.hero__actions{margin-top:2.4rem;display:flex;gap:1rem;flex-wrap:wrap;
  opacity:0;animation:fadeUp 1s var(--ease) .8s forwards}
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

.scroll-cue{position:absolute;left:50%;bottom:2rem;transform:translateX(-50%);z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:.7rem;color:var(--white);
  font-size:.66rem;font-weight:900;letter-spacing:.3em;text-transform:uppercase;opacity:0;
  animation:fadeUp 1s var(--ease) 1.4s forwards}
.scroll-cue .bar{width:1px;height:46px;background:linear-gradient(var(--brass),transparent);
  position:relative;overflow:hidden}
.scroll-cue .bar::after{content:"";position:absolute;top:0;left:0;width:100%;height:40%;
  background:var(--ivory);animation:cueDrop 2.2s var(--ease) infinite}
@keyframes cueDrop{0%{transform:translateY(-100%)}60%,100%{transform:translateY(260%)}}

/* page hero (interior pages) */
.phero{position:relative;min-height:62vh;display:flex;align-items:flex-end;color:var(--ivory);overflow:hidden}
.phero__bg{position:absolute;inset:0}
.phero__bg img{width:100%;height:100%;object-fit:cover}
.phero__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(25,54,97,.66),rgba(25,54,97,.92))}
/* width:100% is load-bearing: .phero is a flex container, so without it the
   .container shrinks to fit its text and its auto inline margins centre the
   remainder — the interior heroes rendered as a ~640px column mid-screen. */
.phero__inner{position:relative;z-index:2;width:100%;padding-bottom:clamp(3rem,7vh,6rem);padding-top:9rem}
.phero h1{max-width:18ch;font-size:clamp(2.4rem,5.5vw,4.6rem)}
/* :not(.eyebrow) — this rule sits after .eyebrow in source order and matched
   at the same specificity, so it was silently overriding the eyebrow's
   weight/colour on every interior hero (300 there, 600 everywhere else). */
/* white, not 40% Gray — gray over the page-hero photo bottoms out at 3.1:1 */
.phero p:not(.eyebrow){margin-top:1.2rem;max-width:52ch;color:var(--white);font-weight:300}

/* =================================================================
   GENERAL SECTIONS
   ================================================================= */
/* .bg-ink and .bg-navy are now the same surface — Enduring Blue. Kept as two
   class names so the markup didn't have to churn. */
.bg-ink,.bg-navy{background:var(--blue);color:var(--white)}
.bg-ivory,.bg-paper{background:var(--white)}
/* light neutral band — 40% Gray at 14% over the white page. Gives a third
   surface so two blue sections never abut, without inventing a colour. */
.bg-tint{background:rgba(167,169,172,.14)}
/* .lede and .eyebrow no longer need per-surface overrides — --slate and
   --accent-sm are re-pointed by the surface scopes at the top of the file. */

.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,6rem);align-items:center}
.split--reverse .split__media{order:2}
.split__media{position:relative;border-radius:6px;overflow:hidden;box-shadow:var(--shadow-lg)}
.split__media img{width:100%;aspect-ratio:4/5;object-fit:cover;transition:transform 1.4s var(--ease)}
.split__media:hover img{transform:scale(1.05)}
/* the caption sat directly on the photograph — white on an unknown image is
   a coin toss, so it gets its own scrim */
.split__media::after{content:"";position:absolute;left:0;right:0;bottom:0;height:38%;
  pointer-events:none;background:linear-gradient(180deg,rgba(25,54,97,0),rgba(25,54,97,.88))}
.split__media .tag{position:absolute;z-index:2;left:1.3rem;bottom:1.3rem;color:var(--white);
  font-size:.72rem;font-weight:900;letter-spacing:.22em;text-transform:uppercase}

.intro-statement{font-family:var(--serif);font-size:clamp(1.7rem,3.4vw,3rem);line-height:1.24;
  letter-spacing:-.015em;font-weight:400;max-width:24ch}
/* display size (27–48px), so brass clears the 3:1 large-text threshold on
   every surface and needs no per-surface swap */
.intro-statement em{font-style:italic;color:var(--brass)}

/* ---------- Pillars / cards ---------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.2rem,2.5vw,2rem)}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(1.2rem,3vw,2.6rem)}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,2vw,1.6rem)}
.card{
  position:relative;padding:clamp(1.8rem,2.6vw,2.6rem);border:1px solid var(--line);
  border-radius:6px;background:var(--paper);transition:transform .6s var(--ease),box-shadow .6s var(--ease),border-color .6s;
  overflow:hidden;
}
.bg-ink .card,.bg-navy .card{background:rgba(255,255,255,.03);border-color:var(--line-light)}
/* dark card inside a light section (the mission pull-quote on Our Approach) */
.card--dark{background:var(--blue);color:var(--white);border-color:var(--blue);
  display:flex;flex-direction:column;justify-content:center}
.card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--brass)}
/* 16px — body size, so it takes the contrast-gated accent, not raw brass */
.card__num{font-family:var(--serif);font-size:1rem;color:var(--accent-sm);letter-spacing:.1em}
.card h3{margin:1.1rem 0 .8rem}
.card p{color:var(--slate);font-size:.98rem}
.card__line{position:absolute;left:0;top:0;height:2px;width:0;background:var(--brass);transition:width .6s var(--ease)}
.card:hover .card__line{width:100%}

/* Philosophy pillars (home) — no numeral label, no icon. The type carries the
   hierarchy on its own: title leads, body sits a clear step below it, points
   drop another step and turn secondary. */
.card--pillar h3{margin:0 0 1rem;font-size:clamp(1.5rem,2.4vw,2.05rem);line-height:1.14;
  letter-spacing:-.012em}
/* two title lines reserved, so the body copy starts on one line across all
   three cards; released once they stack and there is nothing to align to */
@media (min-width:981px){ .card--pillar h3{min-height:2.28em} }
.card--pillar p{font-size:clamp(.97rem,1.05vw,1.06rem);line-height:1.72}
.card--pillar .card__points{margin-top:1.7rem;padding-top:1.7rem}
.card--pillar .card__points li{font-size:.88rem;line-height:1.55;letter-spacing:.01em}

/* supporting bullets (home "Philosophy") */
.card__points{list-style:none;display:grid;gap:.6rem;margin-top:1.4rem;padding-top:1.4rem;
  border-top:1px solid var(--line)}
.bg-ink .card__points,.bg-navy .card__points{border-top-color:var(--line-light)}
.card__points li{position:relative;padding-left:1.15rem;font-size:.9rem;line-height:1.5;color:var(--slate)}
.card__points li::before{content:"";position:absolute;left:0;top:.6em;width:5px;height:5px;
  border-radius:50%;background:var(--brass)}

/* inline prose link — sits inside a sentence, unlike the uppercase .tlink */
/* body-size link, so it follows --accent-sm; the underline carries the
   affordance where the colour matches surrounding secondary type */
.inline-link{color:var(--accent-sm);text-decoration:underline;text-underline-offset:.22em;
  text-decoration-thickness:1px;text-decoration-color:color-mix(in srgb,currentColor 50%,transparent);
  transition:color .3s var(--ease),text-decoration-color .3s var(--ease)}
.inline-link:hover{text-decoration-color:currentColor}
.bg-ink .inline-link:hover,.bg-navy .inline-link:hover,.cta-band .inline-link:hover{color:var(--white)}

/* directory cards (Connect page) — readable, with just enough space reserved
   for the label/title rows so a wrapping line doesn't shove the body out of line */
.dir-grid .card{display:flex;flex-direction:column;gap:.65rem}
.dir-grid .card__num{line-height:1.35;display:flex;align-items:flex-end;justify-content:center;min-height:2.7em}
.dir-grid .card h3{display:flex;align-items:flex-start;justify-content:center;margin:0;min-height:2.1em}

/* ---------- list with checks ---------- */
.feature-list{list-style:none;display:grid;gap:1.1rem}
.feature-list li{display:flex;gap:1rem;align-items:flex-start}
/* border stays brass (non-text, 3:1 everywhere); the contents can be a
   numeral, so they take the contrast-gated accent rather than raw brass */
.feature-list .ic{flex:none;width:30px;height:30px;border-radius:50%;border:1px solid var(--brass);
  display:grid;place-items:center;color:var(--accent-sm);margin-top:.1rem}
.feature-list h4{font-family:var(--sans);font-weight:700;font-size:1rem;letter-spacing:0}
.feature-list p{color:var(--slate);font-size:.95rem}

/* ---------- stats ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
/* 38–58px — comfortably large text, so brass is fine on any surface */
.stat__num{font-family:var(--serif);font-size:clamp(2.4rem,4.5vw,3.6rem);line-height:1;color:var(--brass)}
/* --slate, not --mist: the stats band is a light surface on the home page */
.stat__label{margin-top:.7rem;font-size:.78rem;font-weight:900;letter-spacing:.18em;
  text-transform:uppercase;color:var(--slate)}

/* ---------- opportunity types ---------- */
.otype{display:grid;grid-template-columns:auto 1fr;gap:1.6rem;align-items:start;
  padding-block:2rem;border-top:1px solid var(--line)}
.otype:last-child{border-bottom:1px solid var(--line)}
.otype__k{font-family:var(--serif);font-size:1.5rem;color:var(--brass);font-style:italic}
.otype h3{margin-bottom:.5rem}
.otype p{color:var(--slate);max-width:56ch}

/* ---------- principles (mission) ---------- */
.principle{padding:clamp(1.8rem,3vw,2.8rem);border:1px solid var(--line-light);border-radius:6px;
  background:rgba(255,255,255,.02);height:100%;display:flex;flex-direction:column}
.principle__head{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.6rem;
  padding-bottom:1.2rem;border-bottom:1px solid var(--line-light)}
.principle__head .n{font-family:var(--serif);font-size:2.2rem;color:var(--brass);line-height:1.06}
/* reserve up to 3 lines so all three dividers line up across the row */
.principle__head h3{color:var(--white);min-height:3.12em}
.principle dl{display:grid;gap:1.2rem}
.principle dt{font-weight:700;color:var(--white);font-size:.95rem;letter-spacing:.02em}
.principle dd{color:var(--mist);font-size:.92rem;margin-top:.15rem}
/* truncation cue — the values run deeper in the downloadable document.
   margin-top:auto pins it to the panel floor so all three line up. */
.principle__more{margin-top:auto;padding-top:1.2rem;border-top:1px dashed var(--line-light);
  font-size:.72rem;font-weight:900;letter-spacing:.18em;text-transform:uppercase;color:var(--accent-sm)}
.principle__more::before{content:"…";margin-right:.55rem;letter-spacing:normal}

/* ---------- letters ---------- */
.letter{display:grid;grid-template-columns:auto 1fr auto;gap:1.6rem;align-items:center;
  padding:1.7rem 0;border-top:1px solid var(--line);transition:padding-left .5s var(--ease)}
.letter:last-child{border-bottom:1px solid var(--line)}
.letter:hover{padding-left:.8rem}
.letter__yr{font-family:var(--serif);font-size:1.5rem;color:var(--brass);min-width:3.4ch}
.letter__t{font-family:var(--serif);font-size:clamp(1.2rem,2vw,1.6rem);color:var(--black)}
.letter__t span{display:block;font-family:var(--sans);font-size:.78rem;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;color:var(--slate);margin-top:.3rem;font-style:normal}
.letter .arrow{color:var(--brass);transition:transform .45s var(--ease)}
.letter:hover .arrow{transform:translateX(6px)}

/* ---------- letter article (annual letter pages) ---------- */
.phero--letter{min-height:56vh}
.letter-meta{margin-top:1.6rem;display:flex;flex-wrap:wrap;align-items:center;gap:.7rem 1.1rem;
  color:var(--white);font-size:.75rem;font-weight:900;letter-spacing:.16em;text-transform:uppercase}
.letter-meta .dot{width:4px;height:4px;border-radius:50%;background:var(--brass);flex:none}

.article{max-width:720px;margin-inline:auto}
.article__salutation{font-family:var(--serif);font-style:italic;font-weight:400;
  font-size:clamp(1.35rem,2vw,1.7rem);color:var(--blue);margin-bottom:2.4rem;letter-spacing:-.01em}
/* long-form reading copy sits on Rich Black (21:1), not the blue used for
   secondary type */
.article__body{font-size:clamp(1.04rem,1.2vw,1.16rem);line-height:1.85;color:var(--black)}
.article__body p{margin-bottom:1.7em}
.article__body p:last-child{margin-bottom:0}
.article__body>p:first-of-type::first-letter{
  font-family:var(--serif);font-weight:700;float:left;font-size:4.3em;line-height:.82;
  padding:.05em .14em 0 0;color:var(--brass)}
.article__body a{border-bottom:1px solid var(--brass);padding-bottom:.05em;
  transition:color .3s var(--ease),border-color .3s var(--ease)}
.article__body a:hover{color:var(--accent-sm);border-color:var(--accent-sm)}
.article__body ul{list-style:none;display:grid;gap:1.15rem;margin:0 0 1.7em;padding:.2em 0 0 .2rem}
.article__body ul li{position:relative;padding-left:1.7rem}
.article__body ul li::before{content:"";position:absolute;left:0;top:.72em;width:7px;height:7px;
  background:var(--brass);border-radius:50%}

.article__sig{margin-top:3.4rem;padding-top:2.2rem;border-top:1px solid var(--line);position:relative}
.article__sig::before{content:"";position:absolute;top:-1px;left:0;width:72px;height:2px;background:var(--brass)}
.article__sig .sig-name{font-family:var(--serif);font-style:italic;font-weight:400;
  font-size:clamp(1.7rem,2.4vw,2.1rem);color:var(--black);letter-spacing:.01em}
.article__sig .sig-role{margin-top:.55rem;font-size:.74rem;font-weight:900;letter-spacing:.2em;
  text-transform:uppercase;color:var(--slate)}

/* prev / next letter pager */
.letter-pager{max-width:720px;margin:clamp(3.2rem,6vw,5rem) auto 0;
  display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.pager-card{display:flex;flex-direction:column;gap:.7rem;padding:1.5rem 1.7rem;
  border:1px solid var(--line);border-radius:6px;background:var(--paper);
  transition:transform .5s var(--ease),box-shadow .5s var(--ease),border-color .5s var(--ease)}
.pager-card:hover{transform:translateY(-4px);border-color:var(--brass);box-shadow:var(--shadow-sm)}
.pager-card .k{display:inline-flex;align-items:center;gap:.55rem;font-size:.68rem;font-weight:900;
  letter-spacing:.22em;text-transform:uppercase;color:var(--accent-sm)}
.pager-card .k .arrow{transition:transform .45s var(--ease)}
.pager-card:hover .k .arrow{transform:translateX(4px)}
.pager-card--prev:hover .k .arrow{transform:translateX(-4px)}
.pager-card .t{font-family:var(--serif);font-size:1.22rem;line-height:1.3;color:var(--black)}
.pager-card .t span{display:block;font-family:var(--sans);font-size:.74rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--slate);margin-top:.4rem}
.pager-card--next{align-items:flex-end;text-align:right}

/* ---------- timeline (commitment) ---------- */
.timeline{position:relative;display:grid;gap:0}
.tphase{display:grid;grid-template-columns:auto 1fr;gap:2rem;padding-bottom:2.6rem}
.tphase__rail{display:flex;flex-direction:column;align-items:center}
.tphase__dot{width:16px;height:16px;border-radius:50%;border:2px solid var(--brass);background:var(--white);flex:none}
.tphase__bar{width:2px;flex:1;background:linear-gradient(var(--brass),var(--line));margin-top:.3rem;min-height:40px}
.tphase:last-child .tphase__bar{display:none}
.tphase__stage{font-size:.72rem;font-weight:900;letter-spacing:.2em;text-transform:uppercase;color:var(--accent-sm)}
.tphase h3{margin:.5rem 0 1rem}
.tphase ul{list-style:none;display:grid;gap:.7rem}
.tphase li{position:relative;padding-left:1.4rem;color:var(--slate)}
.tphase li::before{content:"";position:absolute;left:0;top:.65em;width:6px;height:6px;
  background:var(--brass);border-radius:50%}

/* =================================================================
   CTA band
   ================================================================= */
.cta-band{position:relative;overflow:hidden;color:var(--ivory);text-align:center}
.cta-band__bg{position:absolute;inset:0}
.cta-band__bg img{width:100%;height:100%;object-fit:cover}
.cta-band__bg::after{content:"";position:absolute;inset:0;background:rgba(25,54,97,.86)}
.cta-band .container{position:relative;z-index:2}
.cta-band h2{max-width:18ch;margin-inline:auto}

/* =================================================================
   FORMS
   ================================================================= */
.form-card{background:var(--white);border:1px solid var(--line);border-radius:8px;
  padding:clamp(1.8rem,4vw,3rem);box-shadow:var(--shadow-sm)}
.field{margin-bottom:1.3rem}
.field label{display:block;font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--slate);margin-bottom:.5rem;font-weight:700}
.field input,.field textarea,.field select{
  width:100%;font-family:var(--sans);font-size:1rem;color:var(--black);
  background:var(--white);border:1px solid var(--line);border-radius:4px;padding:.95rem 1.1rem;
  transition:border-color .3s,box-shadow .3s;
}
.field input:focus,.field textarea:focus,.field select:focus{outline:none;border-color:var(--brass);
  box-shadow:0 0 0 3px rgba(166,131,44,.28)}
.field textarea{min-height:140px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.3rem}
.form-note{font-size:.85rem;color:var(--slate);margin-top:.4rem}
.contact-direct{display:flex;flex-direction:column;gap:1.6rem}
.contact-card{padding:1.6rem;border:1px solid var(--line);border-radius:6px;background:var(--white)}
.contact-card .k{font-size:.72rem;font-weight:900;letter-spacing:.2em;text-transform:uppercase;color:var(--accent-sm)}
.contact-card .v{font-family:var(--serif);font-size:1.4rem;margin-top:.5rem}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer{background:var(--blue);color:var(--mist);padding-top:clamp(4rem,8vw,7rem)}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:4rem;
  border-bottom:1px solid var(--line-light)}
.footer-brand p{margin-top:1.4rem;max-width:34ch;font-weight:300}
.footer-col h4{font-family:var(--sans);font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  color:var(--accent-sm);margin-bottom:1.3rem;font-weight:900}
.footer-col ul{list-style:none;display:grid;gap:.8rem}
.footer-col a{font-size:.95rem;color:var(--mist);transition:color .3s,padding-left .3s}
.footer-col a:hover{color:var(--white);padding-left:.3rem}
.footer-bottom{display:flex;align-items:center;flex-wrap:wrap;gap:1rem;
  padding-block:2rem;font-size:.82rem;color:var(--slate-light)}
/* intrinsic 900x111 — a very wide wordmark, so it's sized down to sit quietly
   beside the copyright. Width-driven with height:auto so the max-width clamp
   on narrow screens scales it rather than squashing it. */
.footer-mark{min-width:0}
.footer-mark img{width:360px;height:auto;max-width:100%}
/* auto margin, not space-between, so the copyright stays right even before
   the Enduring Companies mark is dropped in */
.footer-copy{margin-left:auto;text-align:right}

.back-top{position:fixed;right:1.6rem;bottom:1.6rem;z-index:60;width:46px;height:46px;border-radius:50%;
  background:var(--brass);color:var(--black);display:grid;place-items:center;cursor:pointer;border:0;
  opacity:0;transform:translateY(12px) scale(.9);transition:.45s var(--ease);box-shadow:var(--shadow-lg)}
.back-top.show{opacity:1;transform:translateY(0) scale(1)}
.back-top:hover{background:var(--blue);color:var(--brass)}

/* =================================================================
   REVEAL ANIMATIONS
   ================================================================= */
.reveal{opacity:0;transform:translateY(34px);transition:opacity 1s var(--ease),transform 1s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal[data-d="1"]{transition-delay:.1s}
.reveal[data-d="2"]{transition-delay:.2s}
.reveal[data-d="3"]{transition-delay:.3s}
.reveal[data-d="4"]{transition-delay:.4s}
@media (prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width:980px){
  .nav__menu{display:none}
  .nav__toggle{display:flex}
  .nav__cta-wrap{display:none}
  .split,.grid-3,.grid-2,.stats,.form-row,.footer-top{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr 1fr}
  .split--reverse .split__media{order:0}
  .stats{grid-template-columns:1fr 1fr;gap:2.5rem}
  .footer-top{gap:2.5rem}
  .split__media img{aspect-ratio:16/11}
}
@media (max-width:560px){
  .hero__actions{flex-direction:column;align-items:stretch}
  .btn{justify-content:center}
  .letter{grid-template-columns:auto 1fr;gap:1rem}
  .letter .arrow{display:none}
  .otype{grid-template-columns:1fr;gap:.6rem}
  .grid-4{grid-template-columns:1fr}
  .letter-pager{grid-template-columns:1fr}
  .pager-card--next{align-items:flex-start;text-align:left}
}
