/* ==========================================================================
   Aurora by Astha — Supervision · Yoga · Healing
   Design: the page moves from night (aurora) into dawn and full day (cream),
   mirroring the journey of healing. Three aurora hues = the three elements:
   sage (supervision) · gold (yoga) · rose (healing).
   ========================================================================== */

:root {
  /* Night (deep indigo-violet, from the aurora reference) */
  --night: #12142c;
  --night-2: #241a3d;
  --night-3: #2e2450;
  /* Day */
  --cream: #faf6ed;
  --cream-2: #f1eadc;
  --card: #fffefa;
  /* Ink */
  --ink: #1f2e27;
  --ink-soft: #52645a;
  --ink-faint: #5d6e63;
  --cream-ink: #eef2e9;     /* text on night */
  --cream-ink-soft: #c3d0c3;
  /* Brand */
  --pine: #33523f;
  --pine-deep: #2a4534;
  --sage: #9db8a1;
  /* Aurora — the three elements */
  --aur-green: #7fd4a8;   /* supervision */
  --aur-gold: #efc98b;    /* yoga */
  --aur-rose: #e9a99f;    /* healing */
  --aur-violet: #b8a6d9;
  --aur-teal: #86d8c9;    /* sky blending hues */
  --aur-pink: #dfa8cd;
  /* Element accents (text-safe on light card) */
  --el-supervision: #47775a;
  --el-yoga: #8a6420;
  --el-healing: #9c5246;
  /* System */
  --focus: #8a6420;
  --radius: 20px;
  --font-display: "Marcellus", "Georgia", serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --thread: linear-gradient(90deg, var(--aur-green), var(--aur-gold), var(--aur-rose));
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;            /* 17px */
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--pine); text-underline-offset: 3px; }

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

::selection { background: var(--aur-gold); color: var(--night); }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--cream);
  color: var(--ink);
  padding: 0.8rem 1.2rem;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

/* Eyebrow labels */
.eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.1rem;
}

/* The dawn thread — three-hue signature line under headings */
.thread {
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 3px;
  background: var(--thread);
  margin: 1.4rem 0 0;
}
.thread--center { margin-inline: auto; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  max-width: 22ch;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
              border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--pine);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--pine-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -12px rgba(31, 46, 39, 0.5);
}

.btn--ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(250, 246, 237, 0.12); }

.btn--dawn {
  background: var(--cream);
  color: var(--night);
}
.btn--dawn:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -12px rgba(14, 27, 22, 0.55);
}

/* ---------- Navigation ---------- */

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--cream-ink);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.brand em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  display: block;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  position: relative;
  color: var(--cream-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 0.2rem;
  transition: color 0.3s ease;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: currentColor;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn):focus-visible::after { transform: scaleX(1); }
.nav-links .btn { min-height: 42px; padding: 0.55rem 1.4rem; font-size: 0.92rem; }

/* Light state: after scrolling past the night hero, or on light pages */
.site-nav.scrolled,
.page-light .site-nav {
  background: rgba(250, 246, 237, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(31, 46, 39, 0.08);
}
.site-nav.scrolled .brand,
.site-nav.scrolled .nav-links a:not(.btn),
.page-light .site-nav .brand,
.page-light .site-nav .nav-links a:not(.btn) {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.6rem;
  min-width: 48px;
  min-height: 48px;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--cream-ink);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.3s ease;
}
.site-nav.scrolled .nav-toggle span,
.page-light .nav-toggle span { background: var(--ink); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 4vw 1.4rem;
    background: rgba(250, 246, 237, 0.98);
    box-shadow: 0 18px 30px -18px rgba(14, 27, 22, 0.35);
    display: none;
  }
  .site-nav.open .nav-links { display: flex; }
  .site-nav.open {
    background: rgba(250, 246, 237, 0.98);
    box-shadow: 0 1px 0 rgba(31, 46, 39, 0.08);
  }
  .site-nav.open .brand { color: var(--ink); }
  .site-nav.open .nav-toggle span { background: var(--ink); }
  .site-nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links a:not(.btn) {
    color: var(--ink) !important;
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid rgba(31, 46, 39, 0.08);
  }
  .nav-links li:last-child { margin-top: 1rem; }
  .nav-links .btn { width: 100%; }
}

