/* =====================================================
   BORDERLESS ALLIANCE — Enterprise Design System
   Vanilla CSS3. No frameworks.
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
  --white: #ffffff;
  --ink: #1b1b1b;
  --ink-2: #2a2a2a;
  --red: #c8102e;
  --red-deep: #9c0d24;
  --ivory: #f6f1ea;
  --sand: #ece4d6;
  --slate: #6b6560;
  --line: #e6e0d6;
  --gold: #b8935a;
  --focus: #1b1b1b;

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --step--1: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --step-1: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --step-2: clamp(1.35rem, 1.1rem + 1vw, 1.6rem);
  --step-3: clamp(1.75rem, 1.3rem + 1.8vw, 2.2rem);
  --step-4: clamp(2.25rem, 1.6rem + 2.8vw, 3.2rem);
  --step-5: clamp(2.8rem, 2rem + 4vw, 4.5rem);

  --shadow-sm: 0 1px 2px rgba(27, 27, 27, 0.06), 0 2px 8px rgba(27, 27, 27, 0.04);
  --shadow-md: 0 6px 20px rgba(27, 27, 27, 0.08), 0 2px 6px rgba(27, 27, 27, 0.05);
  --shadow-lg: 0 24px 60px rgba(27, 27, 27, 0.12);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  --dur: 0.5s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Selection */
::selection { background: var(--red); color: var(--white); }

/* Skip link */
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: var(--white); padding: 12px 16px; }
.skip:focus { left: 12px; top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(70px, 9vw, 130px); position: relative; }
.section--tight { padding-block: clamp(50px, 6vw, 80px); }
.section--ink { background: var(--ink); color: var(--white); }
.section--ivory { background: var(--ivory); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin: 0 0 0.6em;
  color: inherit;
}
h1 { font-size: var(--step-5); font-weight: 400; }
h2 { font-size: var(--step-4); font-weight: 400; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
p { margin: 0 0 1em; color: var(--ink-2); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--red);
}
.section--ink .eyebrow { color: var(--gold); }
.section--ink .eyebrow::before { background: var(--gold); }

.lede { font-size: var(--step-1); color: var(--ink); max-width: 62ch; }
.section--ink .lede { color: rgba(255,255,255,0.85); }

.serif { font-family: var(--font-display); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled { border-color: var(--line); background: rgba(255,255,255,0.94); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 20px; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ink);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand__mark::before {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  border: 1px solid var(--white);
}
.brand__mark::after {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
  background: var(--red); transform: translateX(-50%);
}
.brand strong { font-weight: 500; }

.nav__links { display: flex; gap: 6px; align-items: center; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px; letter-spacing: 0.005em;
  color: var(--ink-2);
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--red); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav__cta:hover { background: var(--ink); color: var(--white); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 999px;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; width: 18px; height: 1.4px; background: var(--ink);
  position: relative;
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.4px; background: var(--ink);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__links {
    position: fixed; inset: 76px 0 0 0;
    background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px var(--gutter) 40px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    border-top: 1px solid var(--line);
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link {
    padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 18px;
    font-family: var(--font-display);
  }
  .nav__link::after { display: none; }
}

/* ---------- Hero (Carousel) ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 6s var(--ease);
}
.hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.hero__slide::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.75) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 60%);
  z-index: 1;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.hero__inner {
  position: relative; z-index: 3;
  min-height: inherit;
  display: flex; align-items: flex-end;
  padding-block: 120px 96px;
}
.hero__content { max-width: 780px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 1.6rem + 5vw, 5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero h1 em { font-style: italic; color: var(--white); font-weight: 300; }
.hero h1 .accent { color: var(--red); font-style: italic; font-weight: 400; }
.hero__sub { font-size: var(--step-1); color: rgba(255,255,255,0.85); max-width: 640px; margin-bottom: 36px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  --btn-bg: var(--ink); --btn-fg: var(--white); --btn-border: var(--ink);
  display: inline-flex; align-items: center; gap: 12px;
  padding: 15px 26px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn__arrow { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary { --btn-bg: var(--red); --btn-fg: var(--white); --btn-border: var(--red); }
.btn--primary:hover { --btn-bg: var(--red-deep); --btn-border: var(--red-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--white); --btn-border: rgba(255,255,255,0.5); }
.btn--ghost:hover { --btn-bg: var(--white); --btn-fg: var(--ink); --btn-border: var(--white); }
.btn--dark { --btn-bg: var(--ink); --btn-fg: var(--white); --btn-border: var(--ink); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-border: var(--ink); }
.btn--outline:hover { --btn-bg: var(--ink); --btn-fg: var(--white); }

/* Hero controls */
.hero__controls {
  position: absolute; z-index: 4; left: var(--gutter); right: var(--gutter); bottom: 32px;
  max-width: calc(var(--max) - 0px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.hero__dots { display: flex; gap: 10px; }
.hero__dot {
  width: 36px; height: 4px; background: rgba(255,255,255,0.28);
  border-radius: 2px; position: relative; overflow: hidden;
  transition: background 0.3s var(--ease);
}
.hero__dot.is-active { background: rgba(255,255,255,0.4); }
.hero__dot .bar {
  position: absolute; inset: 0; background: var(--white);
  transform-origin: left; transform: scaleX(0);
}
.hero__dot.is-active .bar { animation: hero-progress 7s linear forwards; }
@keyframes hero-progress { to { transform: scaleX(1); } }

.hero__arrows { display: flex; gap: 8px; }
.hero__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero__arrow:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.hero__arrow svg { width: 18px; height: 18px; }

.hero__counter {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
}
.hero__counter b { color: var(--white); font-weight: 500; margin-right: 8px; }

/* Grain overlay */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.35; mix-blend-mode: overlay;
}

/* ---------- Marquee (impact bar) ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 60px;
  padding: 18px 0;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--step-2); color: var(--ink);
  display: inline-flex; align-items: center; gap: 60px;
  white-space: nowrap;
}
.marquee span::after {
  content: "✱"; color: var(--red); font-style: normal;
  font-size: 14px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 30px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section head ---------- */
.section__head {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: end;
  margin-bottom: 60px;
}
.section__head p { color: var(--slate); }
.section--ink .section__head p { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) {
  .section__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
}

/* ---------- Mission block ---------- */
.mv {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
  padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--white);
}
.mv__item h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; }
.mv__item p { color: var(--slate); }
.mv__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red); margin-bottom: 14px;
  display: inline-block;
}
@media (max-width: 700px) {
  .mv { grid-template-columns: 1fr; padding: 28px; }
}

