:root {
  --ink: #121212;
  --ink-soft: #4a4a4a;
  --gold: #c9a227;
  --gold-deep: #a8871a;
  --paper: #f3f2ef;
  --paper-deep: #e6e4df;
  --white: #fafafa;
  --veil: rgba(12, 12, 12, 0.48);
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Figtree", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space: clamp(1.25rem, 4vw, 3rem);
  --max: 70rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 85% 8%, rgba(197, 155, 31, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 60%, rgba(18, 18, 18, 0.04), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: var(--space);
  top: -5rem;
  z-index: 40;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.88rem;
}

.skip-link:focus {
  top: 0.75rem;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem var(--space);
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.72) 0%,
    rgba(12, 12, 12, 0) 100%
  );
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-brand {
  position: relative;
  z-index: 22;
  display: block;
  width: clamp(8.5rem, 28vw, 12.5rem);
  flex-shrink: 0;
}

.site-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-dark {
  display: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 22;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  position: relative;
  width: 1.2rem;
  height: 0.75rem;
  margin: 0 auto;
}

.nav-toggle-bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    top 0.3s var(--ease),
    background 0.3s var(--ease);
}

.nav-toggle-bars span:nth-child(1) {
  top: 0;
}

.nav-toggle-bars span:nth-child(2) {
  top: 5px;
}

.nav-toggle-bars span:nth-child(3) {
  top: 10px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  top: 5px;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.55rem);
  color: var(--white);
}

.site-nav a {
  font-size: clamp(0.68rem, 1.35vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
  white-space: nowrap;
  transition:
    opacity 0.25s var(--ease),
    color 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.8rem;
  background: var(--gold);
  color: var(--ink) !important;
  opacity: 1 !important;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold-deep);
  color: var(--white) !important;
}

.site-header-solid .nav-cta,
.site-header-home.is-scrolled .nav-cta,
.site-header-home.is-nav-open .nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
}

.site-header-solid,
.site-header-home.is-scrolled,
.site-header-home.is-nav-open {
  background: rgba(243, 242, 239, 0.96);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(10px);
}

.site-header-solid .site-nav,
.site-header-home.is-scrolled .site-nav,
.site-header-home.is-nav-open .site-nav {
  color: var(--ink);
}

.site-header-solid .site-nav a[aria-current="page"],
.site-header-home.is-scrolled .site-nav a[aria-current="page"],
.site-header-home.is-nav-open .site-nav a[aria-current="page"] {
  color: var(--gold-deep);
}

.site-header-solid .brand-light,
.site-header-home.is-scrolled .brand-light,
.site-header-home.is-nav-open .brand-light {
  display: none;
}

.site-header-solid .brand-dark,
.site-header-home.is-scrolled .brand-dark,
.site-header-home.is-nav-open .brand-dark {
  display: block;
}

.site-header-solid .nav-toggle-bars span,
.site-header-home.is-scrolled .nav-toggle-bars span,
.site-header-home.is-nav-open .nav-toggle-bars span {
  background: var(--ink);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(5.5rem, 12vh, 7.5rem) var(--space) clamp(3rem, 8vh, 4.5rem);
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: 78% 28%;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.82) 28%,
      rgba(8, 8, 8, 0.45) 48%,
      rgba(8, 8, 8, 0.2) 68%,
      rgba(8, 8, 8, 0.4) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.5) 0%,
      transparent 42%,
      rgba(8, 8, 8, 0.75) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(40rem, 100%);
  animation: hero-rise 1.1s var(--ease) both;
}

.hero-logo {
  display: block;
  width: clamp(14rem, 48vw, 22rem);
  max-width: 100%;
  height: auto;
  margin: 0 0 1.35rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.35));
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.7rem;
  max-width: 16ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-purpose {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--gold);
  max-width: 28ch;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.lede {
  margin: 0 0 1.75rem;
  font-weight: 500;
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  max-width: 42ch;
  line-height: 1.55;
  color: rgba(250, 250, 250, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(250, 250, 250, 0.55);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(250, 250, 250, 0.08);
}

.btn-ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 18, 18, 0.28);
}

