:root {
  color-scheme: light;
  --brand-ink: #160542;
  --brand-deep: #3700aa;
  --brand-violet: #4d00ff;
  --brand-violet-soft: #a980ff;
  --brand-magenta: #a980ff;
  --brand-cyan: #f6f6f6;
  --brand-yellow: #ffbb00;
  --brand-black: #000000;
  --brand-blush: #eee6ff;
  --brand-paper: #f6f6f6;
  --brand-paper-warm: #eee6ff;
  --ink: var(--brand-black);
  --muted: #5f537c;
  --leaf: var(--brand-violet);
  --leaf-deep: var(--brand-deep);
  --gold: var(--brand-yellow);
  --coral: var(--brand-magenta);
  --sky: var(--brand-cyan);
  --mint: var(--brand-blush);
  --paper: var(--brand-paper);
  --paper-warm: var(--brand-paper-warm);
  --white: #f6f6f6;
  --line: rgba(55, 0, 170, 0.16);
  --shadow: 0 24px 70px rgba(22, 5, 66, 0.16);
  --soft-shadow: 0 14px 34px rgba(22, 5, 66, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(55, 0, 170, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(55, 0, 170, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #F6F6F6 0%, var(--paper) 50%, #eee6ff 100%);
  background-size: 54px 54px, 54px 54px, auto;
  font-family: Inter, "Avenir Next", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link,
.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:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  clip: auto;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 0.58rem 0.7rem;
  border: 1px solid rgba(55, 0, 170, 0.12);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.88);
  box-shadow: 0 16px 36px rgba(22, 5, 66, 0.1);
  backdrop-filter: blur(20px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--leaf-deep);
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  width: 50px;
  height: 39px;
  object-fit: contain;
  padding: 0.16rem;
  border: 1px solid rgba(55, 0, 170, 0.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(22, 5, 66, 0.08);
}

.footer-brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
  padding: 0.14rem;
  border-radius: 10px;
  background: rgba(246, 246, 246, 0.94);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0.12rem;
}

.site-nav a {
  padding: 0.5rem 0.54rem;
  border-radius: 999px;
  color: rgba(55, 0, 170, 0.72);
  font-size: 0.86rem;
  font-weight: 760;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(55, 0, 170, 0.08);
  color: var(--leaf-deep);
}

.header-cta {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--leaf-deep);
  color: var(--white);
  font-weight: 750;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.9);
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 18px));
  display: grid;
  place-items: center;
  width: 100%;
  margin: -74px auto 0;
  padding: 9.6rem max(16px, calc((100% - var(--max)) / 2)) 5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(55, 0, 170, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(55, 0, 170, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #F6F6F6 0%, #eee6ff 52%, #F6F6F6 100%);
  background-size: 46px 46px, 46px 46px, auto;
  color: var(--ink);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 53%, rgba(255, 187, 0, 0.22) 53% 54%, transparent 54%),
    linear-gradient(90deg, rgba(246, 246, 246, 0.72), transparent 74%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 900px;
}

.hero-mark {
  width: clamp(70px, 9vw, 104px);
  height: auto;
  margin-bottom: 1.2rem;
  padding: 0.3rem;
  border: 1px solid rgba(55, 0, 170, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.92);
  box-shadow: 0 14px 32px rgba(22, 5, 66, 0.1);
}

.hero-care-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-top: 1.35rem;
  padding: 1.25rem;
  border: 1px solid rgba(55, 0, 170, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.66);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.hero-care-card h2 {
  color: var(--leaf-deep);
  font-size: clamp(1.5rem, 2.7vw, 2.15rem);
}

.hero-care-card dl {
  display: grid;
  gap: 0.7rem;
  margin: 1.1rem 0 0;
}

.hero-care-card div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.hero-care-card dt {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-deep);
  color: var(--white);
  font-weight: 900;
}

.hero-care-card dd {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: normal;
}

