/* ============================================================
   CFIR Newsroom — Apple Newsroom visual clone, our content.
   One stylesheet for landing + articles + archive.
   Light theme only (canon of the reference).
   ============================================================ */

:root {
  --text: #1d1d1f;
  --gray: #6e6e73;
  --hairline: #d2d2d7;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --pill-bg: #e8e8ed;
  --pill-bg-hover: #dededf;
  --link: #0066cc;
  --nav-bg: rgba(251, 251, 253, 0.8);
  --globalnav-bg: rgba(22, 22, 23, 0.92);
  --cfir-red: #b8222e;
  --r-hero: 32px;
  --r-card: 24px;
  --r-box: 18px;
  --r-thumb: 12px;
  --col: 653px;
  --col-wide: 983px;
  --container: 1024px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
          "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: #b3d7ff; }

.a11y-skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--text); color: #fff; padding: 10px 18px;
  border-radius: 0 0 12px 0; font-weight: 600;
}
.a11y-skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--link);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── site header (.cobrand — mirrored from /css/site.css) ──────────
   Same bar as the rest of the site; the flyout panels keep the Apple
   behaviour (links only + page-blur curtain). */

.cobrand {
  --paper: #F4F4F2; --hair: #E2E2DD; --muted: #5C5F66; --ink: #14161A;
  --site-red: #B8222E;
  border-bottom: 1px solid var(--hair); background: var(--paper);
  /* Apple mechanics: the site header scrolls away… */
  position: relative; z-index: 60;
}
.cobrand .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.cobrand .row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 66px;
}
.brand { display: flex; align-items: center; gap: 16px; }
.brand-logo { display: flex; align-items: center; gap: 14px; }
.brand-logo .seal { height: 50px; width: 50px; display: block; flex: none; }
.brand-logo .wm { display: flex; flex-direction: column; gap: 2px; }
.brand-logo .wm b {
  font-weight: 700; font-size: 12.5px; letter-spacing: .05em;
  text-transform: uppercase; color: #2A3F54; line-height: 1.12;
}
@media (max-width: 760px) { .brand-logo .wm { display: none; } }
.mega { display: flex; gap: 30px; align-items: center; }
.mi-top {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding: 22px 0; display: inline-block;
  transition: color .18s ease;
}
.mi:hover .mi-top, .mi-top:hover, .mi-top[aria-current="page"] { color: var(--ink); }
@media (max-width: 700px) { .mega .mi:nth-child(n+5) { display: none; } }

/* flyout panels: the site panel look, Apple behaviour */
.gn-flyout {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--paper);
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.07);
}
.gn-flyout[hidden] { display: none; }
.gn-flyout-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 32px 32px 52px;
  display: flex; gap: 60px; align-items: flex-start;
  opacity: 0; transform: translateY(-6px);
  animation: gn-reveal .28s cubic-bezier(0.2, 0.6, 0.2, 1) .04s forwards;
}
@keyframes gn-reveal { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .gn-flyout-inner { animation: none; opacity: 1; transform: none; }
}
/* Apple flyout typography on the site's light panel: gray caption,
   first group large and bold, the rest small */
.gn-flyout-caption {
  font-size: 12px; color: #86868b; font-weight: 400;
  margin-bottom: 14px;
}
.gn-flyout-list { list-style: none; }
.gn-flyout-list a {
  display: block; color: #1d1d1f; line-height: 1.3;
  transition: color .18s ease; max-width: 30ch;
}
.gn-flyout-list a:hover { color: #B8222E; }
.gn-col-major .gn-flyout-list a {
  padding: 5px 0; font-size: 24px; font-weight: 600; line-height: 1.25;
  letter-spacing: -0.01em;
}
.gn-col-minor .gn-flyout-list a {
  padding: 4px 0; font-size: 12px; font-weight: 400; color: #424245;
}
.gn-col-minor .gn-flyout-list a:hover { color: #B8222E; }
@media (max-width: 700px) {
  .gn-flyout-inner { flex-direction: column; gap: 28px; }
}
/* Apple's curtain: the page behind dims and blurs */
.gn-curtain {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.gn-curtain.gn-curtain--on { opacity: 1; pointer-events: auto; }
.gn-curtain[hidden] { display: none; }

/* ─── local nav (Newsroom bar) ────────────────────────────── */

/* Apple mechanics: the injected mega-nav scrolls away, the local bar stays pinned */
.cobrand { position: relative !important; top: auto !important; }
.localnav {
  /* …while the local bar stays pinned (Apple localnav) */
  position: sticky; top: 0; z-index: 40;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.16);
}
.localnav-inner {
  max-width: var(--container); margin: 0 auto;
  height: 52px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.localnav .ln-title {
  font-size: 21px; font-weight: 600; letter-spacing: 0;
}
.localnav .ln-actions {
  display: flex; align-items: center; gap: 24px;
}
.localnav .ln-actions a {
  font-size: 14px; color: var(--text); opacity: .88;
  transition: opacity .18s ease;
}
.localnav .ln-actions a:hover { opacity: 1; }
.localnav .ln-pill {
  background: var(--pill-bg); border-radius: 980px;
  padding: 7px 14px; font-size: 14px;
  transition: background .18s ease;
}
.localnav .ln-pill:hover { background: var(--pill-bg-hover); }

/* ─── placeholder marker (ours, kept) ─────────────────────── */

.placeholder-pill {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 40; pointer-events: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 13px 6px 10px;
  border: 1px solid rgba(184, 34, 46, 0.4);
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cfir-red);
}
.placeholder-pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--cfir-red);
  animation: pp-pulse 2.4s ease-in-out infinite;
}
@keyframes pp-pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .placeholder-pill::before { animation: none; } }

