:root {
  --cream: #fff9ed;
  --cream-deep: #f6ecd9;
  --paper: #fffdf7;
  --navy: #233b73;
  --navy-strong: #172a58;
  --navy-soft: #516184;
  --sky: #87cef2;
  --sky-pale: #dff3fc;
  --mango: #ffc857;
  --mango-pale: #fff0c8;
  --coral: #ff7d6b;
  --coral-pale: #ffe1dc;
  --mint: #8bd6b5;
  --mint-pale: #ddf4e9;
  --grape: #7967c8;
  --grape-pale: #e8e4f8;
  --white: #ffffff;
  --focus: #5f48bd;

  --font-display: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --step--1: clamp(0.875rem, 0.84rem + 0.16vw, 0.95rem);
  --step-0: clamp(1rem, 0.97rem + 0.14vw, 1.075rem);
  --step-1: clamp(1.15rem, 1.08rem + 0.34vw, 1.35rem);
  --step-2: clamp(1.45rem, 1.28rem + 0.75vw, 1.9rem);
  --step-3: clamp(1.85rem, 1.5rem + 1.55vw, 2.8rem);
  --step-4: clamp(2.35rem, 1.78rem + 2.55vw, 4rem);
  --step-5: clamp(2.75rem, 2rem + 3.7vw, 5.45rem);

  --space-1: clamp(0.5rem, 0.45rem + 0.22vw, 0.68rem);
  --space-2: clamp(0.75rem, 0.66rem + 0.4vw, 1rem);
  --space-3: clamp(1rem, 0.84rem + 0.7vw, 1.5rem);
  --space-4: clamp(1.5rem, 1.22rem + 1.2vw, 2.25rem);
  --space-5: clamp(2rem, 1.55rem + 1.95vw, 3.25rem);
  --space-6: clamp(3rem, 2.2rem + 3.5vw, 5.5rem);
  --space-7: clamp(4.5rem, 3.2rem + 5.6vw, 8rem);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: clamp(24px, 3vw, 44px);
  --radius-pill: 999px;
  --shadow-sm: 0 4px 10px rgba(35, 59, 115, 0.11);
  --shadow-md: 0 15px 35px rgba(35, 59, 115, 0.12);
  --shadow-button: 0 5px 0 #172a58, 0 10px 20px rgba(35, 59, 115, 0.16);
  --shadow-button-pressed: inset 0 3px 6px rgba(23, 42, 88, 0.22);
  --content: 1180px;
  --content-wide: 1320px;
  --header-height: 76px;
  --motion-fast: 160ms;
  --motion-base: 320ms;
  --motion-slow: 500ms;
  --motion-hero: 680ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --bp-sm: 36rem;
  --bp-md: 48rem;
  --bp-lg: 64rem;
  --bp-xl: 80rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--navy-strong);
  background: var(--mango);
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--cream-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-soft);
  border: 3px solid var(--cream-deep);
  border-radius: var(--radius-pill);
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.09em;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-strong);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: var(--space-3);
  font-size: var(--step-5);
}

h2 {
  margin-bottom: var(--space-3);
  font-size: var(--step-3);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: var(--step-1);
}

p {
  max-width: 72ch;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--space-7);
}

.section-kicker,
.eyebrow {
  margin-bottom: var(--space-2);
  color: var(--navy);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 3px;
  margin: 0 10px 0.2em 0;
  border-radius: var(--radius-pill);
  background: var(--coral);
}

.lead {
  color: var(--navy-soft);
  font-size: var(--step-1);
  line-height: 1.6;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--navy-strong);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--motion-fast) var(--ease-out);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-pill);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out), background-color var(--motion-fast) ease;
}

.button svg,
.text-link svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.button--primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow-button);
}

.button--secondary {
  color: var(--navy-strong);
  background: var(--mango);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 5px 0 #d99a1a, 0 10px 20px rgba(128, 83, 4, 0.14);
}

.button--light {
  color: var(--navy-strong);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.34), 0 10px 24px rgba(0, 0, 0, 0.2);
}

.button--compact {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 0 var(--navy-strong), 0 8px 16px rgba(35, 59, 115, 0.13);
}

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

