/* Sky Therapy — Direction 1B "First Light"
   Warm, human, editorial. */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Jost:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..560;1,9..144,300..560&display=swap');

:root {
  --plum-ink: #2E4258;
  --mauve: #7FA8D0;
  --steel: #3E5F80; /* text-safe blue: light blues stay decorative */
  --peach: #A9C9E8;
  --shell: #D3E4F4;
  --cream: #FAF7F0;

  /* 3D scene tokens (the scenes read these at boot) */
  --sun-a: #F7CDA9;
  --sun-b: #E9A886;
  --sun-warmpath: #F9E4CD;
  --dust-a: #A9C9E8;
  --dust-b: #7FA8D0;
  --dust-ink: #5D7590;
  --sky-pre: #D8E4F0;
  --sky-peak: #BCD7EF;
  --sky-end: #DDEAF7;

  --font-serif: 'Iowan Old Style', 'Lora', Georgia, serif;
  --font-sans: 'Avenir Next', 'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;

  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--plum-ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--plum-ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; }
h3 { font-size: 1.3rem; line-height: 1.3; }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.9em;
  display: block;
}

.lede {
  font-size: 1.2rem;
  color: #4F6579;
  max-width: 46ch;
}

/* ---------- Logo mark ---------- */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-ink);
}

.logo .mark {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* "center" is part of the legal name but stays visually quiet */
.logo-center {
  font-family: var(--font-sans);
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  opacity: 0.75;
  align-self: flex-end;
  margin-bottom: 0.3em;
  margin-left: -2px;
}

footer .logo .logo-center { color: var(--sun-a); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(46, 66, 88, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-ink);
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--steel); }

.nav-right { display: flex; align-items: center; gap: 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum-ink);
  margin: 4px 0;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--plum-ink);
  color: var(--cream);
}
.btn-primary:hover { background: #253749; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  border-color: var(--plum-ink);
  color: var(--plum-ink);
}
.btn-secondary:hover { background: var(--plum-ink); color: var(--cream); }

.btn-small {
  padding: 10px 20px;
  font-size: 0.72rem;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--shell) 0%, var(--cream) 70%);
  padding: 90px 0 100px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 205, 169, 0.55) 0%, rgba(233, 168, 134, 0.18) 45%, rgba(233, 168, 134, 0) 70%);
  filter: blur(24px);
  z-index: 0;
  will-change: transform, opacity;
}

.hero-sun {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  will-change: transform;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.85rem;
  color: #5C7288;
}

.hero-glance {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 32px 0 0;
  padding: 0;
}

.hero-glance li {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5C7288;
  padding-left: 20px;
}

.hero-glance li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sun-a), var(--sun-b));
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(180deg, var(--shell) 0%, var(--cream) 100%);
  padding: 70px 0 60px;
}

/* ---------- Sections ---------- */

section { padding: 104px 0; }

.section-tight { padding: 60px 0; }

.section-alt {
  background: var(--shell);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(46, 66, 88, 0.20);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  background: var(--shell);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px -24px rgba(46, 66, 88, 0.5);
  border-color: rgba(127, 168, 208, 0.45);
}

.section-alt .card:hover {
  background: #C4DAF0;
}


.section-alt .card {
  background: #FFFDF8;
}

.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, var(--sun-b), var(--sun-a));
  opacity: 0.4;
  width: 64px;
  margin: 20px 0 28px;
}

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--plum-ink);
  max-width: 30ch;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

blockquote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Steps / list ---------- */

.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  margin-bottom: 32px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -4px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--steel);
  width: 40px;
  height: 40px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.bio-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.bio-photo {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(150deg, var(--sun-a), var(--sun-b));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.credentials li {
  padding: 10px 0;
  border-top: 1px solid rgba(46, 66, 88, 0.18);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.credentials li:last-child { border-bottom: 1px solid rgba(46, 66, 88, 0.18); }
.credentials li span:first-child { color: #5C7288; }

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum-ink);
  margin-bottom: 6px;
  display: block;
}

input, textarea, select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 13px 16px;
  border: 1px solid rgba(46, 66, 88, 0.25);
  border-radius: 10px;
  background: #fff;
  color: var(--plum-ink);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(127, 168, 208, 0.15);
}

textarea { resize: vertical; min-height: 130px; }