/* ---------- Hero: night sky & aurora ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream-ink);
  background: linear-gradient(180deg, #0b0e1e 0%, var(--night) 45%, var(--night-2) 100%);
  padding-block: 8rem 10rem;
}

/* Stars — two layers twinkling out of phase */
.hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(238,242,233,0.9), transparent 100%),
    radial-gradient(1px 1px at 28% 32%, rgba(238,242,233,0.7), transparent 100%),
    radial-gradient(1.5px 1.5px at 41% 12%, rgba(238,242,233,0.8), transparent 100%),
    radial-gradient(1px 1px at 55% 26%, rgba(238,242,233,0.6), transparent 100%),
    radial-gradient(2px 2px at 68% 15%, rgba(238,242,233,0.85), transparent 100%),
    radial-gradient(1px 1px at 79% 34%, rgba(238,242,233,0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 88% 20%, rgba(238,242,233,0.8), transparent 100%),
    radial-gradient(1px 1px at 18% 45%, rgba(238,242,233,0.5), transparent 100%),
    radial-gradient(1px 1px at 62% 42%, rgba(238,242,233,0.5), transparent 100%),
    radial-gradient(1.5px 1.5px at 93% 48%, rgba(238,242,233,0.6), transparent 100%),
    radial-gradient(1px 1px at 5% 8%, rgba(238,242,233,0.7), transparent 100%),
    radial-gradient(1.5px 1.5px at 22% 6%, rgba(238,242,233,0.85), transparent 100%),
    radial-gradient(1px 1px at 35% 22%, rgba(238,242,233,0.55), transparent 100%),
    radial-gradient(1px 1px at 48% 6%, rgba(238,242,233,0.75), transparent 100%),
    radial-gradient(1.5px 1.5px at 60% 9%, rgba(238,242,233,0.7), transparent 100%),
    radial-gradient(1px 1px at 74% 5%, rgba(238,242,233,0.6), transparent 100%),
    radial-gradient(2px 2px at 84% 9%, rgba(238,242,233,0.8), transparent 100%),
    radial-gradient(1px 1px at 96% 14%, rgba(238,242,233,0.65), transparent 100%),
    radial-gradient(1px 1px at 8% 33%, rgba(238,242,233,0.55), transparent 100%),
    radial-gradient(1.5px 1.5px at 46% 38%, rgba(238,242,233,0.6), transparent 100%),
    radial-gradient(1px 1px at 71% 46%, rgba(238,242,233,0.5), transparent 100%),
    radial-gradient(1px 1px at 33% 52%, rgba(238,242,233,0.45), transparent 100%);
  animation: twinkle 7s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero__stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 16% 10%, rgba(238,242,233,0.8), transparent 100%),
    radial-gradient(1.5px 1.5px at 31% 16%, rgba(238,242,233,0.65), transparent 100%),
    radial-gradient(1px 1px at 44% 30%, rgba(238,242,233,0.6), transparent 100%),
    radial-gradient(1.5px 1.5px at 52% 14%, rgba(238,242,233,0.75), transparent 100%),
    radial-gradient(1px 1px at 64% 33%, rgba(238,242,233,0.55), transparent 100%),
    radial-gradient(1px 1px at 72% 24%, rgba(238,242,233,0.7), transparent 100%),
    radial-gradient(1.5px 1.5px at 81% 41%, rgba(238,242,233,0.55), transparent 100%),
    radial-gradient(1px 1px at 90% 30%, rgba(238,242,233,0.7), transparent 100%),
    radial-gradient(1px 1px at 25% 41%, rgba(238,242,233,0.5), transparent 100%),
    radial-gradient(1.5px 1.5px at 57% 47%, rgba(238,242,233,0.5), transparent 100%),
    radial-gradient(1px 1px at 13% 55%, rgba(238,242,233,0.45), transparent 100%),
    radial-gradient(1px 1px at 86% 54%, rgba(238,242,233,0.45), transparent 100%);
  animation: twinkle 9s ease-in-out -4s infinite alternate-reverse;
}

