:root {
  font-synthesis: none;
}

@font-face {
  font-family: "DM Sans";
  src: url("fonts/dm-sans-variable.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-variable.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-italic.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #fbf7f4;
  --cream: #f2ede8;
  --taupe: #e6ddd6;
  --ink: #2b2b2b;
  --muted: #6b6b6b;
  --sage: #6a906a;
  --sage-dark: #4a5e4a;
  --espresso: #3b2b21;
  --gold: #b29170;
  --line: #d6cac2;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(60, 43, 33, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  background: rgba(251, 247, 244, 0.86);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(980px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-grid;
  gap: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 29px;
  line-height: 0.76;
  letter-spacing: -0.02em;
}

.brand small {
  font-family: var(--sans);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  padding: 0 30px;
  background: var(--sage);
  color: var(--white);
  font: 600 14px/1 var(--sans);
  cursor: pointer;
}

.button:hover,
button:hover,
.button:focus-visible,
button:focus-visible {
  background: var(--sage-dark);
  outline: none;
}

.section {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 1200px;
  background: radial-gradient(circle at 18% 14%, #fffefc 0, var(--paper) 35%, #f8f2ee 100%);
  margin-top: -68px;
  padding-top: 68px;
}

.hero-inner {
  width: min(1208px, calc(100% - 64px));
  min-height: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 720px;
  font-size: 69px;
}

h1 em {
  color: var(--sage-dark);
  font-style: italic;
}

h2 {
  font-size: 48px;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
}

.lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

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

.quiet-note {
  color: #8f8983;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero-visual {
  justify-self: end;
  width: 335px;
  transform: translateY(86px);
  filter: drop-shadow(var(--shadow));
}

.workflow {
  min-height: 2138px;
  background: var(--taupe);
  padding: 96px 0 120px;
}

.section-intro {
  width: min(680px, calc(100% - 48px));
  margin: 0 auto 92px;
  text-align: center;
}

.section-intro .lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.step-grid {
  width: min(1138px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 110px 112px;
  align-items: center;
}

.step-copy {
  max-width: 520px;
}

.step-copy .eyebrow {
  margin-bottom: 14px;
}

.step-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.panel-shot {
  width: 320px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.panel-shot.short {
  width: 326px;
}

.why {
  min-height: 596px;
  background: var(--espresso);
  color: var(--paper);
  padding: 98px 0;
}

.why-shell,
.horizon-shell {
  width: min(1138px, calc(100% - 64px));
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 86px;
  align-items: start;
}

.why .eyebrow,
.horizon .eyebrow {
  color: var(--gold);
}

.reasons {
  display: grid;
  gap: 34px;
}

.reason {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
}

.number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 30px;
}

.reason strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 500;
}

.reason p {
  margin: 0;
  color: #c5c1b9;
}

.horizon {
  min-height: 660px;
  background: var(--paper);
  padding: 96px 0;
}

.horizon-head {
  max-width: 610px;
  margin-bottom: 70px;
}

.horizon-head p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  min-height: 210px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(214, 202, 194, 0.8);
}

.card .label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card h3 {
  font-size: 26px;
}

.card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.waitlist {
  min-height: 568px;
  background: var(--paper);
  padding: 90px 0;
}

.waitlist-shell {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.waitlist p {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.7fr) auto;
  gap: 12px;
  align-items: stretch;
  text-align: left;
}

.waitlist-other-field {
  grid-column: 2 / 3;
}

.waitlist-other-field[hidden] {
  display: none;
}

.waitlist-form input,
.waitlist-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 0 14px;
  color: var(--ink);
  font: 400 14px/1 var(--sans);
}

.contact-form textarea {
  min-height: 132px;
  padding-top: 14px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin-top: 16px;
  color: var(--sage-dark);
  font-size: 14px;
  text-align: center;
}

.form-note {
  margin-top: 18px !important;
  color: #8f8983 !important;
  font-size: 13px !important;
}

.site-footer {
  background: var(--taupe);
  padding: 54px 0;
}

.footer-grid {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(120px, 0.32fr));
  gap: 54px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p,
.footer-col a {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-col strong {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-page {
  min-height: 72vh;
  background: var(--paper);
  padding: 100px 0;
}

.content-shell {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

.content-shell h1 {
  max-width: 860px;
  font-size: 58px;
}

.content-shell h2 {
  margin-top: 44px;
  font-size: 30px;
}

.content-shell p,
.content-shell li {
  color: var(--muted);
  font-size: 17px;
}

.people-grid,
.faq-list {
  display: grid;
  gap: 26px;
  margin-top: 52px;
}

.person,
.faq-item,
.partner-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.person .role {
  margin-top: -10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

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

  .nav-shell {
    width: calc(100% - 32px);
    gap: 16px;
  }

  .nav-links a:not(.button) {
    display: none;
  }

  .button,
  button {
    min-height: 40px;
    padding: 0 18px;
  }

  .hero {
    min-height: 1320px;
  }

  .hero-inner {
    width: calc(100% - 40px);
    min-height: 1240px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 42px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

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

  .hero-visual {
    width: min(310px, 100%);
    transform: none;
    justify-self: center;
  }

  .workflow {
    min-height: 2666px;
    padding: 88px 0;
  }

  .section-intro {
    margin-bottom: 64px;
  }

  .step-grid {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .step-copy:nth-of-type(2),
  .step-copy:nth-of-type(3) {
    order: 0;
  }

  .panel-shot {
    width: min(290px, 100%);
  }

  .why,
  .horizon,
  .waitlist {
    padding: 72px 0;
  }

  .why-grid,
  .cards,
  .footer-grid,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .waitlist-other-field {
    grid-column: auto;
  }

  .why-shell,
  .horizon-shell,
  .footer-grid {
    width: calc(100% - 40px);
  }

  .why-grid {
    gap: 44px;
  }

  .reason {
    grid-template-columns: 42px 1fr;
  }

  .content-shell h1 {
    font-size: 44px;
  }
}