.form-status {
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 10px;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { background: #e8f0e6; color: #3c5a37; }
.form-status.error   { background: #F6E7E4; color: #8A3F33; }

.form-privacy {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #5C7288;
  background: rgba(127, 168, 208, 0.08);
  border: 1px solid rgba(127, 168, 208, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0;
}

.contact-info-item {
  margin-bottom: 28px;
}
.contact-info-item h3 { margin-bottom: 4px; }
.contact-info-item p { color: #4F6579; margin-bottom: 0; }

/* ---------- Booking (Cal.com embed) ---------- */

.booking-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.cal-embed {
  width: 100%;
  min-height: 640px;
  background: #fff;
  border: 1px solid rgba(46, 66, 88, 0.20);
  border-radius: 18px;
  overflow: hidden;
}

.booking-fallback {
  text-align: center;
  font-size: 0.92rem;
  color: #4F6579;
  margin-top: 24px;
}
.booking-fallback a {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Mini steps (home) ---------- */

.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.mini-step {
  position: relative;
  padding: 24px 20px 16px;
  border-radius: 18px;
  transition: background 0.3s ease;
}
.mini-step:hover { background: var(--shell); }

.mini-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--plum-ink);
  background: var(--shell);
  border: 1px solid rgba(127, 168, 208, 0.4);
  margin-bottom: 20px;
}

.mini-step h3 { margin-bottom: 8px; }
.mini-step p { color: #4F6579; margin-bottom: 0; }

/* ---------- CTA band (home) ---------- */

.cta-section { padding: 40px 0 100px; }

.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, var(--shell) 0%, var(--peach) 100%);
  border-radius: 28px;
  padding: 72px 32px;
}

.cta-band .eyebrow { color: var(--plum-ink); opacity: 0.7; }
.cta-band h2 { margin-bottom: 0.3em; }
.cta-band p {
  color: #2D4053;
  max-width: 44ch;
  margin: 0 auto 28px;
}
.cta-band .btn { position: relative; z-index: 1; }

.cta-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 247, 240, 0.7) 0%, rgba(250, 247, 240, 0) 70%);
  z-index: 0;
}

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

footer {
  background: var(--plum-ink);
  color: var(--shell);
  padding: 56px 0 32px;
}

footer .logo, footer .logo * { color: var(--cream); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.15);
}

footer h4 {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sun-a);
  margin: 0 0 16px;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a { opacity: 0.85; }
footer a:hover { opacity: 1; color: var(--sun-a); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.78rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-crisis {
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.75;
  max-width: 64ch;
  margin: 28px 0 0;
}

.gfe-note {
  font-size: 0.82rem;
  color: #4F6579;
  max-width: 54ch;
  margin: 14px auto 0;
}

/* ---------- Responsive ---------- */

/* ==========================================================================
   3D layer: "First Light" living scenes
   The stage sits fixed behind everything; all content stacks above it.
   Every rule below is additive: with no WebGL, no JS, or reduced motion the
   original site renders untouched (scene-on / has-scene never both apply).
   ========================================================================== */

.stage3d {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.stage3d canvas { display: block; width: 100%; height: 100%; }

body.has-scene .site-header { z-index: 50; }
body.has-scene section,
body.has-scene footer { position: relative; z-index: 1; }

/* opaque, blur-free header on scene pages: content never ghosts through,
   and blurring a live canvas (a scroll-shimmer source) is avoided */
body.has-scene .site-header {
  background: rgba(250, 247, 240, 0.98);
  backdrop-filter: none;
}

/* lift painted backgrounds so the world shows through; static so the
   page never restyles when the scene boots (that pop read as a glitch) */
body.has-scene .hero,
body.has-scene .page-hero,
body.has-scene .section-alt { background: transparent; }

/* hero scrim: the copy side is contrast-safe, the world stays open right */
body.has-scene .hero { position: relative; }
body.has-scene .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* protects the copy column only; the dawn side stays fully open */
  background: linear-gradient(100deg,
    rgba(250, 247, 240, 0.96) 0%,
    rgba(250, 247, 240, 0.90) 38%,
    rgba(250, 247, 240, 0.35) 52%,
    rgba(250, 247, 240, 0.06) 62%,
    rgba(250, 247, 240, 0) 70%);
}
body.has-scene .hero .container { position: relative; }
body.has-scene .hero h1,
body.has-scene .hero .lede,
body.has-scene .hero .eyebrow {
  text-shadow: 0 0 18px var(--cream), 0 0 44px var(--cream);
}

/* the 3D dawn replaces the 2D hero sun (fallback tiers keep the SVG);
   a slow crossfade, never a pop */
body.has-scene .hero-sun,
body.has-scene .hero-glow { transition: opacity 1.1s ease; }
html.scene-on body.has-scene .hero-sun,
html.scene-on body.has-scene .hero-glow { opacity: 0 !important; }

/* inner-page hero scrim: soft cream veil over the top */
body.has-scene .page-hero { position: relative; }
body.has-scene .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(250, 247, 240, 0.92) 0%,
    rgba(250, 247, 240, 0.55) 60%,
    rgba(250, 247, 240, 0) 100%);
}
body.has-scene .page-hero .container { position: relative; }
body.has-scene .page-hero h1,
body.has-scene .page-hero .lede,
body.has-scene .page-hero .eyebrow {
  text-shadow: 0 0 18px var(--cream), 0 0 44px var(--cream);
}