/* ─── landing layout ──────────────────────────────────────── */

.nr-main { background: var(--bg-alt); }
/* listing pages: match body to the grey content so the footer's top margin doesn't flash white */
body.nr-index { background: var(--bg-alt); }
.nr-section {
  max-width: var(--container); margin: 0 auto;
  padding: 48px 22px 56px;
}
.nr-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.nr-section h1, .nr-section-head h2 {
  font-size: 34px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2;
}
.nr-section-head .view-all {
  background: #fff; border-radius: 980px; padding: 10px 20px;
  font-size: 15px; font-weight: 500;
  transition: transform .18s ease, box-shadow .18s ease;
}
.nr-section-head .view-all:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

/* tiles */

.tile {
  display: block; background: #fff; overflow: hidden;
  border-radius: var(--r-card);
  transition: transform .3s cubic-bezier(0,0,.5,1), box-shadow .3s cubic-bezier(0,0,.5,1);
}
.tile:hover {
  transform: scale(1.012);
  box-shadow: 2px 4px 16px rgba(0,0,0,0.12);
}
@media (prefers-reduced-motion: reduce) {
  .tile, .tile:hover { transform: none; transition: none; }
}

.tile__label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray);
}
.tile__headline { font-weight: 700; color: var(--text); }
.tile__timestamp {
  font-size: 14px; color: var(--gray);
  display: inline-flex; align-items: center; gap: .45em;
}
.tile__timestamp .icon-clock { width: 15px; height: 15px; opacity: .75; }

/* hero 1up */
.tile-hero {
  border-radius: var(--r-hero);
  display: grid; grid-template-columns: 13fr 8fr;
  margin-bottom: 24px;
}
.tile-hero .tile__media { position: relative; min-height: 300px; }
.tile-hero .tile__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tile-hero .tile__body {
  padding: 34px 32px 28px;
  display: flex; flex-direction: column;
}
.tile-hero .tile__headline {
  font-size: 32px; line-height: 1.125; letter-spacing: .004em;
  margin-top: 12px;
}
.tile-hero .tile__timestamp { margin-top: auto; padding-top: 28px; font-size: 17px; }
@media (max-width: 740px) {
  .tile-hero { grid-template-columns: 1fr; }
  .tile-hero .tile__media { min-height: 0; aspect-ratio: 16/9; }
  .tile-hero .tile__headline { font-size: 26px; }
}

/* grids */
.tile-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px;
}
.tile-grid-3 {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
}
@media (max-width: 740px) {
  .tile-grid-2, .tile-grid-3 { grid-template-columns: 1fr; }
}

.tile-nup .tile__media { aspect-ratio: 16/9; }
.tile-nup .tile__media img { width: 100%; height: 100%; object-fit: cover; }
.tile-nup .tile__body { padding: 22px 24px 24px; }
.tile-grid-2 .tile__headline { font-size: 24px; line-height: 1.16; margin-top: 10px; }
.tile-grid-3 .tile__headline { font-size: 19px; line-height: 1.2; margin-top: 9px; }
.tile-nup .tile__timestamp { margin-top: 14px; }

/* ─── Stories section ─────────────────────────────────────── */