h2 {
  margin: 0;
  color: var(--leaf-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.7vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: #5f537c;
  font-size: clamp(1.06rem, 1.8vw, 1.26rem);
}

.hero-actions,
.hero-points {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.hero-points {
  padding: 0;
  list-style: none;
  color: var(--leaf-deep);
  font-weight: 700;
}

.hero-points li {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(55, 0, 170, 0.16);
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.74);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  background: var(--leaf-deep);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(55, 0, 170, 0.2);
}

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

.hero .button-secondary,
.fit-panel .button-secondary {
  background: rgba(246, 246, 246, 0.72);
  color: var(--leaf-deep);
  border-color: rgba(55, 0, 170, 0.18);
}

.trust-band,
.section,
.booking-section,
.notice-section,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(55, 0, 170, 0.16);
  box-shadow: var(--soft-shadow);
  transform: translateY(-48px);
}

.trust-band div {
  padding: 1.45rem;
  background: rgba(246, 246, 246, 0.94);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  color: var(--leaf-deep);
  font-size: 1.05rem;
}

.trust-band span {
  margin-top: 0.2rem;
  color: var(--muted);
}

.section {
  padding: 5.8rem 0;
}

.decision-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: stretch;
  padding-top: 3.2rem;
}

.decision-copy {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.86);
  box-shadow: var(--soft-shadow);
}

.decision-copy h2 {
  max-width: 760px;
}

.decision-copy p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.08rem;
}

.decision-rail {
  display: grid;
  gap: 1rem;
}

.decision-rail div {
  display: grid;
  align-content: center;
  min-height: 180px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #3700AA;
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.decision-rail span {
  width: fit-content;
  margin-bottom: 0.85rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.12);
  color: #FFBB00;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.decision-rail strong {
  font-size: 1.25rem;
}

.decision-rail p {
  margin: 0.5rem 0 0;
  color: rgba(246, 246, 246, 0.76);
}

.decision-rail .decision-stop {
  background:
    linear-gradient(135deg, rgba(55, 0, 170, 0.96), rgba(169, 128, 255, 0.92)),
    #3700AA;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 4rem;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.learn-copy p,
.booking-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.plan-card,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.9);
  box-shadow: var(--soft-shadow);
}

.service-card {
  min-height: 230px;
  padding: 1.45rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(22, 5, 66, 0.13);
}

.service-card p,
.plan-card p,
.timeline-item p,
details p,
.site-footer p {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.35rem;
  border-radius: var(--radius);
  background: #eee6ff;
  color: var(--leaf-deep);
  font-weight: 900;
}

.process-section {
  width: 100%;
  padding-inline: max(16px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(55, 0, 170, 0.96), rgba(169, 128, 255, 0.9)),
    var(--leaf-deep);
  color: var(--white);
}

.pathways-section,
.support-menu-section,
.product-section,
.about-section,
.standards-section,
.fit-section {
  border-top: 1px solid var(--line);
}

.process-section .section-heading h2,
.process-section .section-heading p,
.process-section .eyebrow {
  color: var(--white);
}

.next-step-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: stretch;
}

.next-step-copy {
  display: grid;
  align-content: center;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.88);
  box-shadow: var(--soft-shadow);
}

.next-step-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.next-step-grid article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.88);
  box-shadow: var(--soft-shadow);
}

.next-step-grid span,
.thank-you-steps span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--leaf-deep);
  color: var(--white);
  font-weight: 900;
}

.next-step-grid p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

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

.pathway-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.88);
  box-shadow: var(--soft-shadow);
}

.pathway-card:nth-child(2) {
  background: rgba(246, 246, 246, 0.74);
}

.pathway-card:nth-child(3) {
  background: rgba(238, 230, 255, 0.7);
}

.pathway-card p:not(.plan-label) {
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--leaf);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.support-menu-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 3rem;
  align-items: start;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(55, 0, 170, 0.18);
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.82);
  color: var(--leaf-deep);
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(22, 5, 66, 0.05);
}

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

.product-card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.86);
  box-shadow: var(--soft-shadow);
}

.product-card:nth-child(even) {
  background: rgba(246, 246, 246, 0.68);
}

.product-card p:not(.plan-label) {
  color: var(--muted);
}

.product-note {
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid rgba(255, 187, 0, 0.42);
  border-radius: var(--radius);
  background: #fff4d1;
  color: var(--leaf-deep);
  font-weight: 800;
}

.about-panel {
  max-width: 980px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.88);
  box-shadow: var(--soft-shadow);
}

.about-panel h2 {
  max-width: 820px;
}