.button:active {
  box-shadow: var(--shadow-button-pressed);
  transform: translateY(3px);
}

.text-link,
.mini-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.42rem;
  color: var(--navy-strong);
  font-weight: 700;
}

.text-link:hover,
.mini-link:hover {
  color: var(--grape);
}

.mini-link {
  margin-top: auto;
  font-size: 0.93rem;
  line-height: 1.3;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(255, 249, 237, 0.96);
  border-bottom: 1px solid rgba(35, 59, 115, 0.1);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy-strong);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy);
  background: var(--mango-pale);
  border: 1px solid rgba(35, 59, 115, 0.15);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-mark path:first-child {
  fill: var(--mango);
  stroke: var(--navy);
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--navy);
}

.brand-mark path:last-child {
  stroke: var(--navy);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.brand strong,
.brand small {
  display: block;
  font-family: var(--font-display);
  line-height: 1.05;
}

.brand strong {
  font-size: 1.03rem;
}

.brand small {
  margin-top: 0.12rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(35, 59, 115, 0.18);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 4px 0 var(--cream-deep), var(--shadow-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform var(--motion-fast) ease, opacity var(--motion-fast) ease;
}

.menu-toggle:active {
  box-shadow: var(--shadow-button-pressed);
  transform: translateY(2px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.6rem);
}

.main-nav > a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.main-nav > a:not(.button):hover {
  color: var(--grape);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  padding-block: var(--space-5) var(--space-6);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: var(--space-5);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 59ch;
  margin-bottom: var(--space-4);
  color: var(--navy-soft);
  font-size: var(--step-1);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.microcopy {
  margin: var(--space-2) 0 var(--space-3);
  color: var(--navy-soft);
  font-size: var(--step--1);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-chips li {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  color: var(--navy-strong);
  background: var(--white);
  border: 1px solid rgba(35, 59, 115, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: 0 3px 0 var(--cream-deep);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-chips svg {
  width: 1rem;
  height: 1rem;
}

.trust-chips .pending-chip {
  color: var(--navy-soft);
  background: #fbf7ef;
  border-style: dashed;
}

.hero-visual {
  position: relative;
  width: min(100%, 620px);
  margin-inline: auto;
  padding: 0 0.6rem 1.5rem 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12px 18px 18px -12px;
  background: var(--sky);
  border-radius: 44% 56% 38% 62% / 33% 36% 64% 67%;
  transform: rotate(-2deg);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border: 5px solid var(--white);
  border-radius: 44% 56% 38% 62% / 33% 36% 64% 67%;
  box-shadow: var(--shadow-md);
}

.hero-photo figcaption,
.portrait-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 3%;
  bottom: -13px;
  max-width: 85%;
  padding: 0.46rem 0.72rem;
  color: var(--navy-strong);
  background: var(--white);
  border: 1px solid rgba(35, 59, 115, 0.14);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.35rem;
  background: var(--coral);
  border-radius: 50%;
}

.photo-note {
  position: absolute;
  z-index: 3;
  top: 5%;
  right: -2%;
  padding: 0.62rem 0.8rem;
  color: var(--navy-strong);
  background: var(--mango);
  border: 1px solid rgba(35, 59, 115, 0.15);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  transform: rotate(3deg);
}

.hero-path {
  position: absolute;
  z-index: 3;
  right: -10%;
  bottom: -3%;
  width: 72%;
  overflow: visible;
  pointer-events: none;
}

.hero-path path,
.age-path-line path,
.final-journey path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2 11;
}

.guide-star {
  position: relative;
  width: 66px;
  aspect-ratio: 1;
  filter: drop-shadow(0 5px 5px rgba(35, 59, 115, 0.16));
}

.guide-star svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.guide-star svg > path:first-child {
  fill: var(--mango);
  stroke: var(--navy);
  stroke-width: 2.5;
  stroke-linejoin: round;
}

.guide-star circle {
  fill: var(--navy);
}

.guide-star .star-smile {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2.8;
  stroke-linecap: round;
}

.guide-star--hero {
  position: absolute;
  z-index: 4;
  right: 19%;
  bottom: 0;
  transform: rotate(-8deg);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.42;
}

.hero-orbit--one {
  width: 150px;
  height: 150px;
  top: 10%;
  right: -72px;
  background: var(--coral-pale);
}

.hero-orbit--two {
  width: 80px;
  height: 80px;
  bottom: 8%;
  left: -35px;
  background: var(--mint-pale);
}

.principles {
  padding-block: var(--space-4);
  color: var(--white);
  background: var(--navy);
}

.principles-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.principles-heading p,
.principles-heading span {
  margin: 0;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.principles-heading span {
  color: var(--sky-pale);
  font-size: 0.7rem;
}

.principles-list {
  display: grid;
  gap: var(--space-3);
}

.principles article {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 0.85rem;
}

.principles h2,
.principles p {
  color: inherit;
}

.principles h2 {
  margin-bottom: 0.3rem;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.principles article p {
  margin-bottom: 0;
  color: var(--sky-pale);
  font-size: 0.9rem;
  line-height: 1.45;
}

.principle-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-strong);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.55), 0 4px 0 rgba(0, 0, 0, 0.18);
}

.principle-icon svg {
  width: 23px;
  height: 23px;
}

.principle-icon--coral { background: var(--coral); }
.principle-icon--sky { background: var(--sky); }
.principle-icon--mint { background: var(--mint); }

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

.about-grid {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

.about-media {
  position: relative;
  max-width: 620px;
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 8px;
  box-shadow: var(--shadow-md);
}

.portrait-frame figcaption {
  right: auto;
  left: 4%;
}

.about-stamp {
  position: absolute;
  right: -5px;
  bottom: -20px;
  display: grid;
  width: 92px;
  aspect-ratio: 1;
  place-items: center;
  padding: 0.75rem;
  color: var(--navy-strong);
  background: var(--mint);
  border: 2px dashed var(--navy);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transform: rotate(7deg);
}

.section-copy h2 {
  max-width: 17ch;
}

.bio-placeholder {
  margin: var(--space-4) 0;
  padding: var(--space-3);
  color: var(--navy-soft);
  background: var(--cream);
  border: 1px dashed rgba(35, 59, 115, 0.35);
  border-radius: var(--radius-md);
}

.bio-placeholder p {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.bio-placeholder p:last-child {
  margin-bottom: 0;
}

.section-heading {
  margin-bottom: var(--space-5);
}

.section-heading > p:last-child {
  color: var(--navy-soft);
}

.section-heading--center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.journey {
  background: var(--cream);
}

.age-path {
  position: relative;
  display: grid;
  gap: var(--space-3);
}

.age-path-line {
  display: none;
}

.age-stop {
  position: relative;
  display: flex;
  min-height: 235px;
  flex-direction: column;
  padding: var(--space-3);
  background: var(--paper);
  border: 1px solid rgba(35, 59, 115, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-base) var(--ease-out);
}

.age-stop:hover {
  transform: rotate(0.5deg) translateY(-3px);
}

.age-stop::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: -28px;
  left: 42px;
  border-left: 2px dashed rgba(35, 59, 115, 0.3);
}

.age-stop:last-child::before {
  display: none;
}

.age-dot {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-2);
  place-items: center;
  color: var(--navy-strong);
  background: var(--mango);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 4px 0 rgba(35, 59, 115, 0.18);
  font-family: var(--font-display);
  font-weight: 700;
}

.age-stop--2 .age-dot { background: var(--coral); }
.age-stop--3 .age-dot { background: var(--sky); }
.age-stop--4 .age-dot { background: var(--mint); }
.age-stop--5 .age-dot { color: var(--white); background: var(--grape); }

.age-label {
  margin-bottom: 0.4rem;
  color: var(--navy-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.age-stop > p:not(.age-label) {
  color: var(--navy-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.age-stop strong,
.need-card strong,
.faq-panel strong {
  color: var(--navy);
  font-size: 0.82em;
}

.first-visit {
  color: var(--white);
  background: var(--navy);
}

.first-visit h2,
.first-visit h3,
.first-visit .section-kicker {
  color: var(--white);
}

.first-visit .section-heading > p:last-child {
  color: var(--sky-pale);
}

.first-visit .section-kicker::before {
  background: var(--mango);
}

.visit-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.visit-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--navy-strong);
  background: var(--mango);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.5), 0 4px 0 rgba(0, 0, 0, 0.18);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.visit-steps li:nth-child(2) .step-number { background: var(--coral); }
.visit-steps li:nth-child(3) .step-number { background: var(--sky); }
.visit-steps li:nth-child(4) .step-number { background: var(--mint); }

.visit-steps p {
  margin-bottom: 0;
  color: var(--sky-pale);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

.first-visit .button--primary {
  color: var(--navy-strong);
  background: var(--mango);
  box-shadow: 0 5px 0 #d99a1a, 0 12px 24px rgba(0, 0, 0, 0.18);
}

.needs {
  background: var(--paper);
}

.needs-grid {
  display: grid;
  gap: var(--space-3);
}

.need-card {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: var(--space-3);
  color: var(--navy-strong);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out);
}

.need-card:hover {
  box-shadow: 0 11px 24px rgba(35, 59, 115, 0.13);
  transform: rotate(-0.5deg) translateY(-3px);
}

.need-card p {
  color: #374a70;
  font-size: 0.94rem;
}

.need-card--yellow { background: var(--mango-pale); }
.need-card--mint { background: var(--mint-pale); }
.need-card--sky { background: var(--sky-pale); }
.need-card--coral { background: var(--coral-pale); }
.need-card--grape { background: var(--grape-pale); }
.need-card--outline { background: var(--cream); border: 1px dashed rgba(35, 59, 115, 0.4); }

.need-mark {
  display: inline-block;
  width: fit-content;
  margin-bottom: var(--space-3);
  padding: 0.25rem 0.5rem;
  color: var(--navy-strong);
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mission {
  background: var(--cream);
}

.mission-shell {
  position: relative;
  display: grid;
  gap: var(--space-5);
  padding: var(--space-4);
  background: var(--mango);
  border: 1px solid rgba(35, 59, 115, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 #e2a72d, var(--shadow-md);
}

.mission-intro {
  padding-top: 72px;
}

.mission-intro h2 {
  max-width: 10ch;
  font-size: var(--step-4);
}

.mission-intro p:not(.section-kicker) {
  color: #3e4b68;
}

.guide-star--mission {
  position: absolute;
  top: -28px;
  left: var(--space-4);
  width: 88px;
  transform: rotate(-7deg);
}

.guide-star--mission svg > path:first-child {
  fill: var(--coral);
}

.mission-progress {
  display: grid;
  gap: 0.5rem;
  max-width: 350px;
  margin-top: var(--space-4);
  font-size: 0.85rem;
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(35, 59, 115, 0.16);
  border-radius: var(--radius-pill);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--navy);
  border-radius: inherit;
  transition: width var(--motion-base) var(--ease-out);
}

.mission-checklist {
  display: grid;
  gap: 0.8rem;
}

.mission-item {
  position: relative;
  display: grid;
  min-height: 74px;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 0.8rem;
  padding: 0.9rem;
  color: var(--navy-strong);
  background: rgba(255, 253, 247, 0.95);
  border: 1px solid rgba(35, 59, 115, 0.16);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 0 rgba(154, 104, 11, 0.2), inset 0 2px 0 var(--white);
  cursor: pointer;
  transition: transform var(--motion-fast) var(--ease-out), background-color var(--motion-fast) ease;
}

.mission-item:hover {
  transform: rotate(0.35deg);
}

.mission-item:has(input:checked) {
  background: var(--mint-pale);
}

.mission-item input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.mission-item input:focus-visible + .custom-check {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.custom-check {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: transparent;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 3px 0 rgba(35, 59, 115, 0.18);
}

.custom-check svg {
  width: 24px;
  height: 24px;
}

.mission-item input:checked + .custom-check {
  color: var(--white);
  background: var(--navy);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.18);
}

.mission-item strong,
.mission-item em {
  display: block;
}

.mission-item strong {
  margin-bottom: 0.18rem;
  font-family: var(--font-display);
  font-size: 1.04rem;
}

.mission-item span:last-child {
  color: #405172;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mission-item em {
  margin-top: 0.28rem;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.mission-checklist .button {
  justify-self: start;
  margin-top: var(--space-2);
}

.space {
  background: var(--paper);
}

.gallery {
  display: grid;
  gap: var(--space-3);
}

.gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--motion-slow) var(--ease-out);
}

.gallery figure:hover img {
  transform: scale(1.015);
}

.gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 0.68rem 0.8rem;
  color: var(--navy-strong);
  background: rgba(255, 253, 247, 0.94);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
}

.gallery figcaption span {
  display: block;
  color: var(--navy-soft);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.gallery-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 1rem;
  padding: var(--space-4);
  color: var(--navy);
  background: var(--sky-pale);
  border: 2px dashed rgba(35, 59, 115, 0.35);
  border-radius: var(--radius-md);
  text-align: center;
}

.gallery-placeholder svg {
  width: 46px;
  height: 46px;
}

.gallery-placeholder p {
  margin: 0;
}

.gallery-placeholder strong,
.gallery-placeholder span {
  display: block;
}

.gallery-placeholder span {
  margin-top: 0.3rem;
  color: var(--navy-soft);
  font-size: 0.85rem;
}

.proof-alternative {
  background: var(--sky-pale);
}

.proof-grid {
  display: grid;
  gap: var(--space-5);
}

.proof-grid h2 {
  max-width: 17ch;
}

.observe-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.observe-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(35, 59, 115, 0.22);
}

.observe-list li:last-child {
  border-bottom: 1px solid rgba(35, 59, 115, 0.22);
}

.observe-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-strong);
  background: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
}

.observe-list p {
  margin: 0;
  color: #405172;
}

.observe-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--navy-strong);
  font-family: var(--font-display);
  font-size: 1.03rem;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  gap: var(--space-5);
}

