:root {
  --forest: #723682;
  --forest-deep: #54235f;
  --forest-soft: #834590;
  --sage: #bf98c8;
  --sage-pale: #f4eaf7;
  --cream: #faf7fc;
  --cream-deep: #eee3f0;
  --sand: #dfb6e4;
  --terracotta: #9b53ab;
  --ink: #302b33;
  --muted: #77717d;
  --line: #e8e0e9;
  --white: #fff;
  --success: #247b5a;
  --danger: #a33f42;
  --shadow: 0 24px 60px rgba(84, 35, 95, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 142px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 200;
  padding: 11px 18px;
  border-radius: 0 0 8px 8px;
  background: var(--forest-deep);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid rgba(155, 83, 171, 0.55); outline-offset: 3px; }

h1, h2, h3 {
  margin-top: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(3.25rem, 6.4vw, 6rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.4rem, 4.8vw, 4.25rem); letter-spacing: -0.045em; }
h3 { font-size: 1.5rem; letter-spacing: -0.025em; }
p { text-wrap: pretty; }

.top-note { background: var(--forest-deep); color: #eadfed; }
.top-note .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}
.top-note span { display: inline-flex; align-items: center; gap: 8px; }
.top-note i { width: 6px; height: 6px; border-radius: 50%; background: #dfb6e4; }
.top-note a { color: #fff; font-weight: 700; text-decoration: none; }
.top-note a:hover { text-decoration: underline; }

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 60;
}
.site-header {
  position: relative;
  border-bottom: 1px solid rgba(114, 54, 130, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--forest-deep); text-decoration: none; }
.brand > span:last-child { line-height: 1.1; }
.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: #f4eef6;
  color: var(--forest-deep);
  font: 1.25rem/1 Georgia, serif;
}
.brand strong { display: block; font: 500 1.16rem/1 Georgia, serif; letter-spacing: -0.02em; }
.brand small { display: block; margin-top: 6px; color: var(--muted); font-size: 0.55rem; font-weight: 700; letter-spacing: 0.16em; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a { color: #6f6873; font-size: 0.78rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.main-nav > a:not(.button)::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 3px;
  background: var(--terracotta);
  content: "";
  transition: width 180ms ease;
}
.main-nav > a:hover,
.main-nav > a.active { color: var(--forest-deep); }
.main-nav > a:hover::after,
.main-nav > a.active::after { width: 100%; }
.main-nav .nav-cta { color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; margin: 5px auto; background: var(--forest-deep); transition: transform 180ms, opacity 180ms; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 22px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(84, 35, 95, 0.13); }
.button-primary { border-color: var(--forest); background: var(--forest); color: #fff; }
.button-primary:hover { background: var(--forest-deep); }
.button-outline { background: #fff; }
.button-light { border-color: #fff; background: #fff; color: var(--forest-deep); }
.button-ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.button-large { min-height: 54px; padding-inline: 28px; }
.button-wide { width: 100%; }
.button:disabled { opacity: 0.55; transform: none; cursor: wait; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest-deep);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  background: transparent;
  color: var(--forest-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow i { width: 20px; height: 1px; background: var(--terracotta); }
.eyebrow-light { color: #eadfed; }
.eyebrow-light i { background: var(--sand); }

.hero { position: relative; overflow: hidden; padding: 84px 0 66px; background: var(--cream); }
.hero::before {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(114, 54, 130, 0.09);
  border-radius: 50%;
  content: "";
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr); gap: 70px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; margin: 21px 0 26px; }
.hero-intro { max-width: 630px; margin: 0 0 34px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 56px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(114, 54, 130, 0.18);
  list-style: none;
}
.hero-facts li { padding-right: 18px; }
.hero-facts li + li { padding-left: 20px; border-left: 1px solid rgba(114, 54, 130, 0.18); }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { color: var(--forest-deep); font: 500 1rem Georgia, serif; }
.hero-facts span { margin-top: 5px; color: var(--muted); font-size: 0.69rem; }

.hero-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 220px 220px 22px 22px;
  background: var(--forest);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-art::before {
  position: absolute;
  inset: 20px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 200px 200px 12px 12px;
  content: "";
}
.hero-shape { position: absolute; z-index: -2; border-radius: 50%; }
.hero-shape-one { width: 330px; height: 330px; right: -80px; top: 60px; background: #9b53ab; }
.hero-shape-two { width: 250px; height: 250px; left: -90px; bottom: -55px; background: #dfb6e4; opacity: 0.92; }
.hero-message { position: absolute; top: 158px; left: 62px; right: 58px; color: #fff; }
.hero-message > span { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.18em; }
.hero-message > strong { display: block; margin: 20px 0; font: 500 clamp(2.4rem, 4vw, 3.8rem)/1.05 Georgia, serif; letter-spacing: -0.045em; }
.hero-message p { max-width: 345px; color: #eadfed; font-size: 0.84rem; }
.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  min-width: 225px;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 15px 40px rgba(54, 22, 61, 0.2);
  color: var(--forest-deep);
  backdrop-filter: blur(10px);
}
.floating-card > div { min-width: 0; }
.floating-card-top { right: 27px; top: 36px; }
.floating-card-bottom { left: 28px; bottom: 30px; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: var(--muted); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; }
.floating-card strong { font-size: 0.74rem; }
.status-dot { width: 10px; height: 10px; flex: 0 0 10px; border: 3px solid #f0def3; border-radius: 50%; background: var(--success); box-sizing: content-box; }
.line-icon { position: relative; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: var(--cream); }
.line-icon::before, .line-icon::after { position: absolute; top: 13px; width: 7px; height: 7px; border: 1.5px solid var(--forest); content: ""; }
.line-icon::before { left: 7px; border-radius: 50%; background: var(--forest); }
.line-icon::after { right: 7px; border-radius: 2px; }
.hero-botanical { position: absolute; right: 40px; bottom: 22px; width: 150px; height: 145px; opacity: 0.42; }
.hero-botanical::before { position: absolute; left: 72px; bottom: 0; width: 1px; height: 140px; background: #fff; content: ""; transform: rotate(12deg); }
.hero-botanical i { position: absolute; width: 72px; height: 27px; border: 1px solid #fff; border-radius: 100% 0 100% 0; }
.hero-botanical i:nth-child(1) { left: 13px; top: 27px; transform: rotate(25deg); }
.hero-botanical i:nth-child(2) { right: 1px; top: 53px; transform: rotate(33deg) scaleX(-1); }
.hero-botanical i:nth-child(3) { left: 7px; top: 83px; transform: rotate(5deg); }
.hero-botanical i:nth-child(4) { right: 8px; top: 106px; transform: rotate(14deg) scaleX(-1); }

.trust-bar { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid article { display: grid; grid-template-columns: 34px 1fr; gap: 14px; min-height: 126px; padding: 31px 25px; align-items: start; }
.trust-grid article + article { border-left: 1px solid var(--line); }
.trust-grid article > span { color: var(--terracotta); font: italic 0.8rem Georgia, serif; }
.trust-grid strong { display: block; color: var(--forest-deep); font: 500 1rem Georgia, serif; }
.trust-grid p { margin: 5px 0 0; color: var(--muted); font-size: 0.7rem; line-height: 1.45; }

.section { padding: 112px 0; }
.section-heading { max-width: 850px; margin: 0 auto 56px; text-align: center; }
.section-heading h1, .section-heading h2 { margin: 17px 0 16px; }
.section-heading p { max-width: 680px; margin: 0 auto; color: var(--muted); }
.section-heading-split { max-width: none; display: grid; grid-template-columns: 1.05fr 0.75fr; gap: 90px; align-items: end; text-align: left; }
.section-heading-split h2 { margin-bottom: 0; }
.section-heading-split > p { margin: 0 0 8px; }
.section-action { display: flex; justify-content: center; margin-top: 45px; }

.intro-section { overflow: hidden; background: #fff; }
.intro-grid { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr); gap: 82px; align-items: center; }
.portrait-stage { position: relative; width: 100%; max-width: 390px; margin-inline: auto; padding: 0 0 30px 30px; }
.portrait-stage::before { position: absolute; left: 0; bottom: 0; width: 76%; height: 77%; border-radius: 200px 200px 14px 14px; background: var(--sage-pale); content: ""; }
.portrait-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 210px 210px 16px 16px; background: var(--cream); box-shadow: var(--shadow); }
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.portrait-caption {
  position: absolute;
  right: -14px;
  bottom: 8px;
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow);
}
.portrait-caption span, .portrait-caption strong { display: block; }
.portrait-caption span { color: #eadfed; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.16em; }
.portrait-caption strong { margin-top: 6px; font: 500 1.15rem Georgia, serif; }
.intro-copy { max-width: 650px; }
.intro-copy h2 { margin: 20px 0 27px; }
.intro-copy p { color: var(--muted); }
.intro-copy .lead { color: var(--ink); font: 500 1.22rem/1.6 Georgia, serif; }
.credential-row { display: grid; grid-template-columns: repeat(3, 1fr); margin: 36px 0 30px; padding: 24px 0; border-block: 1px solid var(--line); }
.credential-row span + span { padding-left: 22px; border-left: 1px solid var(--line); }
.credential-row strong, .credential-row small { display: block; }
.credential-row strong { color: var(--forest-deep); font: 500 1.3rem Georgia, serif; }
.credential-row small { margin-top: 4px; color: var(--muted); font-size: 0.65rem; }

.services-home { position: relative; overflow: hidden; background: var(--forest); color: #fff; }
.services-home::before { position: absolute; left: -110px; top: 120px; width: 280px; height: 280px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; content: ""; }
.services-home h2 { color: #fff; }
.services-home .section-heading p { color: #eadfed; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card, .benefit-card, .mode-card, .credential-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.info-card { position: relative; display: block; min-height: 235px; padding: 30px; color: inherit; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card:focus-visible { outline: 3px solid var(--sand); outline-offset: 4px; }
.info-card .icon-box, .benefit-card .icon-box {
  display: inline-grid;
  min-width: 40px;
  height: 40px;
  padding-inline: 8px;
  place-items: center;
  border: 1px solid var(--cream-deep);
  border-radius: 50%;
  color: var(--terracotta);
  font: italic 0.75rem Georgia, serif;
}
.info-card h3 { margin: 42px 38px 12px 0; }
.info-card p, .benefit-card p, .mode-card p { color: var(--muted); font-size: 0.82rem; }
.info-card .card-arrow { position: absolute; right: 29px; top: 30px; display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--cream-deep); border-radius: 50%; color: var(--forest); transition: transform 180ms ease, background 180ms ease; }
.info-card:hover .card-arrow, .info-card:focus-visible .card-arrow { transform: translate(3px, -3px); background: var(--cream); }
.services-home .info-card { border-color: rgba(255, 255, 255, 0.14); background: #64306f; }
.services-home .info-card h3 { color: #fff; }
.services-home .info-card p { color: #eadfed; }
.services-home .info-card .icon-box { border-color: rgba(255, 255, 255, 0.25); color: var(--sand); }
.services-home .info-card .card-arrow { border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.services-home .info-card:hover .card-arrow, .services-home .info-card:focus-visible .card-arrow { background: rgba(255, 255, 255, 0.1); }
.services-home .button-light { border-color: #fff; }
.benefit-card { min-height: 190px; padding: 28px; }
.benefit-card h3 { margin: 22px 0 8px; }

.process-section { background: var(--cream); }
.process-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 130px; }
.process-intro h2 { margin: 18px 0 22px; }
.process-intro p { max-width: 450px; margin-bottom: 30px; color: var(--muted); }
.process { margin: 0; padding: 0; counter-reset: steps; list-style: none; }
.process-stacked { display: grid; }
.process-stacked li { position: relative; min-height: 135px; padding: 0 0 38px 86px; counter-increment: steps; }
.process-stacked li:not(:last-child)::before { position: absolute; left: 26px; top: 48px; bottom: 0; width: 1px; background: #d9c6dd; content: ""; }
.process-stacked li::after {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid #ccb6d2;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  font: italic 0.8rem Georgia, serif;
  content: "0" counter(steps);
}
.process-stacked b { color: var(--forest-deep); font: 500 1.45rem Georgia, serif; }
.process-stacked p { max-width: 520px; margin: 8px 0 0; color: var(--muted); font-size: 0.85rem; }
.process-large { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-large li { position: relative; padding: 68px 24px 0; text-align: center; counter-increment: steps; }
.process-large li::before { position: absolute; left: 0; right: 0; top: 25px; height: 1px; background: var(--line); content: ""; }
.process-large li::after { position: absolute; left: calc(50% - 25px); top: 0; display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; content: counter(steps); }
.process-large b { color: var(--forest-deep); font: 500 1.2rem Georgia, serif; }
.process-large p { color: var(--muted); font-size: 0.8rem; }

.modes-section { background: #fff; }
.mode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.mode-card { position: relative; min-height: 315px; overflow: hidden; padding: 46px; display: grid; grid-template-columns: 55px 1fr; gap: 25px; }
.mode-card::after { position: absolute; right: -80px; bottom: -95px; width: 260px; height: 260px; border: 1px solid rgba(114, 54, 130, 0.16); border-radius: 50%; content: ""; }
.mode-card-online { background: var(--sage-pale); }
.mode-card-presential { background: var(--cream); }
.mode-number { color: var(--terracotta); font: italic 0.8rem Georgia, serif; }
.mode-card small { color: var(--muted); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; }
.mode-card h3 { margin: 23px 0 15px; font-size: 2rem; }
.mode-card p { max-width: 380px; margin-bottom: 33px; }
.mode-card .text-link { position: relative; z-index: 2; }
.mode-card h4 { margin-top: 28px; color: var(--forest-deep); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; }
.mode-card .button { width: 100%; margin-top: 20px; }
.mini-map { position: relative; height: 170px; margin: 22px 0 10px; overflow: hidden; border-radius: 14px; background: linear-gradient(30deg, transparent 38%, #d9c6dd 39%, #d9c6dd 42%, transparent 43%), linear-gradient(145deg, #f4eaf7 20%, #faf7fc 21%, #faf7fc 65%, #eadfed 66%); }
.mini-map::before, .mini-map::after { position: absolute; background: #d6bddc; content: ""; }
.mini-map::before { left: 25%; top: 0; width: 10px; height: 100%; transform: rotate(20deg); }
.mini-map::after { top: 58%; left: 0; width: 100%; height: 7px; transform: rotate(-5deg); }
.mini-map span { position: absolute; z-index: 2; left: 48%; top: 42%; display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50% 50% 50% 0; background: var(--forest); color: #fff; font-size: 1.3rem; transform: rotate(-45deg); }

.testimonials-section { background: #faf7fc; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonials blockquote { display: flex; min-height: 320px; margin: 0; padding: 34px; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.stars { color: #9b53ab; font-size: 0.72rem; letter-spacing: 0.18em; }
.testimonials blockquote > p { color: #4d4250; font: 500 1.04rem/1.7 Georgia, serif; }
.testimonials footer { display: grid; gap: 3px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonials footer strong { color: var(--forest-deep); font-size: 0.74rem; }
.testimonials footer small { color: var(--muted); font-size: 0.62rem; }
.testimonials-source { margin: 30px 0 0; text-align: center; }
.testimonials-source a { color: #078f91; font-size: 0.78rem; font-weight: 750; text-decoration: none; }
.testimonials-source a:hover { text-decoration: underline; }

.cta-section { padding-top: 0; background: #faf7fc; }
.cta-panel { position: relative; overflow: hidden; padding: 86px 8%; border-radius: 26px; background: var(--forest); color: #fff; text-align: center; }
.cta-panel::before, .cta-panel::after { position: absolute; width: 280px; height: 280px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 50%; content: ""; }
.cta-panel::before { left: -130px; top: -140px; }
.cta-panel::after { right: -130px; bottom: -150px; }
.cta-panel h2 { max-width: 850px; margin: 20px auto; color: #fff; }
.cta-panel > p { max-width: 660px; margin: 0 auto 32px; color: #eadfed; }
.cta-panel .button-row { position: relative; z-index: 2; justify-content: center; }

.page-hero { position: relative; overflow: hidden; padding: 90px 0; background: var(--cream); }
.page-hero::after { position: absolute; right: -130px; bottom: -190px; width: 420px; height: 420px; border: 1px solid rgba(114, 54, 130, 0.12); border-radius: 50%; content: ""; }
.page-hero.compact { padding: 82px 0 68px; }
.page-hero .split { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.5fr; gap: 80px; align-items: center; }
.page-hero h1 { margin: 20px 0; font-size: clamp(3rem, 5.5vw, 5.2rem); }
.page-hero p { max-width: 700px; color: var(--muted); font-size: 1.05rem; }
.page-hero .section-heading { position: relative; z-index: 1; margin-bottom: 0; }
.page-hero .portrait-wrap { max-width: 330px; }
.prose-grid { display: grid; grid-template-columns: 1.05fr 0.75fr; gap: 75px; align-items: start; }
.prose-grid article p { color: var(--muted); font-size: 1.02rem; }
.credential-card { padding: 36px; background: var(--cream); }
.credential-card h3 { margin-bottom: 24px; }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: 10px 0; padding-left: 24px; color: var(--muted); }
.check-list li::before { position: absolute; left: 0; color: var(--terracotta); content: "○"; }

.section-tint { background: #faf7fc; }
.faq-page { padding-top: 38px; }
.faq-list { max-width: 850px; }
.faq-list details { margin: 12px 0; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.faq-list summary { padding: 22px 24px; color: var(--forest-deep); font: 500 1.05rem Georgia, serif; cursor: pointer; }
.faq-list details p { padding: 0 24px 24px; margin: 0; color: var(--muted); }

.service-details-section { background: #fff; }
.service-details { display: grid; gap: 18px; max-width: 990px; margin: auto; }
.service-detail { display: grid; grid-template-columns: 62px 1fr; gap: 25px; padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, #fff 70%, #faf7fc); scroll-margin-top: 105px; }
.service-detail h2 { margin: 0 0 15px; font-size: 1.8rem; }
.service-detail p { margin: 8px 0; color: var(--muted); }
.service-number { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid #e0cfe4; border-radius: 50%; color: var(--terracotta); font: italic 0.75rem Georgia, serif; }
.service-meta { color: var(--forest-deep) !important; font-size: 0.78rem; font-weight: 750; }
.information-notice { max-width: 990px; margin: 28px auto 0; padding: 20px 24px; border-left: 4px solid var(--terracotta); border-radius: 8px; background: var(--cream); }
.information-notice strong { color: var(--forest-deep); }
.information-notice p { margin: 5px 0 0; color: var(--muted); font-size: 0.8rem; }

.booking-page { padding-top: 38px; }
.booking-shell { padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.booking-shell form { display: grid; grid-template-columns: 1fr 1fr; }
.booking-details, .booking-calendar { padding: 40px; }
.booking-calendar { border-left: 1px solid var(--line); background: #fcf9fd; }
.booking-shell h2, .contact-form h2 { margin: 0 0 8px; font-size: 1.8rem; }
.booking-shell p { color: var(--muted); }
fieldset { margin: 22px 0; padding: 0; border: 0; }
legend, .date-field { margin-bottom: 10px; color: var(--forest-deep); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.choice-row, .slot-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.choice-row label { flex: 1; }
.choice-row input, .slot-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}
.choice-row span, .slot-grid span { display: block; padding: 11px 15px; border: 1px solid var(--line); border-radius: 9px; background: #fff; text-align: center; cursor: pointer; }
.choice-row input:focus-visible + span, .slot-grid input:focus-visible + span { outline: 3px solid rgba(155, 83, 171, 0.45); }
.choice-row input:checked + span, .slot-grid input:checked + span { border-color: var(--forest); background: var(--sage-pale); color: var(--forest); font-weight: 750; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.span-2 { grid-column: 1 / -1; }
label { display: grid; gap: 7px; color: var(--forest-deep); font-size: 0.74rem; font-weight: 700; }
input, textarea, select { width: 100%; padding: 12px 13px; border: 1px solid #ddd3df; border-radius: 9px; background: #fff; color: var(--ink); }
input:focus, textarea:focus, select:focus { border-color: var(--forest); outline: 3px solid rgba(114, 54, 130, 0.1); }
.session-facts { display: flex; gap: 50px; padding-top: 18px; border-top: 1px solid var(--line); }
.session-facts dt { color: var(--muted); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; }
.session-facts dd { margin: 3px 0; color: var(--forest-deep); font-weight: 750; }
.consent { display: flex; align-items: start; margin: 16px 0; }
.consent input { width: auto; margin: 5px 9px 0 0; }
.booking-disclaimer { margin: 12px 0 0; color: var(--muted); font-size: .84rem; text-align: center; }
.form-status { min-height: 24px; text-align: center; }
.success { color: var(--success) !important; }
.error { color: var(--danger) !important; }
.muted { color: var(--muted); }
.honeypot { position: absolute; left: -9999px; }
.doctoralia-banner { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 46px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.doctoralia-mark { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: #05b4b5; color: #fff; font: 700 1.25rem Georgia, serif; }
.doctoralia-banner h2 { margin: 0 0 3px; font-size: 1.2rem; }
.doctoralia-banner p { margin: 0; color: var(--muted); font-size: 0.78rem; }
.button-doctoralia { border-color: #05aeb0; color: #078f91; }
.footer-doctoralia { color: #9ddfdc !important; font-weight: 750; }

.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-info dl { margin: 0; }
.contact-info dl div { margin: 0 0 24px; }
.contact-info dt { color: var(--muted); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-info dd { margin: 4px 0; color: var(--forest-deep); font-weight: 700; }
.contact-form { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.contact-form .button { margin-top: 20px; }
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: 42px; font-size: 1.85rem; }
.legal-copy p { color: var(--muted); }

.footer { padding: 0 0 26px; background: var(--forest-deep); color: #d6c4db; }
.footer-lead { min-height: 140px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.footer-lead p { margin: 0; color: #fff; font: 500 clamp(1.6rem, 3vw, 2.6rem) Georgia, serif; letter-spacing: -0.035em; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.65fr 0.8fr; gap: 90px; padding-top: 68px; }
.brand-light { color: #fff; }
.brand-light .brand-mark { background: rgba(255, 255, 255, 0.1); color: #fff; }
.brand-light small { color: #bba3c2; }
.footer-grid h3 { color: #bba3c2; font: 800 0.62rem Aptos, "Segoe UI", sans-serif; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-grid > div > a { display: block; width: fit-content; margin: 9px 0; color: #eadfed; font-size: 0.78rem; text-decoration: none; }
.footer-grid > div > a:hover { color: #fff; }
.footer-grid p { max-width: 410px; color: #bba3c2; font-size: 0.78rem; }
.footer-legal { margin-top: 54px; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: #9f88a6; font-size: 0.63rem; }
.footer-legal > p { max-width: 800px; }
.footer-legal > div { display: flex; gap: 25px; margin-top: 20px; }
.footer-legal > div span { margin-right: auto; }
.footer-legal a { text-decoration: none; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 1080px) {
  .main-nav { gap: 17px; }
  .main-nav > a { font-size: 0.71rem; }
  .hero-grid { grid-template-columns: 1fr 0.85fr; gap: 42px; }
  .hero-art { min-height: 520px; }
  .hero-message { left: 45px; right: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .intro-grid { gap: 65px; }
  .process-layout { gap: 70px; }
}

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    max-height: calc(100vh - 118px);
    padding: 28px max(24px, calc((100vw - 1180px) / 2));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 35px rgba(84, 35, 95, 0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px 0; font-size: 0.9rem; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .nav-cta { margin-top: 14px; }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-art { min-height: 520px; max-width: 620px; width: 100%; margin: 10px auto 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .process-layout { grid-template-columns: 1fr; }
  .portrait-stage { max-width: 390px; margin-inline: auto; }
  .intro-copy { max-width: 760px; }
  .process-intro { position: static; }
  .section-heading-split { grid-template-columns: 1fr; gap: 20px; }
  .mode-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .testimonials blockquote { min-height: 240px; }
  .page-hero .split { gap: 45px; }
  .booking-shell form { grid-template-columns: 1fr; }
  .booking-calendar { border-top: 1px solid var(--line); border-left: 0; }
  .footer-grid { gap: 50px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 560px); }
  .top-note .container { min-height: 42px; justify-content: center; text-align: center; }
  .top-note a { display: none; }
  .nav-wrap { min-height: 72px; }
  .main-nav { inset-block-start: 100%; max-height: calc(100vh - 114px); padding-inline: 18px; }
  .brand strong { font-size: 1.05rem; }
  .brand small { font-size: 0.48rem; }
  h1 { font-size: clamp(3rem, 14vw, 4.35rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
  .hero { padding: 54px 0 45px; }
  .hero-copy { text-align: center; }
  .hero-copy .button-row { justify-content: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-intro { font-size: 1rem; }
  .hero-facts { grid-template-columns: 1fr; text-align: left; }
  .hero-facts li { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 12px 0; }
  .hero-facts li + li { padding-left: 0; border-top: 1px solid rgba(114, 54, 130, 0.13); border-left: 0; }
  .hero-facts span { margin: 0; }
  .hero-art { min-height: 470px; border-radius: 160px 160px 18px 18px; }
  .hero-art::before { border-radius: 145px 145px 10px 10px; }
  .hero-message { top: 136px; left: 34px; right: 30px; text-align: left; }
  .hero-message > strong { font-size: 2.6rem; }
  .hero-message p { max-width: 285px; }
  .floating-card { min-width: 195px; padding: 13px; }
  .floating-card-top { top: 28px; right: 18px; }
  .floating-card-bottom { left: 18px; bottom: 22px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: auto; padding: 23px 16px; }
  .trust-grid article + article, .trust-grid article:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .portrait-stage { max-width: 320px; padding: 0 0 24px 22px; }
  .portrait-caption { right: -5px; }
  .credential-row { grid-template-columns: 1fr; }
  .credential-row span { display: grid; grid-template-columns: 125px 1fr; align-items: center; padding: 12px 0; }
  .credential-row span + span { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .credential-row small { margin: 0; }
  .card-grid { grid-template-columns: 1fr; }
  .info-card { min-height: 230px; }
  .process-stacked li { padding-left: 72px; }
  .process-large { grid-template-columns: 1fr; }
  .process-large li::before { left: 50%; }
  .mode-card { grid-template-columns: 40px 1fr; min-height: 300px; padding: 34px 26px; }
  .page-hero { padding: 62px 0; }
  .page-hero .split, .prose-grid, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .page-hero .split { text-align: center; }
  .page-hero .portrait-wrap { max-width: 280px; margin: auto; }
  .service-detail { grid-template-columns: 1fr; padding: 26px; }
  .booking-details, .booking-calendar { padding: 25px; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .choice-row { display: grid; }
  .session-facts { gap: 22px; }
  .doctoralia-banner { grid-template-columns: auto 1fr; }
  .doctoralia-banner .button { grid-column: 1 / -1; width: 100%; }
  .cta-panel { padding: 62px 24px; }
  .footer-lead { padding: 34px 0; flex-direction: column; align-items: flex-start; }
  .footer-grid { gap: 35px; padding-top: 52px; }
  .footer-legal > div { flex-wrap: wrap; }
  .footer-legal > div span { width: 100%; margin: 0; }
}

@media (max-width: 420px) {
  .brand-mark { width: 32px; height: 32px; flex-basis: 32px; }
  .hero-art { min-height: 520px; }
  .hero-message > strong { font-size: 2.3rem; }
  .floating-card { min-width: 178px; }
  .floating-card strong { font-size: 0.67rem; }
  .portrait-caption { min-width: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
