/* ---------------------------------------------
   Well-Being Counselors — Demo Site Styles
   Palette sampled from live Squarespace site:
   accent (blush) #F2B8B4 · lightAccent (gold) #FFCF5A
   darkAccent (lavender) #B564F7 — site background is white
   throughout the original (every section theme is "light").

   Layering system: full-bleed "band" (large parent frame,
   tinted with a tier of the gold) > "panel"/"card" (white
   child frame with shadow) sitting on top of it. Section
   rhythm alternates band tiers with plain white so color
   itself marks section boundaries instead of thin rules.
--------------------------------------------- */

:root {
  --white: #FFFFFF;
  --paper: #FFFDFA;
  --ink: #221B27;
  --ink-soft: #6B6072;
  --line: rgba(34, 27, 39, 0.10);

  /* Tier 1 — resting base for most sections */
  --cream: #FBF5E9;

  /* Gold tier scale — lightest (backgrounds) to deepest (text/icons) */
  --gold-50:  #FFFCF3;
  --gold-100: #FFF6E0;
  --gold-200: #FFEBBC;
  --gold-300: #FFDD8C;
  --gold-400: #FFCF5A;  /* base accent, sampled from site */
  --gold-500: #EDAE1F;
  --gold-600: #B9860E;

  /* Tier 2 — desaturated gold accents (badges, testimonial callout) */
  --gold-soft: #F1E1BE;
  /* Tier 2 — muted terracotta/peach, step card 01 only */
  --peach-soft: #EDCFA8;

  /* Tier 3 reserved — the one deep "arrival" section (booking CTA band) */
  --plum: #543145;

  --blush: #F2B8B4;
  --blush-deep: #E1918B;
  --blush-pale: #FBEAE7;
  --lavender: #B564F7;
  --lavender-deep: #543145; /* dark plum — unified with --plum */
  --lavender-pale: #F4E9FE;

  --font-head: "Lora", "Times New Roman", serif;
  --font-body: "Libre Caslon Text", Georgia, serif;

  --radius: 6.8px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --max-width: 1180px;

  --shadow-card: 0 14px 34px rgba(34,27,39,0.08);
  --shadow-panel: 0 24px 60px rgba(34,27,39,0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  margin: 0 0 0.5em;
  color: var(--ink);
  transform: skewX(0deg);
  transform-origin: left bottom;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1em; }

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75em 1.2em;
  z-index: 999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--lavender-deep);
  margin-bottom: 0.9em;
}
.eyebrow.center { text-align: center; }

/* ---------------- Layering: bands, panels, cards ---------------- */
.band {
  position: relative;
  width: 100%;
}
.band-tint-50 { background: var(--cream); }
.band-tint-100 { background: var(--cream); }
.band-tint-200 { background: var(--gold-400); }

.panel {
  background: var(--paper);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-panel);
}

.card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ---------------- Decorative circle system ---------------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}
.blob-hero {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(255,255,255,0.85) 0%, transparent 70%);
  top: -10%; right: -8%;
}
.blob-about {
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--lavender-pale) 0%, transparent 70%);
  top: -12%; left: -14%;
}

.portrait-ring {
  position: absolute;
  border: 1.5px solid var(--gold-600);
  border-radius: 50%;
  width: calc(100% + 34px);
  height: calc(100% + 34px);
  top: -17px; left: -17px;
  z-index: 1;
}
.portrait-circle {
  position: relative;
  z-index: 2;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(34,27,39,0.18);
  background: var(--gold-300);
}
.portrait-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-300);
  color: var(--lavender-deep);
  flex-shrink: 0;
}
.icon-badge-lg { width: 46px; height: 46px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.9em 2.1em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: var(--lavender-deep); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-gold {
  background: var(--gold-400);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(237,174,31,0.35);
}
.btn-gold:hover { background: var(--gold-500); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(237,174,31,0.45); }

.btn-sm { padding: 0.6em 1.4em; font-size: 0.85rem; }
.btn-lg { padding: 1.05em 2.6em; font-size: 1rem; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 224, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.1em 1.25em;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  display: inline-block;
  transform: skewX(0deg);
  transform-origin: left bottom;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.2em;
  margin-left: 3em;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6em;
}
.nav-link {
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
}
.nav-link:not(.nav-icon)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1.5px;
  background: var(--lavender);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:not(.nav-icon):hover::after { transform: scaleX(1); }
.nav-link.active::after { transform: scaleX(1); background: var(--gold-500); }
.nav-icon { display: flex; color: var(--ink); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h, 68px) - 200px);
  min-height: calc(100dvh - var(--header-h, 68px) - 200px);
  padding: 2.5em 1.25em;
  background: var(--gold-100);
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3em;
  align-items: center;
}
.hero-text h1 { margin-bottom: 0.55em; }
.hero-portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 440px);
}
.hero-portrait .portrait-circle { width: 100%; }

