/*
  Pine Valley Capital Partners — site styles.
  Built section-by-section from Figma DUlVaEjyAgGn07BxoXFiNv using fluid responsive patterns.
  Figma values are the target at 1440; type/spacing use clamp(), grids use intrinsic sizing.

  1. Tokens  2. Base  3. Typography  4. Shared components  5. Header / footer
  6. Home sections  7. Motion  8. Mobile @media (layout transformations only) — MUST STAY LAST
*/

/* ===== 1. Tokens (from Figma get_design_context — file exposes only `black` as a variable) ===== */
:root {
  --green: #003e39;
  --green-10: rgba(0, 62, 57, 0.10);
  --teal: #00b8a9;
  --bg: #f2f2f2;
  --card: #f9f9f9;
  --white: #ffffff;
  --ink: #111111;
  --ink-2: #272727;
  --ink-3: #444444;
  --footer-text: #e3e3e3;
  --hairline: #d9d9d9;
  --white-14: rgba(255, 255, 255, 0.14);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-70: rgba(255, 255, 255, 0.70);

  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', var(--font-sans);

  /* 1280 content column inside 1440 (80px gutters) → fluid gutter */
  --gutter: clamp(20px, 5.5vw, 80px);
  --content: 1280px;
  --radius-section: clamp(28px, 4.2vw, 60px);

  /* Section “stack” overlaps read from Figma frame positions (hero→stats 51, stats→approach 80, approach→serve 139, serve→news 50, news→footer 125) */
  --ov-stats: clamp(28px, 3.5vw, 51px);
  --ov-approach: clamp(40px, 5.5vw, 80px);
  --ov-serve: clamp(60px, 9.6vw, 139px);
  --ov-news: clamp(28px, 3.5vw, 50px);
  --ov-footer: clamp(60px, 8.7vw, 125px);
  --pad-visible: clamp(48px, 5.5vw, 80px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 600ms;
}

/* ===== 2. Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-3);
  font-family: var(--font-sans);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  line-height: 1.4;
  letter-spacing: -0.047em; /* Figma body tracking -0.75px @16px */
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
main { display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; text-wrap: balance; line-height: 1.15; color: var(--ink); font-variant-ligatures: no-common-ligatures; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.container {
  width: min(var(--content), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.container--wide { width: min(1300px, 100% - 2 * clamp(20px, 4.9vw, 70px)); }

/* ===== 3. Typography ===== */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.875rem;           /* 14 */
  line-height: 1.5;              /* 21 */
  letter-spacing: -0.036em;      /* -0.5px */
  text-transform: uppercase;
  color: var(--ink-2);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 0.9rem + 2.4vw, 3rem);   /* 32 → 48; ≈45px at 1280 so one-line headings stay one line */
  line-height: 1.3;                                  /* 62.4 */
  letter-spacing: -0.021em;                          /* -1px */
  color: var(--ink);
}
.section-title--tight { letter-spacing: -0.057em; }  /* Figma approach heading -2.75px */
.body-lg {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); /* 16 → 18 */
  line-height: 1.25;                                  /* 22.4 */
  letter-spacing: -0.042em;
  color: var(--ink-3);
}
.body-lg p + p { margin-top: 1.25em; }

/* ===== 4. Shared components ===== */
/* Button — Figma btn 61:677 (outline) / 61:676 (hover: filled, chevron slides right) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: -0.019em;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--green);
  background: transparent;
  transition: background-color 280ms var(--ease-out), color 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.btn--light { color: var(--white); }
.btn__icon {
  position: relative;
  width: 16px; height: 16px;
  overflow: hidden;
  flex: none;
}
.btn__icon svg {
  position: absolute; top: 50%; left: 5px;
  width: 6px; height: 10px;
  transform: translateY(-50%);
  fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 320ms var(--ease-out);
}
.btn__icon svg + svg { left: -15px; }
.btn:hover, .btn:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}
.btn:hover .btn__icon svg, .btn:focus-visible .btn__icon svg { transform: translate(20px, -50%); }

/* Circle icon button — Figma iconButton 289:840 */
.icon-btn {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 100px;
  background: var(--green);
  flex: none;
  transition: transform 280ms var(--ease-out);
}

/* Section cards — every section after the hero is a rounded slab that overlaps the one below (z descends) */
.section-card {
  position: relative;
  background: var(--bg);
  border-radius: 0 0 var(--radius-section) var(--radius-section);
}
.section-card--green { background: var(--green); color: var(--white); }
.section-card--white { background: var(--white); }

/* ===== 5. Header ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  height: 88px;
  color: var(--white);
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would make it the containing block for the fixed mobile drawer */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--white-10);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background-color 320ms var(--ease-out);
}
.site-header.is-scrolled::before { background: rgba(0, 62, 57, 0.92); }
.site-header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
}
.site-header__logo img { width: 106px; height: 44px; object-fit: contain; }
.site-header__nav { display: contents; }
.site-header__nav ul { display: flex; align-items: center; gap: clamp(16px, 1.9vw, 27px); }
.nav-link {
  position: relative;
  display: inline-block;
  padding-block: 4px;
  font-size: 1rem; line-height: 1.4; letter-spacing: -0.047em;
  color: var(--white-70);
  transition: color 240ms var(--ease-out);
}
.nav-link::after {
  content: ""; position: absolute; left: 50%; bottom: -3.5px;
  width: 25px; height: 2px; border-radius: 1px; background: var(--white);
  transform: translateX(-50%) scaleX(0); transform-origin: center;
  transition: transform 320ms var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link.is-active { font-weight: 600; letter-spacing: -0.047em; }
.nav-link:hover::after, .nav-link.is-active::after { transform: translateX(-50%) scaleX(1); }
.site-header__toggle { display: none; }

/* ===== 5b. Footer — Figma 792:2997 ===== */
.site-footer {
  position: relative; z-index: 1;
  margin-top: calc(-1 * var(--ov-footer));
  padding-top: calc(var(--ov-footer) + clamp(40px, 3.5vw, 50px));
  padding-bottom: clamp(20px, 2vw, 24px);
  background: var(--green);
  color: var(--footer-text);
  font-size: 1rem; line-height: 1.875; letter-spacing: 0;
  text-transform: capitalize;
}
.site-footer__top {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start;
  gap: clamp(32px, 4vw, 60px);
}
.site-footer__brand { display: grid; gap: 12px; flex: 1 1 240px; min-width: 0; max-width: 760px; }
.site-footer__logo img { width: clamp(140px, 11.7vw, 169px); height: auto; }
.site-footer__disclosure {
  font-size: 0.625rem; line-height: 1.5; letter-spacing: 0;
  text-transform: none; text-wrap: pretty;
  color: rgba(227, 227, 227, 0.7);
}
.site-footer__disclosure a { text-decoration: underline; text-underline-offset: 2px; transition: color 200ms; }
.site-footer__disclosure a:hover { color: var(--white); }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: clamp(32px, 5.8vw, 84px); align-items: flex-start; }
.site-footer__nav li a, .site-footer__contact a, .site-footer__bottom a { transition: color 200ms; }
.site-footer__nav a:hover, .site-footer__contact a:hover, .site-footer__bottom a:hover { color: var(--white); }
.site-footer__contact { display: grid; max-width: 217px; text-transform: none; }
.site-footer__social img { width: 24px; height: 24px; margin-top: 3px; }
.site-footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px;
  margin-top: 18px; padding-top: 20px;
  border-top: 1px solid var(--white-14);
}