@keyframes twinkle {
  from { opacity: 0.55; }
  to   { opacity: 1; }
}

/* Aurora curtains — soft gradient bands, transform-only animation */
.aurora {
  position: absolute;
  inset: -15% -20%;
  pointer-events: none;
}
/* A quiet continuous wash ties the bands into one curtain of light
   (hues sampled from the aurora reference photo) */
.aurora::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg,
    transparent 6%,
    rgba(70, 216, 195, 0.16) 22%,
    rgba(94, 230, 200, 0.12) 36%,
    rgba(255, 201, 138, 0.10) 50%,
    rgba(232, 84, 140, 0.14) 64%,
    rgba(143, 111, 201, 0.15) 80%,
    transparent 96%);
}
.aurora__band {
  position: absolute;
  top: -10%;
  height: 90%;
  width: 55%;
  border-radius: 50%;
  opacity: 0.5;
  will-change: transform, opacity;
}
/* Bands as vertical curtains of light — tall narrow pillars, per the reference */
.aurora__band--green {
  /* teal curtain, left of frame */
  left: 4%;
  background:
    radial-gradient(ellipse 12% 60% at 32% 40%, rgba(70, 216, 195, 0.5), transparent 72%),
    radial-gradient(ellipse 9% 52% at 46% 44%, rgba(94, 230, 200, 0.36), transparent 70%),
    radial-gradient(ellipse 15% 66% at 62% 38%, rgba(70, 216, 195, 0.4), transparent 72%);
  transform: rotate(-14deg);
  animation: aurora-a 26s ease-in-out infinite alternate;
}
.aurora__band--gold {
  /* warm peach-gold core, low centre */
  left: 32%;
  background:
    radial-gradient(ellipse 38% 50% at 50% 58%, rgba(255, 201, 138, 0.38), transparent 70%),
    radial-gradient(ellipse 10% 58% at 50% 45%, rgba(255, 207, 143, 0.42), transparent 70%);
  transform: rotate(-6deg);
  animation: aurora-b 32s ease-in-out infinite alternate;
}
.aurora__band--rose {
  /* magenta curtain, centre-right */
  left: 52%;
  background:
    radial-gradient(ellipse 11% 64% at 36% 38%, rgba(232, 84, 140, 0.45), transparent 72%),
    radial-gradient(ellipse 8% 56% at 50% 42%, rgba(242, 123, 166, 0.34), transparent 70%),
    radial-gradient(ellipse 13% 68% at 64% 36%, rgba(232, 84, 140, 0.38), transparent 72%);
  transform: rotate(6deg);
  animation: aurora-c 38s ease-in-out infinite alternate;
}
.aurora__band--violet {
  /* violet veil, high in the sky */
  left: 22%;
  top: -20%;
  background: radial-gradient(ellipse 50% 55% at 50% 40%, rgba(143, 111, 201, 0.3), transparent 70%);
  transform: rotate(-10deg);
  animation: aurora-b 44s ease-in-out infinite alternate-reverse;
}
.aurora__band--teal {
  /* cyan-green glow blending the left side */
  left: 18%;
  top: -14%;
  background: radial-gradient(ellipse 42% 60% at 50% 34%, rgba(94, 230, 200, 0.34), transparent 70%);
  transform: rotate(-9deg);
  animation: aurora-b 36s ease-in-out -12s infinite alternate;
}
.aurora__band--pink {
  /* pink curtain, right of centre */
  left: 64%;
  top: -8%;
  background:
    radial-gradient(ellipse 10% 60% at 40% 40%, rgba(242, 123, 166, 0.4), transparent 72%),
    radial-gradient(ellipse 13% 54% at 58% 44%, rgba(223, 128, 170, 0.3), transparent 70%);
  transform: rotate(9deg);
  animation: aurora-c 42s ease-in-out -18s infinite alternate;
}
.aurora__band--green-far {
  /* far teal glow, right edge */
  left: 76%;
  top: -16%;
  background: radial-gradient(ellipse 40% 58% at 50% 32%, rgba(70, 216, 195, 0.3), transparent 70%);
  transform: rotate(12deg);
  animation: aurora-a 30s ease-in-out -9s infinite alternate;
}

