/* Self-hosted fonts (Latin subset, weights 400-700). No third-party requests. */
@font-face { font-family: "Inter"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("../fonts/Inter-Variable.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: italic; font-weight: 400 700; font-display: swap; src: url("../fonts/Inter-Italic-Variable.woff2") format("woff2"); }
@font-face { font-family: "Nunito Sans"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("../fonts/NunitoSans-Variable.woff2") format("woff2"); }
@font-face { font-family: "Nunito Sans"; font-style: italic; font-weight: 400 700; font-display: swap; src: url("../fonts/NunitoSans-Italic-Variable.woff2") format("woff2"); }

/* ==========================================================================
   Updraft Energy — site styles (v2)
   Brand: skobeloff #157A77. Motif: migratory birds in V-formation.
   Each page carries two brand colours: --brand (constant) + --accent (theme).
   ========================================================================== */

:root {
  /* palette */
  --skobeloff: #157A77;
  --skobeloff-d: #0E5754;
  --skobeloff-l: #2A9A96;
  --lapis: #26619C;
  --turquoise: #3FB8AF;
  --shamrock: #2E9E6B;
  --saffron: #DFA229;
  --fgray: #B7BFBE;
  --alabaster: #F3F1EC;

  /* neutrals */
  --ink: #10201F;
  --ink-2: #4C5A59;
  --ink-3: #74817F;
  --white: #FFFFFF;
  --cream: #F7F6F1;
  --rule: #E4E2DA;

  /* theme hooks — overridden per page */
  --brand: var(--skobeloff);
  --brand-rgb: 21, 122, 119;
  --accent: var(--lapis);
  --accent-rgb: 38, 97, 156;

  /* type */
  --display: "Avenir Next", "Avenir", "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* the V-formation mark, used for eyebrows and list bullets — points right */
  --chev: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 16'%3E%3Cpath d='M1.6 1.6L8 8l-6.4 6.4' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  /* shape + motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-1: 0 1px 2px rgba(16, 32, 31, .04), 0 8px 26px rgba(16, 32, 31, .05);
  --shadow-2: 0 2px 6px rgba(16, 32, 31, .06), 0 20px 46px rgba(16, 32, 31, .10);
  --ease: cubic-bezier(.22, .68, .36, 1);
  --wrap: 1180px;
}

/* per-page themes ------------------------------------------------------- */
body.t-climate     { --accent: #155698; --accent-rgb: 21, 86, 152; }   /* deep blue */
body.t-program     { --accent: #C79413; --accent-rgb: 199, 148, 19; }  /* gold */
body.t-recognition { --accent: #B8860B; --accent-rgb: 184, 134, 11; }  /* dark gold */
body.t-advancement { --accent: #1F6FB2; --accent-rgb: 31, 111, 178; }  /* blue */

/* base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.012em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(34px, 5.2vw, 62px); }
h2 { font-size: clamp(26px, 3.5vw, 42px); }
h3 { font-size: clamp(19px, 1.8vw, 23px); }
h4 { font-size: 15px; letter-spacing: .01em; }

p { margin: 0 0 1.05em; max-width: 74ch; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
header :focus-visible, .hero :focus-visible, .ftr :focus-visible {
  outline-color: #fff;
}

.wrap { width: min(var(--wrap), calc(100% - 44px)); margin-inline: auto; }

section { padding: clamp(46px, 6.5vw, 92px) 0; }
section + section { padding-top: 0; }

/* small labels ---------------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); margin: 0 0 14px;
}

h2.eyebrow, h3.eyebrow { font-family: var(--body); line-height: 1.62; letter-spacing: .1em; text-wrap: wrap; }

.tag {
  display: inline-block; align-self: flex-start;
  font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--brand);
  background: rgba(var(--brand-rgb), .09);
  border-radius: 999px; padding: 5px 13px;
}
/* category colours stay the same on every page so the reader can learn them */
.tag.case  { color: #0E5754; background: rgba(21, 122, 119, .12); }
.tag.tech  { color: #124B84; background: rgba(21, 86, 152, .12); }
.tag.news  { color: #8A6408; background: rgba(184, 134, 11, .16); }
.tag.draft { color: var(--ink-3); background: rgba(16, 32, 31, .06); }

.tags {
  font-family: var(--display);
  font-size: 13px; font-weight: 800; line-height: 1.55;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--skobeloff-d);
  margin-top: 4px; padding-top: 14px;
  border-top: 1px solid var(--rule);
}

/* buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  text-decoration: none;
  padding: 13px 24px; border-radius: 999px;
  background: var(--brand); color: #fff;
  border: 1.5px solid var(--brand);
  transition: background .25s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { background: var(--skobeloff-d); border-color: var(--skobeloff-d); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.btn .ar { transition: transform .25s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }

.btn.ghost { background: transparent; color: var(--brand); }
.btn.ghost:hover { background: rgba(var(--brand-rgb), .08); color: var(--skobeloff-d); }

.btn.on-dark { background: #fff; color: var(--ink); border-color: #fff; }
.btn.on-dark:hover { background: var(--alabaster); border-color: var(--alabaster); }
.btn.ghost.on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn.ghost.on-dark:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.tlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 600; font-size: 15.5px;
  color: var(--brand); text-decoration: none;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1.5px;
  transition: background-size .3s var(--ease);
}
.tlink .ar { transition: transform .25s var(--ease); }
.tlink:hover { background-size: 100% 1.5px; }
.tlink:hover .ar { transform: translateX(5px); }

/* ===== header =========================================================== */
.site-hd {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16, 32, 31, .93);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}
.hd-in { display: flex; align-items: center; gap: 26px; height: 70px; }

.brand { display: flex; align-items: center; text-decoration: none; color: #fff; flex: none; }
.brand svg { width: 168px; height: auto; display: block; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav-top {
  font-family: var(--display); font-weight: 600; font-size: 15px;
  color: rgba(255,255,255,.86); text-decoration: none;
  padding: 9px 13px; border-radius: var(--r-sm);
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav > a:hover, .nav-top:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav > a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.14); }

.nav .cta {
  background: var(--skobeloff-l); color: #fff; margin-left: 8px;
  padding: 10px 19px; border-radius: 999px;
}
.nav .cta:hover { background: #fff; color: var(--ink); }

.has-drop { position: relative; }
.caret { transition: transform .25s var(--ease); }
.has-drop:hover .caret, .has-drop:focus-within .caret { transform: rotate(180deg); }

.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  width: 330px; padding: 10px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--rule); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: none; }
.drop a {
  display: block; padding: 11px 14px; border-radius: var(--r-sm); text-decoration: none;
  transition: background .2s var(--ease);
}
.drop a:hover { background: var(--cream); }
.drop strong { display: block; font-family: var(--display); font-size: 15.5px; }
.drop small { display: block; color: var(--ink-3); font-size: 13.5px; line-height: 1.45; margin-top: 2px; }

.menu-btn { display: none; margin-left: auto; background: none; border: 0; color: #fff; padding: 10px; cursor: pointer; }

/* ===== hero ============================================================= */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 130% at 82% 8%, rgba(var(--accent-rgb), .38) 0%, transparent 60%),
    linear-gradient(158deg, var(--skobeloff) 0%, var(--skobeloff-d) 46%, var(--ink) 100%);
  color: #fff;
  padding: clamp(74px, 11vw, 132px) 0 clamp(58px, 8vw, 96px);
}

/* Each page gets its own hero, so the focus areas read as distinct places.
   Two brand colours plus depth in every case — never a third hue. */
body.t-home .hero {
  background:
    radial-gradient(90% 120% at 88% 4%, rgba(63, 184, 175, .58) 0%, transparent 55%),
    radial-gradient(85% 110% at 6% 96%, rgba(21, 86, 152, .72) 0%, transparent 60%),
    linear-gradient(145deg, #1A8E8A 0%, #106260 42%, #0B2E3F 100%);
}
body.t-climate .hero {
  background:
    radial-gradient(95% 120% at 92% 10%, rgba(21, 86, 152, .78) 0%, transparent 62%),
    linear-gradient(152deg, #17847F 0%, #0F5C5A 44%, #0A2740 100%);
}
body.t-program .hero {
  background:
    radial-gradient(95% 120% at 90% 8%, rgba(46, 158, 107, .62) 0%, transparent 58%),
    linear-gradient(152deg, #17847F 0%, #106155 46%, #0C2C26 100%);
}
body.t-recognition .hero {
  background:
    radial-gradient(95% 125% at 90% 6%, rgba(223, 162, 41, .55) 0%, transparent 58%),
    linear-gradient(152deg, #17847F 0%, #0F5E56 46%, #2A2411 100%);
}
body.t-advancement .hero {
  background:
    radial-gradient(95% 120% at 88% 8%, rgba(63, 184, 175, .6) 0%, transparent 56%),
    radial-gradient(80% 110% at 10% 98%, rgba(31, 111, 178, .5) 0%, transparent 62%),
    linear-gradient(152deg, #17847F 0%, #0F5C5A 46%, #10283A 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='84' viewBox='0 0 128 84'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-opacity='.2'%3E%3Cpath d='M8 22l14 11 14-11'/%3E%3Cpath d='M46 52l14 11 14-11'/%3E%3Cpath d='M84 22l14 11 14-11'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .5;
  mask-image: linear-gradient(115deg, transparent 30%, #000 100%);
  -webkit-mask-image: linear-gradient(115deg, transparent 30%, #000 100%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero .eyebrow { color: rgba(255,255,255,.82); }
.hero h1 { max-width: 20ch; margin-bottom: 20px; }
/* "Advancement & Innovation" is 24 characters: keep it on one line on desktop */
body.t-advancement:not(.t-about) .hero h1 { max-width: 26ch; }
body.t-home .hero { padding: clamp(56px, 7.5vw, 96px) 0 clamp(44px, 6vw, 74px); }
body.t-home .hero h1 { max-width: 40ch; }
/* no cap, so the standfirst breaks on exactly the same boundary as the headline */
body.t-home .hero p:not(.eyebrow) { max-width: none; }
.hero p { font-size: clamp(17px, 1.5vw, 20px); color: rgba(255,255,255,.9); max-width: 60ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.hero.compact { padding: clamp(56px, 8vw, 92px) 0 clamp(46px, 6vw, 74px); }

/* sampled from UPDRAFT-ENERGY-ICON-GRADIENT-BG: lapis -> skobeloff -> green */
body.t-about .hero { background: linear-gradient(to top right, #155B96 0%, #157A7C 52%, #169C61 100%); }
body.t-about .hero::after { opacity: .34; }
.hero.compact h1 { font-size: clamp(30px, 4.2vw, 50px); }

/* ===== credibility marquee ============================================= */
.creds { padding: clamp(34px, 4vw, 52px) 0; background: var(--white); border-block: 1px solid var(--rule); }
.creds .creds-label {
  text-align: center; font-size: 14px; color: var(--ink-3);
  margin: 0 0 30px; max-width: none;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track { display: flex; width: max-content; animation: crawl 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex; align-items: center;
  /* the loop clones this group, so it has to be wider than the viewport —
     otherwise the same logo appears twice on screen at once */
  gap: max(64px, 17vw);
  padding-right: max(64px, 17vw);
}
.marquee-group img {
  height: 54px; width: auto; object-fit: contain; flex: none;
  filter: grayscale(1); opacity: .62;
  transition: filter .3s var(--ease), opacity .3s var(--ease);
}
.marquee-group img:hover { filter: none; opacity: 1; }
@keyframes crawl { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== cards ============================================================ */
.sec-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4.4vw, 60px);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.sec-card.tinted { background: linear-gradient(180deg, rgba(var(--brand-rgb), .05), rgba(var(--brand-rgb), .015)); }
.sec-card.inked {
  background: linear-gradient(152deg, var(--skobeloff) 0%, var(--skobeloff-d) 58%, var(--ink) 100%);
  color: #fff; border-color: transparent;
}
.sec-card.inked .eyebrow { color: rgba(255,255,255,.85); }
.sec-card.inked p { color: rgba(255,255,255,.88); }
.sec-card.stub { background: var(--white); border: 1.5px dashed var(--fgray); box-shadow: none; }

.sec-head { margin-bottom: clamp(22px, 3vw, 38px); max-width: 62ch; }
/* 840px is the measured threshold: below it the long tokens in the Recognition
   and Climate headings force a third line. Do not lower without re-checking. */
.sec-head.lead { max-width: 840px; }
.sec-head.wide { max-width: 760px; }
.sec-head.full { max-width: none; }
.sec-head p:last-child { color: var(--ink-2); margin-bottom: 0; }
.sec-card.inked .sec-head p { color: rgba(255,255,255,.86); }
.h-rule { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 8px; }

.grid { --g: clamp(14px, 1.7vw, 22px); display: grid; gap: var(--g); }
.grid.center-last { display: flex; flex-wrap: wrap; justify-content: center; }
.grid.center-last > * { flex: 0 1 calc((100% - 2 * var(--g)) / 3); }
.grid.even > .card { min-height: 208px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-2x2 { grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.2vw, 26px); }
.g-2x2 > .card { min-height: 340px; padding: clamp(26px, 3vw, 38px); }
.g-2x2 > .card h3 { font-size: clamp(21px, 2.1vw, 26px); }
.g-2x2 > .card > p { font-size: 16.5px; }

.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.3vw, 28px);
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card.on-cream { background: var(--cream); }
.sec-card.inked .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #fff; }
.sec-card.inked .card p { color: rgba(255,255,255,.82); }

a.card:hover, .card.lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(var(--brand-rgb), .34);
}
.card h3 { margin-bottom: 9px; }
.card p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 12px; }
.card .foot { margin-top: auto; padding-top: 6px; }

a.card:hover .tlink { background-size: 100% 1.5px; }
a.card:hover .tlink .ar { transform: translateX(5px); }

/* focus-area icon tile */
.ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: rgba(var(--brand-rgb), .1);
  color: var(--brand);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.ico svg { width: 27px; height: 27px; }
a.card:hover .ico { background: var(--brand); color: #fff; }
.sec-card.inked .ico { background: rgba(255,255,255,.14); color: #fff; }

/* graphic panel that replaces photography on feature cards */
.figure-card { overflow: hidden; padding: 0; }
.panel {
  position: relative; aspect-ratio: 16 / 10; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--skobeloff) 0%, var(--skobeloff-d) 60%, var(--ink) 100%);
  color: #fff;
}
.panel.accent { background: linear-gradient(150deg, var(--accent) 0%, var(--skobeloff-d) 68%, var(--ink) 100%); }
.panel.light {
  --pad: clamp(16px, 2.4vw, 26px);
  display: block;
  background: var(--alabaster);
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
/* absolute box + contain: the panel's aspect-ratio sets the height, so every
   panel in a row ends at the same baseline whatever the artwork's own ratio */
.panel.light img {
  position: absolute;
  top: var(--pad); left: var(--pad);
  width: calc(100% - 2 * var(--pad));
  height: calc(100% - 2 * var(--pad));
  object-fit: contain;
}
/* scale variants stay centred because the box itself never moves */
.panel.light.sm img { transform: scale(.5); }
.panel.light.md img { transform: scale(.75); }
.panel.light.full img { top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.panel.light.photo { padding: 0; }
.panel.light.photo img { top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.panel.light.motif { display: grid; place-items: center; color: var(--brand); }
.panel.light.motif svg { width: min(62%, 260px); height: auto; }
.panel.light.full { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; }
.panel svg { width: min(78%, 400px); height: auto; }
.figure-card .body {
  padding: clamp(20px, 2.4vw, 30px);
  /* flex column so .foot's margin-top:auto pins the link to the card bottom,
     keeping "read the..." on one line across every card in a row */
  display: flex; flex-direction: column; flex: 1 1 auto;
}

/* ===== lists ============================================================ */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ticks li { position: relative; padding-left: 27px; color: var(--ink-2); font-size: 15.5px; line-height: 1.5; }
.ticks li::before {
  content: ""; position: absolute; left: 3px; top: .38em;
  width: 8px; height: 12px; background-color: var(--brand);
  -webkit-mask: var(--chev) no-repeat center / contain;
  mask: var(--chev) no-repeat center / contain;
}
.sec-card.inked .ticks li { color: rgba(255,255,255,.85); }
.sec-card.inked .ticks li::before { background-color: #fff; }

.stat { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 4.4vw, 52px); line-height: 1; color: var(--brand); }
.stat.sm { font-size: clamp(19px, 1.8vw, 23px); line-height: 1.1; }
.stat.ink { color: var(--ink); }
.stat + p { font-size: 15px; color: var(--ink-2); margin-top: 10px; }

/* ===== split layouts ==================================================== */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 3.4vw, 52px); align-items: center; }
.split.narrow { grid-template-columns: 1fr 1fr; }
.split.top { align-items: start; }
.split.art { grid-template-columns: .97fr 1.03fr; }
.split.eco { grid-template-columns: 1fr 1.05fr; align-items: end; }

/* logo cluster (recognition page) */
.logo-row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 3.4vw, 46px); }
.logo-row img { height: 96px; width: auto; object-fit: contain; }
.logo-row.lg img { height: 132px; }
.logo-mark { display: block; height: 112px; width: auto; object-fit: contain; margin-bottom: 20px; }
.award-mark { display: block; height: 112px; color: var(--brand); margin-bottom: 20px; }

/* centered mark + centered title */
.card.centered { align-items: center; text-align: center; }
.card.centered .logo-mark, .card.centered .award-mark { margin-inline: auto; }
.card.centered p { text-align: left; }
/* reserve three lines for the title so every body paragraph starts level */
.card.centered h3 {
  display: flex; align-items: center; justify-content: center;
  min-height: 3.4em; margin-bottom: 14px;
}
.award-mark svg { height: 100%; width: auto; display: block; }

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

.badge-grid { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(20px, 2.8vw, 40px); margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--rule); }
.badge-grid img { height: 84px; width: auto; object-fit: contain; }

/* ===== team ============================================================= */
.team { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
.person { display: grid; grid-template-columns: 240px 1fr; gap: clamp(22px, 3vw, 38px); align-items: start; }

.portrait {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg); overflow: hidden;
  background: var(--alabaster); border: 1px solid var(--rule);
}
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.portrait .alt-img { opacity: 0; transition: opacity .45s var(--ease); }
.portrait:hover .alt-img, .portrait:focus-within .alt-img { opacity: 1; }
.portrait .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 14px 11px;
  font-family: var(--display); font-weight: 600; font-size: 13.5px; color: #fff;
  background: linear-gradient(transparent, rgba(16, 32, 31, .82));
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.portrait:hover .cap, .portrait:focus-within .cap { opacity: 1; transform: none; }

.person h3 { margin-bottom: 2px; }
.role { font-size: 14.5px; color: var(--brand); font-weight: 600; margin-bottom: 12px; }
.person p { font-size: 15.5px; color: var(--ink-2); }

.li-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--brand); text-decoration: none; margin-top: 4px; }
.li-link svg { width: 17px; height: 17px; }
.li-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* map */
.brand-art { width: 100%; height: auto; display: block; border-radius: var(--r-lg); }

.ecosystem svg { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .ecosystem { margin-top: clamp(22px, 3vw, 36px); } }

.usmap { width: 100%; height: auto; display: block; }
.usmap-land path { fill: rgba(var(--brand-rgb), .1); stroke: rgba(var(--brand-rgb), .42); stroke-width: 1.1; }
.usmap-pin circle { fill: var(--skobeloff); }

/* ===== fact-sheet furniture ============================================ */
.toc { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 8px 20px; }
.toc a {
  display: block; padding: 8px 0; text-decoration: none;
  font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--brand);
  border-bottom: 1px solid var(--rule);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.toc a:hover { color: var(--skobeloff-d); padding-left: 5px; }

.fig { margin: 0; }
.fig svg, .fig img { width: 100%; height: auto; display: block; border-radius: var(--r-md); }
.fig img { background: var(--alabaster); padding: 14px; }
.fig figcaption { margin-top: 12px; font-size: 13.5px; color: var(--ink-3); line-height: 1.5; }
.fig figcaption a { color: var(--brand); }
.fig figcaption.right { text-align: right; }
/* photographs sit flush (the padded alabaster frame is for diagrams) */
.fig img.photo { padding: 0; background: none; }
/* nudge by the paragraph's half-leading so the photo's top edge meets the
   top of the first line of body text rather than the top of its line box */
.split.top > div > .fig.flush-top { margin-top: .32em; }

.tbl-wrap { overflow-x: auto; margin-top: 22px; -webkit-overflow-scrolling: touch; }
.tbl { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px; }
.tbl th, .tbl td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.tbl thead th {
  font-family: var(--display); font-size: 12.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3);
  border-bottom-width: 1.5px;
}
.tbl tbody th { font-family: var(--display); font-weight: 600; white-space: nowrap; width: 1%; }
.tbl tbody th a { color: var(--brand); text-decoration: none; }
.tbl tbody th a:hover { text-decoration: underline; text-underline-offset: 3px; }
.tbl td { color: var(--ink-2); }
.tbl tbody tr:last-child th, .tbl tbody tr:last-child td { border-bottom: 0; }

/* section anchors clear the sticky header */
[id] { scroll-margin-top: 88px; }

/* ===== forms ============================================================ */
.form { display: grid; gap: 11px; max-width: 560px; }
.card-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.card-pair > .sec-card { display: flex; flex-direction: column; }
@media (max-width: 860px) { .card-pair { grid-template-columns: 1fr; } }

.contact-split { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(24px, 3vw, 44px); align-items: start; }
.contact-split .form { max-width: 620px; }
.contact-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-photo { max-width: 320px; }
}
.field { display: grid; gap: 4px; }
.field label { font-family: var(--display); font-weight: 600; font-size: 14px; }
.field input, .field textarea {
  font: inherit; font-size: 15.5px; color: var(--ink);
  padding: 10px 13px;
  background: var(--white);
  border: 1.5px solid var(--rule); border-radius: var(--r-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), .14);
}
.form .btn { justify-self: start; margin-top: 4px; }
.form-note { font-size: 13.5px; color: var(--ink-3); }

.inline-form { display: flex; flex-wrap: wrap; gap: 12px; max-width: 620px; }
.inline-form input { flex: 1 1 260px; }
.inline-form .btn { flex: none; }

/* ===== events ========================================================== */
.events { list-style: none; margin: 0; padding: 0; display: grid; }
.events li {
  display: grid; grid-template-columns: 1.6fr 1fr auto;
  gap: 6px 24px; align-items: baseline;
  padding: 18px 0; border-top: 1px solid var(--rule);
}
.events li:last-child { border-bottom: 1px solid var(--rule); }
.ev-name { font-family: var(--display); font-weight: 700; font-size: 17px; }
.ev-place { color: var(--ink-2); font-size: 15.5px; }
.ev-date {
  font-family: var(--display); font-weight: 600; font-size: 14.5px;
  color: var(--brand); white-space: nowrap;
}
@media (max-width: 640px) {
  .events li { grid-template-columns: 1fr; gap: 3px; }
  .ev-date { white-space: normal; }
}

/* ===== prose (legal pages) ============================================== */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(21px, 2.2vw, 27px); margin-top: 2em; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); font-size: 16.5px; }
.prose ul { padding-left: 20px; display: grid; gap: 8px; margin-bottom: 1.05em; }
.prose a { color: var(--brand); text-underline-offset: 3px; }
.eff-date { font-size: 14.5px; color: var(--ink-3); margin-bottom: 2em; }

/* ===== footer =========================================================== */
.ftr { background: var(--ink); color: rgba(255,255,255,.74); padding: clamp(46px, 6vw, 76px) 0 28px; }
.ftr-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 44px); }
.ftr-brand img { width: 104px; height: auto; display: block; margin-bottom: 20px; }
.ftr-brand p { font-size: 15px; max-width: 34ch; }
.ftr .ftr-h { font-family: var(--display); font-weight: 700; font-size: 15px; line-height: 1.1; letter-spacing: .01em; color: #fff; margin: 0 0 14px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ftr a { color: rgba(255,255,255,.74); text-decoration: none; font-size: 15px; transition: color .2s var(--ease); }
.ftr a:hover { color: #fff; }

.ftr-social { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; }
.ftr-social svg { width: 19px; height: 19px; }

.ftr-bot {
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center;
  margin-top: clamp(30px, 4vw, 52px); padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px;
}
.ftr-bot .legal { display: flex; gap: 20px; margin-left: auto; }

/* ===== testimonial ====================================================== */
.quote { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: clamp(16px, 2.6vw, 34px); align-items: start; }
.quote-mark {
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(88px, 10vw, 132px);
  line-height: .78; color: var(--brand); opacity: .9; user-select: none;
}
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2.2vw, 27px); line-height: 1.42; letter-spacing: -.005em;
  color: var(--ink); max-width: 60ch;
}
.quote figcaption {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: clamp(20px, 2.4vw, 28px); padding-top: 20px; border-top: 1px solid var(--rule);
}
.quote .q-end { color: var(--skobeloff); }
.quote cite { font-style: normal; font-size: 15px; color: var(--ink-2); line-height: 1.45; }
.quote cite strong { display: block; font-family: var(--display); font-size: 17px; color: var(--ink); }
@media (max-width: 640px) {
  .quote { grid-template-columns: 1fr; gap: 0; }
  .quote-mark { font-size: 80px; height: 48px; }
}

/* ===== reveal =========================================================== */
/* Scoped to .js: without JavaScript the class is never added, the rule never
   applies, and every .rise block renders normally instead of staying invisible. */
.js .rise { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .rise.in { opacity: 1; transform: none; }
.js .rise[data-d="1"] { transition-delay: .05s; }
.js .rise[data-d="2"] { transition-delay: .1s; }
.js .rise[data-d="3"] { transition-delay: .15s; }
.js .rise[data-d="4"] { transition-delay: .2s; }

/* ===== responsive ======================================================= */
@media (max-width: 1000px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .grid.center-last > * { flex: 0 1 calc((100% - var(--g)) / 2); }
  .g-2x2 > .card { min-height: 0; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 70px 0 auto; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--ink); padding: 14px 22px 24px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    max-height: calc(100dvh - 70px); overflow: auto;
    display: none;
  }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
  .has-drop { display: block; }
  .nav-top { width: 100%; justify-content: space-between; }
  .drop {
    position: static; translate: none; width: auto; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 8px 12px;
    display: none;
  }
  .has-drop.open .drop { display: block; }
  .drop a { color: rgba(255,255,255,.8); }
  .drop a:hover { background: rgba(255,255,255,.08); }
  .drop small { color: rgba(255,255,255,.55); }
  .nav .cta { margin: 10px 0 0; justify-content: center; }

  .split, .split.narrow { grid-template-columns: 1fr; }
  .person { grid-template-columns: 150px 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 34px); }
  .g-2, .g-3, .g-4, .g-2x2 { grid-template-columns: 1fr; }
  .grid.center-last > * { flex: 0 1 100%; }
  .ftr-top { grid-template-columns: 1fr; }
  .ftr-bot .legal { margin-left: 0; }
  .person { grid-template-columns: 1fr; }
  .portrait { max-width: 230px; }
  .marquee-group img { height: 42px; }
  .tags { font-size: 12px; }
  .logo-row img { height: 74px; }
  .logo-row.lg img { height: 92px; }
  .logo-mark { height: 110px; }
  .badge-grid img { height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rise { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