/* ---------------- Teaser Services (sticky stack) ---------------- */
.teaser-services {
  padding: 2.6em 1.25em 5em;
}
.teaser-services > .eyebrow {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.step-list {
  max-width: var(--max-width);
  margin: 2.2em auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-card {
  position: sticky;
  top: calc(var(--header-h, 68px) + 16px);
  display: flex;
  align-items: center;
  gap: 2em;
  min-height: 340px;
  border-radius: var(--radius-xl);
  padding: 1.6em;
  box-sizing: border-box;
  box-shadow: var(--shadow-panel);
}
.step-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  padding-right: 1em;
}
.step-number {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ink);
}
.step-text { display: flex; flex-direction: column; gap: 0.5em; }
.step-text h3 { margin: 0; }
.step-text p { margin: 0; color: var(--ink-soft); max-width: 420px; }
.step-media {
  width: 36%;
  min-width: 240px;
  align-self: center;
  flex-shrink: 0;
}
.step-media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ---------------- Mission ---------------- */
.mission {
  max-width: 760px;
  margin: 0 auto;
  padding: 5.5em 1.25em;
  text-align: center;
}
.mission h2 { margin-bottom: 0.7em; }
.mission p { font-size: 1.2rem; color: var(--ink-soft); }

/* ---------------- About ---------------- */
.about {
  padding: 4.5em 1.25em;
}
.about-panel {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5em;
}
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4.5em;
  align-items: center;
}
.about-image {
  position: relative;
  width: min(100%, 300px);
  margin: 0 auto;
}
.about-photo-frame {
  position: relative;
  z-index: 2;
}
.about-photo-ring {
  position: absolute;
  border: 1.5px solid var(--gold-600);
  border-radius: calc(var(--radius-lg) + 10px);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px; left: -10px;
  z-index: 1;
}
.about-photo {
  position: relative;
  z-index: 2;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(34,27,39,0.18);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-copy .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.about-copy p { color: var(--ink-soft); }
.about-copy h2 { color: var(--ink); }

/* ---------------- Founder ---------------- */
.founder {
  padding-top: 0;
}
.founder-inner {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}
.founder .about-copy .eyebrow {
  color: var(--gold-600);
  margin-bottom: 0.5em;
}
.founder .about-copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin: 0 0 0.7em;
}
@media (max-width: 900px) {
  .founder-inner { gap: 2.5em; }
  .founder-inner .about-image { order: -1; }
}

/* ---------------- Services ---------------- */
.services {
  padding: 5.5em 1.25em 6em;
}
.services-first { padding-top: 3em; padding-bottom: 2.5em; }
.services-second { padding-top: 2em; }
.services > .eyebrow,
.service-block,
.quote {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Services grid (homepage teaser) ---------------- */
.services-grid {
  max-width: var(--max-width);
  margin: 2.4em auto 3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2em;
}
.service-grid-card {
  position: relative;
  display: block;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-grid-card:last-child { grid-column: 1 / -1; }
.service-grid-card:last-child img { object-position: center 15%; }
.service-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-grid-card:hover img,
.service-grid-card:focus-visible img { transform: scale(1.05); }
.service-grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,27,39,0.75), rgba(34,27,39,0.22) 45%, rgba(34,27,39,0) 72%);
  pointer-events: none;
}
.service-grid-title {
  position: absolute;
  left: 1.5em;
  right: 1.5em;
  bottom: 1.3em;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}
.service-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5em;
  padding: 2.6em 3em;
  margin-top: 1.6em;
  scroll-margin-top: calc(var(--header-h, 68px) + 24px);
}
.service-copy { max-width: 700px; }
.service-block.reverse .service-copy { text-align: right; }
.service-copy p { color: var(--ink-soft); }
.sign-up-btn { margin-top: 0.6em; }

.service-photo {
  flex: 1 1 280px;
  max-width: 320px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.service-photo-tall { aspect-ratio: 3 / 4; }
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote {
  margin-top: 4.5em;
  margin-bottom: 1.5em;
  max-width: 720px;
  text-align: center;
  padding: 4.5em 3em;
  background: var(--gold-soft);
  border: 1px solid var(--gold-500);
}
.quote-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--lavender-pale);
  color: var(--lavender-deep);
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 0.8em;
}
.quote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.6em;
}
.quote cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--lavender-deep);
}