.faq-intro {
  align-self: start;
}

.faq-intro p:not(.section-kicker) {
  color: var(--navy-soft);
}

.faq-intro .button {
  margin-top: var(--space-3);
}

.faq-item {
  border-top: 1px solid rgba(35, 59, 115, 0.22);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(35, 59, 115, 0.22);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  color: var(--navy-strong);
  background: transparent;
  border: 0;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-strong);
  background: var(--white);
  border: 1px solid rgba(35, 59, 115, 0.17);
  border-radius: 50%;
  box-shadow: 0 3px 0 var(--cream-deep);
  transition: transform var(--motion-base) var(--ease-out), background-color var(--motion-fast) ease;
}

.faq-icon svg {
  width: 22px;
  height: 22px;
}

.faq-item button[aria-expanded="true"] .faq-icon {
  color: var(--white);
  background: var(--navy);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.18);
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 3.8rem var(--space-3) 0;
  color: var(--navy-soft);
}

.faq-panel p {
  margin-bottom: 0;
}

.js .faq-panel[hidden] {
  display: none;
}

.location {
  background: var(--paper);
}

.location-shell {
  display: grid;
  overflow: hidden;
  background: var(--mint-pale);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location-copy {
  padding: var(--space-4);
}

.location-pin {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: var(--space-3);
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 4px 0 var(--navy-strong);
}

.location-pin svg {
  width: 28px;
  height: 28px;
}

.location address {
  margin: var(--space-3) 0 0.7rem;
  color: #405172;
  font-style: normal;
}

.location address strong {
  color: var(--navy-strong);
}

.location address span,
.location-copy > p:last-of-type {
  font-size: 0.82rem;
  font-weight: 700;
}

.location-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  margin-top: var(--space-4);
}

