:root {
  --page: #f3f0ea;
  --hero: #f6f4ef;
  --object: #f1eee7;
  --membership: #f7f5f0;
  --request: #efebe4;

  --text: #111111;
  --muted: #66625d;

  --rule: rgba(17, 17, 17, 0.28);
  --rule-soft: rgba(17, 17, 17, 0.11);
  --field-border: rgba(17, 17, 17, 0.30);

  --max: 1480px;
  --pad: clamp(24px, 4.4vw, 74px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

::selection {
  background: var(--text);
  color: var(--hero);
}

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

.site-header,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background .35s ease,
    border-color .35s ease,
    backdrop-filter .35s ease;
}

.site-header.scrolled {
  background: rgba(246, 244, 239, .86);
  border-bottom: 1px solid var(--rule-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wordmark {
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -0.038em;
}

.header-link,
.eyebrow,
.access-form label > span,
legend,
.legal-links {
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 520;
}

.header-link {
  transition: opacity .2s ease;
}
.header-link:hover { opacity: .5; }

.panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-bottom: 1px solid var(--rule-soft);
  padding: 64px var(--pad);
}

.section-hero { background: var(--hero); }
.section-object { background: var(--object); }
.section-membership { background: var(--membership); }
.section-request { background: var(--request); }

.hero {
  min-height: min(850px, 100svh);
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 88px;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 16px;
  align-self: start;
  padding-top: 10px;
  font-size: 13px;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.section-marker i {
  width: 48px;
  height: 1px;
  background: var(--rule);
  display: block;
}

.hero-content {
  text-align: center;
  justify-self: center;
  width: 100%;
  max-width: 1030px;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(55px, 6.3vw, 92px);
  font-weight: 515;
  letter-spacing: -0.056em;
  line-height: .94;
}

.claim {
  margin: 0 auto 39px;
  font-size: clamp(31px, 3.25vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.044em;
  font-weight: 390;
}

.claim-emphasis {
  /* deliberately only one subtle step above the line */
  font-weight: 465;
}

.hero-object {
  margin: 0 0 34px;
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 218px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid var(--text);
  border-radius: 0;
  background: var(--text);
  color: var(--hero);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 520;
  cursor: pointer;
  transition:
    background .22s ease,
    color .22s ease,
    opacity .22s ease;
}

.button:hover {
  background: transparent;
  color: var(--text);
}

.button:disabled {
  cursor: wait;
  opacity: .55;
}

.button-loading { display: none; }
.button.is-loading .button-label { display: none; }
.button.is-loading .button-loading { display: inline; }

.split-section,
.request-section {
  min-height: 550px;
  display: grid;
  grid-template-columns: 120px minmax(300px, 1fr) 1px minmax(340px, 1.12fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
}

.section-label {
  align-self: start;
}

.section-label .section-marker { padding-top: 0; }

.label-text {
  display: block;
  margin-top: 14px;
  padding-left: 63px;
}

.object-number,
.membership-statement,
.request-intro {
  align-self: center;
}

.giant-number {
  font-size: clamp(158px, 18vw, 276px);
  font-weight: 300;
  line-height: .75;
  letter-spacing: -0.082em;
  margin-bottom: 34px;
  font-variant-numeric: tabular-nums;
}

.object-number .eyebrow {
  text-align: center;
  display: block;
}

.divider {
  width: 1px;
  height: 74%;
  min-height: 286px;
  background: var(--rule);
}

.section-copy {
  font-size: 19px;
  line-height: 1.47;
  max-width: 575px;
}

.section-copy h2 {
  font-size: clamp(28px, 2.55vw, 42px);
  line-height: 1.13;
  font-weight: 430;
  margin: 0 0 35px;
  letter-spacing: -0.041em;
}

.section-copy p {
  margin: 0 0 25px;
}

.finality {
  margin-top: 32px !important;
}

.membership-statement {
  font-size: clamp(48px, 5.15vw, 80px);
  line-height: .985;
  letter-spacing: -0.057em;
  font-weight: 390;
}

.membership-copy { font-size: 18px; }

.stats {
  display: flex;
  gap: 42px;
  flex-wrap: wrap;
  margin-top: 41px;
}

.request-section {
  padding-top: 76px;
  padding-bottom: 86px;
}

.request-intro h2 {
  margin: 0 0 38px;
  font-size: clamp(52px, 5.1vw, 80px);
  font-weight: 390;
  line-height: .98;
  letter-spacing: -0.057em;
}

.request-intro p {
  font-size: 18px;
  line-height: 1.47;
  margin: 0 0 25px;
}

.form-wrap {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.access-form {
  width: 100%;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field {
  display: block;
  position: relative;
  margin-bottom: 13px;
}

.access-form label > span,
.access-form legend {
  display: block;
  margin-bottom: 7px;
}

.access-form input,
.access-form textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  background: rgba(255,255,255,.14);
  border-radius: 0;
  padding: 12px 13px;
  margin: 0;
  color: var(--text);
  font: inherit;
  font-size: 15px;
  line-height: 1.25;
  outline: none;
  transition:
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.access-form input:hover,
.access-form textarea:hover {
  border-color: rgba(17,17,17,.48);
}

.access-form input:focus,
.access-form textarea:focus {
  border-color: var(--text);
  background: rgba(255,255,255,.28);
}

.access-form textarea {
  resize: vertical;
  min-height: 112px;
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: rgba(17,17,17,.88);
  box-shadow: inset 3px 0 0 var(--text);
  background: rgba(255,255,255,.34);
}

.field-error {
  display: none;
  margin-top: 6px;
  color: var(--text);
  font-style: normal;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: .02em;
}

.field.is-invalid .field-error {
  display: block;
}

.two-col,
.three-col {
  display: grid;
  gap: 12px;
}

.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: repeat(3, 1fr); }

fieldset {
  border: 0;
  margin: 4px 0 18px;
  padding: 0;
}

legend { margin-bottom: 11px; }

small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 17px;
}

.form-message {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.form-message.error {
  color: var(--text);
}

.privacy-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0;
}

.privacy-note a {
  border-bottom: 1px solid rgba(17,17,17,.38);
}

.success-panel {
  width: 100%;
  max-width: 560px;
  outline: none;
}

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

.success-panel h3 {
  margin: 24px 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
  font-weight: 390;
  letter-spacing: -0.052em;
}

.success-panel p:last-child {
  font-size: 18px;
  line-height: 1.45;
}

.site-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--page);
}

.legal-links {
  display: flex;
  gap: 28px;
  font-size: 9px;
}

.legal-links a {
  opacity: .7;
  transition: opacity .2s ease;
}
.legal-links a:hover { opacity: 1; }

/* restrained motion */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .75s cubic-bezier(.22,.8,.3,1),
    transform .75s cubic-bezier(.22,.8,.3,1);
}

.reveal.is-visible,
.reveal-now {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  .site-header { height: 70px; }

  .hero {
    min-height: 690px;
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .desktop-marker { display: none; }

  .split-section,
  .request-section {
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: start;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 22px;
  }

  .section-label .section-marker { flex: 0 0 auto; }

  .label-text {
    padding-left: 0;
    margin-top: 0;
  }

  .divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: var(--rule);
  }

  .object-number {
    text-align: center;
    padding: 32px 0 18px;
  }

  .giant-number {
    font-size: min(50vw, 230px);
  }

  .membership-statement,
  .request-intro h2 {
    font-size: clamp(50px, 13.5vw, 80px);
  }

  .stats { gap: 24px; }
  .form-wrap { min-height: 0; }
}

@media (max-width: 580px) {
  :root { --pad: 20px; }

  .site-header { height: 64px; }

  .wordmark { font-size: 18px; }
  .header-link { font-size: 8px; }

  .hero {
    min-height: 630px;
    padding-top: 104px;
  }

  .hero h1 { font-size: 58px; }

  .claim {
    font-size: 30px;
    line-height: 1.18;
  }

  .hero-object {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }

  .two-col,
  .three-col {
    grid-template-columns: 1fr;
  }

  .membership-statement,
  .request-intro h2 {
    font-size: 53px;
  }

  .section-copy,
  .membership-copy,
  .request-intro p {
    font-size: 17px;
  }

  .section-copy h2 { font-size: 30px; }

  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .site-footer {
    min-height: 120px;
    align-items: flex-end;
    padding-bottom: 28px;
  }

  .legal-links { gap: 18px; }
}

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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