:root {
  --ink: #172116;
  --muted: #5b6658;
  --leaf: #5f7b39;
  --deep-leaf: #30481f;
  --gold: #b89538;
  --clay: #a75e3b;
  --paper: #fffdf7;
  --mist: #eef1e8;
  --line: #d9ddcf;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 33, 22, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid rgba(217, 221, 207, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--deep-leaf);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: min(830px, calc(92vh - 73px));
  padding: clamp(36px, 5vw, 70px) clamp(20px, 4vw, 72px) clamp(28px, 4vw, 48px);
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.8vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--deep-leaf);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--deep-leaf);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin: 40px 0 0;
}

.hero-proof div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.hero-proof dt {
  color: var(--deep-leaf);
  font-size: 1.8rem;
  font-weight: 790;
}

.hero-proof dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(24px, 5vw, 48px);
  background:
    linear-gradient(145deg, rgba(238, 241, 232, 0.94), rgba(255, 253, 247, 0.74)),
    var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid rgba(184, 149, 56, 0.38);
  border-radius: 50%;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(440px, 86%);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(48, 72, 31, 0.14);
}

.ritual-card {
  position: absolute;
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 32px);
  z-index: 2;
  width: min(280px, calc(100% - 28px));
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(23, 33, 22, 0.12);
}

.ritual-card strong,
.ritual-card span {
  display: block;
}

.ritual-card strong {
  margin: 5px 0;
  font-size: 1.05rem;
}

.card-label {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 780;
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 4vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.concept-grid article {
  min-height: 238px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.concept-number {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 790;
}

.concept-grid p,
.benefits-copy p,
.benefits-list p,
.steps p,
.faq-list p,
.waitlist-copy p,
.form-note,
.form-status,
.ritual-card span:last-child {
  color: var(--muted);
}

.benefits-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  background: var(--mist);
}

.benefits-copy {
  position: sticky;
  top: 104px;
}

.benefits-copy p {
  margin-top: 18px;
  font-size: 1.08rem;
}

.benefits-list {
  display: grid;
  gap: 14px;
}

.benefits-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 221, 207, 0.9);
  border-radius: 8px;
}

.benefits-list span {
  color: var(--deep-leaf);
  font-weight: 790;
}

.benefits-list p {
  margin: 8px 0 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  background: var(--deep-leaf);
  color: var(--white);
  border-radius: 50%;
  font-weight: 760;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 4vw, 72px);
  background: var(--deep-leaf);
  color: var(--white);
}

.waitlist-copy {
  max-width: 680px;
}

.waitlist-copy .eyebrow {
  color: #dcc77b;
}

.waitlist-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(184, 149, 56, 0.25);
  border-color: var(--gold);
}

.form-note,
.form-status {
  margin: 0;
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5em;
  font-weight: 720;
}

.form-status.success {
  color: var(--deep-leaf);
}

.form-status.error {
  color: #9d321f;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  color: var(--deep-leaf);
  font-weight: 780;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(20px, 4vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 940px) {
  .hero,
  .benefits-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .benefits-copy {
    position: static;
  }

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

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.5rem);
  }

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

  .hero-visual {
    min-height: 360px;
    padding-bottom: 112px;
  }

  .hero-visual img {
    width: min(340px, 92%);
  }

  .site-footer {
    flex-direction: column;
  }
}
