/* =====================================================================
   Angel's House Healing Services — stylesheet
   Concept: "shadow into light." The palette moves from a deep twilight
   blue (--night) into a warm golden dawn (--dawn) — the arc of shadow
   work. Recurring motif: the arch, a doorway into Angel's House.
   Type: Fraunces (literary display) + Nunito Sans (warm humanist body).
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* palette — "dusk into dawn": deep indigo warming into warm gold */
  --night:      #1f2b4d;  /* dusk indigo — main brand, dark backgrounds & headlines */
  --night-2:    #16203b;  /* deeper indigo, for footer */
  --tide:       #45628c;  /* slate blue — supporting accents & detail */
  --tide-deep:  #35496e;  /* darker slate — links */
  --dawn:       #d89b3c;  /* warm gold — buttons & highlights */
  --dawn-soft:  #f2ce7e;  /* butter yellow — soft touches & glow */
  --halo:       #f8e7be;  /* pale warm gold */
  --linen:      #faf3e6;  /* warm ivory page */
  --linen-2:    #f1e7d2;  /* subtle panel */
  --white:      #fffdf8;
  --ink:        #2b2233;  /* plum charcoal — body text */
  --ink-soft:   #6b6459;  /* muted body text */
  --line:       rgba(43, 34, 51, 0.12);

  /* type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* structure */
  --wrap: 1120px;
  --header-h: 118px;
  --radius: 18px;
  --shadow-sm: 0 2px 10px rgba(31, 43, 77, 0.07);
  --shadow-md: 0 14px 40px rgba(31, 43, 77, 0.13);
  --shadow-lg: 0 30px 70px rgba(22, 32, 59, 0.30);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--tide-deep); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--night);
  margin: 0;
  font-optical-sizing: auto;
}

p { margin: 0 0 1rem; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section { padding-block: clamp(3.75rem, 8vw, 6.5rem); }

/* generic in-page anchor offset (sticky header) */
:where(section[id]) { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ---------- Accessibility helpers ---------- */
.visually-hidden {
  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: fixed; top: 0.5rem; left: 0.5rem; z-index: 200;
  background: var(--night); color: var(--white);
  padding: 0.6rem 1rem; border-radius: 10px;
  transform: translateY(-160%); transition: transform 0.2s;
}
.skip-link:focus { transform: none; }

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

/* ---------- Shared type bits ---------- */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tide);
  margin: 0 0 1rem;
}
.eyebrow em { font-style: italic; font-family: var(--font-display); text-transform: none; letter-spacing: 0.02em; }
.eyebrow--onDark { color: var(--dawn); }

.script {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--tide);
}

.section-head {
  max-width: 46rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}
.section-head__title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  letter-spacing: -0.01em;
}
.section-head__lede {
  margin: 1rem auto 0;
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.075rem;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; color: var(--tide-deep); text-decoration: none;
  margin-top: 0.5rem;
  padding-block: 0.35rem;  /* comfortable tap height */
}
.link-arrow span { transition: transform 0.25s; }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--tide);
  --_fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  min-height: 44px;  /* accessible tap target on touch devices */
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  color: var(--_fg);
  background: var(--_bg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn__icon { display: inline-flex; }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.92rem; }

.btn--gold { --_bg: var(--dawn); --_fg: var(--night); }
.btn--gold:hover { background: var(--dawn-soft); }

.btn--outline {
  --_bg: transparent; --_fg: var(--tide-deep);
  border-color: var(--tide);
}
.btn--outline:hover { background: var(--tide); --_fg: var(--white); }