/* ===== 6. Home ===== */
/* Hero — Figma 247:534 (911 tall @1440, video with 20% black multiply overlay) */
.hero {
  position: sticky; top: 0; z-index: 0;
  min-height: clamp(560px, 63.3vw, 911px);
  display: grid;
  color: var(--white);
  overflow: hidden;
  background: var(--green);
}
.hero__video, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__video { object-fit: cover; }
.hero__overlay { background: rgba(0, 0, 0, 0.2); mix-blend-mode: multiply; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  padding-top: clamp(112px, 12.2vw, 176px);
  padding-bottom: clamp(56px, 7.2vw, 104px);
  row-gap: clamp(28px, 3vw, 48px);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.75rem, 1.2rem + 5.9vw, 6.25rem); /* 44 → 100 */
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 11ch;
  text-wrap: balance;
}
.hero__lede {
  justify-self: end;
  width: min(619px, 100%);
  margin-inline-start: auto;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);  /* 17 → 20 */
  line-height: 1.5;
  letter-spacing: -0.05em;
  color: var(--white);
}
/* Stats + About — Figma 247:587 (rounded 60 all corners, overlaps hero by 51) */
.stats-about {
  z-index: 6;
  margin-top: calc(-1 * var(--ov-stats));
  border-radius: var(--radius-section);
  padding-top: var(--pad-visible);
  padding-bottom: clamp(56px, 6vw, 88px);
}
.stats-about .container { display: grid; gap: clamp(40px, 4.2vw, 60px); }
.stats { display: grid; gap: 12px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
}
.stat-card {
  display: flex; flex-direction: column; justify-content: center; gap: clamp(12px, 1.4vw, 20px);
  min-height: clamp(130px, 11.8vw, 170px);
  padding: clamp(16px, 1.7vw, 24px) clamp(24px, 2.8vw, 40px);
  border-radius: 20px;
  background: var(--green);
  color: var(--white);
}
.stat-card__value {
  display: flex; align-items: baseline;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 2rem + 1.2vw, 3.375rem); /* 40 → 54 */
  line-height: 1.33;
  height: 1.33em;
  overflow: hidden;
  font-variant-numeric: tabular-nums;
}
.roll { display: inline-block; height: 1.33em; overflow: hidden; text-align: center; }
.roll__track { display: block; line-height: 1.33; transform: translateY(0); transition: transform 3600ms cubic-bezier(0.16, 1, 0.3, 1); }
.stat-card__label { font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem); line-height: 1.55; letter-spacing: 0; }
.stats__footnote {
  font-size: 0.625rem; line-height: 1.6; letter-spacing: 0;
  font-style: italic; color: var(--ink-3); text-align: justify;
}
.stats__footnote strong { font-weight: 700; }