.about-panel p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.08rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.timeline-item {
  position: relative;
  padding: 1.25rem;
  border-color: rgba(246, 246, 246, 0.16);
  background: rgba(246, 246, 246, 0.1);
  box-shadow: none;
}

.timeline-item span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: #FFBB00;
  color: var(--leaf-deep);
  font-weight: 900;
}

.timeline-item h3 {
  color: var(--white);
}

.timeline-item p {
  color: rgba(246, 246, 246, 0.72);
}

.standards-section {
  padding-bottom: 4rem;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.standard-card {
  min-height: 300px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.88);
  box-shadow: var(--soft-shadow);
}

.standard-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--leaf-deep);
  color: var(--white);
  font-weight: 900;
}

.standard-card p,
.fit-list p {
  color: var(--muted);
}

.safety-standard {
  background: rgba(238, 230, 255, 0.72);
}

.fit-section {
  padding-top: 0;
}

.fit-panel {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(55, 0, 170, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(55, 0, 170, 0.96), rgba(169, 128, 255, 0.9)),
    var(--leaf-deep);
  box-shadow: var(--shadow);
}

.fit-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.fit-panel .eyebrow {
  color: #FFBB00;
}

.fit-list {
  display: grid;
  gap: 0.75rem;
}

.fit-list p {
  margin: 0;
  padding: 0.9rem;
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.1);
  color: rgba(246, 246, 246, 0.78);
  font-weight: 700;
}

.muted-fit p {
  background: rgba(238, 230, 255, 0.95);
  color: #3700AA;
}

.plans-section {
  padding-top: 4rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.45rem;
}

.plan-card .button {
  margin-top: auto;
}

.plan-label {
  margin: 0 0 1.3rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.plan-price {
  margin: 0.15rem 0 1rem;
  color: var(--leaf);
  font-size: 1.45rem;
  font-weight: 900;
}

.featured-plan {
  background: var(--leaf-deep);
  color: var(--white);
}

.featured-plan h3,
.featured-plan .plan-price {
  color: var(--white);
}

.featured-plan p {
  color: rgba(246, 246, 246, 0.78);
}

.featured-plan .plan-label {
  color: #FFBB00;
}

.learn-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.9);
  padding: 1rem 1.1rem;
}

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

.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 246, 246, 0.94), rgba(238, 230, 255, 0.76)),
    var(--mint);
  box-shadow: var(--soft-shadow);
}

.booking-section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.booking-note {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(169, 128, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.64);
  color: #3700AA;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(55, 0, 170, 0.11);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.84);
  box-shadow: 0 18px 38px rgba(22, 5, 66, 0.08);
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--leaf-deep);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 187, 0, 0.42);
  outline-offset: 2px;
  border-color: rgba(255, 187, 0, 0.72);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.fieldset-note {
  margin: 0;
  color: var(--muted);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.intake-main {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 4.4rem 0;
}

.intake-hero {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  gap: 2rem;
  align-items: end;
  padding: 2rem 0 3rem;
}

.intake-hero h1,
.thank-you-main h1 {
  font-size: clamp(3rem, 9vw, 7rem);
}

.intake-hero p,
.intake-aside p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intake-status {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(255, 187, 0, 0.42);
  border-radius: 999px;
  background: #fff4d1;
  color: var(--leaf-deep);
  font-weight: 850;
}

.intake-aside {
  border: 1px solid rgba(169, 128, 255, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(238, 230, 255, 0.96), rgba(246, 246, 246, 0.72));
  padding: 1.25rem;
  box-shadow: var(--soft-shadow);
}

.intake-aside h2 {
  font-size: 1.35rem;
}

.intake-stop-list {
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(169, 128, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.72);
  color: #3700AA;
}

.intake-stop-list strong {
  display: block;
  margin-bottom: 0.5rem;
}

.intake-stop-list ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.15rem;
}

.intake-form {
  display: grid;
  gap: 1rem;
}

.intake-prep {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.intake-prep div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(246, 246, 246, 0.94), rgba(246, 246, 246, 0.56)),
    var(--white);
  box-shadow: 0 12px 28px rgba(22, 5, 66, 0.06);
}

.intake-prep span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

.intake-prep strong {
  display: block;
  color: var(--leaf-deep);
  font-size: 1.02rem;
}