.btn--ghostLight {
  --_bg: rgba(255, 255, 255, 0.06);
  --_fg: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghostLight:hover { background: rgba(255, 255, 255, 0.14); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 243, 230, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header[data-scrolled] {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(31, 43, 77, 0.08);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo {
  height: 100px; width: auto;
  display: block;
}
/* keep the mobile header from getting too tall */
@media (max-width: 860px) {
  :root { --header-h: 96px; }
  .brand__logo { height: 80px; }
}

.nav { display: flex; align-items: center; }
.nav__menu {
  list-style: none; display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 1.9rem);
  margin: 0; padding: 0;
}
.nav__menu a:not(.btn) {
  text-decoration: none; color: var(--night);
  font-weight: 600; font-size: 0.98rem;
  padding: 0.4rem 0; position: relative;
}
.nav__menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--dawn);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s;
}
.nav__menu a:not(.btn):hover::after,
.nav__menu a.is-active:not(.btn)::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle-bar, .nav__toggle-bar::before, .nav__toggle-bar::after {
  content: ""; display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--night); transition: transform 0.25s, opacity 0.2s;
}
.nav__toggle-bar { position: relative; }
.nav__toggle-bar::before { position: absolute; top: -6px; left: 0; }
.nav__toggle-bar::after  { position: absolute; top: 6px; left: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after  { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  text-align: left;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(5rem, 10vw, 8rem);
  background:
    linear-gradient(135deg, var(--night-2) 0%, var(--night) 55%, #2c3f66 100%);
  color: var(--white);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22, 32, 59, 0.96) 0%, rgba(22, 32, 59, 0.88) 42%, rgba(22, 32, 59, 0.5) 100%),
    url("../assets/images/logo.png") right center / cover;
  transform: scale(1.04);
}
.hero::after {
  z-index: -1;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 248, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, rgba(22, 32, 59, 0.2), rgba(22, 32, 59, 0.92));
}
.hero__inner {
  position: relative;
  min-height: clamp(460px, 58vw, 660px);
  display: flex;
  align-items: center;
}
.hero__copy { max-width: 700px; }

.hero .eyebrow { margin-bottom: 1.1rem; }

.hero__title {
  color: #fdfaf3;
  font-size: clamp(2.45rem, 1.25rem + 4vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 13ch;
  text-wrap: balance;
}
.hero__verse {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--dawn-soft);
  font-size: clamp(1.15rem, 0.95rem + 1vw, 1.6rem);
  line-height: 1.45;
  margin: 1.4rem 0 0;
}
.hero__lede {
  margin: 1.4rem 0 0;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}
/* Client slogan / brand tagline — sits above the CTAs, distinct from the
   quote-style verse via the star flourishes and its single confident line.
   Flourishes are inline pseudo-elements so they stay attached to the text
   and flow with it when the line wraps on small screens. */
.hero__slogan {
  margin: 1.6rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 0.95rem + 0.7vw, 1.45rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--halo);
}
.hero__slogan::before { content: "\2726\2002"; }   /* ✦ + en space */
.hero__slogan::after  { content: "\2002\2726"; }
.hero__slogan::before,
.hero__slogan::after {
  font-style: normal;
  font-size: 0.66em;
  vertical-align: 0.12em;
  color: var(--dawn);
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: flex-start;
  margin-top: 2.1rem;
}
.hero__horizon {
  position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(60px, 8vw, 120px);
  display: block; z-index: 1;
}
.hero__horizon path { fill: var(--linen); }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { overflow: hidden; }  /* contain the decorative halo bleed */
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__media { position: relative; }

/* the arch — a doorway into Angel's House */
.arch {
  position: relative; z-index: 2;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  background: var(--linen-2);
  box-shadow: 0 0 0 1px var(--line), var(--shadow-md);
}
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.about__halo {
  position: absolute; z-index: 1;
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  right: -8%; bottom: -8%;
  background: radial-gradient(circle, rgba(242, 206, 126, 0.42), transparent 68%);
  filter: blur(4px);
}

.about__title {
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.85rem);
  margin-bottom: 1.1rem;
}
.about__body p { color: var(--ink-soft); }

.mission {
  margin: 1.75rem 0;
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--dawn);
  background: linear-gradient(120deg, rgba(248, 231, 190, 0.5), rgba(248, 231, 190, 0.16));
  border-radius: 0 14px 14px 0;
}
.mission p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--night);
}

/* Reiki credential — text callout with lineage link */
.about__credential {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 30rem;
  margin: 1.6rem 0 0.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}
.about__credential-icon {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--halo); color: var(--tide);
}
.about__credential a { font-weight: 700; }