.map-art {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--sky);
}

.road {
  position: absolute;
  width: 130%;
  height: 34px;
  background: var(--cream);
  border: 1px solid rgba(35, 59, 115, 0.18);
  border-radius: var(--radius-pill);
}

.road--one { top: 23%; left: -17%; transform: rotate(14deg); }
.road--two { top: 57%; left: -10%; transform: rotate(-18deg); }
.road--three { top: 79%; left: -15%; transform: rotate(8deg); }

.map-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--mango);
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.map-dot--one { top: 21%; left: 17%; }
.map-dot--two { top: 70%; left: 73%; background: var(--coral); }
.map-dot--three { top: 47%; right: 12%; background: var(--mint); }

.map-home {
  position: absolute;
  top: 37%;
  left: 46%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 12px;
  box-shadow: var(--shadow-md);
  transform: rotate(-45deg);
}

.map-home svg {
  width: 38px;
  height: 38px;
  transform: rotate(45deg);
}

.final-cta {
  padding-block: var(--space-6);
  color: var(--white);
  background: var(--navy);
}

.final-shell {
  display: grid;
  align-items: center;
  gap: var(--space-5);
}

.final-copy {
  position: relative;
  z-index: 2;
}

.final-copy h2,
.final-copy .section-kicker {
  color: var(--white);
}

