:root {
  --font-geist-sans: Arial, Helvetica, sans-serif;
  --paper: #f6f0e5;
  --paper-deep: #e8dfcf;
  --warm-white: #fffdf8;
  --oxblood: #6c2b28;
  --oxblood-dark: #4f1e1c;
  --russet: #b9633b;
  --forest: #173f35;
  --forest-dark: #0f3029;
  --sage: #b9c99b;
  --pale-sage: #dce5c9;
  --sand: #f4ecdc;
  --marigold: #edae3b;
  --clay: #b7653f;
  --moss: var(--forest);
  --charcoal: #232420;
  --muted: #6d6b64;
  --line: rgba(35, 36, 32, 0.18);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua",
    Palatino, Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--russet);
  color: var(--warm-white);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 50px;
  height: 50px;
  filter:
    drop-shadow(0.45px 0 0 var(--oxblood))
    drop-shadow(-0.45px 0 0 var(--oxblood))
    drop-shadow(0 0.45px 0 var(--oxblood))
    drop-shadow(0 -0.45px 0 var(--oxblood));
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta:hover {
  background: var(--forest);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  min-height: 690px;
  padding: 68px 7vw 76px;
  background: var(--sand);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 50px;
  right: 3vw;
  width: min(39vw, 590px);
  aspect-ratio: 1;
  border-radius: 49% 51% 46% 54%;
  background: var(--pale-sage);
  content: "";
  transform: rotate(-8deg);
}

.hero::after {
  position: absolute;
  right: 42vw;
  bottom: 52px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--marigold);
  content: "";
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(64px, 7.1vw, 116px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
  color: var(--oxblood);
}

.hero h1 span {
  display: block;
  color: var(--forest);
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: #46463f;
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  background: var(--forest);
  color: var(--warm-white);
  box-shadow: 0 9px 22px rgba(15, 48, 41, 0.2);
}

.button-primary:hover {
  background: var(--forest-dark);
  box-shadow: 0 13px 28px rgba(15, 48, 41, 0.26);
}

.text-link,
.light-link {
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.9;
}

.hero .text-link {
  color: var(--oxblood);
}

.hero-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-portrait {
  position: relative;
  max-width: 570px;
  margin: 0 auto;
}

.portrait-frame {
  position: relative;
  aspect-ratio: 0.79;
  overflow: hidden;
  border-radius: 46% 46% 7px 7px;
  background: var(--sage);
  box-shadow: 24px 26px 0 var(--clay);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  filter: saturate(0.82) contrast(1.03);
}

.hero-portrait figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  align-items: baseline;
  max-width: 82%;
  margin-top: 26px;
}

.hero-portrait figcaption span {
  grid-column: 1 / -1;
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.portrait-stamp {
  position: absolute;
  right: -44px;
  bottom: 70px;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid var(--oxblood);
  border-radius: 50%;
  background: var(--sand);
  color: var(--oxblood);
  transform: rotate(8deg);
}

.portrait-stamp::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed var(--oxblood);
  border-radius: inherit;
  content: "";
}

.portrait-stamp span,
.portrait-stamp strong {
  position: relative;
  text-align: center;
}

.portrait-stamp span {
  align-self: end;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portrait-stamp strong {
  align-self: start;
  font-family: var(--font-display);
  font-size: 17px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 68px);
  min-height: 68px;
  padding: 18px 5vw;
  background: var(--forest);
  color: var(--warm-white);
}

.trust-strip p {
  margin: 0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--marigold);
  font-size: 8px;
}

.section-shell {
  padding: 116px 7vw;
}

.manifesto {
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 10vw;
}

.manifesto h2,
.section-heading h2,
.steps-section h2,
.finder-intro h2,
.faq-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.manifesto-grid > div {
  padding-top: 8px;
}

.manifesto-grid > div p {
  color: #55544d;
  line-height: 1.75;
}

.manifesto-grid .large-copy {
  margin-bottom: 28px;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.45;
}

.club-section {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  background: var(--oxblood-dark);
  color: var(--warm-white);
}

.club-intro {
  align-self: start;
  position: sticky;
  top: 36px;
}

