/* ==========================================================================
   Wool Online — marketing site: base styles, design tokens and type scale.
   Plain static HTML, no build step.
   ========================================================================== */

:root {
  /* Colour */
  --ink: #16202E;
  --ink-2: #243148;
  --slate: #455168;
  --slate-light: #6B7285;
  --slate-on-dark: #9A9FAC;
  --paper: #FAF6EE;
  --paper-2: #F4EEDF;
  --paper-3: #EDE5D0;
  --white: #FFFFFF;
  --border: #E4DCC9;
  --border-2: #EFE8D6;
  --border-3: #D8CDB2;
  --border-dashed: #C9BFA6;
  --ph-text: #8A8065;
  --green: oklch(55% 0.10 148);
  --green-mid: oklch(62% 0.13 148);
  --green-bright: oklch(72% 0.13 148);
  --paper-a86: rgba(250,246,238,.86);
  --paper-a78: rgba(250,246,238,.78);
  --line-on-dark: rgba(250,246,238,.14);
  --card-on-dark: rgba(250,246,238,.06);
  --card-on-dark-border: rgba(250,246,238,.16);

  /* Type */
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* Layout */
  --inset: 72px;            /* minimum side margin */
  --content-w: 900px;       /* max width of the readable content column */
  /* Side padding that centres content at --content-w on wide screens and
     falls back to --inset on narrow ones. Full-bleed backgrounds (hero,
     dark bands) still span the viewport; only the content is inset. */
  --gutter: max(var(--inset), calc((100% - var(--content-w)) / 2));
  --header-pad: 40px;
  --r-sm: 8px;
  --r-btn: 9px;
  --r-card: 12px;
  --ease: 150ms ease;
}

@media (max-width: 768px) {
  :root { --inset: 24px; --header-pad: 20px; }
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }
a { color: var(--ink); transition: color var(--ease); }
a:hover { color: var(--slate); }
:focus-visible { outline: 3px solid var(--green-mid); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: var(--r-sm);
}
.skip:focus { left: 12px; top: 12px; }

.mono { font-family: var(--mono); }

/* ---------- Type roles ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-light);
}
.on-dark .eyebrow { color: var(--slate-on-dark); }

.h-hero {
  font-size: clamp(44px, 6.4vw, 82px); line-height: 1.0; font-weight: 800; letter-spacing: -.035em;
  color: var(--paper); text-wrap: balance;
}
.h-page {
  font-size: clamp(40px, 5.3vw, 68px); line-height: 1.02; font-weight: 800; letter-spacing: -.035em;
  max-width: 18ch; text-wrap: balance;
}
.h-story {
  font-size: clamp(38px, 5vw, 64px); line-height: 1.05; font-weight: 800; letter-spacing: -.04em;
  color: var(--ink);
}
@media (max-width: 640px) { .h-story br { display: none; } }
.h-section {
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.12; font-weight: 700; letter-spacing: -.03em;
  color: var(--ink); text-wrap: balance;
}
.h-section-44 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.08; }
.h-section-40 { font-size: clamp(28px, 3.1vw, 40px); line-height: 1.1; }
.h-sub { font-size: 28px; font-weight: 700; letter-spacing: -.025em; line-height: 1.15; color: var(--ink); }
.h-card { font-size: 24px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; color: var(--ink); }
.h-card-sm { font-size: 21px; font-weight: 700; letter-spacing: -.015em; line-height: 1.2; }

.lede { font-size: 21px; line-height: 1.55; color: var(--slate); max-width: 60ch; }
.body-lg { font-size: 18.5px; line-height: 1.6; color: var(--ink-2); }
.body { font-size: 16px; line-height: 1.62; color: var(--slate); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 16px 28px;
  font-family: var(--sans); font-size: 16.5px; font-weight: 600; line-height: 1.2;
  border-radius: var(--r-btn); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.btn-md { padding: 15px 26px; font-size: 16px; }
.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-2); border-color: var(--ink-2); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-paper:hover { background: var(--white); border-color: var(--white); color: var(--ink); }
.btn-white { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn-white:hover { background: var(--paper-2); color: var(--ink); }
.btn-outline { background: transparent; color: var(--slate); border-color: var(--border-dashed); }
.btn-outline:hover { background: var(--paper-2); color: var(--ink); }
.btn-ghost-dark { background: transparent; color: var(--paper); border-color: rgba(250,246,238,.4); }
.btn-ghost-dark:hover { background: rgba(250,246,238,.08); border-color: rgba(250,246,238,.6); color: var(--paper); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: relative; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 72px; padding: 0 var(--header-pad);
  background: var(--paper); border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand .chip {
  background: var(--paper-2); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 5px 7px; display: grid; place-items: center;
}
.brand .chip img { height: 26px; width: auto; }
.brand .name { display: block; font-weight: 700; font-size: 17px; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); }
.brand .tag { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; color: var(--slate-light); line-height: 1.4; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav ul { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.site-nav a { font-size: 15px; font-weight: 500; color: var(--slate); text-decoration: none; padding: 4px 0; }
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { font-weight: 600; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 2px; }
.site-nav a.btn-login {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: var(--r-sm);
  font-size: 15px; font-weight: 600; text-decoration: none; border-bottom: 0; white-space: nowrap;
  transition: background var(--ease);
}
.site-nav a.btn-login:hover { background: var(--ink-2); color: var(--paper); }

/* "How it works" hover menu (For buyers / For sellers). Opens on hover and on
   keyboard focus of anything inside it; on the mobile menu the items just
   show inline under the parent link. */