.btn-ghost-ink:hover,
.btn-ghost-ink:focus-visible {
  border-color: var(--ink);
  background: rgba(18, 18, 18, 0.04);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Sections —— */
.section {
  padding: clamp(4.5rem, 11vw, 7rem) var(--space);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-header {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: min(100%, 7.5rem);
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s var(--ease);
}

.section-title.is-drawn::after {
  transform: scaleX(1);
}

.section-lede {
  margin: 1.35rem 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 62ch;
  line-height: 1.7;
}

.contact-lede {
  color: rgba(250, 250, 250, 0.72);
}

.team-copy {
  margin: 1.35rem 0 0;
  display: grid;
  gap: 1rem;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.team-copy p {
  margin: 0;
}

/* —— Proof strip —— */
.proof {
  padding: clamp(2.5rem, 5vw, 3.25rem) var(--space);
  background: var(--ink);
  color: var(--white);
}

.proof-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 720px) {
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}

.proof-item {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}

.proof-value {
  margin: 0;
  display: flex;
  align-items: flex-end;
  min-height: 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.proof-value-text {
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  letter-spacing: -0.025em;
}

.proof-label {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(250, 250, 250, 0.8);
  max-width: none;
}

/* —— About —— */
.about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 40%),
    transparent;
}

/* —— Process steps —— */
.process {
  background:
    linear-gradient(135deg, rgba(197, 155, 31, 0.08), transparent 50%),
    linear-gradient(180deg, transparent, rgba(230, 228, 223, 0.7));
}

.steps {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(2rem, 5vw, 2.75rem);
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}

.step {
  margin: 0;
  padding: 1.35rem 0 0;
  border-top: 1px solid rgba(18, 18, 18, 0.16);
}

.step-index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* —— Compare —— */
.compare-grid {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 800px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(18, 18, 18, 0.12);
}

.compare-col-accent h3 {
  border-bottom-color: var(--gold);
  color: var(--ink);
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.compare-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 500;
}

.compare-list li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.compare-list-yes li::before {
  content: "✓";
  color: var(--gold-deep);
}

.compare-list-no li::before {
  content: "✕";
  color: #8a3a3a;
}

.fine-print {
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.55;
}

/* —— Trust —— */
.trust {
  background: linear-gradient(180deg, rgba(197, 155, 31, 0.07), transparent 60%);
}

.trust-list {
  list-style: none;
  margin: clamp(2.25rem, 5vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 720px) {
  .trust-list {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-list li {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(18, 18, 18, 0.14);
}

.trust-list h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.trust-list p {
  margin: 0;
  color: var(--ink-soft);
}

/* —— Seller guide CTA —— */
.guide {
  background: var(--ink);
  color: var(--white);
}

.guide .eyebrow {
  color: var(--gold);
}

.guide .section-title {
  color: var(--white);
}

.guide .section-title::after {
  background: var(--gold);
}

.guide .section-lede {
  color: rgba(250, 250, 250, 0.72);
}

.guide-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
}

.guide-inner .section-header,
.guide-inner > div {
  max-width: 40rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 44rem;
  margin-top: 1.75rem;
}

.faq-item {
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  padding: 0.85rem 0 0.35rem;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(18, 18, 18, 0.12);
  padding-bottom: 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold-deep);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38rem;
}

.faq-item a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

/* —— Contact —— */
.contact {
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.03), transparent),
    var(--paper-deep);
  color: var(--ink);
}

.contact .eyebrow {
  color: var(--gold-deep);
}

.contact .section-title {
  color: var(--ink);
}

.contact .section-title::after {
  background: var(--gold);
}

.contact-lede {
  color: var(--ink-soft);
}

.contact-plain {
  background: transparent;
  padding-top: 0.5rem;
}

.contact .phone-list li {
  border-top-color: rgba(18, 18, 18, 0.14);
}

.contact .phone-region {
  color: var(--ink-soft);
}

.contact .phone-number {
  color: var(--ink);
}

.contact .phone-number:hover,
.contact .phone-number:focus-visible {
  color: var(--gold-deep);
}

.contact .partners-line {
  border-top-color: rgba(197, 155, 31, 0.55);
}

.contact .partners-label {
  color: var(--gold-deep);
}

/* —— Team —— */

.phone-block {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  max-width: 28rem;
}

.phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.phone-list li {
  display: grid;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 250, 250, 0.16);
}

.phone-region {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.55);
}

.phone-number {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.25s var(--ease);
}

.phone-number:hover,
.phone-number:focus-visible {
  color: var(--gold);
}

.partners-line {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(197, 155, 31, 0.45);
  max-width: 28rem;
}

.partners-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* —— Team —— */
.team-grid {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem 1.75rem;
}

@media (min-width: 560px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.team-card {
  margin: 0;
  display: grid;
  gap: 0.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(18, 18, 18, 0.14);
}

.team-card strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
}

.team-card span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* —— Page heroes (inner pages) —— */
.page-hero {
  padding: clamp(6.6rem, 13vw, 8.4rem) var(--space) clamp(2.25rem, 5vw, 3.25rem);
}

.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
  max-width: 22ch;
}

.page-lede {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 62ch;
}

.page-hero .cta-group {
  margin-top: 1.4rem;
}

.cta-band {
  padding: clamp(1.75rem, 4vw, 2.4rem) var(--space);
  background: var(--ink);
  color: var(--white);
}

.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem 1.75rem;
}

.cta-band p {
  margin: 0;
  max-width: 44ch;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(250, 250, 250, 0.9);
}

