/* ==========================================================================
   PassTEX — passtex.deepcloudlabs.com
   Self-contained. No frameworks, no external requests.

   Identity, deliberately distinct from deepcloudlabs.com's navy/cyan:
   undyed-canvas ground, pine green, madder/terracotta accent — a textile
   palette rather than a software-company one.
   ========================================================================== */

/* ---------------------------------------------------------------- fonts */

@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Campton";
  src: url("../fonts/Campton-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------- tokens */

:root {
  --pine: #123f30;
  --pine-mid: #1f6e52;
  --pine-soft: #d7e7de;
  --terra: #d9622b;
  --terra-soft: #f7e3d6;

  --ink: #17211c;
  --ink-2: #46534b;
  --ink-3: #6e7a72;

  --canvas: #f6f1e8;
  --surface: #fffdf9;
  --tint: #efe8db;
  --line: #e0d7c7;
  --line-strong: #cec2ae;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(18, 63, 48, 0.05), 0 6px 18px rgba(18, 63, 48, 0.06);
  --shadow-2: 0 3px 8px rgba(18, 63, 48, 0.06), 0 22px 48px rgba(18, 63, 48, 0.12);

  --shell: 1180px;
  --gap-y: clamp(80px, 8.5vw, 132px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font: "Campton", "Segoe UI", system-ui, -apple-system, Helvetica, Arial,
    sans-serif;
}

/* ---------------------------------------------------------------- reset */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a {
  color: var(--pine-mid);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

a:hover {
  color: var(--terra);
}

button {
  font: inherit;
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--pine);
  color: #fff;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------------------------------------------------------------- layout */

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.shell-narrow {
  width: min(100% - 48px, 820px);
}

.section {
  padding: var(--gap-y) 0;
}

.section-tint {
  background: var(--tint);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(30px, 3.7vw, 46px);
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-lead {
  font-size: 18px;
  color: var(--ink-3);
  margin: 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}

.h-sm {
  font-size: 19px;
  margin-bottom: 18px;
}

.note {
  margin: 18px 0 0;
  font-size: 15px;
  color: var(--ink-3);
}

/* ---------------------------------------------------------------- header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 18px 0;
  transition: padding 0.28s var(--ease), background-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.site-header.is-stuck {
  padding: 10px 0;
  background: rgba(246, 241, 232, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(18, 63, 48, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pine);
  flex: none;
}

.brand:hover {
  color: var(--pine);
}

.brand-mark {
  width: 30px;
  height: 38px;
}

.brand-word {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-word span {
  color: var(--terra);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav ul a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}

.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--terra);
  transform: scaleX(0);
  transition: transform 0.22s var(--ease);
}

.site-nav ul a:hover,
.site-nav ul a.is-current {
  color: var(--pine);
}

.site-nav ul a:hover::after,
.site-nav ul a.is-current::after {
  transform: scaleX(1);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--pine);
  transition: transform 0.24s var(--ease), opacity 0.16s var(--ease);
}

.nav-toggle-bars {
  position: relative;
  margin: 0 auto;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    border-color 0.18s var(--ease), color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 15px;
}

.btn-primary {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--canvas);
  box-shadow: 0 8px 24px rgba(18, 63, 48, 0.22);
}

.btn-primary:hover {
  background: var(--pine-mid);
  border-color: var(--pine-mid);
  color: var(--canvas);
}

.btn-accent {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
  box-shadow: 0 8px 26px rgba(217, 98, 43, 0.32);
}

.btn-accent:hover {
  background: #c4551f;
  border-color: #c4551f;
  color: #fff;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--pine);
  color: var(--pine);
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative;
  padding: clamp(140px, 15vw, 190px) 0 var(--gap-y);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/weave.svg") repeat;
  opacity: 0.85;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--terra);
  position: relative;
  white-space: nowrap;
}

/* hand-drawn underline under the accented word */
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.09em;
  border-radius: var(--radius-pill);
  background: var(--terra);
  opacity: 0.28;
}

.lead {
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 34rem;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14.5px;
  color: var(--ink-3);
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-badges li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pine-mid);
  flex: none;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------------------------------------------------------------- lists */

.tick-list li {
  position: relative;
  padding: 9px 0 9px 32px;
  font-size: 16px;
  color: var(--ink-2);
}

.tick-list li + li {
  border-top: 1px solid var(--line);
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pine-soft)
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.2l2.6 2.6L13 6.4' fill='none' stroke='%23123F30' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
}

.tick-list-muted li::before {
  background: var(--tint)
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M6 6l6 6M12 6l-6 6' fill='none' stroke='%236E7A72' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 18px 18px no-repeat;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.split-col {
  padding: 34px 34px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

/* ---------------------------------------------------------------- stepper */

.section-dark {
  background: var(--pine);
  color: rgba(255, 255, 255, 0.78);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark .eyebrow {
  color: #f0a074;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.stepper-rail {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  scrollbar-width: none;
}

.stepper-rail::-webkit-scrollbar {
  display: none;
}

.step {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
  padding: 12px 18px;
  border: 0;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}

.step:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.step::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -1px;
  height: 2px;
  background: var(--terra);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transition: transform 0.22s var(--ease);
}

.step.is-active {
  color: #fff;
}

.step.is-active::after {
  transform: scaleX(1);
}

.step-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  transition: background-color 0.18s var(--ease), transform 0.18s var(--ease);
}

.step.is-active .step-dot {
  background: var(--terra);
  transform: scale(1.25);
}

/* Stages differ in length; reserving the height stops the section jumping
   as you move along the rail. */
.stage-panels {
  min-height: 260px;
}

.stage {
  max-width: 46rem;
}

.stage h3 {
  font-size: clamp(23px, 2.5vw, 31px);
  margin-bottom: 14px;
}

.stage p {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 24px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14.5px;
  color: #fff;
}

/* ---------------------------------------------------------------- pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.pillar {
  position: relative;
  padding: 38px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.pillar-no {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--terra);
}

.pillar h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.pillar > p {
  font-size: 16px;
  color: var(--ink-3);
  margin-bottom: 20px;
}

/* ---------------------------------------------------------------- fields */

/* Nine fields; a 320px minimum gives exactly three columns at full width,
   so the hairline grid never ends on a ragged row. */
.field-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.field-grid li {
  padding: 30px 28px;
  background: var(--surface);
  transition: background-color 0.2s var(--ease);
}

.field-grid li:hover {
  background: #fff;
}

.field-grid h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.field-grid p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-3);
}