.site-nav li.has-menu { position: relative; }
.site-nav li.has-menu > a { display: inline-flex; align-items: center; gap: 5px; }
.site-nav li.has-menu > a .caret { width: 14px; height: 14px; flex: none; transition: transform var(--ease); }
.site-nav li.has-menu:hover > a .caret,
.site-nav li.has-menu:focus-within > a .caret { transform: rotate(180deg); }
.site-nav .sub-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: -12px; z-index: 20;
  min-width: 180px; margin: 0; padding: 6px; list-style: none; flex-direction: column; align-items: stretch; gap: 0;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-sm);
  box-shadow: 0 12px 32px rgba(22, 32, 46, .12);
}
/* Invisible bridge so the pointer can travel from the link down to the menu. */
.site-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.site-nav li.has-menu:hover > .sub-menu,
.site-nav li.has-menu:focus-within > .sub-menu { display: flex; }
.site-nav .sub-menu a { display: block; padding: 9px 12px; border-radius: 6px; white-space: nowrap; }
.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible { background: var(--paper-2); color: var(--ink); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--paper-2); color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--border);
    padding: 8px var(--header-pad) 16px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li a { display: block; padding: 12px 0; font-size: 17px; border-bottom: 1px solid var(--border-2); }
  .site-nav a[aria-current="page"] { border-bottom: 1px solid var(--border-2); }
  .site-nav a.btn-login { margin-top: 14px; }
  /* Hover menu becomes a plain nested list in the mobile menu. */
  .site-nav li.has-menu > a { display: block; }
  .site-nav li.has-menu > a .caret { display: none; }
  .site-nav .sub-menu,
  .site-nav li.has-menu:hover > .sub-menu,
  .site-nav li.has-menu:focus-within > .sub-menu {
    display: block; position: static; min-width: 0; padding: 0 0 0 18px;
    background: transparent; border: 0; border-radius: 0; box-shadow: none;
  }
  .site-nav .sub-menu::before { display: none; }
  .site-nav .sub-menu a { padding: 12px 0; border-radius: 0; white-space: normal; }
  .site-nav .sub-menu a:hover { background: transparent; }
}