/* —— Partners lockup —— */
.partners {
  padding: clamp(2.25rem, 5vw, 3.25rem) var(--space);
  background: var(--white);
}

.partners-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.partners-graphic {
  width: 100%;
  height: auto;
  border: 1px solid rgba(197, 155, 31, 0.45);
  background: var(--white);
}

.partners-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  max-width: 70ch;
  line-height: 1.5;
}

/* —— Mission split / pledge —— */
.mission-split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 860px) {
  .mission-split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }
}

.pledge {
  margin: 0;
  padding: 1.35rem 1.4rem 1.4rem;
  background: var(--ink);
  color: var(--white);
}

.pledge p {
  margin: 0;
}

.pledge-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.pledge-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
}

.pledge-body {
  color: rgba(250, 250, 250, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* —— Housing crisis graphic + stats —— */
.crisis {
  background: var(--ink);
  color: var(--white);
}

.crisis .eyebrow {
  color: var(--gold);
}

.crisis .section-title {
  color: var(--white);
}

.crisis .section-lede {
  color: rgba(250, 250, 250, 0.72);
}

.crisis-figure {
  margin: clamp(1.75rem, 4vw, 2.5rem) 0 0;
}

.crisis-figure img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(197, 155, 31, 0.35);
}

.crisis .partners-graphic {
  border-color: rgba(197, 155, 31, 0.35);
}

.crisis-caption {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: rgba(250, 250, 250, 0.62);
  max-width: 72ch;
  line-height: 1.5;
}

.crisis-stats {
  list-style: none;
  margin: clamp(2rem, 5vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 800px) {
  .crisis-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.crisis-stats li {
  padding-top: 1.1rem;
  border-top: 1px solid rgba(197, 155, 31, 0.4);
}

.crisis-value {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  line-height: 1;
}

.crisis-stats p {
  margin: 0;
  color: rgba(250, 250, 250, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.crisis-source {
  margin: 1.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(250, 250, 250, 0.5);
  max-width: 70ch;
  line-height: 1.5;
}

/* —— Buy-to-build pipeline —— */
.pipeline {
  list-style: none;
  margin: clamp(2.25rem, 5vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  counter-reset: pipe;
}

@media (min-width: 800px) {
  .pipeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.pipeline li {
  margin: 0;
  padding-top: 1.1rem;
  border-top: 2px solid var(--gold);
}

.pipeline h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.pipeline p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* —— Stories / testimonials —— */
.stories-grid {
  margin-top: clamp(2.25rem, 5vw, 3rem);
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 800px) {
  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stories-grid .story-card:first-child {
    grid-column: 1 / -1;
  }
}

.story-card {
  margin: 0;
  padding: 1.4rem 1.35rem 1.3rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 2px solid var(--gold);
}

.story-card blockquote,
.story-card p {
  margin: 0;
}

.story-quote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
}

.story-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.story-avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.story-card cite {
  font-style: normal;
  display: grid;
  gap: 0.1rem;
}

.story-card cite strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.story-card cite span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.stories-preview {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin-top: clamp(2.25rem, 5vw, 3rem);
}

@media (min-width: 800px) {
  .stories-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.section-footer-link {
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* —— Footer —— */
.site-footer {
  padding: 2.75rem var(--space) 3.25rem;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo {
  display: inline-flex;
  width: clamp(12rem, 34vw, 17rem);
  margin-bottom: 0.5rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-tag {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-legal {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.55;
}

.footer-links {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.footer-sep {
  color: var(--ink-soft);
}

.footer-links a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

/* —— Legal / Terms page —— */
.site-header-solid {
  justify-content: space-between;
}

.legal {
  padding: clamp(6rem, 14vw, 8rem) var(--space) clamp(3rem, 8vw, 5rem);
}

.legal-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.legal-updated {
  margin: 0 0 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

.legal strong {
  color: var(--ink);
  font-weight: 600;
}

/* —— Scroll reveals (progressive: only hide when JS is active) —— */
.js .reveal {
  opacity: 0;
  transform: translateY(1.15rem);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-content {
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section-title::after {
    transform: scaleX(1);
    transition: none;
  }

  .btn:hover,
  .btn:focus-visible,
  .nav-toggle-bars span {
    transform: none;
  }
}

@media (max-width: 1200px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 21;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 5.25rem var(--space) 1.75rem;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  }

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

  .site-nav a {
    font-size: 0.92rem;
    opacity: 1;
  }

  .nav-cta {
    margin-top: 0.35rem;
    padding: 0.75rem 1rem;
  }
}

body.nav-lock {
  overflow: hidden;
}

@media (max-width: 560px) {
  .hero-content {
    max-width: 100%;
  }

  .cta-group .btn {
    width: 100%;
  }

  .page-hero h1 {
    max-width: none;
  }
}