.club-intro h2,
.tracker-intro h2 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.club-copy {
  max-width: 570px;
  margin-bottom: 22px;
  color: #eadbd2;
  font-size: 16px;
  line-height: 1.75;
}

.club-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.club-price strong {
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.club-price span {
  color: #eadbd2;
  font-size: 14px;
  font-weight: 700;
}

.club-price-label {
  margin: 0 0 24px;
  color: var(--marigold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.club-footnote {
  max-width: 520px;
  margin: 18px 0 0;
  color: #d7beb2;
  font-size: 10px;
  line-height: 1.6;
}

.club-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  border-left: 1px solid rgba(255, 253, 248, 0.22);
}

.club-benefits article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid rgba(255, 253, 248, 0.22);
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
}

.club-benefits article > span {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--marigold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.club-benefits h3 {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
}

.club-benefits p {
  margin: 0;
  color: #dbcac2;
  font-size: 12px;
  line-height: 1.7;
}

.club-giving-link {
  color: var(--marigold);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.club-giving-link:hover {
  color: var(--warm-white);
}

.club-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
}

.club-community-link {
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--marigold);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.club-community-link:hover {
  color: var(--warm-white);
}

.membership-form-panel {
  grid-column: 1 / -1;
  margin-top: 12px;
  padding: 44px;
  border-radius: 8px;
  background: var(--warm-white);
  box-shadow: 14px 16px 0 var(--marigold);
  color: var(--charcoal);
}

.membership-form-panel[hidden] {
  display: none;
}

.membership-form-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.membership-form-heading h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.membership-form-close {
  align-self: flex-start;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.membership-form-panel form {
  display: grid;
  gap: 26px;
}

.membership-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.membership-options legend {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-options label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.membership-options input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--oxblood);
}

.membership-options span {
  display: grid;
  gap: 5px;
}

.membership-options strong {
  color: var(--forest);
  font-size: 15px;
}

.membership-options small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.membership-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.membership-field-grid label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.membership-field-grid input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--charcoal);
  font: inherit;
}

.membership-field-grid input:focus {
  border-color: var(--oxblood);
  outline: 2px solid rgba(104, 35, 44, 0.14);
  outline-offset: 1px;
}

.membership-payment-note {
  padding: 20px;
  border: 1px solid rgba(23, 63, 53, 0.22);
  background: var(--pale-sage);
}

.membership-payment-note strong {
  color: var(--forest);
  font-size: 13px;
}

.membership-payment-note p {
  max-width: 760px;
  margin: 7px 0 0;
  color: #4e5b4d;
  font-size: 12px;
  line-height: 1.65;
}

.membership-privacy-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.netlify-honeypot {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  background: var(--oxblood-dark);
  color: var(--warm-white);
}

.thank-you-section {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 170px);
  padding: 110px max(7vw, 28px);
}

.thank-you-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 40px;
  border: 1px solid var(--marigold);
  border-radius: 50%;
  place-items: center;
  color: var(--marigold);
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
}

