:root {
  --ink: #241f27;
  --muted: #6e6571;
  --paper: #fbf8fb;
  --paper-2: #f3edf4;
  --plum: #4b2f50;
  --plum-2: #6e4d75;
  --orchid: #b889c3;
  --lavender: #ddd0e4;
  --sage: #dce7df;
  --line: rgba(36, 31, 39, 0.12);
  --shadow: 0 24px 70px rgba(59, 42, 63, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

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

.narrow { max-width: 820px; }
.section-block { padding: 112px 0; }
.band { background: var(--plum); color: #fff; }

.site-header {
  width: min(calc(100% - 32px), 1220px);
  margin: 16px auto 0;
  padding: 14px 18px;
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(251, 248, 251, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(75, 47, 80, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(57, 40, 60, 0.06);
}

.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: var(--plum);
  font-family: "Fraunces", serif;
  font-size: 15px;
  letter-spacing: .02em;
}
.brand-text { letter-spacing: -0.02em; }

.site-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { color: #5b515e; }
.site-nav > a:not(.nav-cta):hover { color: var(--plum); }
.nav-cta {
  padding: 10px 15px;
  color: #fff;
  background: var(--plum);
  border-radius: 999px;
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 4px; background: var(--ink); }

.hero {
  min-height: 820px;
  padding: 90px 0 70px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 70px;
}

.eyebrow, .section-label, .card-kicker {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--plum-2);
}
.section-label.light { color: #d9c5df; }

.hero h1, h2, .portrait-card strong, blockquote, .book-mockup strong {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  margin: 18px 0 10px;
  max-width: 700px;
  font-size: clamp(56px, 7vw, 92px);
  line-height: .98;
}
.hero-subhead {
  margin: 0 0 24px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.18;
  color: var(--plum-2);
  font-family: "Fraunces", Georgia, serif;
}
.hero-body { max-width: 650px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 16px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--plum); box-shadow: 0 12px 25px rgba(75, 47, 80, .18); }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.6); }
.button-light { color: var(--plum); background: #fff; }
.microcopy { font-size: 12px; color: #8a818c; }

.hero-art {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit { position: absolute; border-radius: 50%; filter: blur(1px); }
.orbit-one {
  width: 430px; height: 430px;
  background: radial-gradient(circle at 30% 30%, #eadff0, #c8a9d1 46%, transparent 68%);
}
.orbit-two {
  width: 520px; height: 520px;
  border: 1px solid rgba(75, 47, 80, .14);
  transform: rotate(-14deg) scaleY(.74);
}
.portrait-card {
  z-index: 2;
  width: min(360px, 80%);
  aspect-ratio: .78;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.2), transparent 26%),
    linear-gradient(145deg, #6f4c75, #39273d 72%);
  border-radius: 40px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}
.portrait-kicker, .portrait-caption { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .76; }
.portrait-card strong { font-size: clamp(42px, 5vw, 62px); line-height: .94; }
.floating-note {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  padding: 14px 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(75,47,80,.08);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(60,43,64,.11);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}
.note-one { left: 0; top: 26%; transform: rotate(-4deg); }
.note-two { right: 0; bottom: 19%; transform: rotate(4deg); }

.manifesto { padding: 110px 0; }
.manifesto h2, .section-heading h2, .parent-copy h2, .about-copy h2, .book-copy h2, .launch-inner h2 {
  margin: 14px 0 22px;
  font-size: clamp(40px, 5vw, 67px);
  line-height: 1.02;
}
.manifesto p { font-size: 19px; color: #e6dce7; }
.manifesto-highlight { font-family: "Fraunces", serif; font-size: 28px !important; color: #fff !important; }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p { max-width: 680px; color: var(--muted); font-size: 18px; }

.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pillar-card {
  min-height: 390px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-number { font: 600 12px/1 "DM Sans", sans-serif; color: var(--orchid); }
.pillar-card h3 { margin: 60px 0 10px; font: 600 30px/1.05 "Fraunces", serif; }
.pillar-card p { color: var(--muted); font-size: 15px; }
.pillar-word { margin-top: auto; padding-top: 22px; letter-spacing: .16em; font-size: 11px; font-weight: 700; color: var(--plum-2); }

.split-section { display: grid; grid-template-columns: 1.08fr .92fr; gap: 18px; }
.split-card { min-height: 590px; padding: clamp(30px, 5vw, 58px); border-radius: var(--radius-lg); }
.split-dark { color: #fff; background: var(--plum); }
.split-light { background: linear-gradient(145deg, #efe6f1, #f8f4f8); border: 1px solid var(--line); }
.split-card h2 { margin: 16px 0 24px; font-size: clamp(42px, 5vw, 65px); line-height: 1.02; }
.split-dark p { color: #e4dae5; font-size: 18px; }
.clean-list { list-style: none; padding: 0; margin: 32px 0 0; }
.clean-list li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid rgba(255,255,255,.12); }
.clean-list li::before { content: "↗"; position: absolute; left: 0; color: #ceb5d5; }
.quote-mark { font: 600 90px/1 "Fraunces", serif; color: var(--orchid); }
blockquote { margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.04; color: var(--plum); }
.mini-framework { margin-top: 70px; display: flex; flex-wrap: wrap; gap: 9px; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: .1em; color: var(--plum-2); }
.mini-framework b { opacity: .4; }

.parent-section { background: #efe7f0; color: var(--ink); }
.parent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.parent-copy .large-copy { font: 500 27px/1.25 "Fraunces", serif; color: var(--plum); }
.parent-copy > p:not(.large-copy) { color: var(--muted); }
.parent-topics { border-top: 1px solid var(--line); }
.topic { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.topic span { color: var(--orchid); font-size: 12px; }
.topic strong { font-size: 16px; }
.confidentiality-card { margin-top: 70px; padding: 38px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; background: #fff; border-radius: 24px; }
.confidentiality-card h3 { margin: 8px 0 0; font: 600 30px/1.15 "Fraunces", serif; }
.confidentiality-card p { margin: 0; color: var(--muted); }

.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.care-card { padding: 28px; min-height: 245px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.care-card h3 { font: 600 26px/1.1 "Fraunces", serif; margin: 0 0 14px; }
.care-card p { color: var(--muted); }
.clinical-note { max-width: 870px; margin: 30px 0 0; color: var(--muted); font-size: 14px; }

.about-section { background: #251d28; color: #fff; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: center; }
.about-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 26%, rgba(221,208,228,.28), transparent 26%),
    linear-gradient(145deg, #654a6b, #362739);
}
.about-monogram { font: 600 clamp(90px, 12vw, 160px)/1 "Fraunces", serif; opacity: .12; }
.about-visual span { position: absolute; bottom: 24px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.1); color: #ddd1e0; font-size: 11px; letter-spacing: .08em; }
.about-copy p { color: #d8cfd9; font-size: 17px; }
.credential-line { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.credential-line span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 11px; color: #ede5ee; }

.book-section { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: center; }
.book-mockup {
  width: min(340px, 100%);
  aspect-ratio: .68;
  padding: 34px;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: linear-gradient(150deg, #7f5e87, #402c44 70%);
  border-radius: 5px 18px 18px 5px;
  box-shadow: 12px 18px 45px rgba(59, 42, 63, .22);
}
.book-mockup span { font-size: 10px; letter-spacing: .18em; opacity: .75; }
.book-mockup strong { margin-top: 70px; font-size: clamp(42px, 5vw, 63px); line-height: .9; }
.book-mockup small { margin-top: auto; font-size: 12px; line-height: 1.4; opacity: .8; }
.book-copy p { color: var(--muted); font-size: 18px; }
.book-note { padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px !important; }

.launch-section { background: linear-gradient(135deg, #4b2f50, #624268); }
.launch-inner { padding: 90px 0; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.launch-inner p { max-width: 680px; color: #e4d9e6; font-size: 17px; }

.faq-list { max-width: 900px; }
details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 24px 40px 24px 0; position: relative; font: 600 21px/1.3 "Fraunces", serif; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 21px; font: 400 25px/1 "DM Sans", sans-serif; color: var(--plum-2); }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 50px 24px 0; max-width: 760px; color: var(--muted); }

.site-footer { padding: 68px 0 24px; color: #d9d0da; background: #18131a; }
.footer-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
.footer-brand .brand-mark { background: #6d4d73; }
.footer-grid p { font-size: 13px; color: #aaa0ac; }
.footer-legal { max-width: 720px; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; color: #847b86; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .pillar-card { transition: none; }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(251,248,251,.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; gap: 10px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 560px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section, .parent-grid, .about-grid, .book-section { grid-template-columns: 1fr; }
  .split-card { min-height: auto; }
  .confidentiality-card { grid-template-columns: 1fr; gap: 20px; }
  .care-grid { grid-template-columns: 1fr; }
  .care-card { min-height: auto; }
  .about-visual { min-height: 420px; }
  .book-mockup { margin: 0 auto; }
  .launch-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 640px) {
  .section-shell { width: min(calc(100% - 28px), var(--max)); }
  .section-block { padding: 78px 0; }
  .site-header { width: calc(100% - 20px); top: 8px; margin-top: 8px; }
  .brand-text { font-size: 14px; }
  .hero { min-height: auto; padding-top: 58px; }
  .hero h1 { font-size: 52px; }
  .hero-subhead { font-size: 27px; }
  .hero-art { min-height: 480px; }
  .portrait-card { width: 77%; border-radius: 30px; }
  .floating-note { max-width: 160px; font-size: 11px; }
  .note-one { left: -4px; }
  .note-two { right: -4px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 310px; }
  .pillar-card h3 { margin-top: 42px; }
  .manifesto { padding: 78px 0; }
  .manifesto-highlight { font-size: 24px !important; }
  .split-card { padding: 32px 24px; border-radius: 24px; }
  .mini-framework { margin-top: 40px; }
  .parent-grid { gap: 38px; }
  .confidentiality-card { padding: 26px; }
  .about-grid { gap: 38px; }
  .book-section { gap: 45px; }
  .book-mockup { width: 275px; }
  .launch-inner { padding: 72px 0; }
}