.nr-stories { background: var(--bg); }
.stories-head { text-align: center; margin-bottom: 36px; }
.stories-head .stories-logo {
  display: inline-flex; align-items: center; gap: .3em;
  font-size: 40px; font-weight: 700; letter-spacing: -0.015em;
}
.stories-head .stories-logo .wm-mark {
  width: .95em; height: .95em; display: inline-block;
  -webkit-mask: url(/cfir-mark-mask.png) center / contain no-repeat;
          mask: url(/cfir-mark-mask.png) center / contain no-repeat;
  background: var(--text);
}
.stories-head p {
  margin: 14px auto 0; max-width: 480px;
  font-size: 17px; font-weight: 600; line-height: 1.35;
}
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
}
@media (max-width: 740px) { .story-grid { grid-template-columns: 1fr; } }

.tile-story {
  position: relative; border-radius: var(--r-card);
  aspect-ratio: 3/3.4; color: #fff;
}
.tile-story img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.tile-story::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 45%, rgba(0,0,0,0.1) 100%);
}
.tile-story .tile__body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 20px 22px 22px;
}
.story-pill {
  display: inline-block; padding: 4px 10px; border-radius: 980px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  margin-bottom: 10px;
}
.story-pill--seeds     { background: rgba(90, 60, 200, 0.85); }
.story-pill--education { background: rgba(0, 113, 227, 0.85); }
.story-pill--research  { background: rgba(184, 34, 46, 0.85); }
.tile-story .tile__headline {
  color: #fff; font-size: 21px; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.tile-story .tile__timestamp { color: rgba(255,255,255,0.75); margin-top: 10px; }

.view-all-center { text-align: center; margin-top: 36px; }
.pill-btn {
  display: inline-block; background: var(--pill-bg); border: 0; cursor: pointer;
  border-radius: 980px; padding: 12px 22px;
  font-family: var(--font); font-size: 16px; font-weight: 500; color: var(--text);
  transition: background .18s ease;
}
.pill-btn:hover { background: var(--pill-bg-hover); }
.nr-stories .pill-btn { background: var(--bg-alt); }

/* ─── tile-list (More from …) ─────────────────────────────── */

.nr-more { background: var(--bg-alt); }
.nr-more h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.tile-list {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; list-style: none;
}
@media (max-width: 740px) { .tile-list { grid-template-columns: 1fr; } }
.tile-list li { border-bottom: 1px solid var(--hairline); }
.tile-list a {
  display: grid; grid-template-columns: 88px 1fr; gap: 20px;
  padding: 22px 0; align-items: center;
}
.tile-list .li-thumb {
  width: 88px; height: 88px; border-radius: var(--r-thumb);
  object-fit: cover; background: var(--pill-bg);
}
.tile-list .tile__headline { font-size: 19px; line-height: 1.21; margin: 5px 0 7px; }
.tile-list a:hover .tile__headline { text-decoration: underline; }
.tile-list .tile__timestamp { font-size: 14px; }
.view-archive-center { text-align: center; margin-top: 40px; }

/* ─── breadcrumb footer ───────────────────────────────────── */

.nr-breadcrumb {
  background: var(--bg-alt); border-top: 1px solid var(--hairline);
}
.nr-breadcrumb .bc-inner {
  max-width: var(--container); margin: 0 auto; padding: 18px 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray);
}
.nr-breadcrumb .wm-mark {
  width: 15px; height: 15px; display: inline-block;
  -webkit-mask: url(/cfir-mark-mask.png) center / contain no-repeat;
          mask: url(/cfir-mark-mask.png) center / contain no-repeat;
  background: var(--gray);
}
.nr-breadcrumb .bc-sep { opacity: .6; }
.nr-breadcrumb a:hover { text-decoration: underline; }

/* ─── article page ────────────────────────────────────────── */

.article { background: var(--bg); padding-bottom: 20px; }
.article .component { margin-left: auto; margin-right: auto; }

.art-col  { max-width: var(--col);  padding: 0 22px; margin: 0 auto; }
.art-wide { max-width: var(--col-wide); padding: 0 22px; margin: 0 auto; }

.category.component { padding-top: 56px; }
.category .cat-label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray); display: block;
}
.category time { font-size: 14px; color: var(--gray); margin-top: 6px; display: block; }