.thank-you-section h1 {
  max-width: 900px;
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 156px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.thank-you-section > p:not(.section-kicker) {
  max-width: 700px;
  margin: 0;
  color: #eadbd2;
  font-size: 18px;
  line-height: 1.75;
}

.thank-you-email {
  color: var(--marigold);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.thank-you-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.thank-you-legal {
  border-top-color: rgba(255, 253, 248, 0.18);
  color: #d7beb2;
}

.ecosystem-section {
  background: var(--pale-sage);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 63, 53, 0.24);
  border-left: 1px solid rgba(23, 63, 53, 0.24);
}

.ecosystem-grid article {
  min-height: 420px;
  padding: 30px;
  border-right: 1px solid rgba(23, 63, 53, 0.24);
  border-bottom: 1px solid rgba(23, 63, 53, 0.24);
}

.ecosystem-grid article:nth-child(2) {
  background: rgba(255, 253, 248, 0.42);
}

.ecosystem-number {
  display: block;
  margin-bottom: 90px;
  color: var(--oxblood);
  font-size: 10px;
  font-weight: 850;
}

.ecosystem-label {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ecosystem-grid h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ecosystem-grid article > p:last-child {
  margin: 0;
  color: #4e5b4d;
  font-size: 13px;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr);
  gap: 8vw;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.section-heading-solo {
  grid-template-columns: 1fr;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.care-card {
  min-height: 520px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.care-card:hover {
  position: relative;
  z-index: 2;
  background: var(--pale-sage);
  transform: translateY(-4px);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 46px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.care-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.care-card p {
  max-width: 480px;
  color: #55544d;
  font-size: 14px;
  line-height: 1.7;
}

.care-card small {
  display: block;
  max-width: 440px;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.peptide-topics,
.support-topics {
  margin-top: 28px;
}

.peptide-label {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.peptide-topics ul,
.support-topics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.peptide-topics li,
.support-topics li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 53, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.58);
  color: var(--forest-dark);
  font-size: 10px;
  white-space: nowrap;
}

.peptide-topics li strong {
  padding: 9px 14px;
  font-weight: 750;
}

.support-topics li strong {
  padding: 8px 10px 8px 13px;
  font-weight: 750;
}

.support-topics li span {
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 8px 11px 8px 9px;
  border-left: 1px solid rgba(23, 63, 53, 0.2);
  background: rgba(185, 201, 155, 0.46);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-topics {
  margin-top: 22px;
}

.support-topics li {
  border-color: rgba(108, 43, 40, 0.22);
}

.support-topics li span {
  border-left-color: rgba(108, 43, 40, 0.18);
  background: rgba(197, 142, 84, 0.16);
  color: var(--oxblood);
}

.regulatory-snapshot {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr 1fr;
  gap: 38px;
  margin-top: 36px;
  padding: 32px 34px;
  border: 1px solid rgba(108, 43, 40, 0.24);
  background: rgba(255, 253, 248, 0.72);
}

.regulatory-snapshot p {
  margin: 0;
  color: #55544d;
  font-size: 12px;
  line-height: 1.75;
}

.snapshot-title p {
  margin-bottom: 8px;
  color: var(--oxblood);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.1;
}

.snapshot-title > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.snapshot-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  grid-column: 2 / -1;
}

.snapshot-links a {
  width: fit-content;
  color: var(--forest);
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(23, 63, 53, 0.35);
  text-underline-offset: 4px;
}

.standard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 8vw;
  padding: 116px 7vw;
  background: var(--forest-dark);
  color: var(--warm-white);
}

.section-kicker.light {
  color: var(--marigold);
}

.standard-copy {
  align-self: start;
  position: sticky;
  top: 36px;
}

.standard-copy h2 {
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.standard-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #e3ead8;
  font-size: 16px;
  line-height: 1.75;
}

.standard-lede-secondary {
  margin-top: -14px;
}

.light-link {
  color: #f6c968;
}

.evidence-list {
  border-top: 1px solid rgba(255, 253, 248, 0.24);
}

.evidence-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.24);
}

.evidence-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--marigold);
  border-radius: 50%;
  color: var(--marigold);
  font-family: var(--font-display);
  font-style: italic;
}

.evidence-row strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.evidence-row p {
  margin: 0;
  color: #cbd9c6;
  font-size: 13px;
  line-height: 1.65;
}

.steps-section {
  background: var(--warm-white);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  min-height: 330px;
  padding: 26px 28px 32px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-list li:nth-child(even) {
  background: rgba(220, 229, 201, 0.42);
}

.steps-list li:first-child {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 102px;
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
}

.steps-list h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.legacy-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(0, 1.14fr);
  min-height: 820px;
  background: #e7e5d4;
}

.legacy-photo {
  min-height: 780px;
  overflow: hidden;
}

.legacy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 30%;
  filter: saturate(0.72) contrast(1.05);
}

.legacy-copy {
  align-self: center;
  max-width: 760px;
  padding: 100px 8vw;
}

.legacy-copy h2 {
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.legacy-copy > p {
  color: #55544d;
  line-height: 1.75;
}

.legacy-copy .legacy-intro {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.45;
}

.legacy-copy blockquote {
  margin: 42px 0 0;
  padding: 26px 0 0 34px;
  border-top: 1px solid var(--clay);
  border-left: 1px solid var(--clay);
  color: var(--oxblood);
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  line-height: 1.45;
}

.tracker-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 8vw;
  background: var(--marigold);
}

