/* Reach for the Sky — Wireframe v0.1 */

:root {
  --purple: #5B1F6E;
  --purple-dark: #3D1349;
  --purple-deep: #2A0E33;
  --teal: #2A9D9D;
  --teal-dark: #1F7373;
  --coral: #E85A3C;
  --orange: #F2913C;
  --yellow: #F5C44A;
  --cream: #FDF6EC;
  --blush: #FDF2EC;
  --sky: #EAF6F6;
  --sand: #FAF6EE;
  --ink: #2D1F3D;
  --ink-soft: #5C4A6E;
  --muted: #8B7E9B;
  --line: #EAE3F0;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(45, 31, 61, 0.06);
  --shadow: 0 12px 40px rgba(45, 31, 61, 0.08);
  --shadow-lg: 0 24px 60px rgba(45, 31, 61, 0.12);

  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  font-variation-settings: "wdth" 100, "opsz" 24;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 3.9rem); font-weight: 700; font-variation-settings: "wdth" 95, "opsz" 96; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--teal-dark); font-size: 0.85rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 22px rgba(91, 31, 110, 0.28);
}
.btn-primary:hover {
  background: var(--purple-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-secondary {
  background: #fff;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-secondary:hover { background: var(--purple); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--purple-dark);
  border-color: transparent;
  padding: 14px 4px;
}
.btn-ghost:hover { color: var(--teal); }
.btn-large { padding: 18px 32px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  font-weight: 600;
  color: var(--purple-dark);
  font-size: 0.97rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--purple-dark);
}

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; padding: 18px 24px; border-bottom: 1px solid var(--line);
    align-items: flex-start; gap: 14px;
  }
  .nav.open .nav-cta {
    display: flex; flex-direction: column; gap: 10px;
    position: absolute; top: 250px; left: 0; right: 0;
    background: #fff; padding: 0 24px 18px; align-items: stretch;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 88px;
  background:
    radial-gradient(ellipse at 90% 0%, var(--blush) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 80%, var(--sky) 0%, transparent 50%),
    var(--bg-soft);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(42, 157, 157, 0.12);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .underline {
  background: linear-gradient(transparent 65%, rgba(245, 196, 74, 0.55) 65%);
  padding: 0 4px;
}
.hero-sub {
  font-size: 1.18rem;
  max-width: 540px;
  margin: 12px 0 28px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero-trust-item .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-weight: 700;
}

/* Hero illustration */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  border-radius: 50% 45% 50% 55% / 55% 50% 45% 50%;
  transform: rotate(-6deg);
}
.hero-art-bg::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px dashed rgba(245, 196, 74, 0.35);
  border-radius: inherit;
}
.hero-art-svg {
  position: relative;
  width: 78%;
  z-index: 2;
}
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.float-card .swatch {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.float-1 { top: 4%; left: -10%; animation: bob 5.5s ease-in-out infinite; }
.float-1 .swatch { background: var(--cream); }
.float-2 { bottom: 4%; right: -8%; animation: bob 6.5s ease-in-out infinite 0.8s; }
.float-2 .swatch { background: var(--sky); }
.float-3 { top: 12%; right: -6%; animation: bob 7s ease-in-out infinite 1.4s; }
.float-3 .swatch { background: rgba(232, 90, 60, 0.15); }

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}
.hero-art-bg { animation: slow-spin 32s linear infinite; }
@keyframes slow-spin {
  from { transform: rotate(-6deg); }
  to   { transform: rotate(354deg); }
}