.pagetitle.component h1 {
  font-size: clamp(32px, 5.4vw, 48px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.003em;
  margin-top: 18px;
}

.article-subhead.component {
  margin-top: 22px;
  font-size: 21px; font-weight: 600; line-height: 1.38;
}

.article-byline.component {
  margin-top: 18px;
  font-size: 14px; color: var(--gray);
}

/* sharesheet */
.sharesheet.component { margin-top: 26px; }
.share-row { display: flex; align-items: center; gap: 18px; }
.share-row a, .share-row button {
  display: inline-flex; width: 28px; height: 28px;
  align-items: center; justify-content: center;
  color: var(--text); opacity: .8; background: none; border: 0; cursor: pointer;
  transition: opacity .18s ease;
}
.share-row a:hover, .share-row button:hover { opacity: 1; }
.share-row svg { width: 20px; height: 20px; fill: currentColor; }
.share-feedback { font-size: 13px; color: var(--gray); opacity: 0; transition: opacity .3s; }
.share-feedback.show { opacity: 1; }

/* body text */
.pagebody.component { margin-top: 34px; }
.pagebody p { margin-bottom: 1.25em; }
.pagebody p:last-child { margin-bottom: 0; }
.pagebody h2 {
  font-size: 28px; font-weight: 700; line-height: 1.14; letter-spacing: .007em;
  margin: 1.6em 0 .65em;
}
.pagebody a { color: var(--link); }
.pagebody a:hover { text-decoration: underline; }
.pagebody-small { font-size: 14px; color: var(--gray); }

/* images */
.image.component { margin-top: 44px; margin-bottom: 44px; }
.image .img-frame { border-radius: var(--r-box); overflow: hidden; }
.image .img-frame img { width: 100%; }
.image .img-meta {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; margin-top: 14px;
}
.image figcaption {
  font-size: 14px; line-height: 1.4; color: var(--gray); max-width: 560px;
}
.dl-btn {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pill-bg); color: var(--text);
  transition: background .18s ease;
}
.dl-btn:hover { background: var(--pill-bg-hover); }
.dl-btn svg { width: 16px; height: 16px; fill: currentColor; }

/* share article (repeat) */
.nr-article-share.component { margin-top: 54px; }
.nr-article-share h2 { font-size: 21px; font-weight: 700; margin-bottom: 16px; }

/* docs and downloads */
.docsanddownloads.component {
  margin-top: 30px;
  background: var(--bg-alt); border-radius: var(--r-box);
  padding: 8px 28px;
}
.dnd-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 22px 0;
}
.dnd-row + .dnd-row { border-top: 1px solid var(--hairline); }
.dnd-row .dnd-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 600;
}
.dnd-row .dnd-label svg { width: 22px; height: 22px; fill: currentColor; opacity: .8; }
.dark-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text); color: #fff; border: 0; cursor: pointer;
  border-radius: 980px; padding: 9px 18px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  transition: opacity .18s ease;
}
.dark-pill:hover { opacity: .85; }
.dark-pill svg { width: 15px; height: 15px; fill: currentColor; }

/* tags (ours, kept) */
.tags.component { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.tags .tag {
  font-size: 13px; color: var(--gray);
  background: var(--bg-alt); border-radius: 980px; padding: 5px 12px;
  transition: background .18s ease;
}
.tags .tag:hover { background: var(--pill-bg-hover); }

/* press contacts */
.presscontacts.component { margin-top: 64px; }
.presscontacts hr, .art-hr {
  border: 0; border-top: 1px solid var(--hairline); margin: 0 0 44px;
}
.presscontacts h2 { font-size: 28px; font-weight: 700; margin-bottom: 26px; }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) { .pc-grid { grid-template-columns: 1fr; } }
.pc-name { font-size: 19px; font-weight: 600; }
.pc-org { font-size: 15px; margin-top: 2px; }
.pc-link { font-size: 15px; color: var(--link); margin-top: 6px; display: inline-block; }
.pc-link:hover { text-decoration: underline; }