.tracker-intro {
  align-self: start;
  position: sticky;
  top: 36px;
}

.tracker-intro > p:not(.section-kicker) {
  color: #4d3920;
  font-size: 15px;
  line-height: 1.75;
}

.tracker-intro > span {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(35, 36, 32, 0.3);
  border-radius: 4px;
  color: #4d3920;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tracker-card {
  padding: 38px;
  border-radius: 8px;
  background: var(--warm-white);
  box-shadow: 20px 20px 0 var(--oxblood);
}

.tracker-card fieldset {
  margin: 0;
  padding: 0 0 28px;
  border: 0;
}

.tracker-card fieldset + fieldset {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.tracker-card legend {
  margin-bottom: 16px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
}

.tracker-card legend span {
  margin-right: 12px;
  color: var(--oxblood);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 850;
}

.tracker-result {
  min-height: 110px;
  margin-top: 4px;
  padding: 24px;
  border: 1px dashed rgba(35, 36, 32, 0.28);
  background: var(--sand);
  color: var(--muted);
}

.tracker-result.is-ready {
  border-style: solid;
  border-color: rgba(23, 63, 53, 0.36);
  background: var(--pale-sage);
  color: var(--charcoal);
}

.tracker-result h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.tracker-result p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.65;
}

.finder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
  gap: 8vw;
  background: var(--forest);
  color: var(--warm-white);
}

.finder-intro {
  align-self: start;
  position: sticky;
  top: 36px;
}

.finder-intro .section-kicker {
  color: var(--marigold);
}

.finder-intro h2 {
  margin-bottom: 26px;
}

.finder-intro > p {
  color: #e7e9df;
  line-height: 1.7;
}

.finder-card {
  padding: 38px;
  background: var(--warm-white);
  color: var(--charcoal);
  border-radius: 8px;
  box-shadow: 20px 20px 0 var(--marigold);
}

.finder-card fieldset {
  margin: 0;
  padding: 0 0 32px;
  border: 0;
}

.finder-card fieldset + fieldset {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.finder-card legend {
  margin-bottom: 18px;
  padding: 0;
  font-family: var(--font-display);
  font-size: 21px;
}

.finder-card legend span {
  margin-right: 12px;
  color: var(--forest);
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.choice-button:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.choice-button.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--warm-white);
}

.other-pet-field {
  max-width: 390px;
  margin-top: 18px;
}

.other-pet-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--forest-dark);
  font-size: 11px;
  font-weight: 750;
}

.other-pet-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffefa;
  color: var(--charcoal);
  font: inherit;
  font-size: 13px;
}

.other-pet-field input:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(23, 63, 53, 0.14);
  outline-offset: 1px;
}

.finder-result {
  min-height: 115px;
  padding: 24px;
  background: var(--paper);
  color: var(--muted);
  border-left: 3px solid var(--paper-deep);
}

.finder-result > p {
  margin: 0;
  line-height: 1.65;
}

.finder-result.is-ready {
  color: var(--charcoal);
  border-left-color: var(--clay);
}