.final-copy h2 {
  max-width: 18ch;
  font-size: var(--step-4);
}

.final-copy > p:not(.section-kicker) {
  color: var(--sky-pale);
  font-size: var(--step-1);
}

.final-copy .section-kicker::before {
  background: var(--mango);
}

.final-copy .button {
  margin-top: var(--space-3);
}

.final-journey {
  position: relative;
  min-height: 220px;
}

.final-journey svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-journey path {
  stroke: var(--sky);
  stroke-width: 4;
}

.guide-star--final {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 105px;
  transform: rotate(10deg);
}

.final-journey p {
  position: absolute;
  top: 3%;
  right: 35%;
  color: var(--mango);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  transform: rotate(-6deg);
}

.site-footer {
  padding: var(--space-6) 0 calc(var(--space-6) + 70px);
  color: var(--sky-pale);
  background: var(--navy-strong);
}

.footer-grid {
  display: grid;
  gap: var(--space-4);
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand-mark {
  color: var(--navy);
}

.footer-brand p,
.footer-column p,
.privacy-note p {
  color: #c9d3e8;
  font-size: 0.88rem;
}

.footer-column h2,
.privacy-note h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-column a {
  display: block;
  width: fit-content;
  min-height: 44px;
  padding-block: 0.45rem;
  color: var(--white);
  font-weight: 600;
}

.privacy-note {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.privacy-note p:last-child {
  margin-bottom: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 12px;
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.28), 0 14px 28px rgba(0, 0, 0, 0.22), inset 0 2px 0 rgba(255, 255, 255, 0.16);
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--motion-fast) var(--ease-out), opacity var(--motion-fast) ease;
}