@keyframes aurora-a {
  from { transform: rotate(-14deg) translateX(-4%) scaleY(1); opacity: 0.38; }
  50%  { opacity: 0.6; }
  to   { transform: rotate(-9deg) translateX(5%) scaleY(1.12); opacity: 0.45; }
}
@keyframes aurora-b {
  from { transform: rotate(-6deg) translateX(3%) scaleY(1.05); opacity: 0.3; }
  50%  { opacity: 0.55; }
  to   { transform: rotate(-12deg) translateX(-5%) scaleY(0.95); opacity: 0.4; }
}
@keyframes aurora-c {
  from { transform: rotate(6deg) translateX(-3%) scaleY(0.95); opacity: 0.32; }
  50%  { opacity: 0.55; }
  to   { transform: rotate(11deg) translateX(4%) scaleY(1.1); opacity: 0.42; }
}

/* Horizon glow behind the ranges */
.hero__glow {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background:
    radial-gradient(ellipse 55% 45% at 48% 108%, rgba(255, 201, 138, 0.24), transparent 62%),
    radial-gradient(ellipse 75% 55% at 50% 110%, rgba(244, 144, 126, 0.18), transparent 68%);
  pointer-events: none;
}

/* Mountain ranges silhouette */
.hero__ranges {
  position: absolute;
  inset: auto 0 -2px;
  width: 100%;
  height: clamp(70px, 12vw, 140px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}
.hero .eyebrow { color: #c9cbdd; }
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.3rem);
  margin-bottom: 1.4rem;
  color: #fdfbf4;
  text-wrap: balance;
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #c9cbdd;
  max-width: 54ch;
  margin-bottom: 1rem;
}
.hero__meta {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(201, 203, 221, 0.75);
  margin-bottom: 2.2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ---------- Dawn band ---------- */

.dawn {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--night-2) 0%,
    #3a2a4d 16%,
    #6d4a5e 36%,
    #a56b70 54%,
    #cf9683 70%,
    #ecd6b2 85%,
    var(--cream) 100%
  );
  color: var(--cream-ink);
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem) clamp(9rem, 16vw, 13rem);
}
.dawn blockquote {
  margin: 0 auto;
  max-width: 34ch;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  line-height: 1.4;
  text-wrap: balance;
}
.dawn blockquote strong { font-weight: 400; color: var(--aur-gold); }
.dawn figcaption {
  margin-top: 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(238, 242, 233, 0.65);
}

/* ---------- About ---------- */

.about .container {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

/* Arched portrait, sitting directly on the page */
.portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 999px 999px 26px 26px;
  box-shadow: 0 28px 52px -30px rgba(31, 46, 39, 0.4);
}
.portrait__photo {
  width: 100%;
  height: 100%;
  border-radius: 999px 999px 26px 26px;
  object-fit: cover;
  object-position: 50% 40%;
}
.portrait.no-photo .portrait__photo { display: none; }
.portrait__fallback {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 999px 999px 26px 26px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 110%, rgba(255, 201, 138, 0.25), transparent 60%),
    radial-gradient(ellipse 60% 60% at 30% 20%, rgba(70, 216, 195, 0.18), transparent 65%),
    linear-gradient(180deg, #1a1c38, var(--night));
  place-items: center;
}
.portrait.no-photo .portrait__fallback { display: grid; }
.portrait__fallback span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6.5rem);
  color: var(--cream);
}