/* ---------------- Booking CTA band (the site's one deep "arrival" moment) ---------------- */
.booking-band {
  background: var(--plum);
  color: var(--cream);
  padding: 3em 1.25em;
}
.booking-cta {
  text-align: center;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.booking-cta .icon-badge {
  background: var(--gold-soft);
  color: var(--plum);
  margin-bottom: 1em;
}
.booking-cta h1,
.booking-cta h2 { color: var(--white); font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 0.4em; }
.booking-cta p {
  color: var(--cream);
  opacity: 0.88;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Shared calendar / time-slot primitives (used inside modal) ---------------- */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1em;
}
.cal-month {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.cal-nav {
  background: var(--gold-200);
  border: 1px solid var(--line);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background 0.2s ease;
}
.cal-nav:hover { background: var(--gold-400); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}
.cal-weekday {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.cal-day:hover:not(:disabled) { background: var(--gold-300); }
.cal-day:disabled { color: rgba(34,27,39,0.22); cursor: default; }
.cal-day.selected { background: var(--lavender); color: var(--white); }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--gold-500); }

.booking-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.8em;
}
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
  margin-bottom: 1.6em;
}
.time-slot {
  padding: 0.6em 1.1em;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--gold-200);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.15s ease;
}
.time-slot:hover { border-color: var(--lavender); }
.time-slot.selected { background: var(--gold-500); color: var(--ink); border-color: var(--gold-500); }

/* ---------------- Booking modal ---------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,27,39,0.55);
  backdrop-filter: blur(3px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--paper);
  width: min(100%, 780px);
  max-height: 88vh;
  border-radius: var(--radius-xl);
  box-shadow: 0 40px 100px rgba(34,27,39,0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1em;
  padding: 1.4em 1.8em;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.modal-provider {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.modal-header h3 {
  font-size: 1.25rem;
  margin: 0;
  flex: 1;
  text-align: center;
}
.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.1em 0.3em;
}
.modal-close:hover { color: var(--ink); }

.modal-body {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
  flex: 1;
}

.modal-steps {
  padding: 1.8em 1.4em;
  border-right: 1px solid var(--line);
  background: var(--gold-200);
  overflow-y: auto;
}
.modal-step {
  display: flex;
  gap: 0.8em;
  padding-bottom: 1.6em;
  opacity: 0.45;
}
.modal-step.active,
.modal-step.done { opacity: 1; }
.step-badge {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold-100);
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
}
.modal-step.active .step-badge { background: var(--gold-400); border-color: var(--gold-400); color: var(--ink); }
.modal-step.done .step-badge { background: var(--lavender); border-color: var(--lavender); color: var(--white); }
.step-label {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
}
.step-summary {
  font-size: 0.82rem;
  color: var(--lavender-deep);
  margin: 0.3em 0 0;
  line-height: 1.4;
}

.modal-panel {
  padding: 2em;
  overflow-y: auto;
}
.modal-pane[hidden] { display: none; }

.option-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  background: var(--gold-50);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2em 1.5em;
  margin-bottom: 1em;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.option-card:hover { border-color: var(--gold-400); box-shadow: var(--shadow-card); }
.option-card strong { display: block; font-family: var(--font-head); font-size: 1.05rem; font-weight: 500; }
.option-card small { color: var(--ink-soft); font-size: 0.88rem; }
.option-select {
  flex-shrink: 0;
  background: var(--gold-400);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55em 1.2em;
  border-radius: 999px;
}

.modal-calendar { margin-bottom: 1.6em; }
.modal-times { margin-bottom: 1.6em; }
.modal-times .booking-label:not(:first-child) { margin-top: 1.2em; }
.modal-times .time-slots { margin-bottom: 0; }
.modal-next { width: 100%; }
.modal-next:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }

#modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
#modal-form label {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.9em;
}
#modal-form input,
#modal-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75em 1em;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--gold-50);
  resize: vertical;
}
#modal-form input:focus,
#modal-form textarea:focus { outline: none; border-color: var(--lavender); }
.modal-disclaimer {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 1.2em 0;
}
#modal-form .btn { align-self: flex-start; }

.modal-confirm {
  text-align: center;
  padding: 2em 1em;
}
.confirm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.8em;
}
.modal-confirm .modal-disclaimer { margin-bottom: 1.6em; }

/* ---------------- Contact ---------------- */
.contact {
  padding: 5.5em 1.25em;
}
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: start;
}
.contact .eyebrow { color: var(--gold-600); }
.contact .icon-badge { background: var(--paper); }
.contact-copy h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); }
.contact-copy p { color: var(--ink-soft); }
.contact-details {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1em;
  color: var(--ink);
  font-size: 1rem;
}
.contact-detail:hover .icon-badge { background: var(--gold-400); color: var(--ink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  padding: 2.4em;
}
.contact-form label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.8em;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8em 1em;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  background: var(--gold-50);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lavender);
}
.contact-form .btn { margin-top: 1.4em; align-self: flex-start; }
.form-note {
  margin-top: 0.8em;
  font-size: 0.9rem;
  color: var(--lavender-deep);
  min-height: 1.4em;
}