.about-intro { display: grid; gap: 32px; justify-items: start; }
.about-intro .eyebrow + .section-title { margin-top: -32px; }
.about-intro__body { margin-top: -8px; }

/* Approach — Figma 247:551 */
.approach {
  z-index: 5;
  margin-top: calc(-1 * var(--ov-approach));
  padding-top: calc(var(--ov-approach) + var(--pad-visible));
  padding-bottom: clamp(40px, 3.7vw, 53px);
}
.approach .container { display: grid; gap: clamp(40px, 4.2vw, 60px); }
.approach .eyebrow, .approach .section-title { color: var(--white); }
.approach__head { display: grid; gap: 24px; }
.approach__head .eyebrow + .section-title { margin-top: -24px; }
.approach__lede { font-size: 1rem; line-height: 1.4; letter-spacing: -0.047em; color: var(--white); }
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}
.pillar {
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
  min-height: clamp(300px, 28.7vw, 414px);
  padding: 30px 32px 10px 20px;
  border-right: 1px solid var(--white-14);
  transition: background-color 360ms var(--ease-out);
  outline-offset: -2px;
}
.pillar:last-child { border-right: 0; }
.pillar::before {
  content: ""; position: absolute; left: 0; right: -1px; top: 0; height: 2px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease-out);
}
.pillar__icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--white-10);
}
.pillar__icon img { width: 18px; height: 18px; }
.pillar__title { font-family: var(--font-serif); font-size: clamp(1.25rem, 1.1rem + 0.35vw, 1.5rem); line-height: 1.33; color: var(--white); letter-spacing: 0; }
.pillar__body {
  font-size: 0.875rem; line-height: 1.57; letter-spacing: 0;
  color: transparent;
  transition: color 480ms var(--ease-out);
}
.pillar:hover, .pillar:focus-within, .pillar:focus-visible { background: rgba(255, 255, 255, 0.05); }
.pillar:hover::before, .pillar:focus-within::before, .pillar:focus-visible::before { transform: scaleX(1); }
.pillar:hover .pillar__body, .pillar:focus-within .pillar__body, .pillar:focus-visible .pillar__body { color: var(--white); }
@media (hover: none) { .pillar__body { color: var(--white); } .pillar::before { transform: scaleX(1); } }

/* Who we serve — Figma 247:768 + Component 8 (272:2185 / 272:2184) */
.serve {
  z-index: 4;
  margin-top: calc(-1 * var(--ov-serve));
  padding-top: calc(var(--ov-serve) + var(--pad-visible));
  padding-bottom: clamp(56px, 5.6vw, 81px);
  overflow: clip;
}
.serve .container { display: grid; gap: 40px; }
.serve__head { display: grid; gap: 24px; }
.serve__head .eyebrow + .section-title { margin-top: -24px; }
.serve__lede { font-size: 1rem; line-height: 1.4; letter-spacing: -0.047em; color: var(--ink-3); }
.audience {
  display: grid; gap: 40px;
  padding: clamp(24px, 2.8vw, 40px);
  border-radius: 30px;
  background: var(--card);
  color: #000;
}
.audience__panel { display: grid; gap: 14px; justify-items: start; }
.audience__panel[hidden] { display: none; }
.audience__title {
  /* Figma: Canela Trial Light 35/43 — not licensable via Google Fonts; Playfair Display stands in (see docs/assets-needed.md) */
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 1.3rem + 0.9vw, 2.1875rem); /* 26 → 35 */
  line-height: 1.23;
  letter-spacing: 0;
  color: #000;
}
.audience__body { font-family: var(--font-jakarta); font-size: 1rem; line-height: 1.44; letter-spacing: 0; color: #000; }
.audience__body p + p { margin-top: 0; }
.audience__tabs { display: flex; flex-wrap: wrap; gap: 0; }
.audience__tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 16px; border-radius: 3px;
  font-size: 1rem; line-height: 1.5; letter-spacing: -0.019em; text-transform: capitalize;
  color: var(--green);
}
.audience__radio {
  position: relative; width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid var(--green); flex: none;
}
.audience__radio::after {
  content: ""; position: absolute; inset: 2px; border-radius: 50%;
  background: var(--green); transform: scale(0); transition: transform 240ms var(--ease-out);
}
.audience__tab.is-active .audience__radio::after { transform: scale(1); }

/* News teaser — Figma 247:486 (white slab) */
.news-teaser {
  z-index: 3;
  margin-top: calc(-1 * var(--ov-news));
  padding-top: calc(var(--ov-news) + var(--pad-visible));
  padding-bottom: var(--pad-visible);
}
.news-teaser__inner {
  display: grid;
  grid-template-columns: minmax(200px, 262px) 1fr;
  gap: 20px;
  align-items: start;
}
.news-teaser__intro { display: grid; gap: 32px; justify-items: start; align-content: start; }
.news-teaser__intro .eyebrow + .section-title { margin-top: -24px; max-width: 8ch; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 32px;
}
.news-card { display: grid; }
.news-card__link {
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  min-height: 381px;
  margin: -10px; padding: 10px;
  border-radius: 10px;
  background: var(--white);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}