.floating-whatsapp svg {
  width: 25px;
  height: 25px;
}

.floating-whatsapp:active {
  box-shadow: var(--shadow-button-pressed);
  transform: translateY(3px);
}

.noscript-note {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 80px;
  left: 12px;
  padding: 0.8rem 1rem;
  color: var(--navy-strong);
  background: var(--mango-pale);
  border: 1px solid var(--navy);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.js [data-reveal] {
  transition: opacity var(--motion-slow) var(--ease-out), transform var(--motion-slow) var(--ease-out);
}

.js [data-reveal="hero"] {
  transition-duration: var(--motion-hero);
}

.js [data-reveal="hero"]:nth-child(2) {
  transition-delay: 120ms;
}

.js [data-path] .age-path-line path,
.js .final-journey path,
.js .hero-path path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset var(--motion-slow) var(--ease-out);
}

.js .is-visible [data-path] .age-path-line path,
.js [data-reveal].is-visible .age-path-line path,
.js [data-reveal].is-visible .final-journey path,
.js [data-reveal="hero"].is-visible ~ [data-reveal="hero"] .hero-path path,
.js [data-reveal="hero"].is-visible .hero-path path {
  stroke-dashoffset: 0;
}

@media (min-width: 40rem) {
  .container {
    width: min(calc(100% - 3rem), var(--content));
  }

  .hero-actions .button {
    max-width: 330px;
  }

  .principles-list,
  .needs-grid,
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .principles-list article:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
  }

  .visit-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2rem;
  }

  .visit-steps li:nth-child(2) {
    border-top-color: transparent;
  }

  .visit-steps li:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .gallery-main {
    grid-row: span 2;
  }

  .gallery-main img {
    height: 100%;
    aspect-ratio: auto;
  }

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