/* ---------------- Scroll cue ---------------- */
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
/* Arrow-only scroll cue (bridges the booking band into the session list) */
.scroll-cue-bare {
  display: block;
  width: 54px;
  margin: 1.8em auto 0;
  color: var(--plum);
  opacity: 0.62;
  animation: scroll-cue-bounce 1.6s ease-in-out infinite;
  transition: opacity 0.2s ease;
}
.scroll-cue-bare:hover { opacity: 0.9; }
.scroll-cue-bare svg { display: block; width: 100%; height: auto; }

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-bare { animation: none; }
}

/* ---------------- Section divider (dot + line, echoes the circle motif) ---------------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
  max-width: 220px;
  margin: 0 auto 2.6em;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.divider-line:last-child { background: linear-gradient(90deg, var(--gold-500), transparent); }
.divider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px var(--cream);
  flex-shrink: 0;
}

/* ---------------- Footer ---------------- */
.site-footer {
  text-align: center;
  padding: 3.5em 1.25em 2.5em;
  background: var(--paper);
  color: var(--ink-soft);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 0.3em;
}
.footer-social {
  margin: 1em auto;
  color: var(--lavender-deep);
}
.footer-note {
  font-size: 0.82rem;
  color: rgba(34,27,39,0.4);
  margin-top: 1em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em 1.6em;
  margin: 0.2em 0 1.2em;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.footer-links a:hover { color: var(--lavender-deep); }

/* ---------------- Section entry links (main scroll → subpages) ---------------- */
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 1.2em;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--lavender-deep);
}
.section-link svg { transition: transform 0.15s ease; flex-shrink: 0; }
.section-link:hover svg { transform: translateX(3px); }
.section-link.center {
  justify-content: center;
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Subpage intro (About / Services / Contact pages) ---------------- */
.page-intro {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.2em 1.25em 0;
}
.page-intro .eyebrow { margin-top: 1.6em; }
.page-intro h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); margin-bottom: 0.3em; }
.page-intro .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text .btn { margin: 0 auto; }
  .hero-portrait { order: -1; width: min(100%, 300px); }
  .step-card {
    position: static;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 1.2em;
    padding: 1.4em;
  }
  .step-copy { padding-right: 0; gap: 1.2em; }
  .step-number { font-size: 2.6rem; }
  .step-text p { max-width: 100%; }
  .step-media { width: 100%; min-width: 0; }
  .step-media img { height: 220px; }
  .about-panel { padding: 2.6em 1.8em; }
  .about-inner { grid-template-columns: 1fr; }
  .service-block { padding: 2em 1.6em; flex-direction: column; }
  .service-photo { max-width: 100%; width: 100%; flex-basis: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .service-grid-card { height: 300px; }
  .service-grid-card:last-child { grid-column: auto; }
  .booking-widget { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-block.reverse .service-copy { text-align: left; }
}

@media (max-width: 700px) {
  html.nav-open,
  html.nav-open body {
    overflow: hidden;
    height: 100%;
  }

  .nav-backdrop {
    position: fixed;
    top: var(--header-h, 68px);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 27, 39, 0.45);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav-backdrop.open { opacity: 1; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: var(--header-h, 68px);
    width: 78%;
    max-width: 320px;
    height: calc(100vh - var(--header-h, 68px));
    height: calc(100dvh - var(--header-h, 68px));
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    padding: 2.5em 2em;
    gap: 1.8em;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(34,27,39,0.1);
    z-index: 100;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-links {
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8em;
  }
  .menu-toggle { display: flex; }
  .nav-link { font-size: 1.1rem; }

  .hero { padding: 3.5em 1.2em 3em; }
  .booking-band { padding: 2.2em 1.6em; }

  .modal-body { grid-template-columns: 1fr; overflow-y: auto; }
  .modal-steps {
    display: flex;
    gap: 1.2em;
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 1.1em 1.4em;
    overflow-x: auto;
  }
  .modal-step { padding-bottom: 0; white-space: nowrap; gap: 0.5em; }
  .modal-step:not(.active) .step-label { display: none; }
  .step-summary { display: none; }
  .modal { max-height: 92vh; }
}

@media (max-width: 480px) {
  .quote p { font-size: 1.2rem; }
  .modal-panel { padding: 1.4em; }
  .option-card { flex-direction: column; align-items: flex-start; gap: 0.8em; }

  .main-nav { width: 84%; padding: 6em 1.6em 2em; }
  .modal-steps { gap: 0.6em; padding: 1em 0.9em; }
  .step-badge { width: 22px; height: 22px; font-size: 0.75rem; }
  .step-label { font-size: 0.8rem; }
  .site-header { padding: 0.9em 1.1em; }
  .logo { font-size: 1.1rem; }
  .contact-form { padding: 1.6em; }
}