/* ---------- Hero (Home) ---------- */
.hero { position: relative; min-height: 600px; overflow: hidden; background: var(--ink); display: flex; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,32,46,.86) 0%, rgba(22,32,46,.60) 45%, rgba(22,32,46,.88) 100%);
}
.hero-content {
  position: relative; display: flex; flex-direction: column; justify-content: center;
  padding: 88px var(--gutter); width: 100%;
}
.pill {
  display: inline-flex; align-items: center; gap: 9px; align-self: flex-start;
  background: rgba(255,255,255,.08); border: 1px solid rgba(250,246,238,.18); border-radius: 999px;
  padding: 7px 14px; margin-bottom: 26px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .1em; color: rgba(250,246,238,.9);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: wolpulse 2s infinite; flex: none; }
.dot-bright { background: var(--green-mid); }
@keyframes wolpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,138,102,.5); }
  50%      { box-shadow: 0 0 0 7px rgba(74,138,102,0); }
}
.hero-lede { margin-top: 28px; font-size: clamp(18px, 2vw, 23px); line-height: 1.5; color: var(--paper-a86); max-width: 44ch; }
.hero .btn-row { margin-top: 40px; }

/* ---------- Stats band (Home) ---------- */
.stats { background: var(--ink); color: var(--paper); padding: 40px var(--gutter) 44px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 0 24px; border-left: 1px solid var(--line-on-dark);
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--mono); font-size: clamp(38px, 4vw, 52px); line-height: 1; font-weight: 700; letter-spacing: -.03em;
  color: var(--paper); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.stat .num .plus { color: var(--slate-light); }
.stat .cap { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--slate-on-dark); }
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { padding: 24px 0; border-left: 0; border-top: 1px solid var(--line-on-dark); }
  .stat:first-child { border-top: 0; }
  .stat:first-child { border-top: 0; }
  .stat:last-child { padding-bottom: 0; }
}

/* ---------- Home: why / pillars / screenshot / CTA ---------- */
.why { padding: 88px var(--gutter) 0; }
.why .eyebrow { margin-bottom: 16px; }
.why .h-section { max-width: 22ch; }
.why .lede { margin-top: 22px; }

.pillars { padding: 52px var(--gutter) 0; display: grid; grid-template-columns: 1fr; gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card);
  padding: 32px; display: flex; flex-direction: column; gap: 14px;
}
.shot { padding: 64px var(--gutter) 0; }
.cta-stack {
  padding: 64px var(--gutter) 88px;
  display: flex; flex-direction: column; align-items: stretch; gap: 14px;
  max-width: 480px; margin: 0 auto; box-sizing: content-box;
}
.cta-stack .btn { width: 100%; }
.cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-text {
  align-self: center; margin-top: 6px; padding: 10px 16px; min-height: 44px; display: inline-flex; align-items: center;
  font-size: 16.5px; font-weight: 600; color: var(--slate); text-decoration: none;
  border-bottom: 2px solid transparent; transition: color var(--ease), border-color var(--ease);
}
.cta-text:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (max-width: 480px) { .cta-pair { grid-template-columns: 1fr; } }