/* ---------- Activity cards ---------- */
.acards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.acard {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 38px 32px; background: var(--white);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  position: relative;
  min-height: 260px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.acard:hover { background: var(--ink); color: var(--white); }
.acard:hover .acard__num { color: var(--red); }
.acard:hover p { color: rgba(255,255,255,0.75); }
.acard__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--slate); }
.acard h3 { font-size: var(--step-1); font-family: var(--font-display); font-weight: 500; margin: 24px 0 10px; }
.acard p { color: var(--slate); font-size: 14.5px; }
.acard__arrow {
  position: absolute; top: 32px; right: 32px;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.acard:hover .acard__arrow { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(-45deg); }
@media (max-width: 900px) { .acards { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 900px) { .acards { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { padding: 40px 30px; border-left: 1px solid rgba(255,255,255,0.14); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--font-display); font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  font-weight: 300; line-height: 1; letter-spacing: -0.02em;
  color: var(--white); display: flex; align-items: baseline; gap: 4px;
}
.stat__num .suffix { font-size: 0.4em; color: var(--red); font-family: var(--font-sans); font-weight: 600; }
.stat__label { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 16px; letter-spacing: 0.02em; }
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding: 30px 0; }
  .stat:first-child, .stat:nth-child(2) { border-top: 0; }
}

/* ---------- Feature (image + text) ---------- */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.feature--reverse { grid-template-columns: 1fr 1.05fr; }
.feature--reverse .feature__media { order: 2; }
.feature__media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; background: var(--sand);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__badge {
  position: absolute; bottom: 20px; left: 20px;
  padding: 12px 18px; background: var(--white);
  border-radius: 999px; font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
}
.feature__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.feature ul { list-style: none; padding: 0; margin: 30px 0 30px; }
.feature li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink); }
.feature li:last-child { border-bottom: 1px solid var(--line); }
.feature li b { color: var(--red); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; padding-top: 3px; min-width: 28px; }
@media (max-width: 900px) {
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { aspect-ratio: 4/3; }
}