/* =====================================================================
   TESTIMONIALS
   A restrained editorial treatment: no carousel or card wall. Additional
   testimonials can be added to .testimonials__list as matching figures.
   ===================================================================== */
.testimonials {
  position: relative;
  padding-top: clamp(2rem, 5vw, 3.75rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 78% 30%, rgba(248, 231, 190, 0.42), transparent 32%),
    var(--linen);
}
.testimonials__layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(69, 98, 140, 0.25);
}
.testimonials__intro h2 {
  max-width: 9ch;
  font-size: clamp(1.85rem, 1.25rem + 2.2vw, 2.75rem);
  text-wrap: balance;
}
.testimonials__list {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.testimonial {
  position: relative;
  margin: 0;
  padding-left: clamp(2.75rem, 6vw, 5.25rem);
}
.testimonial blockquote { position: relative; margin: 0; }
.testimonial blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.32em;
  left: calc(-1 * clamp(2.75rem, 6vw, 5.25rem));
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: var(--dawn);
}
.testimonial + .testimonial {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--line);
}
.testimonial blockquote p {
  margin: 0;
  max-width: 62ch;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.98rem + 0.55vw, 1.4rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--night);
  text-wrap: pretty;
}
.testimonial blockquote p + p { margin-top: 1.15rem; }
.testimonial figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.8rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 2px solid var(--dawn);
  line-height: 1.4;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--night);
}
.testimonial figcaption span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* =====================================================================
   SERVICES
   ===================================================================== */
.services {
  background:
    linear-gradient(180deg, var(--linen-2) 0%, #ece0c9 100%);
}
.services__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(1.25rem, 4vw, 2.75rem);
  align-items: stretch;
}
.services__lead-list {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}
.service-feature {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  min-height: 150px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid rgba(43, 34, 51, 0.1);
  box-shadow: 0 14px 44px rgba(31, 43, 77, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 98, 140, 0.3);
  box-shadow: 0 22px 58px rgba(31, 43, 77, 0.15);
}
.service-feature--primary {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(31, 43, 77, 0.97), rgba(69, 98, 140, 0.9)),
    url("../assets/images/logo.png") 110% 45% / 52% auto no-repeat;
  border-color: rgba(242, 206, 126, 0.3);
  color: rgba(255, 253, 248, 0.84);
}
.service-feature__number {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1;
  color: rgba(69, 98, 140, 0.14);
}
.service-feature--primary .service-feature__number { color: rgba(255, 253, 248, 0.12); }
.service-feature__glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 18px;
  background: var(--halo);
  color: var(--tide);
  box-shadow: inset 0 0 0 1px rgba(43, 34, 51, 0.07);
}
.service-feature--primary .service-feature__glyph {
  background: var(--dawn);
  color: var(--night);
}
.service-feature__title {
  font-size: clamp(1.35rem, 1rem + 1.4vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.service-feature__tag {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.55rem;
  transform: translateY(-2px);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tide);
  background: var(--halo);
  padding: 0.28em 0.6em;
  border-radius: 999px;
}
.service-feature--primary .service-feature__tag { color: var(--night); background: var(--dawn-soft); }
.service-feature p {
  margin: 0;
  max-width: 46ch;
  color: var(--ink-soft);
}
.service-feature--primary .service-feature__title { color: #fdfaf3; }
.service-feature--primary p { color: rgba(255, 253, 248, 0.82); }
.services__support {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 999px 999px 22px 22px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(248, 231, 190, 0.42));
  border: 1px solid rgba(216, 155, 60, 0.32);
  box-shadow: var(--shadow-sm);
}
.services__support h3 {
  font-size: clamp(1.45rem, 1rem + 1.5vw, 2.2rem);
  max-width: 12ch;
}
.support-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
}
.support-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-block: 0.85rem;
  border-top: 1px solid rgba(43, 34, 51, 0.1);
}
.support-list__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--night);
  color: var(--dawn-soft);
}
.support-list strong {
  display: block;
  color: var(--night);
  line-height: 1.2;
}
.support-list p {
  margin: 0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 780px; margin-inline: auto;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.25rem 1.9rem;
  box-shadow: var(--shadow-sm);
}
.price-card--feature {
  border-color: rgba(216, 155, 60, 0.85);
  box-shadow: 0 0 0 1px rgba(216, 155, 60, 0.6), var(--shadow-md);
}
.price-card__ribbon {
  position: absolute; top: -0.85rem; left: 1.9rem;
  background: var(--dawn); color: var(--night);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px;
}
.price-card__label {
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--tide); margin: 0 0 0.6rem;
}
.price-card__amount {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3rem, 2rem + 3.5vw, 4rem); line-height: 1; color: var(--night);
  margin: 0;
}
.price-card__currency { font-size: 0.45em; vertical-align: super; margin-right: 0.05em; color: var(--tide); }
.price-card__meta { margin: 0.65rem 0 0; font-weight: 700; color: var(--ink); }
.price-card__desc { margin: 0.5rem 0 1.5rem; color: var(--ink-soft); }
.price-card .btn { width: 100%; }