/* ---------- Placeholders (dashed slots awaiting real material) ---------- */
.ph {
  border: 1.5px dashed var(--border-dashed); border-radius: var(--r-card); background: var(--paper-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 24px; text-align: center;
}
.ph .ph-label { font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; color: var(--ph-text); }
.ph .ph-note { font-size: 15px; color: var(--slate-light); max-width: 46ch; }
.ph-shot { height: 360px; }
@media (max-width: 768px) { .ph-shot { height: 220px; } }

/* ---------- Page head (dark) ---------- */
.page-head { background: var(--ink); color: var(--paper); padding: 80px var(--gutter) 56px; }
.page-head .eyebrow { margin-bottom: 20px; }
.page-head .h-page { color: var(--paper); }
.page-head .lede { margin-top: 26px; font-size: 20px; color: var(--paper-a78); max-width: 56ch; }

/* ---------- How it works: media ---------- */
.media { padding: 64px var(--gutter); display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; }
.media-stack { display: flex; flex-direction: column; gap: 24px; }
.media-stack .ph { flex: 1; min-height: 178px; padding: 24px; gap: 8px; }
.media-stack .ph-note { font-size: 14px; }
.video {
  position: relative; min-height: 380px; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid var(--border); background: #000;
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer;
  background: #000 var(--thumb) center / cover no-repeat;
}
.video-facade::after { content: ""; position: absolute; inset: 0; background: rgba(22,32,46,.25); }
.video-facade .play {
  position: absolute; inset: 0; margin: auto; z-index: 1; width: 72px; height: 72px; border-radius: 50%;
  background: rgba(22,32,46,.82); display: grid; place-items: center; transition: transform var(--ease), background var(--ease);
}
.video-facade:hover .play { background: var(--ink); transform: scale(1.06); }
.video-facade .play svg { width: 28px; height: 28px; color: #fff; margin-left: 4px; }
.video-facade .vlabel {
  position: absolute; left: 16px; bottom: 14px; z-index: 1;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; color: rgba(250,246,238,.9);
}
@media (max-width: 960px) {
  .media { grid-template-columns: 1fr; }
  .video { min-height: 0; aspect-ratio: 16 / 9; }
}

/* ---------- Two-column text sections ---------- */
.split { padding: 72px var(--gutter); display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; border-top: 1px solid var(--border); }
.split.alt { background: var(--paper-3); }
.split .eyebrow { margin-bottom: 14px; }
.split-body { display: flex; flex-direction: column; gap: 20px; }
.split-body .btn-row { margin-top: 8px; gap: 12px; }
.split-body .note { font-size: 14px; color: var(--slate-light); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* "Find an affiliated seller" — links out to two sites; resolved as a native
   disclosure menu (no JS). Swap for two buttons if preferred. */
.seller-menu { position: relative; }
.seller-menu summary { list-style: none; }
.seller-menu summary::-webkit-details-marker { display: none; }
.seller-menu summary .btn .caret { width: 14px; height: 14px; transition: transform var(--ease); }
.seller-menu[open] summary .btn .caret { transform: rotate(180deg); }
.seller-menu .menu {
  position: absolute; left: 0; top: calc(100% + 8px); z-index: 10; min-width: 260px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 8px;
  box-shadow: 0 12px 32px -12px rgba(22,32,46,.25);
}
.seller-menu .menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; min-height: 44px; border-radius: var(--r-sm); text-decoration: none; color: var(--ink); font-weight: 600; font-size: 16px;
}
.seller-menu .menu a:hover { background: var(--paper-2); }
.seller-menu .menu a small { font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; color: var(--slate-light); font-weight: 600; }

/* ---------- Benefits (dark) ---------- */
.benefits { background: var(--ink); color: var(--paper); padding: 80px var(--gutter); border-top: 1px solid var(--border); }
.benefits .h-section { color: var(--paper); margin-bottom: 44px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit {
  background: var(--card-on-dark); border: 1px solid var(--card-on-dark-border); border-radius: var(--r-card);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.benefit h3 { color: var(--paper); }
.benefit p { font-size: 16px; line-height: 1.6; color: var(--paper-a78); }
@media (max-width: 960px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.story-head { padding: 88px var(--gutter) 64px; }
.story-head .eyebrow { margin-bottom: 22px; }
.photo-band { position: relative; height: 320px; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
@media (max-width: 768px) { .photo-band { height: 220px; } }
.story { padding: 72px var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.story .lead { font-size: 23px; line-height: 1.5; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.story .more { display: flex; flex-direction: column; gap: 20px; }
.story .more p { font-size: 16.5px; line-height: 1.65; color: var(--slate); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; gap: 24px; } }

.partners { padding: 0 var(--gutter) 88px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.partner { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.partner .logo { width: 180px; height: 56px; display: flex; align-items: center; }
.partner .logo img { max-height: 56px; width: auto; max-width: 180px; border-radius: 6px; }
.partner .body { font-size: 16.5px; }
.partner .links { display: flex; gap: 16px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border-2); }
.partner .links a { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .1em; color: var(--slate); text-decoration: none; padding: 6px 0; }
.partner .links a:hover { color: var(--ink); }
.partner .ph-copy { border-radius: 10px; padding: 28px; align-items: flex-start; text-align: left; gap: 8px; }
.partner .ph-copy .ph-label { font-size: 11px; }
.partner .ph-copy .ph-note { font-size: 15.5px; line-height: 1.6; max-width: none; }
@media (max-width: 860px) { .partners { grid-template-columns: 1fr; } }

/* ---------- News cards ---------- */
.news { padding: 56px var(--gutter) 88px; }
.news-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.news-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.news-card:hover, .news-card:focus-within { border-color: var(--border-3); box-shadow: 0 12px 32px -18px rgba(22,32,46,.35); transform: translateY(-2px); }
/* Whole card is the link: the title anchor is stretched over the card. */
.news-body h2 a::after { content: ""; position: absolute; inset: 0; }
.news-body h2 a:focus-visible { outline: none; }
.news-card:focus-within { outline: 3px solid var(--green-mid); outline-offset: 3px; }
.news-thumb { position: relative; display: block; aspect-ratio: 16 / 9; background: var(--paper-2); border-bottom: 1px solid var(--border); overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Article thumbnails: washed-out photo + scrim + publication name. */
.news-thumb--article img { filter: saturate(.55) contrast(.95); }
.news-thumb--article::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,32,46,.10) 0%, rgba(22,32,46,.22) 55%, rgba(22,32,46,.62) 100%);
}
.news-thumb-cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 1;
  font-family: var(--mono); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--paper);
}
.play-badge {
  position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(22,32,46,.82); display: grid; place-items: center; color: #fff; transition: transform var(--ease), background var(--ease);
}
.play-badge svg { width: 22px; height: 22px; margin-left: 3px; }
.news-card:hover .play-badge { background: var(--ink); transform: scale(1.06); }
.news-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 24px; flex: 1; }
.news-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 4px; }
.news-meta time { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate-light); }
.news-meta .kind {
  font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); background: rgba(22,32,46,.06); border: 1px solid var(--ink); border-radius: 999px; padding: 4px 10px;
}
.news-body h2 { color: var(--ink); }
.news-body h2 a { text-decoration: none; color: var(--ink); }
.news-card:hover .news-body h2 a { color: var(--slate); }
.news-body .body { font-size: 15.5px; }
@media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- Article (press releases under news/) ---------- */
.article { padding: 56px var(--gutter) 88px; max-width: 72ch; box-sizing: content-box; }
.article p { font-size: 18px; line-height: 1.65; color: var(--ink-2); margin: 0 0 22px; }
.article h2 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; color: var(--ink); margin: 36px 0 14px; }
.article ul { margin: 0 0 22px; padding-left: 22px; font-size: 18px; line-height: 1.65; color: var(--ink-2); }
.article li + li { margin-top: 8px; }
.article blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--border-3); }
.article blockquote p { font-size: 20px; color: var(--ink); margin-bottom: 10px; }
.article blockquote cite { font-style: normal; font-size: 14.5px; color: var(--slate-light); }
.article hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0 28px; }
.article .article-dateline strong { color: var(--ink); }
.article .article-contact { font-size: 16px; line-height: 1.7; color: var(--slate); }
.article .article-contact a { color: var(--slate); }
.article .article-contact a:hover { color: var(--ink); }
.article .article-back { padding-left: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper-3); border-top: 1px solid var(--border); padding: 64px var(--gutter) 32px; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.foot h4 { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-light); margin: 0 0 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot a { color: var(--slate); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot .addr { color: var(--slate); line-height: 1.7; margin-top: 16px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 44px; height: 44px; border-radius: var(--r-sm); border: 1px solid var(--border); background: var(--white);
  display: grid; place-items: center; color: var(--slate); transition: color var(--ease), border-color var(--ease);
}
.social a:hover { color: var(--ink); border-color: var(--slate-on-dark); }
.social svg { width: 18px; height: 18px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border-3); color: var(--slate-light); font-size: 14px;
}
@media (max-width: 960px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