.news-card__link:hover, .news-card__link:focus-visible { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0, 62, 57, 0.12); }
.news-card__link:hover .icon-btn { transform: translateX(4px); }
.news-card__top { display: grid; gap: 16px; }
.news-card__media {
  aspect-ratio: 311 / 222;
  border-radius: 10px; overflow: hidden;
  background: var(--green-10);
}
.news-card__media img { width: 100%; height: 100%; object-fit: cover; }
.news-card__media--contain { background: var(--white); display: grid; place-items: center; }
.news-card__media--contain img { object-fit: contain; padding: 12%; }
.news-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; background: var(--green); }
.news-card__placeholder-ring { width: 40%; height: auto; opacity: 0.35; }
.news-card__title { font-family: var(--font-serif); font-weight: 500; font-size: 1rem; line-height: 1.33; letter-spacing: 0; color: var(--ink-2); text-wrap: pretty; }
.news-card__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 0.875rem; line-height: 1.7; letter-spacing: 0; color: var(--ink-2);
}


/* ===== 6b. Interior pages ===== */
/* Page hero — Figma 483:1025 / 577:745: 630 tall, #19514d under a left-heavy dark gradient, pine ring 649:526 at right */
.page-hero {
  position: relative; z-index: 0;
  min-height: clamp(420px, 43.75vw, 630px);
  display: grid; align-items: center;
  overflow: hidden;
  color: var(--white);
  /* Figma OVERLAY = #19514d under a rgba(0,35,32) left-heavy gradient; sampled render values used so the composite matches */
  background: linear-gradient(90deg, rgb(25, 81, 77) 0%, rgb(25, 81, 77) 50%, rgb(25, 81, 77) 100%);
}
.page-hero__mark {
  position: absolute;
  /* Figma: ring 445px at x 963 / y 142 in a 1440×630 frame */
  left: 66.9%; top: 22.5%;
  width: clamp(240px, 30.9vw, 445px); aspect-ratio: 1;
  pointer-events: none;
}
.page-hero__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__tree { position: absolute; left: 28.1%; top: 10.7%; width: 41%; height: auto; }
.page-hero__inner {
  position: relative;
  display: grid; gap: clamp(16px, 1.9vw, 27px);
  padding-top: clamp(100px, 8vw, 120px); padding-bottom: clamp(48px, 4vw, 60px);
  max-width: min(892px, 100% - 2 * var(--gutter));
  margin-inline: max(var(--gutter), (100% - var(--content)) / 2);
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 1.8rem + 3.3vw, 4.375rem); /* 44 → 70 */
  line-height: 1.05; letter-spacing: -0.037em; color: var(--white);
}
.page-hero__lede { font-size: 1rem; line-height: 1.72; letter-spacing: 0; color: rgba(255, 255, 255, 0.9); max-width: 892px; }

/* News: hero pins while the Featured slab scrolls over it */
.page-news .page-hero { position: sticky; top: 0; }

/* Generic slab that sits over the hero by 80px with 60px radius on all corners */
.slab { z-index: 6; margin-top: calc(-1 * var(--ov-approach)); border-radius: var(--radius-section); }
.stack-p p + p { margin-top: 1.25em; }

/* Legal pages (/terms/) — long-form copy on the About approach slab */
.legal { padding-block: clamp(40px, 4.2vw, 60px); }
.legal .container { display: grid; gap: 24px; max-width: 900px; }
.legal__body { color: var(--ink-3); line-height: 1.55; }
.legal__body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 1.2rem + 0.5vw, 1.75rem);
  line-height: 1.3; letter-spacing: -0.021em;
  margin-top: 2em;
}
.legal__body h2 + p { margin-top: 0.75em; }
.legal__body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }

/* About — approach slab 485:1834 */
.about-approach { padding-block: clamp(40px, 4.2vw, 60px); }
.about-approach .container { display: grid; gap: 24px; }
.about-approach .eyebrow + .section-title { margin-top: -24px; }

/* About — principles 485:1950 */
.principles {
  z-index: 5;
  margin-top: calc(-1 * clamp(60px, 10vw, 144px));
  padding-top: calc(clamp(60px, 10vw, 144px) + var(--pad-visible));
  padding-bottom: clamp(56px, 6.5vw, 96px);
}
.principles .container { display: grid; gap: clamp(40px, 4.2vw, 60px); }
.principles .eyebrow, .principles .section-title { color: var(--white); }
.principles__list { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.principle {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(0, 1.35fr);
  column-gap: clamp(24px, 4vw, 57.6px);
  align-items: start;
  min-height: 128px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 320ms var(--ease-out), padding 320ms var(--ease-out);
}
.principle:hover { background: rgba(255, 255, 255, 0.04); padding-inline: 16px; }
.principle__num { font-family: var(--font-serif); font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2.25rem); line-height: 1; color: rgba(255, 255, 255, 0.34); }
.principle__title { font-family: var(--font-serif); font-size: clamp(1.625rem, 1.2rem + 1.25vw, 2.5rem); line-height: 1.1; color: var(--white); letter-spacing: 0; }
.principle__body { max-width: 760px; font-size: 0.875rem; line-height: 1.6; letter-spacing: -0.054em; color: var(--white); padding-top: 1px; }