/* auto readable panels: every ground section gets a quiet cream panel;
   sky chapters and band sections opt out by class */
body.has-scene section:not(.hero):not(.page-hero):not(.cta-section):not(.sky-chapter):not(.section-alt) > .container {
  background: rgba(250, 247, 240, 0.92);
  border: 1px solid rgba(46, 66, 88, 0.16);
  border-radius: 22px;
  padding-top: 56px;
  padding-bottom: 48px;
}

/* band sections (pull-quote, fees) float on a radial cream halo
   instead of a boxy panel */
body.has-scene .section-alt > .container {
  background: radial-gradient(ellipse 72% 100% at center,
    rgba(250, 247, 240, 0.93), rgba(250, 247, 240, 0) 80%);
  padding-top: 44px;
  padding-bottom: 36px;
}
body.has-scene .section-alt blockquote,
body.has-scene .section-alt h2,
body.has-scene .section-alt .lede,
body.has-scene .section-alt .eyebrow {
  text-shadow: 0 0 18px var(--cream), 0 0 44px var(--cream);
}

/* an open stretch of sky where the finale performs; empty on purpose */
.sky-chapter {
  height: 130vh;
  padding: 0;
}

/* the crisp DOM tagline the dawn motes sharpen into */
.finale-tagline {
  position: fixed;
  left: 50%;
  top: 37%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 4.5vw, 62px);
  color: var(--plum-ink);
  white-space: nowrap;
  text-shadow: 0 0 26px var(--cream), 0 0 60px var(--cream);
}
.finale-tagline svg {
  width: 0.85em;
  height: 0.85em;
  flex-shrink: 0;
}

/* ---------- the first-light thread (About / Book / Contact) ---------- */

.light-thread {
  position: fixed;
  top: 0;
  bottom: 0;
  left: clamp(16px, 3vw, 48px);
  width: 2px;
  z-index: 1;
  pointer-events: none;
  display: none;
}
html.thread-on .light-thread { display: block; }

.light-thread .thread-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--sun-a), var(--sun-b));
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: top center;
}

.light-thread .thread-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--sun-a), var(--sun-b));
  box-shadow: 0 0 14px rgba(247, 205, 169, 0.85), 0 0 32px rgba(233, 168, 134, 0.5);
}

.light-thread .thread-tick {
  position: absolute;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--sun-b);
  opacity: 0.45;
  transform: translate(-50%, -50%) scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.light-thread .thread-tick.lit {
  transform: translate(-50%, -50%) scaleX(1);
}