.credentials {
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}
.credentials li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(31, 46, 39, 0.1);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.credentials li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--thread);
  transform: translateY(-1px);
}

.about__body p + p { margin-top: 1.1rem; }
.about__hobbies {
  margin-top: 1.6rem;
  font-size: 0.92rem;
  color: var(--ink-faint);
  font-style: italic;
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.value-chips li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pine);
  background: rgba(157, 184, 161, 0.18);
  border: 1px solid rgba(157, 184, 161, 0.45);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

@media (max-width: 860px) {
  .about .container { grid-template-columns: 1fr; }
  .portrait { max-width: 300px; }
}

/* ---------- The three elements ---------- */

.elements { background: var(--cream); }
.elements__intro { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.element-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
@media (max-width: 900px) {
  .element-grid { grid-template-columns: 1fr; max-width: 34rem; }
}

.element-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(51, 82, 63, 0.12);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.element-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  opacity: 0.55;
  transform: translate(calc(var(--px, 0) * 14px), calc(var(--py, 0) * 14px)) scale(var(--glow-s, 1));
  transition: opacity 0.25s ease, transform 0.3s ease-out;
  pointer-events: none;
}
.element-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px -24px rgba(31, 46, 39, 0.35);
}
.element-card:hover::before { opacity: 0.9; --glow-s: 1.15; }

.element-card--supervision { --accent: var(--el-supervision); --glow: rgba(127, 212, 168, 0.5); }
.element-card--yoga        { --accent: var(--el-yoga);        --glow: rgba(239, 201, 139, 0.55); }
.element-card--healing     { --accent: var(--el-healing);     --glow: rgba(233, 169, 159, 0.55); }

.element-card__icon {
  width: 46px;
  height: 46px;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.element-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.15rem;
}
.element-card__tagline {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.element-card__body {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex-grow: 1;
}
.element-card__facts {
  margin: 1.4rem 0 0;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(31, 46, 39, 0.1);
}
.element-card__facts > div {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 0.8rem;
  padding: 0.65rem 0;
}
.element-card__facts > div + div { border-top: 1px solid rgba(31, 46, 39, 0.07); }
.element-card__facts dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.15em;
}
.element-card__facts dd {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-faint);
}

/* ---------- Process ---------- */

.process { background: var(--cream-2); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 820px) {
  .process__grid { grid-template-columns: 1fr; max-width: 30rem; }
}

.step { position: relative; }
.step__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  background: linear-gradient(120deg, var(--pine), var(--el-yoga));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Kind words (testimonials-in-waiting) ---------- */

.kind-words { background: var(--cream); }
.kind-words__card {
  position: relative;
  max-width: 46rem;
  margin-top: 2.4rem;
  background: var(--card);
  border: 1px solid rgba(51, 82, 63, 0.12);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
}
.kind-words__card::before {
  content: "\201C";
  position: absolute;
  top: -0.35em;
  left: 0.4rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--aur-gold);
  pointer-events: none;
}
.kind-words__card p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
}
.kind-words__card .btn { margin-top: 1.4rem; }

/* Outline button for light backgrounds */
.btn--outline {
  background: transparent;
  color: var(--pine);
  border-color: rgba(51, 82, 63, 0.45);
}
.btn--outline:hover {
  background: rgba(51, 82, 63, 0.08);
  border-color: var(--pine);
  transform: translateY(-1px);
}

/* Social links (footer, contact) */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  text-decoration: none;
  font-weight: 500;
}
.social-link svg { width: 18px; height: 18px; flex: none; }
.site-footer .social-link { color: var(--cream-ink-soft); }
.site-footer .social-link:hover { color: var(--cream-ink); }