/* About — what we do 485:2066 */
.what-we-do {
  z-index: 4;
  margin-top: calc(-1 * clamp(60px, 10.5vw, 151px));
  padding-top: calc(clamp(60px, 10.5vw, 151px) + var(--pad-visible));
  padding-bottom: var(--pad-visible);
}
.what-we-do .container { display: grid; gap: clamp(40px, 4.2vw, 60px); }
.what-we-do__head { display: grid; gap: 24px; }
.what-we-do__head .eyebrow + .section-title { margin-top: -24px; }
.what-we-do__lede { max-width: 1006px; font-size: 1rem; line-height: 1.4; letter-spacing: -0.047em; color: var(--ink-3); }
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 18px; }
.offer {
  display: grid; align-content: center; gap: 25px;
  min-height: clamp(260px, 23.2vw, 334px);
  padding: clamp(32px, 3.9vw, 56px);
  border-radius: 28px;
}
.offer--green { background: var(--green); color: var(--white); padding-bottom: calc(clamp(32px, 3.9vw, 56px) + 20px); }
.offer--white { background: var(--white); border: 1px solid rgba(0, 0, 0, 0.06); color: var(--ink-3); }
.offer__title { font-family: var(--font-serif); font-size: clamp(1.75rem, 1.3rem + 1.25vw, 2.5rem); line-height: 1.36; letter-spacing: -0.039em; color: inherit; }
.offer--white .offer__title { color: #171a18; }
.offer__body { font-size: 1rem; line-height: 1.4; letter-spacing: 0; }

/* About — how we work 485:2137 (white slab, 60 radius all corners) */
.how-we-work {
  z-index: 3;
  margin-top: calc(-1 * clamp(50px, 7vw, 100px));
  padding-top: calc(clamp(50px, 7vw, 100px) + var(--pad-visible));
  padding-bottom: var(--pad-visible);
  border-radius: var(--radius-section);
}
.how-we-work .container { display: grid; gap: clamp(40px, 4.2vw, 61px); }
.how-we-work__head .eyebrow + .section-title { margin-top: 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  margin-inline: -8px;
  border-top: 1px solid rgba(23, 26, 24, 0.14);
}
.step {
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
  min-height: clamp(200px, 19vw, 274px);
  padding: 30px 32px 10px 20px;
  border-right: 1px solid rgba(23, 26, 24, 0.14);
  transition: background-color 360ms var(--ease-out);
  outline-offset: -2px;
}
.step:last-child { border-right: 0; }
.step::before {
  content: ""; position: absolute; left: 0; right: -1px; top: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform 420ms var(--ease-out);
}
.step__title { font-family: var(--font-serif); font-size: clamp(1.5rem, 1.2rem + 0.85vw, 2rem); line-height: 1.24; letter-spacing: 0; color: #171a18; }
.step__body { font-size: 0.875rem; line-height: 1.6; letter-spacing: 0; color: transparent; transition: color 480ms var(--ease-out); }
.step:hover, .step:focus-visible { background: rgba(0, 0, 0, 0.05); }
.step:hover::before, .step:focus-visible::before { transform: scaleX(1); }
.step:hover .step__body, .step:focus-visible .step__body { color: var(--ink-3); }
@media (hover: none) { .step__body { color: var(--ink-3); } .step::before { transform: scaleX(1); } }

/* Team — grid slab 764:1808 */
.team { padding-top: var(--pad-visible); padding-bottom: var(--pad-visible); }
.team .container { display: grid; gap: 20px; }
.team__rule { margin: 0 0 27px; border: 0; height: 1px; background: #19514d; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}
.team-grid--featured { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.team-card { display: grid; }
.team-card__link {
  position: relative; display: grid; overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 305 / 356;
  background: linear-gradient(90deg, #7a7d90 0%, #abb0c6 50.4%, #999eb4 100%);
  isolation: isolate;
}
.team-card--large .team-card__link { aspect-ratio: 630 / 416; }
.team-card__media { position: absolute; inset: 0; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card--large .team-card__media { inset: 0 auto 0 50%; width: min(52.9%, 333px); transform: translateX(-50%); }
.team-card--large .team-card__media img { border-radius: 20px; }
.team-card__link::after {
  /* Figma hover (577:1100 / Component 30): 30% green overlay across the whole card, under the white bar */
  content: ""; position: absolute; inset: 0; border-radius: 20px;
  background: rgba(0, 62, 57, 0.3); opacity: 0; transition: opacity 320ms var(--ease-out);
  pointer-events: none;
}
.team-card__link:hover::after, .team-card__link:focus-visible::after { opacity: 1; }
.team-card__bar {
  position: relative; z-index: 1; align-self: end;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 92px; padding: 19px;
  border-radius: 20px; background: var(--white);
}
.team-card__text { display: grid; gap: 4px; min-width: 0; }
.team-card__name { font-family: var(--font-serif); font-weight: 500; font-size: 1.25rem; line-height: 1.33; color: #12211e; letter-spacing: 0; }
.team-card__role { font-size: 0.6875rem; line-height: 1.5; letter-spacing: 0; color: #3f4d49; }
.team-card__btn {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); color: #12211e;
  transition: background-color 280ms var(--ease-out), color 280ms var(--ease-out);
}
.team-card__btn svg { width: 20px; height: 20px; }
.team-card__link:hover .team-card__btn, .team-card__link:focus-visible .team-card__btn { background: var(--green); color: var(--white); }

/* ===== Modals (docs/modals.md pattern) — Bio modal Figma 577:1324 ===== */
.modal { border: none; padding: 0; background: transparent; max-width: none; max-height: none; width: 100%; height: 100%; inset: 0; }
.modal::backdrop { background: rgba(0, 0, 0, 0.6); }
.modal__panel {
  position: fixed; inset: 0;
  background: #f7f6f3;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  display: flex; flex-direction: column;
}
.modal__close {
  position: sticky; top: 0; align-self: flex-end;
  margin: clamp(12px, 2vw, 29px);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: #1d3b36; color: var(--white);
  z-index: 1;
  transition: background-color 240ms var(--ease-out);
}
.modal__close:hover { background: var(--green); }
.modal__close img { width: 22px; height: 22px; }
.bio__media { padding: 0 clamp(20px, 2vw, 29px); }
.bio__media img { width: 100%; max-height: 429px; aspect-ratio: 425 / 429; object-fit: cover; object-position: top center; border-radius: 10px; background: linear-gradient(90deg, #7a7d90 0%, #abb0c6 50.4%, #999eb4 100%); }
.bio__content { display: grid; gap: 32px; padding: clamp(20px, 2vw, 29px) clamp(20px, 3vw, 43px) clamp(24px, 3vw, 40px) clamp(20px, 2vw, 29px); }
.bio__role { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.146em; text-transform: uppercase; color: #4d5b57; line-height: 1.2; }
.bio__name { font-family: var(--font-serif); font-size: clamp(2rem, 1.4rem + 1.9vw, 3rem); line-height: 1.3; letter-spacing: -0.021em; color: var(--ink); margin-top: -26px; }
.bio__rule { margin: 0; border: 0; height: 1px; background: #dcdfd9; }
.bio__text { font-size: 1rem; line-height: 1.625; letter-spacing: 0; color: #2c3a37; }
body.modal-open { overflow: hidden; }

@media (min-width: 768px) {
  .modal[open] { display: flex; align-items: center; justify-content: center; padding: 20px; }
  .modal__panel {
    position: relative; inset: auto; margin: auto;
    width: min(1228px, 92vw); max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  }
  .bio {
    display: grid;
    grid-template-columns: minmax(240px, 425px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(24px, 1.8vw, 26px);
    padding: 29px;
  }
  .bio .modal__close { position: absolute; top: 29px; right: 29px; margin: 0; }
  .bio__media { grid-row: 1 / -1; padding: 0; }
  .bio__media img { height: 100%; max-height: none; aspect-ratio: auto; min-height: 429px; }
  .bio__content { padding: 0 72px 0 0; align-content: start; }
}


/* ===== 6c. News — Figma 489:2695 ===== */
.featured { padding-top: var(--pad-visible); padding-bottom: var(--pad-visible); border-radius: var(--radius-section); }
.featured .container, .contact .container--wide { width: min(1296px, 100% - 2 * clamp(20px, 5vw, 72px)); }
.featured .container { display: grid; gap: 40px; }
.featured__label { display: flex; align-items: center; gap: 22px; font-size: 0.625rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.featured__rule { flex: 1; height: 1px; background: var(--white-14); }
.spotlight {
  display: grid; grid-template-columns: minmax(0, 1.8fr) minmax(300px, 1fr);
  min-height: 540px; overflow: hidden; border-radius: 30px; background: var(--white); color: var(--ink-3);
}
.spotlight__media { position: relative; display: block; min-height: 320px; }
.spotlight__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.15)); }
.spotlight__body { display: flex; flex-direction: column; justify-content: space-between; gap: 34px; padding: clamp(32px, 5vw, 72px) clamp(32px, 5vw, 72px) clamp(32px, 5vw, 72px) 32px; }
.spotlight__top { display: grid; gap: 18px; }
.spotlight__title { font-family: var(--font-serif); font-size: clamp(1.625rem, 1.2rem + 1.1vw, 2.125rem); line-height: 1.33; letter-spacing: -0.03em; color: var(--ink); }
.spotlight__meta { display: flex; align-items: center; gap: 12px; font-size: 0.625rem; letter-spacing: 0.06em; text-transform: uppercase; color: #69706c; }
.spotlight__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: #69706c; opacity: 0.6; }
.spotlight__excerpt { font-size: 1rem; line-height: 1.4; letter-spacing: -0.047em; color: var(--ink-3); }
.read-more {
  display: inline-flex; gap: 15px; align-items: center; align-self: flex-start;
  padding-bottom: 7px; border-bottom: 1px solid rgba(0, 62, 57, 0.48);
  font-size: 0.6875rem; letter-spacing: 0; color: var(--green);
  transition: gap 240ms var(--ease-out), border-color 240ms;
}
.read-more:hover { gap: 22px; border-color: var(--green); }

.archive {
  z-index: 5;
  margin-top: calc(-1 * clamp(60px, 10.5vw, 152px));
  padding-top: calc(clamp(60px, 10.5vw, 152px) + var(--pad-visible));
  padding-bottom: var(--pad-visible);
}
.archive .container { display: grid; gap: clamp(40px, 4.2vw, 60px); }
.archive__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 20px 40px; }
.filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 445px; }
.pill {
  min-height: 34px; padding: 10.5px 13px; border-radius: 999px;
  border: 1px solid rgba(0, 62, 57, 0.25);
  font-size: 0.5625rem; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2;
  color: rgba(0, 62, 57, 0.78); background: transparent;
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out), border-color 240ms;
}
.pill:hover { border-color: var(--green); color: var(--green); }
.pill.is-active { background: var(--green); border-color: var(--green); color: var(--white); }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 17px; }
.article { display: grid; }
.article.is-hidden { display: none; }
.article__link { display: flex; flex-direction: column; min-height: 540px; border-radius: 24px; overflow: hidden; background: var(--white); transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out); }
.article__link:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0, 62, 57, 0.12); }
.article__media { aspect-ratio: 414.67 / 289.64; background: #d9dedb; border-radius: 10px; overflow: hidden; }
.article__media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.article__media--contain { background: var(--white); display: grid; place-items: center; }
.article__media--contain img { object-fit: contain; padding: 12%; }
.article__body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 24px; }
.tag {
  align-self: flex-start; display: inline-flex; align-items: center; min-height: 28px; padding: 7.5px 11px;
  border: 1px solid rgba(0, 62, 57, 0.22); border-radius: 999px;
  font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green);
  margin-bottom: 20px;
}
.article__title { font-family: var(--font-serif); font-size: clamp(1.375rem, 1.2rem + 0.4vw, 1.625rem); line-height: 1.29; letter-spacing: -0.03em; color: #151816; }
.article__excerpt { margin-top: 16px; font-size: 0.8125rem; line-height: 1.65; letter-spacing: 0; color: #626864; }
.article__meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 27px; border-top: 1px solid rgba(21, 24, 22, 0.14); font-size: 0.5625rem; letter-spacing: 0.06em; text-transform: uppercase; color: #68706c; }
.article__meta { margin-top: auto; }
.article__body > .article__meta { margin-top: max(27px, auto); }
.article__btn { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 1rem; letter-spacing: 0; transition: transform 280ms var(--ease-out); }
.article__link:hover .article__btn { transform: translateX(4px); }
.archive__empty { color: var(--ink-3); }

/* ===== 6d. Contact — Figma 499:3653 ===== */
.contact { padding-top: var(--pad-visible); padding-bottom: 0; border-radius: var(--radius-section); }
.contact__stack { display: grid; gap: 30px; }
.contact-card {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(280px, 433px) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 115px);
  padding: clamp(32px, 3.5vw, 50px) clamp(24px, 7vw, 100.8px);
  border-radius: 38px;
}
.contact-card--light { background: var(--white); color: var(--ink-3); }
.contact-card--green { background: var(--green); color: var(--white); }
.contact-card__orb { position: absolute; left: -110px; top: -125px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.1); display: grid; place-items: center; padding: 52px; pointer-events: none; }
.contact-card__orb span { display: block; width: 100%; height: 194px; border-radius: 97px; border: 1px solid rgba(255, 255, 255, 0.08); }
.contact-card__intro { position: relative; display: flex; flex-direction: column; justify-content: flex-start; gap: clamp(40px, 8vw, 115px); }
.contact-card__eyebrow { font-size: 0.875rem; line-height: 1.5; letter-spacing: -0.036em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 17px; }
.contact-card--green .contact-card__eyebrow { color: var(--white); }
.contact-card__title { font-family: var(--font-serif); font-size: clamp(2rem, 1.4rem + 1.9vw, 3rem); line-height: 1.3; letter-spacing: -0.021em; color: var(--ink); }
.contact-card--green .contact-card__title { color: var(--white); }
.contact-card__body { padding-top: 16px; border-top: 1px solid rgba(23, 26, 24, 0.14); font-size: 1rem; line-height: 1.4; letter-spacing: -0.047em; color: var(--ink-3); }
.contact-card--green .contact-card__body { border-color: rgba(255, 255, 255, 0.17); color: rgba(255, 255, 255, 0.7); line-height: 1.78; letter-spacing: 0; }
.contact-form { position: relative; display: grid; gap: 24px; }
.contact-form__title { font-family: var(--font-serif); font-size: 2rem; line-height: 1.31; letter-spacing: 0; color: inherit; }
.contact-card--light .contact-form__title { color: var(--ink); }
.contact-form__fields { display: grid; gap: 11px; }
.field { display: grid; gap: 2px; min-height: 64px; padding: 10px 24px; border-radius: 16px; background: var(--bg); align-content: center; cursor: text; }
.contact-card--green .field { background: rgba(242, 242, 242, 0.1); }
.field__label { font-size: 0.75rem; line-height: 1.4; letter-spacing: 0; color: rgba(68, 68, 68, 0.7); }
.field__label b { color: #f00; font-weight: 500; margin-left: 1px; }
.contact-card--green .field__label { color: rgba(255, 255, 255, 0.7); }
.field__input { width: 100%; border: 0; padding: 0; background: transparent; font: inherit; font-weight: 500; font-size: 1rem; line-height: 1.5; letter-spacing: 0; color: #000; outline: none; }
.field__input::placeholder { color: #000; opacity: 1; }
.contact-card--green .field__input, .contact-card--green .field__input::placeholder { color: var(--white); }
.field--area { min-height: 138px; padding: 24px; border-radius: 22px; align-content: start; }
.field__label--inline { font-size: 1rem; font-weight: 500; color: #595959; line-height: 1.5; }
.contact-card--green .field__label--inline { color: var(--white); }
.field--area .field__input { resize: vertical; min-height: 60px; }
.field:focus-within { outline: 2px solid var(--teal); outline-offset: 1px; }
.contact-form__actions { display: flex; justify-content: flex-end; }
.contact-form__success { font-size: 0.9375rem; color: inherit; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.compliance {
  margin: 0 clamp(0px, 5vw, 72px); padding: 8px 0 0;
  font-size: 0.6875rem; line-height: 1.6; letter-spacing: 0; color: #606763;
  text-wrap: pretty;
}
.contact { padding-bottom: calc(var(--ov-footer) + clamp(40px, 3vw, 60px)); }

.scroller-dots { display: none; }

/* ===== 7. Motion ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal > [style*="--i"] { opacity: 0; transform: translateY(24px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); transition-delay: calc(var(--i) * 120ms); }
.reveal.is-visible > [style*="--i"] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal > [style*="--i"] { opacity: 1; transform: none; transition: none; }
  .roll__track, .btn, .btn__icon svg, .pillar, .pillar__body { transition: none !important; }
}

/* ===== 8. Mobile @media — layout TRANSFORMATIONS only (type/spacing already fluid). Keep at end. ===== */
@media (max-width: 768px) {
  .site-header__toggle {
    display: grid; gap: 5px; padding: 8px; margin-inline-end: -8px; z-index: 60;
  }
  .site-header__toggle span { display: block; width: 24px; height: 1.5px; background: currentColor; transition: transform 240ms, opacity 240ms; }
  body.nav-open .site-header__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .site-header__toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .site-header__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-header__nav {
    display: grid; align-content: center; justify-items: start; gap: 32px;
    position: fixed; inset: 0; z-index: 55;
    padding: 120px var(--gutter) 40px;
    background: var(--green);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 360ms var(--ease-out), visibility 0s 360ms;
  }
  body.nav-open .site-header__nav { transform: none; visibility: visible; transition: transform 360ms var(--ease-out), visibility 0s; }
  body.nav-open { overflow: hidden; }
  .site-header__nav ul { flex-direction: column; align-items: flex-start; gap: 20px; }
  .site-header__nav .nav-link { font-family: var(--font-serif); font-size: 2rem; letter-spacing: -0.02em; }
  .site-header__logo { position: relative; z-index: 60; }

  .hero__inner { row-gap: 32px; }
  .hero__lede { margin-inline-start: 0; justify-self: start; }
  .news-teaser__inner { grid-template-columns: 1fr; }
  .news-teaser__intro .section-title { max-width: none; }
  .news-card__link { min-height: 0; }
  .news-teaser .news-grid, .offer-grid {
    display: flex; gap: 16px;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    padding-block: 10px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory; scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .news-teaser .news-grid::-webkit-scrollbar, .offer-grid::-webkit-scrollbar { display: none; }
  .news-teaser .news-grid > .news-card, .offer-grid > .offer { flex: 0 0 min(78vw, 320px); scroll-snap-align: start; }
  .offer { min-height: 0; }
  .scroller-dots { display: flex; justify-content: center; gap: 10px; margin-top: calc(6px - clamp(40px, 4.2vw, 60px)); }
  .news-teaser__inner .scroller-dots { margin-top: calc(6px - 20px); }
  .scroller-dots__dot {
    width: 10px; height: 10px; padding: 0; border-radius: 50%;
    border: 1.5px solid var(--green); background: transparent;
    transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
  }
  .scroller-dots__dot.is-active { background: var(--green); transform: scale(1.2); }
  .pillar { border-right: 0; border-bottom: 1px solid var(--white-14); min-height: 0; padding-bottom: 30px; }
  .pillar:last-child { border-bottom: 0; }
  .site-footer__contact { max-width: none; }
  .principle { grid-template-columns: 48px 1fr; row-gap: 12px; padding: 24px 0; }
  .principle__body { grid-column: 2; }
  .step { border-right: 0; border-bottom: 1px solid rgba(23, 26, 24, 0.14); min-height: 0; padding-bottom: 30px; }
  .step:last-child { border-bottom: 0; }
  .steps { margin-inline: 0; }
  .page-hero__mark { left: auto; right: -20%; top: 10%; opacity: 0.8; }
  .page-team .reveal, .page-team .reveal > [style*="--i"] { opacity: 1; transform: none; transition: none; }
  .team-card--large .team-card__link { aspect-ratio: 305 / 356; }
  .team-card--large .team-card__media { inset: 0; width: auto; transform: none; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__body { padding: 32px 24px; }
  .contact-card { grid-template-columns: 1fr; }
  .filters { justify-content: flex-start; max-width: none; }
}