.pricing__note {
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  max-width: 620px;
  text-align: center;
  color: var(--ink-soft);
}
.pricing__note strong { color: var(--night); white-space: nowrap; }
.badge-gold {
  display: inline-block;
  background: var(--dawn); color: var(--night);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  margin-right: 0.6rem; vertical-align: middle;
}

/* =====================================================================
   BOOKING (Calendly)
   ===================================================================== */
.booking { background: var(--linen-2); }
.booking__panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: clamp(0.5rem, 1.5vw, 1rem);
  overflow: hidden;
}
.booking .calendly-inline-widget {
  min-width: 0;      /* fluid — avoids clipping on ≤320px screens */
  width: 100%;
  height: 700px;
}
.booking__fallback { text-align: center; padding: 2rem 1rem; }
.booking__link { text-align: center; margin: 1.25rem 0 0; color: var(--ink-soft); }
.booking__link a { font-weight: 700; }

/* =====================================================================
   INTAKE FORM
   ===================================================================== */
.intake { background: var(--linen-2); }
.intake__panel {
  max-width: 820px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* off-screen honeypot */
.intake-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > label,
.choice-group legend {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--night);
}
.field__opt { font-weight: 400; color: var(--ink-soft); }
.req { color: var(--dawn); }
.field__help { margin: 0.15rem 0 0; font-size: 0.85rem; color: var(--ink-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(69, 98, 140, 0.5); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--tide);
  box-shadow: 0 0 0 3px rgba(69, 98, 140, 0.18);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #b4453a;
  box-shadow: 0 0 0 3px rgba(180, 69, 58, 0.14);
}

/* checkbox / radio choices */
.choice-group { border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.5rem 1rem;
  margin-top: 0.7rem;
}
.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.45;
}
.choice input {
  width: 20px; height: 20px; min-height: 0; flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--tide);
}
.choice--consent {
  padding: 1rem 1.15rem;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.95rem;
}

.intake-form__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.4rem;
  margin-top: 1.6rem;
}
.intake-form__foot .btn { min-width: 200px; }
.intake-form__privacy { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }

.form-status { margin: 1.1rem 0 0; font-weight: 600; }
.form-status[data-state="success"],
.form-status[data-state="error"] {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
}
.form-status[data-state="success"] {
  background: rgba(69, 98, 140, 0.1);
  color: var(--tide-deep);
  border-color: rgba(69, 98, 140, 0.3);
}
.form-status[data-state="error"] {
  background: rgba(180, 69, 58, 0.08);
  color: #9c3b31;
  border-color: rgba(180, 69, 58, 0.3);
}

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

/* =====================================================================
   INVITATION
   ===================================================================== */
