@font-face {
  font-family: "Nunito";
  src: url("/assets/Nunito-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #142b43;
  --blue: #a8cdeb;
  --blush: #fbe9ef;
  --pink: #d95f88;
  --rose: #a73562;
  --butter: #f6d778;
  --cream: #fff9f2;
  --muted: #526477;
  --white: #fff;
  --line: rgba(20, 43, 67, 0.12);
  --shadow: 0 24px 60px rgba(20, 43, 67, 0.11);
  --content: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: var(--rose); text-underline-offset: 0.2em; }
a:hover { text-decoration-thickness: 2px; }

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

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

.shell {
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand-link { flex: 0 0 auto; }
.brand-link img { width: 178px; height: auto; }

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-block;
  padding: 8px 2px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"] { color: var(--rose); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 104px) 0 clamp(64px, 9vw, 118px);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
  filter: blur(2px);
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -170px;
  right: -90px;
  background: rgba(168, 205, 235, 0.36);
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: -150px;
  left: -100px;
  background: rgba(251, 233, 239, 0.8);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(32px, 7vw, 80px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 730px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 9vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 850;
  letter-spacing: -0.03em;
}

h3 { margin-bottom: 8px; font-size: 1.3rem; font-weight: 850; }

.lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 24px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary { color: var(--white); background: var(--rose); }
.button-secondary { color: var(--ink); border-color: var(--line); background: var(--white); }

.coming-soon { cursor: default; }

.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 430px);
}

.hero-art::before {
  position: absolute;
  inset: 9% 7%;
  z-index: -1;
  border-radius: 50%;
  background: var(--blush);
  content: "";
}

.hero-art img {
  border-radius: 38% 38% 30% 30%;
  mix-blend-mode: multiply;
}

.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-white { background: var(--white); }
.section-blue { background: rgba(168, 205, 235, 0.3); }
.section-blush { background: rgba(251, 233, 239, 0.68); }

.section-heading { max-width: 700px; margin-bottom: 34px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.card-grid { display: grid; gap: 16px; }

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(20, 43, 67, 0.045);
}

.card p { margin: 0; color: var(--muted); }

.icon-badge {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 15px;
  color: var(--ink);
  background: var(--blush);
  font-size: 1.35rem;
  font-weight: 900;
}

.card:nth-child(2) .icon-badge { background: rgba(168, 205, 235, 0.55); }
.card:nth-child(3) .icon-badge { background: rgba(246, 215, 120, 0.65); }

.philosophy {
  display: grid;
  gap: 30px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--butter);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.plans { display: grid; gap: 18px; }

.plan {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 5vw, 38px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
}

.plan-plus { border-color: rgba(167, 53, 98, 0.28); box-shadow: var(--shadow); }
.plan-label { margin: 0 0 6px; color: var(--rose); font-weight: 900; }
.plan h3 { font-size: 1.8rem; }
.plan ul { display: grid; gap: 9px; padding-left: 1.25rem; color: var(--muted); }
.pricing-note { margin: 28px 0 0; text-align: center; color: var(--muted); font-weight: 700; }

.calm-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(30px, 6vw, 52px);
  border-radius: 30px;
  background: var(--ink);
  color: var(--white);
}

.calm-cta h2, .calm-cta a { color: var(--white); }
.calm-cta h2 { margin-bottom: 8px; }
.calm-cta p { margin: 0; color: rgba(255, 255, 255, 0.78); }
.calm-cta img { width: 96px; }

.page-hero { padding: clamp(48px, 7vw, 82px) 0 42px; }
.page-hero h1 { max-width: 820px; font-size: clamp(2.5rem, 7vw, 4.5rem); }
.page-hero .lead { max-width: 760px; }

.content-layout {
  display: grid;
  gap: 28px;
  padding-bottom: clamp(70px, 10vw, 120px);
}

.content-card {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.content-card > :first-child { margin-top: 0; }
.content-card > :last-child { margin-bottom: 0; }
.content-card p, .content-card li { color: var(--muted); }
.content-card h2 { margin-top: 32px; font-size: 1.65rem; }

.placeholder {
  padding: 16px 18px;
  border: 1px solid rgba(167, 53, 98, 0.22);
  border-radius: 16px;
  color: var(--ink);
  background: var(--blush);
  font-weight: 800;
}

.faq-list { display: grid; gap: 12px; }

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

summary {
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p { margin: 0; padding: 0 20px 20px; color: var(--muted); }

.contact-grid { display: grid; gap: 16px; }
.contact-card a { font-size: 1.05rem; font-weight: 850; }

.site-footer {
  padding: 44px 0 32px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid { display: grid; gap: 28px; }
.footer-logo { width: 180px; }
.footer-copy { max-width: 430px; margin: 12px 0 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 22px; align-content: start; }
.footer-nav a { color: var(--white); font-weight: 700; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); font-size: .92rem; }

@media (min-width: 720px) {
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .philosophy { grid-template-columns: 1.05fr .95fr; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .calm-cta { grid-template-columns: 1fr auto; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
}

@media (max-width: 719px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0 14px; }
  .brand-link img { width: 154px; }
  .site-nav ul { justify-content: flex-start; gap: 2px 16px; }
  .site-nav a { padding: 5px 0; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .actions { justify-content: center; }
  .hero-art { width: min(68vw, 280px); }
  .button { width: 100%; }
}

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