/* related (article foot) */
.article-related.component { margin-top: 64px; padding-bottom: 64px; }
.article-related h2 { font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.article-related .tile-list { grid-template-columns: 1fr; }

/* article breadcrumb */
.article + .nr-breadcrumb, .nr-breadcrumb--article { background: var(--bg-alt); }

/* ─── archive page (Apple archive logic) ──────────────────── */

.archive-main { background: var(--bg); }

.archive-filterband { background: var(--bg-alt); }
.filterband-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 34px 22px; display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.filter-label { font-size: 14px; color: var(--text); }
.f-select {
  font-family: var(--font); font-size: 15px; color: var(--text);
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'><path fill='%236e6e73' d='M4.3 8.3a1 1 0 0 1 1.4 0l6.3 6.29 6.3-6.3a1 1 0 1 1 1.4 1.42l-7 7a1 1 0 0 1-1.4 0l-7-7a1 1 0 0 1 0-1.42z'/></svg>") no-repeat right 14px center;
  border: 1px solid var(--hairline); border-radius: 10px;
  padding: 10px 38px 10px 14px; min-width: 190px;
}
.f-select:hover { border-color: #b8b8bd; }

.archive-body { padding-top: 8px; }
.archive-live { font-size: 14px; color: var(--gray); margin: 18px 0 0; }
.month-head {
  font-size: 28px; font-weight: 700; letter-spacing: -0.01em;
  margin: 44px 0 0; padding-bottom: 16px;
  border-bottom: 1px solid var(--hairline);
}
.archive-rows { list-style: none; }
.archive-rows li { border-bottom: 1px solid var(--hairline); }
.archive-rows a {
  display: grid; grid-template-columns: 232px 1fr; gap: 32px;
  padding: 32px 0; align-items: center;
}
@media (max-width: 640px) {
  .archive-rows a { grid-template-columns: 1fr; gap: 14px; }
}
.ar-thumb {
  width: 232px; max-width: 100%; aspect-ratio: 16/9;
  border-radius: var(--r-box); object-fit: cover; background: var(--pill-bg);
  display: block;
}
.ar-headline {
  display: block; font-size: 24px; font-weight: 700; line-height: 1.17;
  color: var(--text); margin: 6px 0 8px;
}
.archive-rows a:hover .ar-headline { text-decoration: underline; }

/* ─── scroll animation ────────────────────────────────────── */

.nr-anim { opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.nr-anim.nr-anim--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .nr-anim { opacity: 1; transform: none; transition: none; }
}

/* ─── sitewide footer (.bigfoot — mirrored from /css/site.css) ───── */

.bigfoot{--ink:#14161A;--mono:'Noto Sans',-apple-system,sans-serif;
  --sans:'Noto Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  background:var(--ink);color:#9BA4B2;margin-top:64px}
.bigfoot .wrap{max-width:1320px;margin:0 auto;padding:0 32px}
.bigfoot .foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:30px;padding:68px 0 46px}
.bigfoot .foot-brand{display:flex;flex-direction:column;justify-content:space-between;gap:48px}
.bigfoot .fb-logo{display:flex;align-items:center;gap:12px}
.bigfoot .fb-logo img{height:38px;width:38px;display:block}
.bigfoot .fb-logo b{font-family:var(--sans);font-weight:700;font-size:11px;letter-spacing:.05em;
  text-transform:uppercase;color:#fff;line-height:1.25}
.bigfoot .fb-bottom{display:flex;flex-direction:column;gap:15px}
.bigfoot .fb-copy{font-size:12.5px;color:#6E7A8A;line-height:1.65;max-width:34ch}
.bigfoot .fb-legal{display:flex;flex-wrap:wrap;gap:5px 16px}
.bigfoot .fb-legal a{font-size:12.5px;color:#9BA4B2;text-decoration:none;transition:color .2s}
.bigfoot .fb-legal a:hover{color:#fff}
.bigfoot .fb-social{display:flex;gap:14px;margin-top:4px}
.bigfoot .fb-social a{color:#9BA4B2;transition:color .2s}
.bigfoot .fb-social a:hover{color:#fff}
.bigfoot .fb-social svg{width:28px;height:28px;display:block;fill:currentColor}
.bigfoot .fcol{display:flex;flex-direction:column;gap:34px}
.bigfoot .fgroup h4{font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:#fff;margin-bottom:12px;font-weight:600}
.bigfoot .fgroup a{display:block;font-size:13.5px;color:#9BA4B2;padding:5px 0;text-decoration:none;line-height:1.3;transition:color .2s}
.bigfoot .fgroup a:hover{color:#fff}
@media(max-width:1000px){.bigfoot .foot-grid{grid-template-columns:1fr 1fr 1fr;gap:36px 26px}
  .bigfoot .foot-brand{grid-column:1/-1;flex-direction:row;justify-content:space-between;align-items:flex-end;gap:24px}}
@media(max-width:620px){.bigfoot .foot-grid{grid-template-columns:1fr 1fr}.bigfoot .foot-brand{flex-direction:column;align-items:flex-start}}
