:root {
  --red: #e60000;
  --red-dark: #cc0000;
  --ink: #25282b;
  --body: #7e7e7e;
  --mute: #bebebe;
  --canvas: #ffffff;
  --soft: #f4f1ea;
  --line: #e6e6e6;
  --r: 2px;
  --pill: 60px;
  --wrap: 1200px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Instrument Sans", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); letter-spacing: -0.015em; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; font-family: "Manrope", sans-serif; font-weight: 700; }

p { margin: 0 0 1.1rem; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
@media (min-width: 700px) { .wrap { padding: 0 32px; } }
@media (min-width: 1024px) { .wrap { padding: 0 48px; } }

.section { padding: 96px 0; }
@media (min-width: 700px) { .section { padding: 132px 0; } }
@media (min-width: 1024px) { .section { padding: 168px 0; } }

.soft { background: var(--soft); }
.dark { background: var(--ink); color: #cfd0d1; }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }

.lead {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 40ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  padding: 15px 30px;
  border-radius: var(--r);
  border: 1.5px solid var(--red);
  background: var(--red);
  color: #fff;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .12s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-outline { background: transparent; color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }

.btn-ghost { background: transparent; border-color: transparent; color: var(--ink); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { background: transparent; color: var(--red); transform: none; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--ink);
}
.arrow-link::after { content: "\27F6"; color: var(--red); transition: transform .18s ease; }
.arrow-link:hover { color: var(--red); }
.arrow-link:hover::after { transform: translateX(4px); }

/* ---- Floating segmented navbar ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 16px 0;
  transition: padding .3s cubic-bezier(.16,1,.3,1);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 180%;
  background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .3s ease;
}
.site-header.scrolled { padding: 9px 0; }
.site-header.scrolled::before { opacity: 1; }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  transition: transform .3s cubic-bezier(.16,1,.3,1), height .3s cubic-bezier(.16,1,.3,1);
}
.brand:hover .brand-logo { transform: translateY(-1px); }
.site-header.scrolled .brand-logo { height: 34px; }
.footer-brand .brand-logo { height: 46px; }
@media (max-width: 480px) {
  .brand-logo { height: 34px; }
}

.nav-toggle {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 46px;
  height: 46px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.nav-toggle:hover { box-shadow: 0 8px 20px -10px rgba(37,40,43,.4); border-color: var(--mute); }
.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile: floating animated panel */
.site-nav {
  position: fixed;
  inset: 80px 14px auto 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px;
  box-shadow: 0 30px 70px -28px rgba(37,40,43,.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px) scale(.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .28s ease, transform .34s cubic-bezier(.16,1,.3,1), visibility .28s;
}
.site-nav.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

.site-nav a:not(.btn) {
  position: relative;
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 13px 14px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:not(.btn):hover,
.site-nav a.active { background: rgba(230,0,0,.06); color: var(--red); }
.site-nav a.active::before {
  content: "";
  position: absolute;
  left: 0; top: 12px; bottom: 12px;
  width: 3px;
  border-radius: 3px;
  background: var(--red);
}
.site-nav .btn { margin-top: 8px; justify-content: center; }

/* Staggered reveal of mobile links */
.site-nav > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.site-nav.open > * { opacity: 1; transform: none; }
.site-nav.open > *:nth-child(1) { transition-delay: .05s; }
.site-nav.open > *:nth-child(2) { transition-delay: .09s; }
.site-nav.open > *:nth-child(3) { transition-delay: .13s; }
.site-nav.open > *:nth-child(4) { transition-delay: .17s; }
.site-nav.open > *:nth-child(5) { transition-delay: .21s; }
.site-nav.open > *:nth-child(6) { transition-delay: .25s; }
.site-nav.open > *:nth-child(7) { transition-delay: .29s; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 3px;
    inset: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }
  .site-nav > * { opacity: 1; transform: none; transition: none; }
  .site-nav a:not(.btn) {
    padding: 9px 11px;
    font-size: .95rem;
    border-radius: 2px;
  }
  .site-nav a:not(.btn):hover { background: rgba(230,0,0,.06); }
  .site-nav a.active { background: transparent; }
  .site-nav a.active::before { display: none; }
  .site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 5px;
    height: 2px;
    border-radius: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s cubic-bezier(.16,1,.3,1);
  }
  .site-nav a:not(.btn):hover::after,
  .site-nav a.active::after { transform: scaleX(1); }
  .site-nav .btn { margin: 0 0 0 6px; padding: 11px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav, .site-nav > *, .nav-toggle span, .brand::before { transition: none; }
}

.hero { padding: 56px 0 40px; }
@media (min-width: 900px) { .hero { padding: 96px 0 72px; } }
.hero-grid { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.35fr 1fr; align-items: end; gap: 56px; }
}
.hero p.lead { margin-top: 22px; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: linear-gradient(160deg, #2c2f33, #45494f);
  aspect-ratio: 4 / 5;
  min-height: 280px;
}
.hero-figure img, .hero-figure video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) { .hero-figure { margin-bottom: 6px; } }

/* ---- Full-bleed hero (home) ---- */
.hero-e {
  position: relative;
  isolation: isolate;
  min-height: 90vh;
  margin-top: -80px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #16181a;
}
.hero-e-media { position: absolute; inset: 0; z-index: -2; }
.hero-e-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-e::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20,22,24,.34) 0%, rgba(20,22,24,0) 20%, rgba(20,22,24,0) 38%, rgba(20,22,24,.42) 64%, rgba(20,22,24,.9) 100%);
}
.hero-e-inner { padding: 56px 20px 60px; }
@media (min-width: 900px) { .hero-e-inner { padding: 56px 48px 80px; } }

.hero-e-title {
  color: #fff;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 .55rem;
  max-width: 17ch;
}
.hero-e-accent { position: relative; color: #fff; }
.hero-e-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .02em;
  height: .08em;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-e .lead { color: #fff; margin: 0 0 1rem; max-width: 42ch; }
.hero-e-body { color: rgba(255,255,255,.82); margin: 0; max-width: 56ch; font-size: 1rem; }

/* Entrance animations */
@media (prefers-reduced-motion: no-preference) {
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes heroUnderline { to { transform: scaleX(1); } }
  .hero-e-title, .hero-e .lead, .hero-e-body {
    opacity: 0;
    animation: heroRise .85s cubic-bezier(.16,1,.3,1) forwards;
  }
  .hero-e-title { animation-delay: .12s; }
  .hero-e .lead { animation-delay: .26s; }
  .hero-e-body  { animation-delay: .36s; }
  .hero-e-accent::after { animation: heroUnderline .7s cubic-bezier(.16,1,.3,1) .9s forwards; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-e-accent::after { transform: scaleX(1); }
}


/* ---- Movement band (image background) ---- */
.movement {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.movement-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.movement-bg img, .movement-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.movement-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,26,28,.92) 0%, rgba(24,26,28,.78) 45%, rgba(24,26,28,.5) 100%),
    linear-gradient(0deg, rgba(230,0,0,.14), rgba(230,0,0,0) 60%);
}
.movement .eyebrow { color: #ff5a5a; }
.movement h2 { color: #fff; }
.movement p { color: rgba(255,255,255,.86); }
.movement .btn-outline { color: #fff; border-color: rgba(255,255,255,.75); }
.movement .btn-outline:hover { background: #fff; border-color: #fff; color: var(--ink); }


.section-head {
  max-width: 60ch;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  margin: 0;
}
.section-head h2 + p,
.section-head > p {
  margin: 10px 0 0;
  color: var(--body);
  font-size: 1rem;
}
.section-head.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  flex-wrap: wrap;
}

.cards { display: grid; gap: 22px; }
.insights-grid { row-gap: 40px; }
@media (min-width: 860px) { .insights-grid { row-gap: 64px; } }
@media (min-width: 640px) { .cards.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .cards.three { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  border: 0;
  padding: 0;
  background: transparent;
}
.card h3 { margin: 0 0 .45rem; }
.card p { font-size: .98rem; margin: 0 0 1.15rem; color: var(--body); }
.card .arrow-link { font-size: .92rem; margin-top: auto; }
.card:hover .arrow-link { color: var(--red); }
.card:hover .arrow-link::after { transform: translateX(4px); }

.card-media {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(160deg, #33363a, #4a4e54);
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.card:hover .card-media img { transform: scale(1.05); }
.card.plain { border: 0; padding: 0; background: transparent; }
.card.plain:hover { transform: none; }

.focus-list { display: grid; gap: 0; }
.focus-item {
  display: grid;
  gap: 6px 40px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.focus-item:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 780px) {
  .focus-item { grid-template-columns: 0.5fr 1.5fr; align-items: baseline; }
}
.focus-item h3 { margin: 0; }
.focus-item p { margin: 0; }

.split { display: grid; gap: 30px; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; } }
.split.wide-left { grid-template-columns: 1fr; }
@media (min-width: 860px) { .split.wide-left { grid-template-columns: 1.3fr 1fr; } }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--red);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 14px;
}
.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 8px;
}
@media (min-width: 720px) { .partners { grid-template-columns: repeat(4, 1fr); } }
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  padding: 28px 32px;
  background: var(--canvas);
  transition: background .25s ease;
}
.partner:hover { background: #fbfaf8; }
.partner img {
  max-height: 74px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.partner:hover img { filter: none; opacity: 1; transform: scale(1.05); }

.stat-row { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 40px; }
.stat b { display: block; font-family: "Instrument Sans", sans-serif; font-weight: 800; font-size: 2rem; color: var(--ink); letter-spacing: -0.02em; }
.stat span { font-size: .9rem; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.checklist li { padding-left: 30px; position: relative; color: var(--ink); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--red);
}

.value { padding: 26px 0; border-top: 1px solid var(--line); }
.value:last-child { border-bottom: 1px solid var(--line); }
.value h3 { margin-bottom: .3rem; }
.value p { margin: 0; }

.steps { counter-reset: step; display: grid; gap: 4px; }
.step {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px 30px;
}
@media (min-width: 700px) { .step { grid-template-columns: 220px 1fr; } }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-label { font-family: "Instrument Sans", sans-serif; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.step p { margin: 0; }

.article { padding: 40px 0 20px; }
.article-head { max-width: 760px; margin: 0 auto 34px; }
.article-meta { font-size: .9rem; color: var(--body); margin-bottom: 18px; }
.article-meta .cat { color: var(--red); font-weight: 600; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body { font-size: 1.08rem; line-height: 1.75; color: #3c3f43; }
.article-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2em 0 .6em; }
.article-body h3 { margin: 1.8em 0 .5em; }
.article-body p { margin: 0 0 1.3rem; }
.article-body ul { margin: 0 0 1.3rem; padding-left: 1.3em; }
.article-body li { margin: 0 0 .5rem; padding-left: .2em; }
.article-body li::marker { color: var(--red); }
.article-body a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--red-dark); }
.article-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: linear-gradient(160deg, #2c2f33, #45494f);
  aspect-ratio: 21 / 9;
  margin: 0 auto 40px;
  max-width: 960px;
  min-height: 220px;
}
.article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure img, .hero-figure video, .card-media img, .article-hero img, .page-media img {
  filter: saturate(0.88) contrast(1.02);
}

.page-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 21 / 8;
  min-height: 200px;
  margin-top: 40px;
  background: linear-gradient(160deg, #2c2f33, #45494f);
}
.page-media img, .page-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form { display: grid; gap: 18px; max-width: 560px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .9rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 0, 0, 0.15);
}
.form-note { font-size: .9rem; color: var(--body); }

.contact-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr .8fr; gap: 64px; } }
.contact-detail { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-detail h4 { margin-bottom: .2rem; }
.contact-detail p { margin: 0; }

.cta-band { border-radius: var(--r); background: var(--red); color: #fff; padding: 48px 30px; }
@media (min-width: 780px) { .cta-band { padding: 64px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; } }
.cta-band h2 { color: #fff; margin: 0 0 .4em; max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; max-width: 46ch; }
.cta-band .btn { background: #fff; color: var(--red); border-color: #fff; margin-top: 24px; }
.cta-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (min-width: 780px) { .cta-band .btn { margin-top: 0; flex: 0 0 auto; } }

.site-footer { background: var(--ink); color: #b6b8ba; padding: 0 0 34px; }
.site-footer h4, .site-footer .brand { color: #fff; }

/* Top CTA band */
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 64px 0 56px;
  border-bottom: 1px solid #3a3d41;
}
@media (min-width: 820px) {
  .footer-cta { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; padding: 84px 0 72px; }
}
.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .95rem;
  font-weight: 800;
  color: #ff2b2b;
  margin-bottom: 18px;
}
.footer-cta h2 {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  max-width: 20ch;
  margin: 0;
}
.footer-cta-btn {
  flex: 0 0 auto;
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  padding: 16px 34px;
  font-size: 1.05rem;
}
.footer-cta-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* Main columns */
.footer-main { display: grid; gap: 40px; padding: 56px 0 48px; }
@media (min-width: 780px) { .footer-main { grid-template-columns: 1.7fr 1fr 1.1fr; gap: 56px; } }
.footer-brand .brand-logo { height: 58px; }
.footer-brand p { max-width: 40ch; margin-top: 18px; line-height: 1.6; font-size: .98rem; }
.footer-col h4 {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
  color: #8c8f92;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: #d4d6d8; transition: color .2s ease; }
.footer-col a:hover { color: #fff; }
.footer-addr { color: #a7a9ac; line-height: 1.6; }

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid #3a3d41;
  font-size: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.footer-bottom a { color: #d9dadb; }
.footer-bottom a:hover { color: #fff; }

/* Home: white nav links while on the hero (before scroll) — desktop only,
   since the mobile menu is a separate light panel */
@media (min-width: 900px) {
  body.home .site-header:not(.scrolled) .site-nav a:not(.btn) { color: #fff; }
  body.home .site-header:not(.scrolled) .site-nav a:not(.btn):hover { color: #fff; }
}

.page-hero { padding: 60px 0 20px; }
@media (min-width: 900px) { .page-hero { padding: 90px 0 30px; } }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 22px; max-width: 58ch; }

.prose-narrow { max-width: 720px; }
.mt-0 { margin-top: 0; }

/* ---- Layout utilities ---- */
.measure { max-width: 60ch; }
.measure-sm { max-width: 58ch; }
.push-top { margin-top: 18px; }
.stack-top { margin-top: 22px; }
.btn-spaced { margin-top: 8px; }
.ratio-4-3 { aspect-ratio: 4 / 3; }

/* Sections that sit tighter under the page hero / a preceding block */
.section.tight { padding-top: 24px; }
.section.snug { padding-top: 32px; }
.section.flush-top { padding-top: 0; }

/* Inline chip row (e.g. "where we've set up") */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.tag-row .tag { margin: 0; }

/* Partner logos default to ~74px; a couple sit smaller/larger */
.partner.is-sm img { max-height: 46px; }
.partner.is-lg img { max-height: 82px; }

.read-time { margin-bottom: 14px; }
.value.flush { margin-top: 0; border-top: 0; padding-top: 0; }

/* ---- Scroll reveal (Framer-style motion) ---- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* ---- Cookie consent banner ---- */
.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 200;
  width: min(384px, calc(100vw - 40px));
  padding: 24px;
  background: var(--ink);
  color: #b6b8ba;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.65);
  transform: translateY(22px) scale(.98);
  opacity: 0;
  transform-origin: bottom left;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), opacity .45s ease;
}
.cookie-banner.show { transform: none; opacity: 1; }
.cookie-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--red);
  box-shadow: 0 10px 24px -8px rgba(230, 0, 0, 0.75);
  margin-bottom: 18px;
  position: relative;
}
.cookie-mark::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 11px 3px 0 -1px rgba(255,255,255,.95), 4px 13px 0 -1px rgba(255,255,255,.95);
}
.cookie-title {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 7px;
}
.cookie-text {
  margin: 0 0 22px;
  font-size: .92rem;
  line-height: 1.55;
  color: #b6b8ba;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-accept.btn { padding: 12px 26px; }
.cookie-decline {
  background: transparent;
  border: 0;
  color: #b6b8ba;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 12px 14px;
  cursor: pointer;
  border-radius: var(--r);
  transition: color .2s ease, background .2s ease;
}
.cookie-decline:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .cookie-accept.btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transform: none; }
}

/* ---- About: Mission / Vision manifesto ---- */
.manifesto-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
  .manifesto--flip .manifesto-figure { order: -1; }
}
.manifesto-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.manifesto-label .eyebrow { margin: 0; }
.manifesto-index {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: .75;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--red);
}
.manifesto-lead {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.manifesto-lead--big { font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.08; }
.manifesto-text {
  margin: 0;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}
.manifesto-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #2c2f33, #45494f);
  box-shadow: 0 34px 64px -34px rgba(37, 40, 43, 0.45);
}
.manifesto-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.16, 1, .3, 1);
}
.manifesto-figure:hover img { transform: scale(1.05); }

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
/* Who We Are role chips — bordered, ink text, red fill on hover */
.manifesto-tags .tag {
  margin: 0;
  padding: 9px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.manifesto-tags .tag::before {
  background: var(--red);
  transition: transform .2s ease;
}
.manifesto-tags .tag:hover {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}
.manifesto-tags .tag:hover::before { background: #fff; transform: scale(1.25); }

/* ---- About: Our Goals metric list ---- */
.goals-list { border-top: 1px solid var(--line); }
.goal {
  display: grid;
  gap: 4px 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .goal { grid-template-columns: 220px 1fr; align-items: center; }
}
.goal-metric {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red);
}
.goal-detail h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.goal-detail p { margin: 0; color: var(--body); }