@media (min-width: 60rem) {
  .hero {
    display: flex;
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: clamp(2rem, 5vw, 5.5rem);
  }

  .hero-copy {
    padding-block: var(--space-4);
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-photo img {
    aspect-ratio: 0.92 / 1;
  }

  .principles-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .principles-list article:last-child {
    grid-column: auto;
    max-width: none;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
    align-items: end;
    gap: var(--space-5);
  }

  .section-heading--split > p:last-child {
    margin-bottom: 0.55rem;
  }

  .age-path {
    grid-template-columns: repeat(5, 1fr);
    gap: clamp(0.8rem, 1.6vw, 1.35rem);
    padding-top: 138px;
  }

  .age-path-line {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 170px;
    overflow: visible;
  }

  .age-stop {
    min-height: 282px;
    padding: 1.2rem;
  }

  .age-stop::before {
    display: none;
  }

  .age-stop::after {
    content: "";
    position: absolute;
    top: -69px;
    left: 50%;
    height: 60px;
    border-left: 2px dashed rgba(35, 59, 115, 0.42);
  }

  .age-stop--2 { transform: translateY(-52px); }
  .age-stop--3 { transform: translateY(11px); }
  .age-stop--4 { transform: translateY(-42px); }
  .age-stop--5 { transform: translateY(-80px); }

  .age-stop:hover { transform: translateY(-3px) rotate(0.5deg); }
  .age-stop--2:hover { transform: translateY(-55px) rotate(0.5deg); }
  .age-stop--3:hover { transform: translateY(8px) rotate(0.5deg); }
  .age-stop--4:hover { transform: translateY(-45px) rotate(0.5deg); }
  .age-stop--5:hover { transform: translateY(-83px) rotate(0.5deg); }

  .visit-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .visit-steps li {
    display: block;
    padding: var(--space-4) var(--space-3);
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .visit-steps li:first-child {
    padding-left: 0;
  }

  .visit-steps li:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .step-number {
    margin-bottom: var(--space-3);
  }

  .needs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mission-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: clamp(3rem, 7vw, 7rem);
    padding: var(--space-5);
  }

  .mission-intro {
    padding-top: 64px;
  }

  .mission-checklist {
    padding-block: var(--space-2);
  }

  .proof-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: center;
  }

  .faq-grid {
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 30px);
  }

  .location-shell {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .location-copy {
    padding: var(--space-5);
  }

  .map-art {
    min-height: 500px;
  }

  .final-shell {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  }

  .final-journey {
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 22px;
    bottom: 22px;
    left: auto;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-footer {
    padding-bottom: var(--space-6);
  }
}

@media (max-width: 67.49rem) {
  .js .menu-toggle {
    display: block;
  }

  .js .main-nav {
    position: fixed;
    z-index: 99;
    top: calc(var(--header-height) + 8px);
    right: 1rem;
    left: 1rem;
    display: grid;
    max-height: calc(100svh - var(--header-height) - 28px);
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.8rem;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    border: 1px solid rgba(35, 59, 115, 0.14);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--ease-out), visibility var(--motion-fast) ease;
  }

  .js .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .main-nav > a:not(.button) {
    padding-inline: 0.65rem;
    border-radius: 9px;
  }

  .js .main-nav > a:not(.button):hover {
    background: var(--sky-pale);
  }

  .js .main-nav .button {
    margin-top: 0.35rem;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (min-width: 67.5rem) {
  .main-nav {
    display: flex !important;
  }
}

@media (min-width: 86rem) {
  .container {
    width: min(calc(100% - 5rem), var(--content-wide));
  }

  :root {
    --content: 1320px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  }

  .hero-photo img {
    aspect-ratio: 1 / 1;
  }

  .need-card {
    min-height: 260px;
    padding: var(--space-4);
  }
}

@media (max-width: 25rem) {
  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .hero-actions,
  .location-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .location-actions .button {
    width: 100%;
  }

  .photo-note {
    right: 0;
    font-size: 0.7rem;
  }

  .faq-panel {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal]:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .js [data-path] .age-path-line path,
  .js .final-journey path,
  .js .hero-path path {
    stroke-dashoffset: 0;
  }
}

@media print {
  .site-header,
  .floating-whatsapp,
  .hero-actions,
  .center-action,
  .mission-checklist .button,
  .location-actions,
  .faq-intro .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 2rem;
  }
}
