:root {
  color-scheme: light;
  --ink: #251b18;
  --muted: #6d625d;
  --soft: #f8f1eb;
  --paper: #fffaf6;
  --card: #ffffff;
  --line: #eadbd0;
  --accent: #9f4e45;
  --accent-dark: #6f312c;
  --sage: #63766a;
  --rose: #f3d8cf;
  --shadow: 0 22px 70px rgba(72, 43, 35, 0.12);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(243, 216, 207, 0.75), transparent 30rem),
    linear-gradient(180deg, #fffaf6 0%, #f8f1eb 42%, #fffaf6 100%);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(234, 219, 208, 0.78);
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.header-nav {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--accent-dark);
}

.hero-section,
.content-band,
.footer-cta {
  padding-left: 6vw;
  padding-right: 6vw;
}

.hero-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.3rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.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;
}

.hero-logo {
  width: min(620px, 100%);
  height: auto;
  display: block;
  margin: -2.2rem 0 -0.4rem -1.2rem;
}

h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

p {
  line-height: 1.7;
}

.hero-tagline {
  margin: 1.1rem 0 0;
  font-size: clamp(1.55rem, 4vw, 3.35rem);
  line-height: 1.08;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero-subtagline {
  margin: 0.75rem 0 0;
  color: var(--sage);
  font-size: clamp(1.1rem, 2vw, 1.48rem);
  font-weight: 800;
  line-height: 1.35;
}

.hero-description {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions,
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.15rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fffaf6;
  box-shadow: 0 14px 34px rgba(159, 78, 69, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  background: var(--ink);
  color: #fffaf6;
}

.button-outline {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
}

.button-small {
  min-height: 40px;
  padding: 0.62rem 0.9rem;
  font-size: 0.9rem;
}

.hero-panel,
.status-note,
.success-state,
.waitlist-form,
.tally-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(1.4rem, 3vw, 2.25rem);
}

.panel-topline {
  color: var(--sage);
  font-weight: 800;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1.6rem 0;
}

.signal-grid span {
  min-height: 74px;
  display: flex;
  align-items: end;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--accent-dark);
  font-weight: 800;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.content-band {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.section-grid,
.section-heading,
.steps-list,
.form-intro,
.waitlist-form,
.success-state,
.tally-shell {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.large-copy,
.stacked-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.stacked-copy p:first-child {
  margin-top: 0;
}

.stacked-copy p:last-child {
  margin-bottom: 0;
}

.concept-band {
  background: rgba(255, 255, 255, 0.44);
}

.section-heading {
  text-align: center;
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.compact {
  margin-bottom: 2rem;
}

.archetype-grid {
  width: min(1160px, 100%);
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.archetype-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.archetype-card h3 {
  color: var(--accent-dark);
}

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

.steps-band {
  background: linear-gradient(180deg, rgba(99, 118, 106, 0.11), rgba(255, 250, 246, 0));
}

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

.steps-list li {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.1rem;
  border-left: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.5);
}

.steps-list span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf6;
  font-weight: 800;
}

.steps-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.status-note {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
}

.status-note p:last-child {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.form-band {
  background: rgba(255, 255, 255, 0.42);
}

.form-intro {
  max-width: 760px;
  text-align: center;
}

.form-intro p:last-child {
  color: var(--muted);
}

.waitlist-form,
.success-state,
.tally-shell {
  margin-top: 2rem;
  padding: clamp(1rem, 3vw, 1.8rem);
}

.tally-shell iframe {
  display: block;
  border-radius: 8px;
  background: var(--paper);
}

fieldset {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 1rem;
  font-size: 1.08rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.78rem 0.82rem;
  background: var(--paper);
  color: var(--ink);
}

input:focus,
select:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(159, 78, 69, 0.26);
  outline-offset: 3px;
}

.wide {
  grid-column: 1 / -1;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.checkbox-grid label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 700;
}

.checkbox-grid input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.form-submit {
  width: 100%;
}

.privacy-note,
.form-error {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-error {
  min-height: 1.2rem;
  margin: 1rem 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.success-state {
  text-align: center;
}

.success-state p:last-of-type {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.success-actions {
  justify-content: center;
}

.footer-cta {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  background: var(--ink);
  color: #fffaf6;
  text-align: center;
}

.footer-cta p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}

@media (max-width: 920px) {
  .hero-inner,
  .section-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

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

  .steps-list li {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    padding: 0 1rem;
  }

  .header-nav,
  .site-header .button {
    display: none;
  }

  .hero-section,
  .content-band,
  .footer-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-logo {
    width: min(100%, 460px);
    margin: -1.2rem auto -0.2rem;
  }

  .hero-actions,
  .success-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .signal-grid,
  .archetype-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