/* Rainbow appears with staggered fade-up on load */
.draw-in path {
  opacity: 0;
  transform: translateY(8px);
  transform-origin: center bottom;
  transform-box: fill-box;
  animation: arc-in 0.9s cubic-bezier(.34, 1.56, .64, 1) forwards;
}
.draw-in path:nth-child(1) { animation-delay: 0.10s; }
.draw-in path:nth-child(2) { animation-delay: 0.22s; }
.draw-in path:nth-child(3) { animation-delay: 0.34s; }
.draw-in path:nth-child(4) { animation-delay: 0.46s; }
@keyframes arc-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Sun rise + ray pulse */
.sun-rays line { animation: ray-pulse 3s ease-in-out infinite; transform-origin: 200px 200px; }
.sun-rays line:nth-child(2) { animation-delay: 0.3s; }
.sun-rays line:nth-child(3) { animation-delay: 0.5s; }
.sun-rays line:nth-child(4) { animation-delay: 0.7s; }
.sun-rays line:nth-child(5) { animation-delay: 0.9s; }
@keyframes ray-pulse {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* Sparkle decorations */
.sparkle {
  position: absolute;
  width: 22px; height: 22px;
  opacity: 0.85;
  animation: twinkle 2.4s ease-in-out infinite;
}
.sparkle.s2 { animation-delay: 0.6s; }
.sparkle.s3 { animation-delay: 1.2s; }
@keyframes twinkle {
  0%, 100% { transform: scale(0.8) rotate(0deg); opacity: 0.4; }
  50%      { transform: scale(1.1) rotate(15deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .float-card, .hero-art-bg, .draw-in path, .sun-rays line, .sparkle, .marquee-track { animation: none !important; }
  .draw-in path { stroke-dashoffset: 0; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 64px; }
  .hero-art { max-width: 380px; margin: 0 auto; }
  .float-1 { left: 0; }
  .float-2 { right: 0; }
}

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.section-head h2 .accent { color: var(--teal); }

/* ---------- Value cards (3-up) ---------- */
.values {
  background:
    radial-gradient(ellipse at 50% 0%, var(--cream) 0%, transparent 60%),
    var(--bg);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}
.value-card:nth-child(2):hover { transform: translateY(-6px) rotate(0.5deg); }
.value-card:nth-child(3):hover { transform: translateY(-6px) rotate(-0.5deg); }
.value-card:hover .icon-wrap { transform: scale(1.08) rotate(-4deg); }
.value-card .icon-wrap { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); }
.value-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card.purple .icon-wrap { background: rgba(91, 31, 110, 0.1); color: var(--purple); }
.value-card.teal .icon-wrap   { background: rgba(42, 157, 157, 0.12); color: var(--teal-dark); }
.value-card.coral .icon-wrap  { background: rgba(232, 90, 60, 0.12); color: var(--coral); }
.value-card h3 { color: var(--purple-dark); margin-bottom: 8px; }
.value-card p { margin: 0; }

@media (max-width: 880px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ---------- Process (1-2-3 steps) ---------- */
.process {
  background: var(--sand);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  z-index: 0;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(91, 31, 110, 0.25);
}
.step-card:nth-child(2) .step-num { background: var(--teal); box-shadow: 0 6px 18px rgba(42, 157, 157, 0.3); }
.step-card:nth-child(3) .step-num { background: var(--coral); box-shadow: 0 6px 18px rgba(232, 90, 60, 0.3); }
.step-card h3 { margin-bottom: 6px; }
.step-card p { font-size: 0.98rem; }

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-grid::before { display: none; }
}

/* ---------- Dark contrast band ---------- */
.dark-band {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(42, 157, 157, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(232, 90, 60, 0.18) 0%, transparent 50%),
    var(--purple-deep);
  color: #F4EDF8;
  position: relative;
  overflow: hidden;
}
.dark-band h2, .dark-band h3 { color: #fff; }
.dark-band p { color: rgba(244, 237, 248, 0.78); }
.dark-band .section-head .eyebrow { color: var(--yellow); }
.rainbow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 16px;
}
.rainbow-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.rainbow-card .num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.rainbow-card:nth-child(1) .num { color: var(--coral); }
.rainbow-card:nth-child(2) .num { color: var(--orange); }
.rainbow-card:nth-child(3) .num { color: var(--yellow); }
.rainbow-card:nth-child(4) .num { color: var(--teal); }
.rainbow-card p { margin: 0; font-size: 0.95rem; }

@media (max-width: 880px) {
  .rainbow-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Approach (We do / We don't) ---------- */
.approach .approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.approach-lede h2 {
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  line-height: 1.05;
  margin-bottom: 22px;
}
.approach-mark {
  display: inline-block;
  position: relative;
  background: linear-gradient(transparent 70%, rgba(245, 196, 74, 0.32) 70%);
  padding: 0 4px;
}
.approach-quote {
  font-size: 1.05rem;
  color: rgba(244, 237, 248, 0.78);
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}
.approach-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.approach-col {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.col-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.col-tag em {
  font-style: italic;
  font-weight: 700;
}
.tag-do {
  color: var(--yellow);
}
.tag-do::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--yellow);
  margin-top: 8px;
  border-radius: 2px;
}
.tag-dont {
  color: var(--coral);
}
.tag-dont::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--coral);
  margin-top: 8px;
  border-radius: 2px;
}
.approach-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.approach-col li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(244, 237, 248, 0.92);
  font-size: 1rem;
  line-height: 1.5;
}
.approach-col li:first-child { border-top: 0; padding-top: 4px; }
.approach-col li:last-child  { padding-bottom: 0; }
.col-do li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 18px; height: 18px;
  background: var(--yellow);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='currentColor' d='M7.5 13.5L4 10l-1.4 1.4L7.5 16.3 17.4 6.4 16 5z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='currentColor' d='M7.5 13.5L4 10l-1.4 1.4L7.5 16.3 17.4 6.4 16 5z'/></svg>") no-repeat center / contain;
}
.col-do li:first-child::before { top: 8px; }
.col-dont li::before {
  content: "";
  position: absolute;
  left: 1px; top: 20px;
  width: 14px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.col-dont li:first-child::before { top: 10px; }
.col-dont li {
  color: rgba(244, 237, 248, 0.65);
}

@media (max-width: 980px) {
  .approach .approach-grid { grid-template-columns: 1fr; gap: 36px; }
  .approach-lede { max-width: 560px; }
  .approach-cols { gap: 18px; }
}
@media (max-width: 640px) {
  .approach-cols { grid-template-columns: 1fr; }
}

/* ---------- Insurance strip ---------- */
.insurance {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.insurance-head {
  text-align: center;
  margin-bottom: 36px;
}
.insurance-head h3 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.insurance-head p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple-dark);
  margin: 0;
}
.insurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.insurance-pill {
  padding: 10px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
}
.insurance-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  cursor: pointer;
}
.faq-item summary {
  font-weight: 600;
  color: var(--purple-dark);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 14px 0 0;
  font-size: 0.96rem;
}

