:root {
  --paper: #f4f1ec;
  --paper-soft: #e8e2d6;
  --sand: #cbbba0;
  --sage: #a8b59a;
  --moss: #5b6b57;
  --moss-dark: #3f503e;
  --ink: #202729;
  --muted: #526050;
  --line: rgba(32, 39, 41, .14);
  --shadow: 0 18px 40px rgba(46, 45, 38, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 2rem, 1080px);
  margin-inline: auto;
}

.component {
  position: relative;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  padding-block: 1.25rem;
}

.header-inner,
.footer-grid {
  display: flex;
  align-items: center;
}

.header-inner {
  align-items: flex-start;
}

.footer-grid {
  justify-content: space-between;
  gap: 1.5rem;
}

.primary-brand-logo {
  width: clamp(270px, 30vw, 380px);
  height: auto;
}

.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active,
.brand * {
  text-decoration: none !important;
}

.mobile-brand-mark {
  display: none;
}

.header-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: .95rem;
}

.header-links {
  margin-top: 6.25rem;
  margin-left: auto;
  margin-right: 0;
  padding: .65rem .85rem;
  background: rgba(244, 241, 236, .5);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(46, 45, 38, .08);
  backdrop-filter: blur(10px);
  font-size: 1.04rem;
  font-weight: 750;
}

.header-links a,
.footer-links a {
  text-decoration: none;
}

.header-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: .25em;
}

.hero {
  min-height: 880px;
  overflow: hidden;
  padding: 21.5rem 0 4.5rem;
  background: radial-gradient(circle at 16% 18%, #fffaf3 0, var(--paper) 54%, var(--paper-soft) 130%);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(244, 241, 236, .9) 42%, rgba(244, 241, 236, 0) 100%);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 45%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(300px, 460px);
  gap: clamp(2rem, 7vw, 6.5rem);
  align-items: start;
}

.hero-copy {
  grid-column: 1;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1.55rem;
  padding: .28rem .82rem;
  color: var(--moss-dark);
  border: 1px solid rgba(63, 80, 62, .48);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.85rem, 4.45vw, 3.8rem);
}

.lede {
  margin: 1.25rem 0 .85rem;
  max-width: 43ch;
  color: var(--moss-dark);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 750;
}

.hero-copy p:not(.eyebrow):not(.lede) {
  max-width: 47ch;
  margin: 0;
  font-size: 1.04rem;
}

.waitlist-card {
  grid-column: 1;
  width: min(100%, 490px);
  margin-top: 2rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 253, 249, .82);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.waitlist-card h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.field {
  display: grid;
  gap: .45rem;
  margin-bottom: 1rem;
  font-size: .9rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(32, 39, 41, .26);
  border-radius: 6px;
  outline: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  margin: -.1rem 0 1rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.35;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: .08rem;
  accent-color: var(--moss);
  flex: 0 0 auto;
}

.field input:focus,
.field select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(91, 107, 87, .18);
}

.waitlist-card button,
.button-secondary {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .85rem 1.1rem;
  color: #fff;
  background: var(--moss);
  border: 1px solid var(--moss);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.waitlist-card button:hover,
.button-secondary:hover {
  background: var(--moss-dark);
}

.privacy-note,
.form-status,
.success-note {
  margin: .75rem 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .86rem;
}

.success-note {
  margin-top: .8rem;
  text-align: left;
}

.privacy-note::before {
  content: "";
  display: inline-block;
  width: .9rem;
  height: .9rem;
  margin-right: .35rem;
  vertical-align: -.12rem;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 9h-1V7A4 4 0 0 0 8 7v2H7a2 2 0 0 0-2 2v9h14v-9a2 2 0 0 0-2-2Zm-7-2a2 2 0 0 1 4 0v2h-4V7Zm7 11H7v-7h10v7Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.value-band {
  padding: 1.75rem 0 1.5rem;
}

.value-band .shell {
  padding: 1.5rem clamp(1rem, 3vw, 2.25rem);
  background: rgba(232, 226, 214, .62);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
}

.value-band h2 {
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1.25rem;
}

.value-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .75rem;
  min-height: 120px;
  padding: .5rem 1.2rem;
  text-align: center;
}

.value-item + .value-item {
  border-left: 1px solid rgba(32, 39, 41, .18);
}

.value-item svg {
  width: 54px;
  color: var(--moss);
  fill: currentColor;
}

.value-item p {
  max-width: 18ch;
  margin: 0;
  font-size: .95rem;
}

.practitioner {
  padding: 1rem 0 2rem;
}

.practitioner-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: 260px;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: linear-gradient(100deg, rgba(244, 241, 236, .72), rgba(232, 226, 214, .7));
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 8px;
}