/* Pricing rows (contact aside) */
.price-list { margin: 0.4rem 0 0; padding: 0; list-style: none; font-size: 0.95rem; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(31, 46, 39, 0.08);
  color: var(--ink-soft);
}
.price-list li:last-child { border-bottom: 0; }
.price-list strong { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ---------- CTA band (golden hour) ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #f6e3c4 0%, #f0cbb4 55%, #eabfc7 100%);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -220px;
  width: 440px;
  height: 440px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 244, 214, 0.9), rgba(239, 201, 139, 0.25) 55%, transparent 72%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band p {
  max-width: 46ch;
  margin: 0 auto 2rem;
  color: #5c4a3a;
}
.cta-band .btn--primary { background: var(--night); }
.cta-band .btn--primary:hover { background: #0a0c20; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--night);
  color: var(--cream-ink-soft);
  border-top: 3px solid transparent;
  border-image: var(--thread) 1;
  padding-block: 3.5rem 2.5rem;
  font-size: 0.92rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer .brand { font-size: 1.2rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a { color: var(--cream-ink-soft); text-decoration: none; padding: 0.4rem 0; }
.footer-nav a:hover { color: var(--cream-ink); }
.site-footer .copyright {
  width: 100%;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(238, 242, 233, 0.12);
  font-size: 0.82rem;
  color: rgba(195, 208, 195, 0.6);
}
.site-footer a.email { color: var(--aur-gold); }

/* ---------- Contact page ---------- */

.contact-hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 115%, rgba(233, 169, 159, 0.35), transparent 60%),
    radial-gradient(ellipse 70% 60% at 20% 110%, rgba(239, 201, 139, 0.4), transparent 65%),
    radial-gradient(ellipse 70% 60% at 85% 115%, rgba(127, 212, 168, 0.3), transparent 65%),
    linear-gradient(180deg, var(--cream) 0%, #f6ecd9 100%);
  padding-block: 10rem 5rem;
  text-align: center;
}
.contact-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 18ch;
  margin-inline: auto;
}
.contact-hero .lede { margin-inline: auto; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-card,
.aside-card {
  background: var(--card);
  border: 1px solid rgba(51, 82, 63, 0.12);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.aside-card + .aside-card { margin-top: 1.4rem; }
.aside-card h2 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.aside-card p { font-size: 0.95rem; color: var(--ink-soft); }
.aside-card .email-link {
  font-weight: 600;
  font-size: 1.02rem;
  word-break: break-all;
}
.aside-card ol {
  margin: 0.4rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.aside-card ol li { margin-bottom: 0.5rem; }

.form-card h2 { font-size: 1.5rem; }
.form-note {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}

.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.field .req { color: var(--el-healing); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(51, 82, 63, 0.3);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--pine);
  box-shadow: 0 0 0 3px rgba(51, 82, 63, 0.18);
}
.field .helper {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.35rem;
}
.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--pine);
  min-height: 1.4em;
}

.faq { max-width: 46rem; }
.faq details {
  border-bottom: 1px solid rgba(31, 46, 39, 0.12);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0.2rem;
  font-weight: 600;
  font-size: 1.02rem;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pine);
  transition: transform 0.25s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 0.2rem 1.3rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Motion: hero choreography ---------- */

@keyframes rise {
  to { opacity: 1; transform: none; }
}

.js .hero .eyebrow,
.js .hero__sub,
.js .hero__meta,
.js .hero__cta {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.js .hero .eyebrow { animation-delay: 0.15s; }
.js .hero__sub    { animation-delay: 0.85s; }
.js .hero__meta   { animation-delay: 1s; }
.js .hero__cta    { animation-delay: 1.15s; }

/* Headline words rise one by one (spans added by JS) */
.hero h1 .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: rise 0.9s cubic-bezier(0.19, 0.62, 0.23, 0.99) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.07s);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem;
  color: rgba(201, 203, 221, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
}
.hero__scroll:hover { color: var(--cream-ink); }
.hero__scroll::after {
  content: "";
  width: 1.5px;
  height: 34px;
  background: linear-gradient(180deg, currentColor, transparent);
  animation: scroll-drift 2.6s ease-in-out infinite;
}
@keyframes scroll-drift {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.45; }
}
@keyframes rise-center {
  to { opacity: 1; transform: translateX(-50%); }
}
.js .hero__scroll {
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  animation: rise-center 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 1.7s forwards;
}

