:root {
  --ink: #183127;
  --ink-soft: #4b6258;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --sage: #dce5d8;
  --sage-dark: #78927f;
  --line: rgba(24, 49, 39, 0.14);
  --max: 1180px;
  --radius: 28px;
}

* {
  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.6;
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.nav-links > a:not(.button) {
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 650;
  font-size: 14px;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 80px 0 110px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero h1,
.section h2,
.statement h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 7vw, 100px);
}

.hero h1 em {
  display: block;
  color: var(--sage-dark);
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin: 32px 0;
  color: var(--ink-soft);
  font-size: 18px;
}

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

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 650;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-note {
  max-width: 580px;
  display: flex;
  gap: 18px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.hero-note-mark {
  font-family: Georgia, serif;
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(390px, 86%);
  aspect-ratio: 0.76;
  padding: 42px;
  border-radius: 180px 180px 36px 36px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 38px 90px rgba(24, 49, 39, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card > span {
  font-size: 12px;
  letter-spacing: 0.2em;
}

.hero-card strong {
  font-family: Georgia, serif;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.95;
}

.hero-card small {
  max-width: 180px;
  opacity: 0.7;
}

.hero-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 520px;
  height: 520px;
}

.hero-orbit-two {
  width: 650px;
  height: 650px;
}

.statement {
  padding: 100px 0;
  background: var(--cream);
}

.statement-grid {
  display: grid;
  grid-template-columns: 80px 1.3fr 0.7fr;
  gap: 50px;
  align-items: start;
}

.section-number {
  margin: 10px 0 0;
  color: var(--sage-dark);
  font-size: 13px;
}

.statement h2 {
  margin: 0;
  font-size: clamp(45px, 6vw, 78px);
}

.statement-grid > p:last-child {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.section {
  padding: 120px 0;
}

.section-soft {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.book-copy h2,
.split-grid h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
}

.section-heading > p,
.book-copy > p,
.split-grid article > p,
.about-copy > p,
.contact-grid > div > p {
  color: var(--ink-soft);
}

.program-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 300px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.program-main {
  padding: 64px;
}

.program-label {
  margin: 0 0 60px;
  opacity: 0.55;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.program-main h3 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.program-main > p {
  max-width: 650px;
  margin: 28px 0;
  opacity: 0.72;
}

.program-price {
  min-height: 100%;
  padding: 48px;
  background: var(--sage);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-price span {
  font-size: 13px;
}

.program-price strong {
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 400;
}

.program-price p {
  margin: 0;
  color: var(--ink-soft);
}

.book-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.book-cover {
  aspect-ratio: 0.72;
  max-width: 440px;
  padding: 44px;
  background: var(--sage);
  border-radius: 4px 80px 4px 4px;
  box-shadow: 0 30px 80px rgba(24, 49, 39, 0.13);
  display: flex;
  flex-direction: column;
}

.book-cover span {
  font-size: 11px;
  letter-spacing: 0.2em;
}

.book-cover h3 {
  margin: auto 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  line-height: 0.95;
}

.book-cover p {
  margin: 0;
}

.clean-list {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.clean-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.clean-list li::before {
  content: "↳";
  margin-right: 12px;
  color: var(--sage-dark);
}

.price-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.price-row > div {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 10px;
}

.price-row span {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--ink-soft);
}

.price-row strong {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 400;
}

.price-row del {
  color: var(--ink-soft);
}

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

.experience-card {
  min-height: 370px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.experience-card > span {
  color: var(--sage-dark);
  font-size: 12px;
}

.experience-card h3 {
  margin: 70px 0 18px;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}

.experience-card p {
  color: var(--ink-soft);
}

.experience-card strong {
  margin-top: auto;
}

.section-cta {
  margin-top: 38px;
  text-align: center;
}

.split-section {
  background: var(--ink);
  color: white;
}

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

.split-grid article {
  padding: 30px 70px 30px 0;
}

.split-grid article + article {
  padding-left: 70px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.split-grid article > p {
  color: rgba(255, 255, 255, 0.62);
}

.split-grid .eyebrow {
  color: #a9c0ae;
}

.service-meta {
  margin: 46px 0 24px;
  display: flex;
  flex-direction: column;
}

.service-meta strong {
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.service-meta span {
  opacity: 0.55;
  font-size: 13px;
}

.about {
  background: var(--sage);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  min-height: 500px;
  padding: 44px;
  border-radius: 200px 200px 30px 30px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-number {
  font-family: Georgia, serif;
  font-size: clamp(120px, 15vw, 190px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.about-visual p {
  max-width: 220px;
  margin: 35px 0 0;
  color: var(--ink-soft);
}

.about-copy > p {
  max-width: 700px;
}

.contact {
  padding-bottom: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
}

.contact-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card span {
  color: var(--ink-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact-card > a {
  display: block;
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
}

.contact-divider {
  height: 1px;
  margin: 34px 0;
  background: var(--line);
}

.medical-note {
  padding: 32px 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 12px;
}

.medical-note p {
  max-width: 900px;
  margin: 0;
}

footer {
  padding: 34px 0;
  background: var(--ink);
  color: white;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
}

footer .brand-mark {
  background: var(--paper);
  color: var(--ink);
}

footer p {
  opacity: 0.6;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-grid,
  .statement-grid,
  .section-heading,
  .program-card,
  .book-grid,
  .split-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .book-grid,
  .about-grid,
  .contact-grid {
    gap: 60px;
  }

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

  .hero-orbit-one {
    width: 420px;
    height: 420px;
  }

  .hero-orbit-two {
    width: 510px;
    height: 510px;
  }

  .statement-grid {
    gap: 24px;
  }

  .section-heading {
    gap: 20px;
  }

  .program-price {
    min-height: 230px;
  }

  .cards-three {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 300px;
  }

  .split-grid article,
  .split-grid article + article {
    padding: 50px 0;
  }

  .split-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

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

  .hero-actions,
  .price-row,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-card {
    width: 82%;
    padding: 32px;
  }

  .hero-orbit-one {
    width: 350px;
    height: 350px;
  }

  .hero-orbit-two {
    width: 420px;
    height: 420px;
  }

  .section,
  .statement {
    padding: 80px 0;
  }

  .program-main,
  .program-price {
    padding: 36px;
  }

  .program-label {
    margin-bottom: 40px;
  }

  .book-cover {
    max-width: none;
  }

  .price-row > div {
    margin-bottom: 10px;
  }

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

  .contact-card {
    padding: 28px;
  }
}