/* ---------------------------------------------------------------- audience */

/* Two equal cards plus a full-width third. auto-fit would open a third
   column here and leave the first row short. */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
}

.audience-card-wide {
  grid-column: 1 / -1;
  background: var(--pine-soft);
  border-color: transparent;
  box-shadow: none;
}

.audience-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--terra-soft);
  color: #a8471a;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audience-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.audience-card > p {
  font-size: 16px;
  color: var(--ink-3);
}

.audience-card-wide > p {
  max-width: 52rem;
  margin-bottom: 0;
  color: var(--ink-2);
}

/* ---------------------------------------------------------------- strip */

.strip {
  padding: 44px 0;
  background: var(--pine);
  color: rgba(255, 255, 255, 0.72);
}

.strip-title {
  margin: 0 0 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.strip-list li {
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
}

/* ---------------------------------------------------------------- ledger */

/* Regulatory milestones: a vertical rail where settled items are marked
   done and the open one is called out. */
.ledger {
  display: grid;
  gap: 0;
  border-left: 2px solid var(--line-strong);
  margin-left: 9px;
}

.ledger li {
  position: relative;
  padding: 0 0 34px 34px;
}

.ledger li:last-child {
  padding-bottom: 0;
}

.ledger li::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--tint);
  border: 2px solid var(--line-strong);
}

.ledger li.is-done::before {
  background: var(--pine-mid)
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.4l2.7 2.7L14.4 7.4' fill='none' stroke='%23F6F1E8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 20px 20px no-repeat;
  border-color: var(--pine-mid);
}

.ledger li.is-next::before {
  background: var(--terra);
  border-color: var(--terra);
  box-shadow: 0 0 0 5px var(--terra-soft);
}

.ledger-date {
  margin: 0 0 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--terra);
}

.ledger h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.ledger li > p:last-child {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-3);
  max-width: 60ch;
}

.ledger-note {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* ---------------------------------------------------------------- timeline */

/* Three fixed periods; auto-fit would open a fourth column and leave a gap. */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timeline li {
  position: relative;
  padding: 34px 30px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 0 0 var(--radius-pill) var(--radius-pill);
  background: var(--terra);
}

.timeline li:nth-child(2)::before {
  background: var(--pine-mid);
}

.timeline li:nth-child(3)::before {
  background: var(--line-strong);
}

.phase-no {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.timeline h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline p:last-child {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-3);
}

/* ---------------------------------------------------------------- faq */

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terra-soft)
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M11 6v10M6 11h10' fill='none' stroke='%23D9622B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 22px 22px no-repeat;
  transition: transform 0.24s var(--ease);
}

.faq details[open] summary::after {
  transform: rotate(135deg);
}

.faq details p {
  margin: 0;
  padding: 0 0 26px;
  max-width: 62ch;
  font-size: 16.5px;
  color: var(--ink-3);
}

/* ---------------------------------------------------------------- cta */

.cta {
  padding: var(--gap-y) 0;
  background: var(--pine);
}

.cta-inner {
  max-width: 44rem;
}

.cta h2 {
  color: #fff;
  font-size: clamp(29px, 3.6vw, 44px);
  margin-bottom: 18px;
  text-wrap: balance;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------------------------------------------------------------- footer */

.site-footer {
  padding: 72px 0 32px;
  background: #0d2f24;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-footer {
  color: #fff;
  margin-bottom: 18px;
}

.brand-footer:hover {
  color: #fff;
}

.footer-note {
  max-width: 30ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer li {
  margin-bottom: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover {
  color: #f0a074;
}

.footer-address {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
}

.footer-fund {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------------- reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    max-width: 460px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* The eight-item nav row needs ~1020px; collapse before it can clip. */
@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin: 0;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    /* hidden by default; opened by the toggle */
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li + li {
    border-top: 1px solid var(--line);
  }

  .site-nav ul a {
    display: block;
    padding: 13px 10px;
    font-size: 16px;
  }

  .site-nav ul a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 10px;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .shell,
  .shell-narrow {
    width: min(100% - 32px, var(--shell));
  }

  .site-nav {
    left: 16px;
    right: 16px;
  }

  .split-col,
  .pillar,
  .audience-card,
  .timeline li {
    padding: 26px 22px;
  }

  .field-grid li {
    padding: 24px 22px;
  }

  .audience-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    flex: 1 1 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------------------------------------------------------------- motion */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