/* Soft light that follows the pointer across the night sky (added by JS on fine-pointer devices) */
.hero__pointer {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 138, 0.07), rgba(70, 216, 195, 0.045) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: transform;
}
.hero__pointer.on { opacity: 1; }

/* Honeypot field: invisible to people, tempting to bots */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ---------- Motion: scroll reveals (varied, not uniform) ---------- */

/* Hidden-until-revealed only when JS is confirmed running (html.js) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal="2"] { transition-delay: 0.12s; }
.js [data-reveal="3"] { transition-delay: 0.24s; }

/* Cards settle with a faint scale, a longer travel */
.js .element-card[data-reveal] { transform: translateY(30px) scale(0.985); }
.js .element-card[data-reveal].in { transform: none; }

/* The dawn thread draws itself after its heading lands */
.js [data-reveal] .thread {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s;
}
.js [data-reveal].in .thread { transform: scaleX(1); }
.js [data-reveal].in .thread--center { transform-origin: center; }

/* Credentials cascade in behind the portrait */
.js [data-reveal] .credentials li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.js [data-reveal].in .credentials li { opacity: 1; transform: none; }
.js [data-reveal].in .credentials li:nth-child(1) { transition-delay: 0.25s; }
.js [data-reveal].in .credentials li:nth-child(2) { transition-delay: 0.33s; }
.js [data-reveal].in .credentials li:nth-child(3) { transition-delay: 0.41s; }
.js [data-reveal].in .credentials li:nth-child(4) { transition-delay: 0.49s; }
.js [data-reveal].in .credentials li:nth-child(5) { transition-delay: 0.57s; }

/* Card icons answer the hover with a small spring */
.element-card__icon { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.element-card:hover .element-card__icon { transform: translateY(-3px) scale(1.05); }
.element-card:hover { border-color: rgba(51, 82, 63, 0.28); }

/* Anchored sections clear the fixed nav */
section[id], header[id] { scroll-margin-top: 84px; }

/* ---------- Designed for the phone ---------- */

/* Sticky booking bar: appears once the hero has passed, retreats at the footer */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  padding: 0.7rem 4vw calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(250, 246, 237, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -1px 0 rgba(31, 46, 39, 0.1), 0 -12px 28px -18px rgba(14, 27, 22, 0.35);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.mobile-cta .btn { width: 100%; }
.mobile-cta.show { transform: translateY(0); }

@media (max-width: 820px) {
  .mobile-cta { display: block; }
  .has-mobile-cta .site-footer { padding-bottom: calc(2.5rem + 84px + env(safe-area-inset-bottom)); }

  /* No hover underline inside the mobile menu panel */
  .nav-links a:not(.btn)::after { display: none; }

  /* Steps become a dawn-threaded timeline */
  .process__grid { gap: 2.2rem; }
  .step { position: relative; padding-left: 1.5rem; }
  .step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: -2.7rem;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--aur-green), var(--aur-gold), var(--aur-rose));
    opacity: 0.45;
  }
  .step:last-child::before { bottom: 40%; }
}

@media (max-width: 480px) {
  /* Full-width stacked hero actions */
  .hero__cta { flex-direction: column; align-items: stretch; }

  /* Fact labels sit above their values */
  .element-card__facts > div { grid-template-columns: 1fr; gap: 0.15rem; padding: 0.75rem 0; }

  /* A touch more air between stacked sections */
  .section { padding-block: clamp(4rem, 14vw, 5.5rem); }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js [data-reveal] .credentials li { opacity: 1; transform: none; }
  .js [data-reveal] .thread { transform: none; }
  .js .hero .eyebrow, .js .hero__sub, .js .hero__meta, .js .hero__cta,
  .js .hero__scroll, .hero h1 .w { opacity: 1; transform: none; animation: none; }
  .js .hero__scroll { transform: translateX(-50%); }
  .aurora__band { opacity: 0.4; }
}