.practitioner-illustration {
  width: 100%;
  height: auto;
  align-self: end;
  object-fit: contain;
}

.practitioner-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.subhead {
  margin: .45rem 0 .65rem;
  color: var(--moss-dark);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 800;
}

.practitioner-copy p:not(.subhead) {
  max-width: 52ch;
  margin: 0 0 1.4rem;
}

.button-secondary {
  width: fit-content;
  min-width: 290px;
  color: var(--moss-dark);
  background: transparent;
}

.button-secondary:hover {
  color: #fff;
}

.site-footer {
  margin-top: 1rem;
  padding: 1.4rem 0;
  color: #fff;
  background: linear-gradient(90deg, #5b6b57, #3f503e);
}

.footer-brand img {
  width: auto;
  height: 58px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: #fff;
  text-decoration: none;
}

.footer-wordmark {
  display: grid;
  gap: .08rem;
  line-height: 1;
}

.footer-wordmark strong {
  display: flex;
  align-items: baseline;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0;
}

.footer-wordmark .word-large {
  font-size: 1.08em;
  font-weight: 500;
}

.footer-wordmark .word-small {
  font-size: .62em;
  font-weight: 700;
}

.footer-wordmark small {
  color: rgba(255, 255, 255, .86);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.copyright {
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: rgba(244, 241, 236, .96);
    border-bottom: 1px solid var(--line);
  }

  .header-links {
    margin-top: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 2.5rem;
    background:
      linear-gradient(180deg, rgba(244, 241, 236, .94) 0%, rgba(244, 241, 236, .92) 42%, rgba(244, 241, 236, .99) 100%),
      var(--paper);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(64vw, 430px);
    margin-bottom: 1.75rem;
  }

  .hero-media::before {
    display: none;
  }

  .hero-media img {
    object-position: 50% 45%;
  }

  .hero-grid,
  .practitioner-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-card {
    margin-top: 1.5rem;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1rem;
  }

  .value-item + .value-item {
    border-left: 0;
  }

  .value-item:nth-child(even) {
    border-left: 1px solid rgba(32, 39, 41, .18);
  }

  .footer-grid {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - .9rem, 1080px);
  }

  .header-inner {
    display: grid;
    justify-items: center;
    gap: .65rem;
  }

  .header-links {
    display: flex;
    justify-content: center;
    gap: .75rem;
    width: fit-content;
    max-width: 100%;
    margin-top: 0;
    padding: .48rem .65rem;
    font-size: .84rem;
    white-space: nowrap;
  }

  .primary-brand-logo {
    display: none !important;
  }

  .mobile-brand-mark {
    display: grid !important;
    justify-items: center;
    width: min(96vw, 390px);
    gap: .1rem;
    color: var(--ink);
    text-decoration: none !important;
  }

  .mobile-brand-mark > img {
    display: block;
    width: min(54vw, 205px);
    height: auto;
    margin-bottom: .15rem;
  }

  .mobile-wordmark {
    display: grid;
    justify-items: center;
    gap: .1rem;
    color: var(--ink);
    line-height: 1;
    text-decoration: none !important;
  }

  .mobile-wordmark strong {
    display: flex;
    align-items: baseline;
    font-size: clamp(2.3rem, 9.8vw, 2.8rem);
    letter-spacing: 0;
    text-decoration: none !important;
  }

  .mobile-wordmark .word-large {
    font-weight: 500;
  }

  .mobile-wordmark .word-small {
    font-size: .54em;
    font-weight: 800;
  }

  .mobile-wordmark small {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none !important;
  }

  .hero {
    padding-top: 1.25rem;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-copy p:not(.eyebrow):not(.lede) {
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero-media {
    height: 64vw;
    min-height: 260px;
  }

  .waitlist-card {
    padding: 1rem;
  }

  .waitlist-card h2,
  .practitioner-copy h2 {
    font-size: 2rem;
  }

  .subhead {
    font-size: 1.05rem;
  }

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

  .value-item {
    min-height: auto;
  }

  .value-item:nth-child(even) {
    border-left: 0;
  }

  .value-item + .value-item {
    border-top: 1px solid rgba(32, 39, 41, .14);
    padding-top: 1.15rem;
  }

  .practitioner-illustration {
    max-width: 520px;
    margin-inline: auto;
  }

  .button-secondary {
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