.intake-prep p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

fieldset {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 246, 246, 0.9);
  box-shadow: 0 14px 32px rgba(22, 5, 66, 0.06);
}

legend {
  padding: 0 0.4rem;
  color: var(--leaf-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

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

.safety-question {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(169, 128, 255, 0.22);
  border-radius: var(--radius);
  background: #f2e9ff;
}

.safety-question p {
  margin: 0;
  color: var(--leaf-deep);
  font-weight: 850;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.check-card,
.consent-line,
.radio-card {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #F6F6F6;
}

.check-card:has(input:checked),
.radio-card:has(input:checked) {
  border-color: rgba(255, 187, 0, 0.72);
  background: #fff4d1;
}

.check-card input,
.consent-line input,
.radio-card input {
  width: auto;
  margin-top: 0.3rem;
}

.radio-card {
  min-width: 110px;
  background: var(--white);
}

.safety-screening {
  border-color: rgba(169, 128, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(238, 230, 255, 0.78), rgba(246, 246, 246, 0.92)),
    var(--white);
}

.safety-screening legend {
  color: #3700AA;
}

.safety-alert {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid rgba(169, 128, 255, 0.36);
  border-radius: var(--radius);
  background: #f2e9ff;
  color: #3700AA;
  font-weight: 800;
}

.safety-alert[hidden] {
  display: none;
}

.safety-alert strong {
  font-size: 1.05rem;
}

.intake-next-panel,
.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intake-next-panel div,
.thank-you-steps div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(246, 246, 246, 0.96), rgba(246, 246, 246, 0.58)),
    var(--white);
  box-shadow: 0 12px 28px rgba(22, 5, 66, 0.06);
}

.intake-next-panel span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--leaf-deep);
  font-weight: 900;
}

.intake-next-panel strong,
.thank-you-steps strong {
  display: block;
  color: var(--leaf-deep);
  font-size: 1.05rem;
}

.intake-next-panel p,
.thank-you-steps p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  box-shadow: none;
}

.thank-you-main {
  display: grid;
  min-height: 100svh;
  place-content: center;
  justify-items: center;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.thank-you-main p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
}

.thank-you-steps {
  width: min(100%, 760px);
  margin: 1.25rem 0;
  text-align: left;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.notice-section {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(169, 128, 255, 0.3);
  border-radius: var(--radius);
  background: #f2e9ff;
  color: #3700AA;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 3.5rem 0 2rem;
}

.site-footer p {
  max-width: 580px;
}

.site-footer nav {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
}

.site-footer a:hover {
  color: var(--coral);
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4rem 0;
}

.legal-main h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 9vw, 6rem);
}

.legal-main h2 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

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

  .nav-open .site-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    color: var(--leaf-deep);
  }

  .hero,
  .split-section,
  .decision-section,
  .next-step-section,
  .support-menu-section,
  .learn-section,
  .booking-section,
  .intake-hero {
    grid-template-columns: 1fr;
  }

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

  .hero-care-card {
    margin-top: 1.25rem;
    max-width: none;
  }

  .section-copy {
    position: static;
  }

  .timeline,
  .pathway-grid,
  .product-grid,
  .plan-grid,
  .standards-grid,
  .next-step-grid,
  .intake-prep,
  .intake-next-panel,
  .thank-you-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .fit-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero,
  .trust-band,
  .section,
  .booking-section,
  .notice-section,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .hero,
  .process-section {
    width: 100%;
  }

  .trust-band,
  .card-grid,
  .timeline,
  .pathway-grid,
  .plan-grid,
  .standards-grid,
  .next-step-grid,
  .form-grid,
  .option-grid,
  .safety-grid,
  .product-grid,
  .intake-prep,
  .intake-next-panel,
  .thank-you-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 1.75rem;
    margin-top: -68px;
    padding-inline: 12px;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2.6rem, 13.5vw, 4.2rem);
  }

  .section {
    padding: 4.3rem 0;
  }

  .booking-section {
    padding: 1.25rem;
  }

  .decision-copy,
  .about-panel,
  .next-step-copy {
    padding: 1.25rem;
  }

  .notice-section,
  .site-footer {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-items: start;
  }
}