.invitation {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--linen-2), var(--night));
  padding-block: clamp(2rem, 5vw, 4rem);
}
.invitation__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding-block: clamp(1.25rem, 3vw, 2rem);
  border-top: 1px solid rgba(216, 155, 60, 0.55);
  border-bottom: 1px solid rgba(216, 155, 60, 0.28);
}
.invitation .eyebrow { margin-bottom: 0.45rem; }
.invitation h2 {
  color: #fdfaf3;
  font-size: clamp(1.75rem, 1.1rem + 2.2vw, 2.75rem);
}
.invitation p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  max-width: 48ch;
}
.invitation .btn--outline {
  --_fg: #fdfaf3;
  border-color: rgba(242, 206, 126, 0.7);
}
.invitation .btn--outline:hover {
  background: var(--dawn);
  --_fg: var(--night);
  border-color: var(--dawn);
}

/* =====================================================================
   CONTACT (dark)
   ===================================================================== */
.contact {
  background:
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 100%);
  color: rgba(255, 255, 255, 0.86);
}
.contact__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.contact__title { color: #fdfaf3; font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.85rem); }
.contact__lede { margin: 1rem 0 0; font-size: 1.1rem; }
.contact__lede strong { color: var(--dawn-soft); font-weight: 700; }
.contact__email-options { display: block; margin-top: 1rem; }
.contact__email-options a {
  color: var(--dawn-soft);
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact__response-time {
  display: inline-block;
  margin: 1.15rem 0 0;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--dawn-soft);
  font-size: 0.95rem;
  font-weight: 700;
}
.contact__actions { margin: 2rem 0 1.75rem; display: flex; justify-content: center; }

.socials {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap;
}
.socials a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.15rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9); text-decoration: none; font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.socials a:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--dawn); color: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--night-2); color: rgba(255, 255, 255, 0.7); padding-block: 2.75rem; }
.footer__inner {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem;
  align-items: center; justify-content: space-between;
}
.footer__brand .brand__name {
  font-family: var(--font-display); font-size: 1.25rem; color: #fdfaf3; display: block;
}
.footer__fine { margin: 0.3rem 0 0; font-size: 0.9rem; }
.footer__legal { margin: 0; font-size: 0.9rem; text-align: right; }
.footer__legal a { color: var(--dawn-soft); display: inline-block; padding-block: 3px; }

/* =====================================================================
   Scroll reveal
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 860px) {
  .hero { text-align: center; }
  .hero__inner {
    min-height: clamp(560px, 138vw, 760px);
    justify-content: center;
  }
  .hero__copy {
    max-width: 580px;
  }
  .hero__title,
  .hero__lede,
  .hero__slogan {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; margin-inline: auto; }

  .testimonials__layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .testimonials__intro h2 { max-width: none; }

  .services__layout {
    grid-template-columns: 1fr;
  }
  .services__support {
    border-radius: 22px;
  }
  .services__support h3 {
    max-width: none;
  }

  .invitation__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .invitation p {
    margin-inline: auto;
  }
  .invitation .btn {
    justify-self: center;
  }

  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: absolute; top: calc(var(--header-h) - 6px); right: clamp(1rem, 5vw, 2rem);
    left: clamp(1rem, 5vw, 2rem);
    flex-direction: column; align-items: stretch; gap: 0.35rem;
    background: var(--white);
    border: 1px solid var(--line); border-radius: 16px;
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  }
  .nav__menu[data-open] { opacity: 1; visibility: visible; transform: none; }
  .nav__menu a:not(.btn) { padding: 0.7rem 0.65rem; border-radius: 10px; }
  .nav__menu a:not(.btn)::after { display: none; }
  .nav__menu a:not(.btn):hover { background: var(--linen-2); }
  .nav__cta-item { margin-top: 0.25rem; }
  .nav__cta-item .btn { width: 100%; }
}

@media (max-width: 560px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; }
  .hero__title { font-size: clamp(1.9rem, 5vw + 1rem, 2.6rem); }
  .btn { width: 100%; }
  .hero__actions .btn { width: 100%; }
  .testimonial {
    padding-top: 0;
    padding-left: 0;
  }
  .testimonial blockquote { padding-top: 2.75rem; }
  .testimonial blockquote::before { top: -0.2em; left: 0; }
  .service-feature {
    grid-template-columns: 1fr;
  }
  .service-feature__number {
    font-size: 2.5rem;
  }
  .booking .calendly-inline-widget {
    height: 640px;
  }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