.finder-result .result-label {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finder-result h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.finder-result .button {
  margin-top: 22px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 8vw;
}

.faq-title {
  align-self: start;
  position: sticky;
  top: 36px;
}

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

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

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 21px;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--forest);
  content: "+";
  font-family: var(--font-geist-sans), sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.faq-list details p a {
  color: var(--forest);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closing-section {
  padding: 110px 7vw;
  background: var(--oxblood);
  color: var(--warm-white);
  text-align: center;
}

.closing-section .section-kicker {
  justify-content: center;
}

.closing-section h2 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.closing-section > p {
  max-width: 650px;
  margin: 0 auto 34px;
  color: #ecd8ce;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.5;
}

.button-light {
  border-color: var(--warm-white);
  background: var(--warm-white);
  color: var(--oxblood);
}

.button-light:hover {
  background: transparent;
  color: var(--warm-white);
}

footer {
  padding: 64px 7vw 34px;
  background: var(--forest-dark);
  color: var(--warm-white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.footer-brand .brand-logo {
  filter:
    brightness(0) invert(1)
    drop-shadow(0.45px 0 0 var(--warm-white))
    drop-shadow(-0.45px 0 0 var(--warm-white))
    drop-shadow(0 0.45px 0 var(--warm-white))
    drop-shadow(0 -0.45px 0 var(--warm-white));
}

.footer-top > p {
  margin: 0;
  color: #c7c4bc;
  font-family: var(--font-display);
  font-size: 18px;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
}

.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 42px;
  align-items: start;
  padding-top: 32px;
}

.footer-legal p,
.footer-legal span {
  margin: 0;
  color: #97958f;
  font-size: 9px;
  line-height: 1.65;
}

.footer-legal span {
  white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 4px;
}

.resources-page {
  background: var(--paper);
}

.resources-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 8vw;
  min-height: 600px;
  padding: 110px 7vw 100px;
  background: var(--forest-dark);
  color: var(--warm-white);
}

.resources-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.resources-hero-copy {
  max-width: 560px;
  padding-bottom: 8px;
}

.resources-hero-copy p {
  margin-bottom: 28px;
  color: #dfe8d7;
  font-size: 18px;
  line-height: 1.75;
}

.resources-hero-copy span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(237, 174, 59, 0.7);
  color: var(--marigold);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  align-items: center;
}

.resource-feature-intro h2,
.resource-section-heading h2,
.resource-updates h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.resource-feature-intro h2 {
  font-size: clamp(48px, 5.5vw, 80px);
}

.resource-feature-intro > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.resource-feature-card {
  min-height: 510px;
  padding: 54px;
  border: 1px solid rgba(23, 63, 53, 0.26);
  background: var(--pale-sage);
  box-shadow: 20px 20px 0 var(--forest);
}

.resource-status,
.resource-type,
.resource-card-topline,
.resource-read-time,
.video-card-copy > span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-status {
  display: inline-flex;
  margin-bottom: 86px;
  padding: 8px 10px;
  border: 1px solid rgba(23, 63, 53, 0.35);
  color: var(--forest);
}

.resource-type {
  margin-bottom: 14px;
  color: var(--oxblood);
}

.resource-feature-card h3 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.resource-feature-card > p:not(.resource-type) {
  max-width: 680px;
  color: #4f554a;
  line-height: 1.75;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.resource-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(23, 63, 53, 0.2);
  background: rgba(255, 253, 248, 0.45);
  color: var(--forest);
  font-size: 9px;
  font-weight: 800;
}

.resource-library {
  background: var(--warm-white);
}

.resource-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  align-items: end;
  gap: 7vw;
  margin-bottom: 62px;
}

.resource-section-heading h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(50px, 6vw, 86px);
}

.resource-section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-card:nth-child(2) {
  background: rgba(220, 229, 201, 0.42);
}

.resource-card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 82px;
  color: var(--forest);
}

.resource-card-topline span:last-child {
  color: var(--clay);
}

.resource-card h3,
.video-card h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.resource-card h3 {
  font-size: 31px;
}

.resource-card > p:not(.resource-type) {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.resource-read-time {
  margin-top: auto;
  color: var(--forest);
}

.resource-video-section {
  background: var(--oxblood-dark);
  color: var(--warm-white);
}

.resource-video-section .resource-section-heading > p {
  color: #e1cbc2;
}

.resource-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.video-card {
  border: 1px solid rgba(255, 253, 248, 0.2);
  background: rgba(255, 253, 248, 0.035);
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
  background:
    linear-gradient(145deg, rgba(237, 174, 59, 0.14), transparent 48%),
    var(--forest);
}

.video-frame > span {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--marigold);
  font-size: 10px;
  font-weight: 850;
}

.video-frame strong {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding-left: 4px;
  border: 1px solid var(--marigold);
  border-radius: 50%;
  color: var(--marigold);
  font-size: 20px;
  font-weight: 400;
}

.video-frame small {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #dfc8bf;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.video-card-copy {
  padding: 28px;
}

.video-card-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--marigold);
}

.video-card h3 {
  font-size: 27px;
}

.video-card p {
  margin: 0;
  color: #dcc8bf;
  font-size: 12px;
  line-height: 1.7;
}