/* ---------- Partners ---------- */
.partners { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.partners__track {
  display: flex; gap: 80px; padding: 40px 0;
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}
.partner {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  color: var(--slate); letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
  white-space: nowrap; display: inline-flex; align-items: center; gap: 12px;
}
.partner:hover { color: var(--ink); }
.partner__mark {
  width: 12px; height: 12px; border: 1.5px solid var(--red);
  transform: rotate(45deg);
}

/* ---------- News cards ---------- */
.news { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.news__card {
  display: block; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.news__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news__img { aspect-ratio: 16/10; overflow: hidden; }
.news__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.news__card:hover .news__img img { transform: scale(1.05); }
.news__body { padding: 26px 28px 30px; }
.news__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.news__title { font-family: var(--font-display); font-size: var(--step-1); font-weight: 500; margin: 12px 0 6px; line-height: 1.2; }
.news__excerpt { font-size: 14.5px; color: var(--slate); }
.news__card--wide { grid-row: span 2; }
.news__card--wide .news__img { aspect-ratio: 4/5; }
.news__card--wide .news__title { font-size: var(--step-2); }
@media (max-width: 900px) {
  .news { grid-template-columns: 1fr; }
  .news__card--wide { grid-row: auto; }
  .news__card--wide .news__img { aspect-ratio: 16/10; }
}

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1px; background: var(--line); }
.tl-item { position: relative; padding: 4px 0 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -32px; top: 10px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--red);
}
.tl-year { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--red); }
.tl-item h4 { margin: 6px 0 8px; font-family: var(--font-display); font-weight: 500; font-size: var(--step-1); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--ink); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 70px clamp(30px, 5vw, 80px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(200,16,46,0.55), transparent 60%);
  pointer-events: none;
}
.newsletter h2 { color: var(--white); }
.newsletter p { color: rgba(255,255,255,0.75); }
.newsletter__form {
  display: flex; gap: 8px; background: var(--white);
  border-radius: 999px; padding: 6px; align-items: center;
}
.newsletter__form input {
  flex: 1; border: 0; background: transparent;
  padding: 14px 18px; color: var(--ink); outline: none; font-size: 15px;
}
.newsletter__form button {
  padding: 14px 24px; border-radius: 999px; background: var(--red); color: var(--white);
  font-weight: 500; transition: background 0.3s var(--ease);
}
.newsletter__form button:hover { background: var(--red-deep); }
.newsletter__note { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 12px; }
@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; padding: 40px 24px; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-size: var(--step-1); font-weight: 500; color: var(--ink);
}
.faq__q::after {
  content: "+"; font-family: var(--font-sans); font-size: 22px; color: var(--red);
  transition: transform 0.3s var(--ease);
}
.faq__item.is-open .faq__q::after { content: "−"; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease);
  color: var(--slate); font-size: 15.5px;
}
.faq__a > div { padding: 0 0 26px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding-block: 90px 40px; margin-top: 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer h5 {
  color: var(--white); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 20px;
  font-weight: 500;
}
.footer a { display: block; padding: 6px 0; color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color 0.25s var(--ease); }
.footer a:hover { color: var(--white); }
.footer__brand { max-width: 340px; }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 14.5px; margin-top: 20px; }
.footer__bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.socials svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 30;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--red); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Subpage hero ---------- */
.page-hero {
  padding-block: clamp(120px, 14vw, 180px) clamp(60px, 8vw, 90px);
  background: var(--ivory);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; right: -140px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.08), transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 1.4rem + 4.5vw, 4.4rem); font-weight: 300; letter-spacing: -0.02em; }
.page-hero h1 em { font-style: italic; color: var(--red); font-weight: 400; }
.crumbs { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); margin-bottom: 28px; }
.crumbs a { color: var(--slate); }
.crumbs .sep { margin: 0 12px; color: var(--red); }

/* ---------- Value pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13.5px; color: var(--ink); background: var(--white);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.pill:hover { background: var(--ink); color: var(--white); }

/* ---------- Governance cards ---------- */
.gov {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.gov__card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; background: var(--white);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gov__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gov__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--red); }
.gov__card h3 { margin: 14px 0 12px; font-family: var(--font-display); font-weight: 500; }
.gov__card p { color: var(--slate); }
.gov__card::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 120px; height: 120px; border-radius: 50%; border: 1px solid var(--line);
}
@media (max-width: 780px) { .gov { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact__info div { padding: 22px 0; border-top: 1px solid var(--line); }
.contact__info div:last-child { border-bottom: 1px solid var(--line); }
.contact__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.form { background: var(--ivory); padding: 40px; border-radius: var(--radius-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { display: block; }
.form__field label { display: block; font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.form__field input, .form__field textarea, .form__field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); background: var(--white);
  border-radius: 10px; font-size: 15px; color: var(--ink); outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form__field input:focus, .form__field textarea:focus, .form__field select:focus {
  border-color: var(--ink); box-shadow: 0 0 0 3px rgba(27,27,27,0.06);
}
.form__field textarea { min-height: 140px; resize: vertical; }
.form__msg { min-height: 18px; margin-top: 10px; font-size: 13px; color: var(--red); }
.form__msg.is-ok { color: #1a7e3e; }
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; gap: 30px; }
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 26px; }
}

/* ---------- Membership tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tier {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px;
  background: var(--white); position: relative;
  transition: transform 0.4s var(--ease);
}
.tier:hover { transform: translateY(-4px); }
.tier--featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tier--featured h3, .tier--featured .tier__price { color: var(--white); }
.tier--featured .tier__label { color: var(--red); }
.tier__label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.tier h3 { margin: 10px 0; font-family: var(--font-display); font-weight: 500; }
.tier__price { font-family: var(--font-display); font-size: var(--step-3); font-weight: 300; }
.tier__price small { font-family: var(--font-sans); font-size: 13px; color: var(--slate); font-weight: 400; }
.tier--featured .tier__price small { color: rgba(255,255,255,0.6); }
.tier ul { list-style: none; padding: 0; margin: 20px 0 26px; }
.tier li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; display: flex; gap: 10px; }
.tier--featured li { border-color: rgba(255,255,255,0.14); }
.tier li::before { content: "→"; color: var(--red); }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
.mb-lg { margin-bottom: 60px; }
.hide-mobile { }
@media (max-width: 700px) { .hide-mobile { display: none; } }