@media (max-width: 860px) {
  .light-thread { display: none !important; }
  .finale-tagline { font-size: clamp(22px, 6.5vw, 30px); white-space: normal; text-align: center; max-width: 86vw; top: 28%; }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .site-header .container { padding-top: 14px; padding-bottom: 14px; }
  .logo { font-size: 1.1rem; white-space: nowrap; }
  .logo .mark { width: 22px; height: 22px; }
  .nav-right { gap: 12px; }
  .btn-small { padding: 9px 16px; font-size: 0.68rem; white-space: nowrap; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 32px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(46, 66, 88, 0.08);
  }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; max-width: 240px; }
  .hero-glow { width: 220px; height: 220px; }
  .hero-actions { justify-content: center; }
  .hero-glance { justify-content: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .mini-steps { grid-template-columns: 1fr; gap: 28px; }
  .mini-step { text-align: center; }
  .mini-step .step-num { margin-left: auto; margin-right: auto; }
  .cta-band { padding: 56px 24px; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo { max-width: 320px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   Color levers (First Light): each keyed to a static body class so
   variants can be composed. sky-live and world-rich live in the scene.
   ========================================================================== */

/* B: static dawn sky wash - the page itself carries dawn color */
body.sky-wash {
  background: linear-gradient(180deg, #D3E4F4 0%, #E9F1F9 30%, #F8F0E3 48%, var(--cream) 62%) fixed;
}
body.sky-wash.has-scene section:not(.hero):not(.page-hero):not(.cta-section):not(.sky-chapter):not(.section-alt) > .container {
  background: rgba(243, 248, 253, 0.92);
  border-color: rgba(127, 168, 208, 0.14);
}
body.sky-wash .section-alt {
  background: linear-gradient(180deg,
    rgba(211, 228, 244, 0) 0%,
    rgba(211, 228, 244, 0.55) 26%,
    rgba(211, 228, 244, 0.55) 74%,
    rgba(211, 228, 244, 0) 100%);
}
body.sky-wash .cta-band {
  background: linear-gradient(135deg, #F6E7D5 0%, #CFE2F4 55%, #A9C9E8 100%);
}
body.sky-wash footer { background: #2A3949; }

/* D: colorful DOM accents - color lives in the content itself */
body.dom-color .card {
  background: linear-gradient(160deg, #FFFDF8 0%, #EAF2FA 100%);
  border-color: rgba(127, 168, 208, 0.28);
}
body.dom-color .card:hover {
  background: linear-gradient(160deg, #DDE9F6 0%, #D3E4F4 100%);
}
body.dom-color .mini-step .step-num {
  background: linear-gradient(135deg, var(--sun-a), var(--sun-b));
  color: var(--plum-ink);
  border: none;
}
body.dom-color .mini-step:hover { background: #E6EFF9; }
body.dom-color .center h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  border-radius: 2px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--sun-a), var(--sun-b));
  opacity: 0.65;
}
body.dom-color .hero-glance li::before { width: 10px; height: 10px; }
body.dom-color blockquote cite { color: #426689; }


/* ==========================================================================
   REFINED: the research-backed high-end register ("First Light, Ink
   Anchored" + one dark band). Low-chroma warm neutrals carry the page,
   a near-black plum anchors it, saturated dawn color lives ONLY inside
   the 3D scene, and one full-bleed dark section signals the tier.
   ========================================================================== */

body.refined {
  --cream: #F6F4EE;      /* limestone, mineral not dessert */
  --shell: #D9E3EE;
  --peach: #5E86AD;      /* clay: the old peach with chroma+value pulled down */
  --mauve: #6D7E90;      /* rosewood greyed: warmth without blush */
  --plum-ink: #283440;   /* charcoal-plum ink anchor */

  --sun-a: #5B8BBD;      /* amber, not rose: the dawn reads mineral */
  --sun-b: #47637E;      /* umber base kills the pink lower limb */
  --sun-warmpath: #C6DDF2;
  --dust-a: #6089B6;
  --dust-b: #5A6E83;
  --dust-ink: #4C5D6F;
  --sky-pre: #A6B0C0;    /* slate lavender-grey: true pre-dawn */
  --sky-peak: #8AB0D9;
  --sky-end: #BDD6EC;
}

/* typography: large and LIGHT is the luxury tell */
body.refined h1,
body.refined h2,
body.refined h3 {
  font-family: 'Fraunces', var(--font-serif);
  font-weight: 360;
  letter-spacing: -0.012em;
}
body.refined h1 {
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  font-weight: 335;
  line-height: 1.04;
}
body.refined h2 { font-weight: 350; }
body.refined .eyebrow {
  color: #45658A;
  letter-spacing: 0.18em;
  font-weight: 500;
}
body.refined .lede { color: #47586B; }
body.refined blockquote,
body.refined .finale-tagline { font-family: var(--font-serif); }

/* air: whitespace deployed to slow the reader down */
body.refined section { padding: 140px 0; }
body.refined .sky-chapter { padding: 0; }

/* quiet componentry: hairlines and tone steps, not color floods */
body.refined .card {
  background: #E9EFF7;
  border-color: rgba(40, 52, 64, 0.10);
  border-radius: 14px;
}
body.refined .card:hover {
  background: #DFE9F3;
  border-color: rgba(40, 52, 64, 0.30);
  box-shadow: 0 16px 36px -26px rgba(40, 52, 64, 0.45);
}
body.refined .mini-step { border-radius: 14px; }
body.refined .mini-step:hover { background: #E3EBF5; }
body.refined .mini-step .step-num {
  background: transparent;
  border: 1px solid rgba(40, 52, 64, 0.35);
  color: var(--plum-ink);
  font-family: 'Fraunces', var(--font-serif);
  font-weight: 400;
}
body.refined .center h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 22px auto 0;
  background: rgba(40, 52, 64, 0.22);
}
body.refined .hero-glance li::before {
  background: linear-gradient(135deg, var(--sun-a), var(--sun-b));
}

/* THE dark band: the pull-quote goes full-bleed deep plum */
body.refined.has-scene .section-alt,
body.refined .section-alt { background: #2C3845; }
body.refined .section-alt > .container { background: none; padding-top: 64px; padding-bottom: 56px; }
body.refined .section-alt blockquote {
  color: #EDF2F8;
  text-shadow: none;
}
body.refined .section-alt blockquote cite { color: #92B7DD; letter-spacing: 0.14em; }
body.refined .section-alt h2 { color: #EDF2F8; text-shadow: none; }
body.refined .section-alt .lede { color: #C7D5E3; text-shadow: none; }
body.refined .section-alt .eyebrow { color: #92B7DD; text-shadow: none; }
body.refined .section-alt { color: #DAE4EF; }
body.refined .section-alt h3 { color: #EDF2F8; }
body.refined .section-alt p { color: #C7D5E3; }
body.refined .section-alt .steps li::before {
  border-color: rgba(237, 242, 248, 0.38);
  color: #92B7DD;
}

body.refined footer { background: #222D38; }
body.refined footer h4 { color: #92B7DD; }

body.refined .cta-band {
  background: linear-gradient(135deg, #DBE7F3 0%, #BED4EA 100%);
}
body.refined .btn-primary:hover { background: #1C2733; }
body.refined .btn-secondary { border-color: rgba(40, 52, 64, 0.55); }

/* palette-following scrims and panels (color-mix tracks --cream) */
body.refined .site-header {
  background: color-mix(in srgb, var(--cream) 98%, transparent);
  border-bottom-color: rgba(40, 52, 64, 0.08);
}
body.refined.has-scene .hero::before {
  background: linear-gradient(100deg,
    color-mix(in srgb, var(--cream) 96%, transparent) 0%,
    color-mix(in srgb, var(--cream) 90%, transparent) 38%,
    color-mix(in srgb, var(--cream) 35%, transparent) 52%,
    color-mix(in srgb, var(--cream) 6%, transparent) 62%,
    transparent 70%);
}
body.refined.has-scene .page-hero::before {
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--cream) 92%, transparent) 0%,
    color-mix(in srgb, var(--cream) 55%, transparent) 60%,
    transparent 100%);
}
body.refined.has-scene section:not(.hero):not(.page-hero):not(.cta-section):not(.sky-chapter):not(.section-alt) > .container {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  border-color: rgba(40, 52, 64, 0.08);
}


/* ---------- mobile: the scene owns the hero top, copy gets a veil ---------- */

@media (max-width: 860px) {
  /* the 2D sun spacer is dead weight when the 3D dawn is live */
  html.scene-on body.has-scene .hero-visual { display: none; }

  /* centered mobile copy needs full-width protection; the sky stays open above */
  body.has-scene .hero { padding-top: 40vh; }
  body.has-scene .hero::before {
    background: linear-gradient(180deg,
      color-mix(in srgb, var(--cream) 20%, transparent) 0%,
      color-mix(in srgb, var(--cream) 62%, transparent) 34%,
      color-mix(in srgb, var(--cream) 82%, transparent) 55%,
      color-mix(in srgb, var(--cream) 85%, transparent) 100%);
  }

  body.refined section { padding: 96px 0; }
  body.refined .section-alt > .container { padding-top: 48px; padding-bottom: 44px; }
  body.refined h1 { font-size: clamp(2.5rem, 11vw, 3.2rem); }
}


/* ==========================================================================
   REFINED contrast pass (owner note: hero and middle too washed out).
   Value structure: near-white panels with real edges float on limestone,
   stone-tinted cards sit inside them, ink-filled step numbers punctuate.
   ========================================================================== */

body.refined.has-scene section:not(.hero):not(.page-hero):not(.cta-section):not(.sky-chapter):not(.section-alt) > .container {
  background: rgba(253, 254, 255, 0.95);
  border: 1px solid rgba(40, 52, 64, 0.13);
  box-shadow: 0 18px 44px -30px rgba(40, 52, 64, 0.28);
}
body.refined .card {
  background: #E5EDF6;
  border-color: rgba(40, 52, 64, 0.15);
}
body.refined .card:hover {
  background: #D7E4F1;
  border-color: rgba(40, 52, 64, 0.34);
}
body.refined .mini-step { background: #ECF2F9; border: 1px solid rgba(40, 52, 64, 0.10); }
body.refined .mini-step:hover { background: #DFEAF5; }
body.refined .mini-step .step-num {
  background: var(--plum-ink);
  border: none;
  color: #F1F5FA;
}
body.refined .center h2::after { background: rgba(40, 52, 64, 0.30); }
body.refined .cta-band {
  background: linear-gradient(135deg, #D0E1F1 0%, #A8C7E5 100%);
  border: 1px solid rgba(40, 52, 64, 0.12);
}


/* Bio photo: real image replaces the gradient placeholder (2026-08-24). */
.bio-photo.has-photo {
  padding: 0;
  background: var(--cream);
  overflow: hidden;
}
.bio-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: inherit;
  display: block;
}


/* ---------- Fees block (2026-08-27): price list + separated fine print ---------- */

.balance { text-wrap: balance; }
.nowrap  { white-space: nowrap; }

.fee-list {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  text-align: left;
  border-top: 1px solid rgba(46, 66, 88, 0.16);
}

.fee-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(46, 66, 88, 0.16);
}

.fee-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-weight: 500;
  color: var(--plum-ink);
  line-height: 1.35;
}

.fee-dur {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: #5C7288;
}

.fee-price {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--plum-ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.fee-fineprint {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(46, 66, 88, 0.14);
  text-align: left;
}

.fee-fineprint p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #5C7288;
  margin: 0 0 10px;
  max-width: 60ch;
}

.fee-fineprint p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .fee-list li { gap: 14px; padding: 13px 0; }
  .fee-price { font-size: 1rem; }
}


/* Fee rows as booking links (2026-08-27). Whole row is the target. */
.fee-list li { display: block; padding: 0; }
.fee-row { width: 100%; box-sizing: border-box; }

.fee-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 10px 15px 8px;
  margin: 0 -8px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease, padding 0.18s ease;
}

.fee-row:hover,
.fee-row:focus-visible {
  background: rgba(255, 255, 255, 0.55);
  padding-left: 14px;
  padding-right: 6px;
}

.fee-row:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 2px;
}

.fee-row:hover .fee-name,
.fee-row:focus-visible .fee-name { text-decoration: underline; text-underline-offset: 3px; }

.fee-go {
  display: inline-block;
  margin-left: 8px;
  opacity: 0.35;
  transform: translateX(-2px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.fee-row:hover .fee-go,
.fee-row:focus-visible .fee-go { opacity: 1; transform: translateX(2px); }

@media (hover: none) {
  .fee-go { opacity: 0.55; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fee-row, .fee-go { transition: none; }
}


/* Fees CTA: one strong action, one quiet alternative (2026-08-27). */
.fee-cta {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.fee-aside {
  margin: 0;
  font-size: 0.9rem;
  color: #5C7288;
}

.fee-aside a {
  color: var(--steel);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Honeypot: off-screen rather than display:none, which naive bots skip. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Getting-started steps (replaced the Cal.com embed 2026-09-20) ---------- */
.start-steps {
  list-style: none;
  counter-reset: startstep;
  margin: 0;
  padding: 0;
  max-width: 54ch;
}
.start-steps li {
  counter-increment: startstep;
  position: relative;
  padding-left: 52px;
  margin-bottom: 22px;
  line-height: 1.6;
}
.start-steps li::before {
  content: counter(startstep);
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sky-light, #A9C9E8);
  color: var(--ink, #2E4258);
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .start-steps li { padding-left: 46px; }
}