.resource-updates {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 8vw;
  background: var(--pale-sage);
}

.resource-updates h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
}

.resource-updates > div:last-child {
  max-width: 560px;
}

.resource-updates > div:last-child p {
  margin-bottom: 28px;
  color: #4f554a;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .resources-hero,
  .resource-feature,
  .resource-updates {
    grid-template-columns: 1fr;
  }

  .resources-hero {
    min-height: 0;
    padding-top: 90px;
  }

  .resources-hero-copy {
    max-width: 760px;
  }

  .resource-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .resource-card-grid,
  .resource-video-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 330px;
  }

  .resource-card-topline {
    margin-bottom: 58px;
  }
}

@media (max-width: 760px) {
  .resources-hero {
    gap: 42px;
    padding: 76px 20px;
  }

  .resources-hero h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .resources-hero-copy p {
    font-size: 16px;
  }

  .resource-feature,
  .resource-library,
  .resource-video-section,
  .resource-updates {
    padding: 76px 20px;
  }

  .resource-feature-card {
    min-height: 0;
    padding: 30px;
    box-shadow: 10px 10px 0 var(--forest);
  }

  .resource-status {
    margin-bottom: 58px;
  }

  .resource-feature-card h3 {
    font-size: 42px;
  }

  .resource-section-heading {
    margin-bottom: 42px;
  }

  .resource-card {
    min-height: 350px;
    padding: 26px;
  }
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 48px;
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .hero h1 {
    font-size: clamp(62px, 8vw, 88px);
  }

  .portrait-stamp {
    right: -24px;
  }

  .standard-section {
    grid-template-columns: 1fr;
  }

  .club-section,
  .tracker-section {
    grid-template-columns: 1fr;
  }

  .club-intro,
  .tracker-intro {
    position: static;
  }

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

  .ecosystem-grid article {
    min-height: 320px;
  }

  .ecosystem-number {
    margin-bottom: 58px;
  }

  .regulatory-snapshot {
    grid-template-columns: minmax(180px, 0.42fr) 1fr;
  }

  .snapshot-links {
    grid-column: 2;
  }

  .standard-copy,
  .finder-intro,
  .faq-title {
    position: static;
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-list li:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .legacy-section {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .finder-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .footer-links,
  .footer-legal span {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .brand {
    font-size: 21px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 60px 20px 70px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(62px, 19vw, 88px);
  }

  .hero-lede {
    font-size: 21px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-portrait {
    width: min(88vw, 500px);
    margin-top: 24px;
  }

  .portrait-frame {
    box-shadow: 14px 16px 0 var(--clay);
  }

  .portrait-stamp {
    right: -8px;
    bottom: 72px;
    width: 96px;
    height: 96px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
  }

  .trust-strip span {
    display: none;
  }

  .section-shell,
  .standard-section {
    padding: 82px 20px;
  }

  .manifesto-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .club-section,
  .tracker-section {
    gap: 52px;
  }

  .club-benefits {
    grid-template-columns: 1fr;
  }

  .club-benefits article {
    min-height: 250px;
    padding: 28px;
  }

  .club-benefits article > span {
    margin-bottom: 48px;
  }

  .membership-form-panel {
    padding: 24px;
    box-shadow: 8px 10px 0 var(--marigold);
  }

  .membership-form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .membership-options,
  .membership-field-grid {
    grid-template-columns: 1fr;
  }

  .thank-you-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .ecosystem-grid article {
    min-height: 300px;
    padding: 28px;
  }

  .ecosystem-number {
    margin-bottom: 50px;
  }

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

  .care-card {
    min-height: 0;
    padding: 28px;
  }

  .card-topline {
    margin-bottom: 38px;
  }

  .regulatory-snapshot {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .snapshot-links {
    grid-column: 1;
  }

  .standard-section {
    gap: 56px;
  }

  .standard-copy h2 {
    font-size: 52px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li {
    min-height: 280px;
    border-left: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 70px;
  }

  .legacy-section {
    grid-template-columns: 1fr;
  }

  .legacy-photo {
    min-height: 570px;
  }

  .legacy-copy {
    padding: 76px 20px;
  }

  .legacy-copy blockquote {
    padding-left: 20px;
    font-size: 22px;
  }

  .tracker-card {
    padding: 24px;
    box-shadow: 10px 10px 0 rgba(108, 43, 40, 0.4);
  }

  .finder-section {
    gap: 52px;
  }

  .finder-card {
    padding: 24px;
    box-shadow: 10px 10px 0 rgba(35, 36, 32, 0.18);
  }

  .choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-button {
    width: 100%;
  }

  .closing-section {
    padding: 82px 20px;
  }

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

  .footer-links,
  .footer-legal span {
    justify-self: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

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

/* Multi-page layouts */
.inner-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  gap: 8vw;
  align-items: end;
  min-height: 520px;
  padding: 96px 7vw;
  background: var(--oxblood-dark);
  color: var(--warm-white);
}

.inner-page-hero-forest {
  background: var(--forest-dark);
}

.inner-page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(70px, 9vw, 138px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.inner-page-hero > p {
  max-width: 600px;
  margin: 0 0 8px;
  color: #eadbd2;
  font-size: 17px;
  line-height: 1.75;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--sand);
}

.page-link-grid a {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-right: 0;
  transition: background 180ms ease, transform 180ms ease;
}

.page-link-grid a:last-child {
  border-right: 1px solid var(--line);
}

.page-link-grid a:hover {
  background: var(--pale-sage);
  transform: translateY(-4px);
}

.page-link-grid span {
  display: block;
  margin-bottom: 80px;
  color: var(--oxblood);
  font-size: 10px;
  font-weight: 850;
}

.page-link-grid h3 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
}

.page-link-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.story-page {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100vh - 88px);
}

.story-page-photo {
  min-height: 760px;
  background: var(--sage);
  overflow: hidden;
}

.story-page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-page-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 90px 8vw;
}

.story-page-copy h1 {
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 118px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.story-page-copy > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.story-page-copy blockquote {
  max-width: 680px;
  margin: 22px 0 34px;
  padding-left: 24px;
  border-left: 2px solid var(--marigold);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.35;
}

.tracker-page-section {
  align-items: start;
}

.membership-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 8vw;
  padding: 100px 7vw;
  background: var(--oxblood-dark);
  color: var(--warm-white);
}

.membership-page-hero h1 {
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(70px, 8vw, 124px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.membership-page-hero > div:first-child > p:not(.section-kicker, .club-price-label) {
  max-width: 620px;
  color: #eadbd2;
  line-height: 1.75;
}

.membership-page-benefits {
  display: grid;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
}

.membership-page-benefits article {
  padding: 28px;
  border-right: 1px solid rgba(255, 253, 248, 0.22);
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  border-left: 1px solid rgba(255, 253, 248, 0.22);
}

.membership-page-benefits span {
  color: var(--marigold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.membership-page-benefits h3 {
  margin: 30px 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.membership-page-benefits p {
  margin: 0;
  color: #dbcac2;
  font-size: 12px;
  line-height: 1.7;
}

.standalone-form-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: 8vw;
  background: var(--sand);
}

.standalone-form-intro {
  align-self: start;
  position: sticky;
  top: 36px;
}

.standalone-form-intro h2 {
  margin: 0;
  font-size: clamp(52px, 7vw, 96px);
}

.standalone-form-intro > p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.standalone-membership-form {
  display: grid;
  gap: 26px;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--warm-white);
  box-shadow: 12px 14px 0 var(--marigold);
}

.standalone-membership-panel {
  display: block;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .inner-page-hero,
  .membership-page-hero,
  .standalone-form-section,
  .story-page {
    grid-template-columns: 1fr;
  }

  .inner-page-hero {
    min-height: 0;
    padding: 82px 20px;
  }

  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .page-link-grid a {
    min-height: 260px;
    border-right: 1px solid var(--line);
  }

  .story-page-photo {
    min-height: 540px;
  }

  .story-page-copy,
  .membership-page-hero {
    padding: 76px 20px;
  }

  .standalone-form-intro {
    position: static;
  }

  .standalone-membership-form {
    padding: 24px;
    box-shadow: 8px 10px 0 var(--marigold);
  }
}