@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 64px 0;
  background:
    linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-band .btn-primary {
  background: var(--yellow);
  color: var(--purple-dark);
  box-shadow: 0 8px 24px rgba(245, 196, 74, 0.35);
}
.cta-band .btn-primary:hover { background: #fff; color: var(--purple-dark); }
.cta-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  background: #FBF6F0;
  padding: 64px 0 28px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--purple-dark);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--ink-soft); }
.footer-grid a:hover { color: var(--purple); }
.footer-logo { height: 52px; margin-bottom: 16px; }
.footer-tagline { max-width: 320px; font-size: 0.94rem; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Services Page ---------- */
.page-hero {
  padding: 72px 0 72px;
  background:
    radial-gradient(ellipse at 85% 10%, var(--blush) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, var(--sky) 0%, transparent 50%),
    var(--bg-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(245, 196, 74, 0.25), transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 70%, rgba(42, 157, 157, 0.18), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.page-hero h1 { max-width: 820px; margin: 0 auto 16px; }
.page-hero .lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.what-is {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.what-is .copy h2 { color: var(--purple-dark); }
.what-is ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.what-is li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-top: 1px solid var(--line);
  color: var(--ink);
}
.what-is li:last-child { border-bottom: 1px solid var(--line); }
.what-is li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 22px;
  height: 22px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='currentColor' d='M7.5 13.5L4 10l-1.4 1.4L7.5 16.3 17.4 6.4 16 5z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='currentColor' d='M7.5 13.5L4 10l-1.4 1.4L7.5 16.3 17.4 6.4 16 5z'/></svg>") no-repeat center / contain;
}
.what-is .visual {
  background: var(--cream);
  border-radius: var(--radius-xl);
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.what-is .visual svg { width: 70%; }
.visual-tag {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-weight: 500;
  color: var(--ink);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.visual-tag .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.visual-tag.tag-a { top: 8%; left: 4%; animation: bob 5.5s ease-in-out infinite; }
.visual-tag.tag-a .dot { background: var(--coral); }
.visual-tag.tag-b { bottom: 8%; right: 4%; animation: bob 6.5s ease-in-out infinite 0.8s; }
.visual-tag.tag-b .dot { background: var(--teal); }

@media (max-width: 880px) {
  .what-is { grid-template-columns: 1fr; gap: 40px; }
}

/* Who it's for cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
}
.who-card .age {
  display: inline-block;
  background: var(--cream);
  color: var(--coral);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.who-card.b .age { background: var(--sky); color: var(--teal-dark); }
.who-card.c .age { background: rgba(91, 31, 110, 0.08); color: var(--purple); }
.who-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.who-card p { margin: 0; font-size: 0.96rem; }

@media (max-width: 880px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* What to expect (alternating rows) */
.expect-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.expect-row:last-child { margin-bottom: 0; }
.expect-row.flip { direction: rtl; }
.expect-row.flip > * { direction: ltr; }
.expect-row .visual-block {
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.expect-row.r1 .visual-block { background: var(--blush); }
.expect-row.r2 .visual-block { background: var(--sky); }
.expect-row.r3 .visual-block { background: var(--cream); }
.expect-row .copy h3 { color: var(--purple-dark); margin-bottom: 10px; }
.expect-row .copy .step-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 880px) {
  .expect-row, .expect-row.flip { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
}

/* ---------- Locations Page ---------- */
.locations-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse at 15% 20%, var(--sky) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, var(--blush) 0%, transparent 55%),
    var(--bg-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.locations-hero::before {
  content: "";
  position: absolute;
  top: 30%; left: 5%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow:
    180px 80px 0 -2px var(--yellow),
    420px -20px 0 -3px var(--teal),
    760px 60px 0 -2px var(--orange),
    1080px 30px 0 -3px var(--purple);
  opacity: 0.5;
  pointer-events: none;
}
.location-card-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.location-info {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.location-info h3 { color: var(--purple-dark); margin-bottom: 10px; }
.location-meta {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}
.location-meta li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.location-meta li:last-child { border-bottom: 1px solid var(--line); }
.location-meta .meta-icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-weight: 700;
}
.location-meta .meta-icon.coral { color: var(--coral); background: rgba(232,90,60,0.1); }
.location-meta .meta-icon.teal  { color: var(--teal-dark); background: rgba(42,157,157,0.12); }
.location-meta .meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.location-meta .meta-value {
  font-weight: 600;
  color: var(--ink);
}
.location-meta .meta-value a { color: var(--ink); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--sky);
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 460px; }
.map-placeholder {
  text-align: center;
  padding: 36px;
  color: var(--ink-soft);
}
.map-placeholder svg { margin: 0 auto 14px; }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.city-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.city-pill::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

@media (max-width: 880px) {
  .location-card-row { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Wavy dividers ---------- */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
}
.wave path { transition: fill .3s; }

/* ---------- Marquee strip ---------- */
.marquee {
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--purple), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--purple-dark), transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee-item .icon {
  display: inline-block;
  font-size: 1.2rem;
}
.marquee-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Squiggle underline ---------- */
.squiggle {
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
}
.squiggle::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'><path d='M0,5 Q15,0 30,5 T60,5 T90,5 T120,5' stroke='%232A9D9D' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") repeat-x center / 120px 10px;
}

/* ---------- Bg dots ---------- */
.dots-bg {
  position: relative;
}
.dots-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(91, 31, 110, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.6;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}

/* ---------- Improved float card on hero ---------- */
.float-card { transition: transform .3s ease, box-shadow .3s ease; }
.float-card:hover { transform: translateY(-4px) scale(1.04); box-shadow: var(--shadow-lg); }

/* ---------- Step card hover ---------- */
.step-card { transition: transform .3s ease, box-shadow .3s ease; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card .step-num { transition: transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.step-card:hover .step-num { transform: rotate(-8deg) scale(1.06); }

/* ---------- Who card hover ---------- */
.who-card { transition: transform .3s ease, box-shadow .3s ease; }
.who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

/* ---------- City pill hover ---------- */
.city-pill { transition: transform .25s ease, border-color .25s ease, color .25s ease; }
.city-pill:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
  color: var(--teal-dark);
  cursor: default;
}

/* ---------- Wireframe banner ---------- */
.wireframe-banner {
  background: linear-gradient(90deg, var(--coral), var(--orange));
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---------- Utility ---------- */
.bg-sand { background: var(--sand); }
.bg-cream { background: var(--cream); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
