:root {
  --orange: #f5821f;
  --orange-dark: #bb4d00;
  --orange-soft: #ffb25a;
  --red: #d83a21;
  --yellow: #ffc24b;
  --cream: #fff6ea;
  --cream-2: #fce9d0;
  --paper: #fffaf3;
  --ink: #14213d;
  --ink-soft: #414a63;
  --teal: #7fc9cf;
  --teal-dark: #236a70;
  --green: #648f2c;
  --white: #fff;
  --shadow: 0 10px 0 rgba(20, 33, 61, .14);
  --shadow-strong: 0 12px 0 rgba(20, 33, 61, .22);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

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.55;
  overflow-x: hidden;
}

body, button, input, select, textarea { font: inherit; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, .brand, .button, .eyebrow, summary, .price, .care-price {
  font-family: "Fredoka", system-ui, sans-serif;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.wrap { width: min(1120px, calc(100% - 44px)); margin-inline: auto; }
.section { padding: 88px 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .15s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 4px solid var(--teal-dark);
  outline-offset: 4px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 7px 0 rgba(20, 33, 61, .2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 10px 0 rgba(20, 33, 61, .22); }
.button:active { transform: translateY(4px); box-shadow: 0 3px 0 rgba(20, 33, 61, .22); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: .9rem; border-width: 2px; }
.button-dark { color: var(--white); background: var(--ink); }
.button-sun { background: var(--yellow); }
.button-light { background: var(--white); }
.button.full { width: 100%; }

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px 6px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark { color: var(--ink); border-color: var(--ink); background: var(--yellow); }
.eyebrow-teal { color: var(--ink); border-color: var(--teal); background: var(--teal); }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 2px solid rgba(20, 33, 61, .08);
  background: rgba(255, 250, 243, .93);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand img { width: 46px; height: 46px; }
.brand small { display: block; margin-top: 5px; color: var(--ink-soft); font-family: "DM Sans", sans-serif; font-size: .62rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 24px; }
nav a { padding: 12px 2px; color: var(--ink-soft); font-size: .94rem; font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--red); }
.nav-wrap > .button { justify-self: end; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 98px;
  background: radial-gradient(130% 100% at 85% 5%, #ffbd70 0, var(--orange) 48%, #ef7520 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 70px solid rgba(255, 194, 75, .55);
  border-radius: 50%;
}

.hero-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  color: rgba(255, 255, 255, .1);
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 800;
  line-height: .82;
  overflow: hidden;
  transform: rotate(-5deg) scale(1.12);
  white-space: nowrap;
}

.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(42px, 7vw, 86px); }
.hero-copy { max-width: 660px; }
.hero h1 { margin-bottom: 25px; font-size: clamp(3.45rem, 7vw, 6.25rem); font-weight: 700; letter-spacing: -.055em; line-height: .91; }
.hero h1 span { display: block; color: var(--white); text-shadow: 0 5px 0 rgba(20, 33, 61, .2); }
.hero-lede { max-width: 63ch; margin-bottom: 0; color: #242a3e; font-size: clamp(1.06rem, 1.8vw, 1.28rem); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  list-style: none;
}

.trust-row li::before { content: "✓"; margin-right: 6px; }

.vendor-preview {
  position: relative;
  width: min(100%, 440px);
  justify-self: end;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 16px 18px 0 rgba(20, 33, 61, .25);
  transform: rotate(2deg);
}

.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 15px; border-bottom: 3px solid var(--ink); background: #f0eadf; }
.browser-bar span { width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.browser-bar span:nth-child(2) { background: var(--yellow); }
.browser-bar span:nth-child(3) { background: var(--green); }
.browser-bar b { margin-left: 8px; color: var(--ink-soft); font-size: .72rem; font-weight: 600; }
.preview-body { padding: 30px; text-align: center; }
.preview-kicker { margin-bottom: 4px; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.preview-body h2 { margin-bottom: 1px; font-size: 2.15rem; }
.preview-body > p:not(.preview-kicker) { color: var(--ink-soft); }
.preview-photo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 20px 0; }
.preview-photo span { display: grid; aspect-ratio: 1; place-items: center; border: 2px solid var(--ink); border-radius: 16px; background: var(--cream); font-size: 2rem; }
.preview-event { display: grid; padding: 14px; border-radius: 14px; color: var(--white); background: var(--ink); }
.preview-event span { color: var(--yellow); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.preview-event small { color: #dce1ef; }
.preview-button { display: inline-block; margin-top: 16px; padding: 10px 17px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); font-family: "Fredoka", sans-serif; font-size: .88rem; font-weight: 700; }
.preview-note { padding: 11px 20px; color: var(--white); background: var(--red); font-size: .82rem; font-weight: 800; text-align: center; }

.marquee { overflow: hidden; border-block: 4px solid var(--yellow); color: var(--white); background: var(--ink); }
.marquee-track { display: flex; width: max-content; align-items: center; padding: 13px 0; animation: marquee 28s linear infinite; }
.marquee span { padding-inline: 24px; font-family: "Baloo 2", sans-serif; font-size: 1.15rem; font-weight: 800; letter-spacing: .06em; }
.marquee i { color: var(--orange-soft); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 50px; margin-bottom: 36px; }
.split-heading h2, .section-heading h2, .value-band h2, .care h2, .faq h2, .request-copy h2 { margin-bottom: 0; font-size: clamp(2.35rem, 5vw, 4.45rem); letter-spacing: -.04em; line-height: .98; }
.split-heading > p, .section-heading > p, .faq-layout > div > p, .care-copy > p, .request-copy > p { margin-bottom: 0; color: var(--ink-soft); font-size: 1.08rem; }
.section-heading { max-width: 760px; margin: 0 auto 42px; }
.section-heading.centered { text-align: center; }
.section-heading h2 + p { margin-top: 16px; }

.audience { background: var(--cream); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { padding: 25px; border: 3px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.audience-card > span { display: grid; width: 54px; height: 54px; margin-bottom: 16px; place-items: center; border-radius: 15px; background: var(--cream-2); font-size: 1.8rem; }
.audience-card:nth-child(2) > span, .audience-card:nth-child(5) > span { background: #d7eef0; }
.audience-card:nth-child(3) > span, .audience-card:nth-child(6) > span { background: #e4f0d2; }
.audience-card h3 { margin-bottom: 7px; font-size: 1.28rem; }
.audience-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }

.value-band { padding: 70px 0; color: var(--white); background: var(--ink); }
.value-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.value-band h2 { color: var(--white); }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 17px 20px 17px 54px; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; color: #e9edf7; background: rgba(255,255,255,.06); }
.check-list li::before { content: "✓"; position: absolute; left: 18px; color: var(--yellow); font-size: 1.2rem; font-weight: 800; }

.packages { background: var(--paper); }
.package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 26px; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 34px; border: 3px solid var(--ink); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.package-card.featured { border-color: var(--red); box-shadow: 0 12px 0 rgba(216, 58, 33, .18); }
.popular { position: absolute; top: -18px; right: 25px; padding: 8px 15px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); font-family: "Fredoka", sans-serif; font-size: .8rem; font-weight: 700; transform: rotate(2deg); }
.package-label { margin-bottom: 7px; color: var(--red); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.package-card h3 { margin-bottom: 5px; font-size: clamp(1.8rem, 3vw, 2.35rem); }
.price { margin-bottom: 15px; color: var(--ink); font-size: 3.6rem; font-weight: 700; line-height: 1; }
.price span { color: var(--red); font-size: 1.6rem; vertical-align: top; }
.package-top > p:last-child { color: var(--ink-soft); }
.feature-list { display: grid; gap: 10px; margin: 8px 0 28px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 29px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.package-card .button { margin-top: auto; }
.package-note { margin-top: 28px; padding: 19px 23px; border: 2px dashed var(--ink); border-radius: 15px; color: var(--ink-soft); background: var(--cream); font-size: .9rem; }
.package-note strong { color: var(--ink); }

.care { background: linear-gradient(145deg, var(--orange-soft), var(--orange)); }
.care-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 7vw, 82px); align-items: start; }
.care-copy h2 { margin-bottom: 18px; }
.care-copy > p { color: #2c3042; font-weight: 600; }
.addon-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.addon-cloud span { padding: 8px 12px; border: 2px solid var(--ink); border-radius: 999px; background: var(--white); font-size: .8rem; font-weight: 700; }
.care-plans { display: grid; gap: 18px; }
.care-plans article { display: grid; grid-template-columns: 1fr auto; gap: 12px 24px; padding: 26px; border: 3px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-strong); }
.care-plans h3 { margin-bottom: 4px; font-size: 1.45rem; }
.care-plans article > div p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }
.care-price { margin: 0; font-size: 2.1rem; font-weight: 700; line-height: 1; }
.care-price small { font-family: "DM Sans", sans-serif; font-size: .74rem; }
.care-plans ul { grid-column: 1 / -1; display: grid; gap: 7px; margin: 2px 0 0; padding-left: 20px; color: var(--ink-soft); font-size: .9rem; }
.care-fine { margin: 0; padding-inline: 4px; color: #272c3e; font-size: .78rem; font-weight: 600; }

.work { background: var(--cream); }
.work-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.work-card { grid-column: span 3; overflow: hidden; border: 3px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.work-card:first-child { grid-column: span 6; display: grid; grid-template-columns: 1.1fr .9fr; }
.work-visual { position: relative; min-height: 260px; display: grid; place-content: center; padding: 34px; color: var(--white); text-align: center; }
.work-card:first-child .work-visual { min-height: 320px; }
.work-visual.yoga { background: radial-gradient(circle at 50% 30%, #a4d95e, #4f7822); }
.work-visual.baker { background: radial-gradient(circle at 50% 30%, #ffce7b, #d5522f); }
.work-visual.maker { background: radial-gradient(circle at 50% 30%, #91d4d8, #286f75); }
.work-visual > div { font-size: 4.5rem; }
.work-visual strong { font-family: "Fredoka", sans-serif; font-size: 1.55rem; }
.work-visual small { font-weight: 700; }
.work-tag { position: absolute; top: 15px; left: 15px; padding: 7px 11px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--yellow); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.work-copy { display: flex; flex-direction: column; justify-content: center; padding: 28px; }
.work-copy h3 { margin-bottom: 10px; font-size: 1.5rem; line-height: 1.1; }
.work-copy p { color: var(--ink-soft); }
.work-copy a { width: max-content; color: var(--red); font-weight: 800; }
.work-copy > small { color: var(--ink-soft); font-size: .74rem; }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; padding: 0; list-style: none; }
.process-grid li { padding: 24px; border: 3px dashed var(--ink); border-radius: var(--radius); background: var(--white); }
.process-grid li > span { display: grid; width: 44px; height: 44px; margin-bottom: 17px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-family: "Fredoka", sans-serif; font-size: 1.15rem; font-weight: 700; box-shadow: 0 4px 0 rgba(20,33,61,.2); }
.process-grid h3 { margin-bottom: 8px; font-size: 1.15rem; line-height: 1.12; }
.process-grid p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }
.timeline { padding: 17px 21px; border-radius: 14px; color: var(--ink); background: var(--teal); text-align: center; }

.faq { color: var(--white); background: var(--ink); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 70px; }
.faq h2 { color: var(--white); }
.faq-layout > div > p { color: #c5cbdb; }
.faq-list { display: grid; gap: 12px; }
details { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.06); }
summary { position: relative; min-height: 54px; padding: 17px 55px 16px 20px; color: var(--white); font-weight: 600; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 10px; right: 16px; color: var(--yellow); font-size: 1.7rem; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 20px 19px; color: #d4d9e7; font-size: .94rem; }

.request-section { padding: 92px 0; background: radial-gradient(120% 100% at 15% 0, #ffba68, var(--orange) 58%, #ed7220); }
.request-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(36px, 7vw, 86px); }
.request-copy { position: sticky; top: 108px; }
.request-copy h2 { margin-bottom: 20px; }
.request-copy > p { color: #252a3c; font-weight: 600; }
.contact-options { display: grid; gap: 11px; margin-top: 28px; }
.contact-options a { display: grid; grid-template-columns: 38px 1fr; padding: 14px; border: 2px solid var(--ink); border-radius: 15px; background: rgba(255,255,255,.84); text-decoration: none; }
.contact-options a > span { grid-row: span 2; align-self: center; font-size: 1.35rem; }
.contact-options b { font-size: .84rem; }
.contact-options small { color: var(--ink-soft); }

.lead-form { padding: clamp(24px, 4vw, 42px); border: 3px solid var(--ink); border-radius: 28px; background: var(--white); box-shadow: var(--shadow-strong); }
.form-heading h3 { margin-bottom: 6px; font-size: 1.8rem; }
.form-heading p { margin-bottom: 26px; color: var(--ink-soft); }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lead-form > label, .form-grid label { display: grid; gap: 7px; margin-bottom: 16px; color: var(--ink); font-size: .85rem; font-weight: 700; }
.lead-form input:not([type="checkbox"]), .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 2px solid #777f91;
  border-radius: 11px;
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
  font-weight: 400;
}
.lead-form textarea { resize: vertical; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: #6b7385; opacity: 1; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--teal-dark); outline: 3px solid rgba(35, 106, 112, .2); }
.lead-form [aria-invalid="true"] { border-color: var(--red) !important; outline-color: rgba(216, 58, 33, .18) !important; }
fieldset { margin: 5px 0 19px; padding: 17px; border: 2px solid #9ca2b0; border-radius: 14px; }
legend { padding: 0 6px; font-size: .86rem; font-weight: 700; }
.field-help { margin: -2px 0 11px; color: var(--ink-soft); font-size: .76rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 9px; }
.choice-grid label, .choice-row label { display: flex; min-height: 44px; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid #b2b7c2; border-radius: 9px; color: var(--ink-soft); font-size: .82rem; font-weight: 600; cursor: pointer; }
.choice-grid label:has(input:checked), .choice-row label:has(input:checked) { border-color: var(--ink); color: var(--ink); background: var(--cream-2); }
input[type="checkbox"] { width: 19px; height: 19px; accent-color: var(--ink); }
.consent { grid-template-columns: 22px 1fr !important; align-items: start; margin: 4px 0 17px !important; font-size: .8rem !important; font-weight: 500 !important; }
.consent input { margin-top: 2px; }
.consent a, .privacy-note a { color: var(--teal-dark); font-weight: 700; }
.privacy-note { margin: 12px 0 0; color: var(--ink-soft); font-size: .75rem; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-errors { margin-bottom: 18px; padding: 14px 16px; border: 2px solid var(--red); border-radius: 11px; color: #7a1d0f; background: #fff0ec; font-size: .86rem; }
.form-errors strong { display: block; margin-bottom: 4px; }
.form-errors ul { margin: 0; padding-left: 20px; }
.form-success { margin-top: 17px; padding: 18px; border: 2px solid var(--green); border-radius: 12px; color: #26400f; background: #eff8e6; }
.form-success strong { font-family: "Fredoka", sans-serif; font-size: 1.1rem; }
.form-success p { margin: 3px 0 0; }
.form-security-widget { margin: 4px 0 12px; min-height: 65px; }
.form-security-widget[hidden] { display: none; }
.form-security-status { margin: 0 0 12px; color: var(--ink-soft); font-size: .78rem; }
.form-security-status a { font-weight: 700; }

footer { padding: 60px 0 26px; color: #c3c9d9; background: #0f1930; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 44px; }
.footer-brand { margin-bottom: 16px; color: var(--white); }
.footer-brand small { color: #9ca5bf; }
.footer-grid p { max-width: 34ch; font-size: .86rem; }
.footer-grid h2 { margin-bottom: 13px; color: var(--white); font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-grid a { color: var(--teal); text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-grid span { font-size: .88rem; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8c96b2; font-size: .76rem; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { border-bottom: 2px solid rgba(20,33,61,.08); background: var(--cream); }
.legal-nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-main { padding: 72px 0 96px; }
.legal-article { max-width: 820px; }
.legal-article h1 { margin-bottom: 12px; font-size: clamp(2.7rem, 7vw, 5rem); letter-spacing: -.045em; line-height: .95; }
.legal-article .legal-updated { margin-bottom: 34px; color: var(--ink-soft); font-size: .9rem; }
.legal-article h2 { margin: 38px 0 12px; font-size: 1.55rem; }
.legal-article h3 { margin: 25px 0 8px; font-size: 1.1rem; }
.legal-article p, .legal-article li { color: var(--ink-soft); }
.legal-article ul { display: grid; gap: 8px; padding-left: 22px; }
.legal-article a { color: var(--teal-dark); font-weight: 700; }
.legal-callout { margin: 26px 0; padding: 20px 22px; border: 2px solid var(--ink); border-radius: 15px; background: var(--cream); }
.legal-footer { padding: 28px 0; color: #c3c9d9; background: #0f1930; }
.legal-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px 28px; }
.legal-footer a { color: var(--teal); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero-grid, .care-layout, .request-layout { grid-template-columns: 1fr; }
  .vendor-preview { justify-self: center; }
  .hero-copy { max-width: 800px; }
  .value-grid { gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .request-copy { position: static; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .hero { padding: 66px 0 78px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .split-heading, .value-grid, .faq-layout { grid-template-columns: 1fr; gap: 22px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .work-card, .work-card:first-child { grid-column: span 6; display: block; }
  .work-card:first-child .work-visual { min-height: 270px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 30px, 1120px); }
  .nav-wrap { min-height: 68px; gap: 8px; }
  .brand { font-size: 1rem; }
  .brand img { width: 40px; height: 40px; }
  .brand small { display: none; }
  .button-small { min-height: 40px; padding: 9px 13px; font-size: .78rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 6px; }
  .vendor-preview { transform: none; box-shadow: 9px 11px 0 rgba(20,33,61,.24); }
  .preview-body { padding: 24px 20px; }
  .audience-grid, .process-grid, .form-grid.two, .choice-grid { grid-template-columns: 1fr; }
  .package-card { padding: 27px 22px; }
  .care-plans article { grid-template-columns: 1fr; }
  .care-price { grid-row: 1; }
  .care-plans ul { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { align-items: flex-start; flex-direction: column; padding-block: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Local Community Pass page */
.community-pass { background: #dff2f2; }
.community-pass-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(30px, 6vw, 62px);
  border: 3px solid var(--ink);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-strong);
}
.community-pass-copy h2 { margin-bottom: 18px; font-size: clamp(2.35rem, 5vw, 4.45rem); letter-spacing: -.04em; line-height: .98; }
.community-pass-copy > p { max-width: 62ch; color: var(--ink-soft); font-size: 1.06rem; }
.community-pass-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px; }
.community-pass-actions .text-link { color: var(--teal-dark); font-weight: 800; }
.community-pass-note { padding: 27px; border: 3px solid var(--ink); border-radius: var(--radius); background: var(--cream); box-shadow: 8px 9px 0 rgba(20,33,61,.13); transform: rotate(1deg); }
.community-pass-note > span { display: grid; width: 58px; height: 58px; margin-bottom: 15px; place-items: center; border-radius: 17px; background: var(--yellow); font-size: 2rem; }
.community-pass-note h3 { margin-bottom: 12px; font-size: 1.45rem; }
.community-pass-note ol { display: grid; gap: 9px; margin: 0 0 18px; padding-left: 22px; color: var(--ink-soft); }
.community-pass-note p { margin: 0; color: var(--ink-soft); font-size: .86rem; }
.community-pass-note a { color: var(--teal-dark); font-weight: 800; }

.member-price-label { margin: 14px 0 3px; color: var(--teal-dark); font-size: .74rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.care-price-wrap { min-width: 168px; text-align: right; }
.care-price-wrap > span { display: block; margin-bottom: 5px; color: var(--teal-dark); font-size: .64rem; font-weight: 900; letter-spacing: .06em; line-height: 1.2; text-transform: uppercase; }
.care-plan-link { grid-column: 1 / -1; width: max-content; color: var(--teal-dark); font-size: .84rem; font-weight: 800; }

.planner-section { background: linear-gradient(160deg, #fdf2df 0, var(--paper) 48%, #dff2f2 100%); }
.planner-heading { max-width: 850px; }
.planner-member-note { width: fit-content; margin: 14px auto 0; padding: 8px 14px; border-radius: 999px; color: var(--teal-dark); background: var(--white); font-size: .84rem; font-weight: 800; }
.planner-layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: start; gap: clamp(26px, 5vw, 54px); }
.planner-controls { display: grid; gap: 20px; }
.planner-controls .planner-step { margin: 0; padding: clamp(21px, 4vw, 32px); border: 3px solid var(--ink); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.planner-step legend { padding: 0 10px 0 0; color: var(--ink); font-family: "Fredoka", system-ui, sans-serif; font-size: 1.18rem; font-weight: 700; }
.planner-step legend > span { display: inline-grid; width: 36px; height: 36px; margin-right: 8px; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); box-shadow: 0 4px 0 rgba(20,33,61,.18); }
.planner-option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 10px; }
.planner-option-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.planner-option {
  display: grid;
  grid-template-columns: 23px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 86px;
  padding: 15px;
  border: 2px solid #a5acba;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.planner-option:hover { border-color: var(--teal-dark); transform: translateY(-1px); }
.planner-option:has(input:checked) { border-color: var(--ink); background: #e8f5f5; box-shadow: 0 5px 0 rgba(20,33,61,.12); }
.planner-option input[type="radio"] { width: 21px; height: 21px; margin: 0; accent-color: var(--teal-dark); }
.planner-option-copy { display: grid; gap: 3px; }
.planner-option-copy b { font-size: .94rem; line-height: 1.2; }
.planner-option-copy small { color: var(--ink-soft); font-size: .72rem; line-height: 1.35; }
.planner-option > strong { align-self: start; color: var(--red); font-family: "Fredoka", system-ui, sans-serif; font-size: .84rem; text-align: right; }
.planner-addon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.planner-addon-grid label { display: flex; min-height: 48px; align-items: center; gap: 9px; padding: 10px 12px; border: 1px solid #aeb5c1; border-radius: 10px; color: var(--ink-soft); font-size: .84rem; font-weight: 700; cursor: pointer; }
.planner-addon-grid label:has(input:checked) { border-color: var(--ink); color: var(--ink); background: var(--cream); }
.planner-addon-grid input { flex: 0 0 auto; }
.planner-membership-step { background: #fff9df !important; }
.planner-membership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.planner-membership-grid .planner-option { grid-template-columns: 23px 1fr; min-height: 76px; }
.planner-membership-step > p:last-child { margin: 17px 0 0; color: var(--ink-soft); font-size: .84rem; }
.planner-membership-step a { color: var(--teal-dark); font-weight: 800; }
.planner-controls [aria-invalid="true"] { border-color: var(--red) !important; outline: 3px solid rgba(216,58,33,.18); }

.planner-receipt { position: sticky; top: 103px; padding: 30px; border: 3px solid var(--ink); border-radius: 25px; background: var(--white); box-shadow: var(--shadow-strong); }
.receipt-pin { position: absolute; top: -17px; right: 22px; padding: 7px 14px; border: 2px solid var(--ink); border-radius: 999px; background: var(--yellow); font-family: "Fredoka", system-ui, sans-serif; font-size: .77rem; font-weight: 700; transform: rotate(2deg); }
.planner-receipt h3 { margin-bottom: 6px; font-size: 1.65rem; }
.receipt-member-note { margin-bottom: 22px; color: var(--teal-dark); font-size: .76rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
.planner-receipt dl { margin: 0 0 23px; }
.planner-receipt dl > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 15px; padding: 12px 0; border-bottom: 1px dashed #b9bec8; }
.planner-receipt dt { color: var(--ink-soft); font-size: .82rem; }
.planner-receipt dd { max-width: 185px; margin: 0; font-weight: 800; text-align: right; overflow-wrap: anywhere; }
.planner-receipt .receipt-total { padding-block: 16px; }
.planner-receipt .receipt-total dt, .planner-receipt .receipt-total dd { color: var(--ink); font-family: "Fredoka", system-ui, sans-serif; font-size: 1rem; }
.receipt-disclosure { color: var(--ink-soft); font-size: .74rem; line-height: 1.5; }
.planner-status { margin: 13px 0 0; color: var(--ink-soft); font-size: .72rem; text-align: center; }

.request-plan-summary { display: grid; grid-template-columns: 1fr auto; gap: 3px 18px; margin-bottom: 22px; padding: 16px 18px; border: 2px dashed var(--ink); border-radius: 13px; background: #e8f5f5; }
.request-plan-summary > span { grid-column: 1 / -1; color: var(--teal-dark); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.request-plan-summary strong { font-size: .83rem; }
.request-plan-summary a { color: var(--teal-dark); font-size: .78rem; font-weight: 800; }
.faq-list a { color: var(--teal); font-weight: 800; }
.lead-form .button:disabled { cursor: not-allowed; opacity: .66; transform: none; box-shadow: 0 4px 0 rgba(20,33,61,.18); }

@media (max-width: 980px) {
  .community-pass-card, .planner-layout { grid-template-columns: 1fr; }
  .community-pass-note { transform: none; }
  .planner-receipt { position: static; }
}

@media (max-width: 760px) {
  .planner-option-grid-three { grid-template-columns: 1fr; }
  .care-price-wrap { min-width: 0; }
}

@media (max-width: 560px) {
  .community-pass-card { padding: 27px 21px; border-radius: 24px; }
  .community-pass-actions { align-items: stretch; flex-direction: column; }
  .community-pass-actions .button { width: 100%; }
  .planner-option-grid, .planner-membership-grid, .planner-addon-grid { grid-template-columns: 1fr; }
  .planner-option { grid-template-columns: 22px 1fr; }
  .planner-option > strong { grid-column: 2; justify-self: start; text-align: left; }
  .planner-receipt { padding: 27px 21px; }
  .planner-receipt dl > div { grid-template-columns: 1fr; gap: 2px; }
  .planner-receipt dd { max-width: none; text-align: left; }
  .request-plan-summary { grid-template-columns: 1fr; }
  .request-plan-summary > span { grid-column: 1; }
  .care-price-wrap { text-align: left; }
}
