/* ============================================================
   SOUL BLOOM — design system
   Palette: warm white + sage greens (ref: healingrootstherapy.ca) + brand pink
   cream #F8F7F2 · sage #596F59 / #879884 · pink #F0759E
   Type: Fraunces (display serif) + Jost (body)
   ============================================================ */

:root {
  --cream: #F8F7F2;
  --cream-deep: #EFEDE5;
  --cream-card: #FDFCF9;
  --olive: #596F59;
  --olive-soft: #879884;
  --olive-faint: #A7B2A4;
  --olive-deep: #3C4F3C;
  --ink: #333B33;
  --pink: #F0759E;
  --pink-soft: #F6A9C0;
  --pink-wash: #FCEAF0;
  --pink-deep: #D95487;
  --line: rgba(89, 111, 89, .3);
  --line-strong: rgba(89, 111, 89, .55);
  --shadow: 0 18px 44px -18px rgba(60, 79, 60, .28);
  --shadow-soft: 0 10px 30px -14px rgba(60, 79, 60, .22);
  --shadow-pink: 0 14px 38px -14px rgba(240, 117, 158, .4);
  --ease: cubic-bezier(.22, .8, .3, 1);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  --pad-section: clamp(4.5rem, 9vw, 7.5rem);
  --w-wide: 1160px;
  --w-text: 720px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 380;
  font-size: 1.06rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--olive); text-decoration: none; }
p { margin: 0 0 1.1em; }
ul { padding-left: 1.2em; }

::selection { background: var(--pink-soft); color: var(--olive-deep); }

/* ---------- typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 420;
  line-height: 1.1;
  color: var(--olive-deep);
  margin: 0 0 .5em;
  letter-spacing: -.012em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: 0; }
/* accent words: colored but upright — italics only in the hero & real quotes,
   so headings read as one typeface */
.h-italic { font-style: normal; font-weight: 420; color: var(--olive); }
.hero .h-italic { font-style: italic; font-weight: 380; }
.accent-pink { color: var(--pink-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1.5px;
  background: var(--pink);
}
.center .eyebrow::before { display: none; }

.lede {
  font-size: clamp(1.12rem, 1.7vw, 1.3rem);
  font-weight: 320;
  color: var(--olive-deep);
  max-width: 46ch;
}
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.muted { color: rgba(51, 59, 51, .72); }
.small { font-size: .9rem; }

/* ---------- layout ---------- */
.wrap { width: min(var(--w-wide), calc(100% - 3rem)); margin-inline: auto; }
.wrap-text { width: min(var(--w-text), calc(100% - 3rem)); margin-inline: auto; }
section { padding-block: var(--pad-section); position: relative; }
.section-tight { padding-block: calc(var(--pad-section) * .55); }
.band-cream-deep { background: var(--cream-deep); }
.band-olive { background: var(--olive-deep); color: var(--cream); }
.band-olive h2, .band-olive h3 { color: var(--cream); }
.band-olive .eyebrow { color: var(--pink-soft); }
.band-pink-wash { background: var(--pink-wash); }

.grid-2 { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); align-items: center; }
.grid-3 { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.grid-4 { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); }

/* hairline frame — echoes the logo's rectangular border */
.framed {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  background: var(--cream-card);
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 247, 242, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .8rem;
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.7rem); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .82rem; font-weight: 460; letter-spacing: .14em; text-transform: uppercase;
  color: var(--olive-deep); padding: .35rem 0; position: relative; white-space: nowrap;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--pink); transition: width .3s ease;
}
.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn)[aria-current="page"]::after { width: 100%; }
.nav-links a:not(.btn)[aria-current="page"] { color: var(--olive); }
.nav-cta { margin-left: .4rem; }
.nav-cta .btn { padding: .7em 1.5em; }

/* programs dropdown */
.has-sub { position: relative; }
.sub-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  list-style: none; margin: 0; padding: .5rem 0; min-width: 190px;
  background: var(--cream-card); border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm); box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; z-index: 70;
  transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
.sub-menu a { display: block; padding: .5rem 1.2rem; }
.sub-menu a:not(.btn)::after { display: none; }
.sub-menu a:hover { background: var(--cream-deep); color: var(--olive); }
@media (max-width: 920px) {
  .sub-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    border: 0; box-shadow: none; background: transparent;
    padding: 0 0 0 1.2rem; min-width: 0;
  }
  .has-sub > a { pointer-events: none; opacity: .6; }
  .has-sub > a span { display: none; }
}
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line-strong);
  border-radius: 8px; padding: .5rem .65rem; cursor: pointer; color: var(--olive-deep);
}
@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 63px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1.5px solid var(--line-strong);
    padding: 1rem 1.5rem 1.6rem; gap: .2rem; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: .7rem 0; border-bottom: 1px dashed var(--line); }
  .nav-cta { margin: .8rem 0 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-body); font-size: .84rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .95em 1.9em; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--olive); color: var(--olive-deep);
  background: transparent; transition: all .32s var(--ease); text-align: center;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -85%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-20deg); transition: left .55s ease; pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { background: var(--olive); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn:active { transform: translateY(0) scale(.97); }
.btn-solid { background: var(--olive); color: var(--cream); }
.btn-solid:hover { background: var(--olive-deep); border-color: var(--olive-deep); }
.btn-pink { border-color: var(--pink); color: #C2416F; }
.btn-pink:hover { background: var(--pink); border-color: var(--pink); color: #fff; box-shadow: var(--shadow-pink); }
.btn-light { border-color: var(--cream); color: var(--cream); }
.btn-light:hover { background: var(--cream); color: var(--olive-deep); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- badges / chips ---------- */
.badge-location {
  display: inline-flex; align-items: center; gap: .55em;
  flex-wrap: wrap; justify-content: center; max-width: 100%;
  background: var(--cream-card); border: 1.5px solid var(--line-strong);
  border-radius: 999px; padding: .5em 1.2em;
  font-size: .82rem; font-weight: 460; letter-spacing: .12em; text-transform: uppercase;
  color: var(--olive-deep); box-shadow: var(--shadow-soft);
}
@media (max-width: 480px) { .badge-location { font-size: .72rem; letter-spacing: .08em; } }
.badge-location .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--pink);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(240, 117, 158, .5); }
  70% { box-shadow: 0 0 0 9px rgba(240, 117, 158, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 117, 158, 0); }
}
.chip {
  display: inline-block; font-size: .74rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--olive);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: .32em 1em;
  background: var(--cream);
}
.chip-pink { color: #C2416F; border-color: var(--pink-soft); background: var(--pink-wash); }

/* ---------- cards ---------- */
.card {
  background: var(--cream-card); border: 1.5px solid var(--line);
  border-radius: var(--r-md); padding: 2rem 1.8rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column; gap: .3rem;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card .card-icon { margin-bottom: 1rem; }
.card h3 { margin-bottom: .35em; }
.card ul { margin: .4rem 0 0; padding-left: 1.1em; }
.card li { margin-bottom: .3em; }
.card .card-foot { margin-top: auto; padding-top: 1.2rem; }

/* price cards */
.price-card { position: relative; overflow: hidden; }
.price-card .sessions {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-soft);
  font-weight: 500; margin-bottom: .2rem;
}
.price-card .price {
  font-family: var(--font-display); font-size: 2.1rem; color: var(--olive-deep);
  font-weight: 480; line-height: 1; margin: .9rem 0 .1rem;
}
.price-card .price small { font-size: .95rem; font-family: var(--font-body); font-weight: 340; color: var(--olive-soft); letter-spacing: .04em; }
.price-card.featured { border: 1.5px solid var(--pink); box-shadow: var(--shadow); }
.price-card.featured::before {
  content: "Most loved"; position: absolute; top: 1.1rem; right: -2.6rem;
  transform: rotate(38deg); background: var(--pink); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: .35em 3em;
}

/* pricing mode toggle */
.mode-toggle {
  display: inline-flex; border: 1.5px solid var(--line-strong); border-radius: 999px;
  background: var(--cream-card); padding: .3rem; gap: .2rem; flex-wrap: wrap; justify-content: center;
}
.mode-toggle button {
  border: 0; background: transparent; border-radius: 999px; cursor: pointer;
  font-family: var(--font-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--olive-soft);
  padding: .6em 1.5em; transition: all .25s ease;
}
.mode-toggle button.active { background: var(--olive); color: var(--cream); }

/* ---------- journey line (Stress → Clarity → Balance → Growth) ---------- */
.journey { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem 0; }
.journey .step {
  font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic; color: var(--olive); padding: 0 .35em;
}
.journey .step:last-child { color: var(--pink); font-style: normal; font-weight: 500; }
.journey .arrow { color: var(--pink); opacity: .8; display: flex; align-items: center; padding: 0 .4em; }

/* ---------- updates strip ---------- */
.updates-strip {
  border-block: 1.5px solid var(--line-strong);
  background: var(--cream-deep);
  overflow: hidden; padding-block: .85rem;
}
.updates-track {
  display: flex; gap: 3.5rem; width: max-content;
  animation: ticker 46s linear infinite;
}
.updates-strip:hover .updates-track { animation-play-state: paused; }
.updates-track span {
  font-size: .84rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 460;
  color: var(--olive-deep); white-space: nowrap; display: inline-flex; align-items: center; gap: .8em;
}
.updates-track .u-date { color: var(--pink); font-weight: 600; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .updates-track { animation: none; flex-wrap: wrap; width: auto; }
  html { scroll-behavior: auto; }
}

/* ---------- event cards ---------- */
.event-card { display: grid; grid-template-columns: 86px 1fr; gap: 1.3rem; align-items: start; }
.event-date {
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  text-align: center; padding: .6rem .3rem; background: var(--cream);
}
.event-date .d { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--olive-deep); font-weight: 480; }
.event-date .m { font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-top: .25rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; font-size: .85rem; color: var(--olive-soft); margin: .3rem 0 .6rem; }
.event-meta span { display: inline-flex; align-items: center; gap: .4em; }

/* ---------- journal ---------- */
.journal-card { padding: 0; overflow: hidden; }
.journal-card .cover { aspect-ratio: 16 / 10; overflow: hidden; }
.journal-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.journal-card:hover .cover img { transform: scale(1.05); }
.journal-card .body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.journal-card .date { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); font-weight: 560; }
.post-body { font-size: 1.08rem; }
.post-body p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 3.2em; float: left;
  line-height: .85; padding-right: .12em; color: var(--olive);
}
.post-quote {
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem;
  color: var(--olive); border-left: 2px solid var(--pink);
  margin: 2rem 0; padding: .3rem 0 .3rem 1.4rem; line-height: 1.5;
}

/* ---------- gallery ---------- */
.gallery-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr)); }
.gallery-item {
  border-radius: var(--r-sm); overflow: hidden; cursor: zoom-in; position: relative;
  border: 1.5px solid var(--line); aspect-ratio: 4 / 3; background: var(--cream-deep);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem .9rem .7rem;
  background: linear-gradient(transparent, rgba(51, 59, 51, .75));
  color: var(--cream); font-size: .82rem; letter-spacing: .1em;
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover .cap { opacity: 1; }
.lightbox {
  position: fixed; inset: 0; z-index: 90; background: rgba(51, 59, 51, .9);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 84vh; border-radius: var(--r-sm); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox .lb-close {
  position: absolute; top: 1.2rem; right: 1.4rem; background: none; border: 0;
  color: var(--cream); font-size: 2rem; cursor: pointer; line-height: 1;
}
.lightbox .lb-cap { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: var(--cream); letter-spacing: .12em; font-size: .88rem; }

/* ---------- journey trail ---------- */
.travel-layout { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); align-items: start; }
.journey-trail { width: 100%; height: auto; display: block; }
.trail-line {
  fill: none; stroke: var(--olive-soft); stroke-width: 2; stroke-linecap: round;
  opacity: .5; transition: stroke-dashoffset 2.8s ease .2s;
}
.journey-trail.grow .trail-line { stroke-dashoffset: 0 !important; }
.stop-pop {
  transform: scale(0); transform-box: fill-box; transform-origin: center;
  transition: transform .55s var(--ease);
}
.journey-trail.grow .stop-pop { transform: scale(1); }
.trail-stop text { opacity: 0; transition: opacity .7s ease; }
.journey-trail.grow .trail-stop text { opacity: 1; }
.trail-stop .petal { fill: var(--olive-soft); opacity: .9; }
.trail-stop .core { fill: var(--pink); }
.trail-stop.current .petal { fill: var(--pink); opacity: 1; }
.trail-stop.current .core { fill: #fff; }
.trail-stop.current .halo { fill: none; stroke: var(--pink); stroke-width: 1.2; opacity: 0; animation: halo 2.4s ease-out infinite; }
@keyframes halo {
  0% { r: 8; opacity: .8; } 100% { r: 18; opacity: 0; }
}
.trail-stop.next .bud { fill: var(--pink-wash); stroke: var(--pink); stroke-width: 1.4; stroke-dasharray: 3 3; }
.trail-stop.next .bud-core { fill: var(--pink); }
.t-place { font-family: var(--font-display); font-size: 15px; fill: var(--olive-deep); }
.t-when { font-family: var(--font-body); font-size: 8.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; fill: var(--pink-deep); }
@media (prefers-reduced-motion: reduce) {
  .trail-line { stroke-dashoffset: 0 !important; transition: none; }
  .stop-pop { transform: scale(1); transition: none; }
  .trail-stop text { opacity: 1; transition: none; }
  .trail-stop.current .halo { animation: none; }
}
.travel-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.travel-timeline::before {
  content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px;
  border-left: 1.5px dashed var(--line-strong);
}
.travel-timeline li { position: relative; padding: 0 0 1.7rem 2.4rem; }
.travel-timeline li::before {
  content: ""; position: absolute; left: 3px; top: .45em;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--cream); border: 2.5px solid var(--olive-soft);
}
.travel-timeline li.current::before { border-color: var(--pink); background: var(--pink); }
.travel-timeline li.next::before { border-style: dashed; border-color: var(--pink); background: var(--cream); }
.travel-timeline .place { font-family: var(--font-display); font-size: 1.25rem; color: var(--olive-deep); }
.travel-timeline .when { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); font-weight: 560; }

/* ---------- forms ---------- */
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .8rem; font-weight: 520; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: .45rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="date"], .field input[type="number"], .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--cream-card); border: 1.5px solid var(--line-strong); border-radius: var(--r-sm);
  padding: .8em 1em; transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(240, 117, 158, .18);
}
.field textarea { min-height: 120px; resize: vertical; }
.check-grid { display: grid; gap: .45rem .9rem; grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); }
.check-pill { position: relative; }
.check-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.check-pill span {
  display: block; border: 1.5px solid var(--line); border-radius: 999px;
  padding: .55em 1.2em; font-size: .92rem; text-align: center;
  transition: all .22s ease; background: var(--cream-card); cursor: pointer;
}
.check-pill input:checked + span { background: var(--olive); border-color: var(--olive); color: var(--cream); }
.check-pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(240, 117, 158, .3); }
.form-steps { display: flex; gap: .4rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.form-steps .fs {
  flex: 1; min-width: 60px; text-align: center; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive-faint); padding-top: .6rem; position: relative; font-weight: 500;
}
.form-steps .fs::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px; background: var(--line); }
.form-steps .fs.active { color: var(--olive-deep); }
.form-steps .fs.active::before { background: var(--pink); }
.form-steps .fs.done::before { background: var(--olive-soft); }
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeUp .45s ease; }
.form-error { color: #B3325F; font-size: .88rem; margin-top: .6rem; display: none; }
fieldset { border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 1.4rem 1.5rem; margin: 0 0 1.4rem; }
legend { font-size: .8rem; font-weight: 540; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); padding-inline: .6em; }

/* ---------- FAQ accordion ---------- */
.faq details {
  border-bottom: 1.5px solid var(--line); padding: 1.1rem 0;
}
.faq summary {
  font-family: var(--font-display); font-size: 1.22rem; color: var(--olive-deep);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--pink); transition: transform .3s ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .9rem 0 0; max-width: 62ch; }

/* ---------- imagery ---------- */
.portrait-frame { position: relative; }
.portrait-frame img {
  border-radius: 200px 200px var(--r-md) var(--r-md);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow);
  width: 100%; object-fit: cover;
}
.portrait-frame::before {
  content: ""; position: absolute; inset: -14px;
  border: 1.5px solid var(--line);
  border-radius: 210px 210px calc(var(--r-md) + 10px) calc(var(--r-md) + 10px);
  pointer-events: none;
}
.flower-mark { color: var(--pink); }

/* ---------- footer ---------- */
.site-footer { background: var(--olive-deep); color: rgba(248, 247, 242, .85); padding: 4rem 0 2rem; }
.site-footer h4 { font-family: var(--font-display); color: var(--cream); font-size: 1.15rem; font-weight: 460; margin: 0 0 1rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); padding-bottom: 2.5rem; border-bottom: 1px solid rgba(248, 247, 242, .2); }
.site-footer a { color: rgba(248, 247, 242, .85); }
.site-footer a:hover { color: var(--pink-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5em; }
.footer-tag { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--cream); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.6rem; font-size: .82rem; letter-spacing: .06em; color: rgba(248, 247, 242, .6); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero-inner { display: grid; gap: clamp(2.5rem, 5vw, 5rem); grid-template-columns: 1.15fr .85fr; align-items: center; }
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero .portrait-frame { max-width: min(400px, 82vw); margin-inline: auto; }
}
.hero .tagline-dots { display: flex; gap: 1.1em; flex-wrap: wrap; font-size: .84rem; letter-spacing: .3em; text-transform: uppercase; color: var(--olive-soft); font-weight: 480; margin: 1.4rem 0 2rem; }
.hero .tagline-dots span:not(:last-child)::after { content: "•"; color: var(--pink); margin-left: 1.1em; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* directional & scale variants — desktop only: on mobile the columns stack
   full-width and a translateX would widen the scrollable page */
@media (min-width: 701px) {
  .grid-2 > .reveal:not(.in):first-child { transform: translateX(-36px); }
  .grid-2 > .reveal:not(.in):last-child { transform: translateX(36px); }
}
.photo-strip .reveal:not(.in), .gallery-grid .reveal:not(.in),
.grid-3 > .card.reveal:not(.in), .grid-4 > .card.reveal:not(.in) { transform: translateY(22px) scale(.94); }

/* eyebrow line draws itself on reveal */
.eyebrow::before { transform-origin: left; }
.reveal.in .eyebrow::before, .reveal.in.eyebrow::before { animation: lineGrow .9s var(--ease) .15s backwards; }
@keyframes lineGrow { from { transform: scaleX(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .grid-2 > .reveal:not(.in):first-child, .grid-2 > .reveal:not(.in):last-child,
  .photo-strip .reveal:not(.in), .gallery-grid .reveal:not(.in),
  .grid-3 > .card.reveal:not(.in), .grid-4 > .card.reveal:not(.in) { transform: none; }
  .reveal.in .eyebrow::before, .reveal.in.eyebrow::before { animation: none; }
  .portrait-frame::before, .breath-ring::before, .divider-flower { animation: none; }
  .card, .btn, .journal-card .cover img, .gallery-item img { transition: none; }
}

/* ---------- misc ---------- */
.divider-flower { display: flex; justify-content: center; padding-block: .5rem; }
.stat-row { display: flex; flex-wrap: wrap; gap: 2.5rem 3.5rem; justify-content: center; text-align: center; }
.stat-row .stat .n { font-family: var(--font-display); font-size: 2.6rem; color: var(--olive-deep); line-height: 1; }
.stat-row .stat .l { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-soft); font-weight: 500; margin-top: .5rem; }
.note-star { font-size: .85rem; color: var(--olive-soft); }
table.compare { width: 100%; border-collapse: collapse; font-size: .95rem; }
table.compare th, table.compare td { border: 1px solid var(--line); padding: .7em .9em; text-align: left; }
table.compare th { font-weight: 520; letter-spacing: .08em; color: var(--olive-deep); background: var(--cream-deep); }

/* ============================================================
   SIGNATURE EXPERIENCES
   ============================================================ */

/* ---------- ✨ intro bloom (first visit) ---------- */
.intro-veil {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  animation: veilOut .7s ease 1.7s forwards;
}
.intro-veil img {
  width: min(420px, 74vw);
  animation: bloomIn 1.6s cubic-bezier(.22,.8,.3,1) forwards;
}
@keyframes bloomIn {
  0% { opacity: 0; transform: scale(.6) rotate(-6deg); filter: blur(8px); }
  60% { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes veilOut { to { opacity: 0; visibility: hidden; } }

/* ---------- 🌱 bloom scrollytelling ---------- */
.bloom-scroll { height: 320vh; padding-block: 0; background: var(--cream); }
.bloom-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.bloom-svg { height: min(58vh, 480px); width: auto; max-width: 92vw; }
.b-stem { fill: none; stroke: var(--olive-soft); stroke-width: 3.5; stroke-linecap: round; }
.b-leaf path { fill: var(--olive-faint); opacity: .85; }
.b-petal path { fill: var(--pink-soft); stroke: var(--pink); stroke-width: 1.5; stroke-linejoin: round; }
.b-core { fill: #F2B33D; stroke: var(--pink); stroke-width: 1.5; }
.bloom-caption { position: relative; width: min(680px, 92vw); height: 6.2em; margin-top: .8rem; }
.bloom-word {
  position: absolute; left: 50%; top: .4em; transform: translateX(-50%);
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--olive); opacity: 0;
  white-space: nowrap;
}
.bloom-word:last-of-type { color: var(--pink-deep); font-style: normal; }
.bloom-final { position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: center; }
.bloom-final h2 { margin: 0; }
.bloom-hint {
  position: absolute; bottom: 1.6rem; left: 0; right: 0;
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--olive-soft); font-weight: 500;
}
.bloom-scroll.bloomed .b-flower {
  animation: bloom-sway 5s ease-in-out infinite alternate;
  transform-box: fill-box; transform-origin: center;
}
@keyframes bloom-sway { from { transform: rotate(-2.5deg); } to { transform: rotate(2.5deg); } }
@media (prefers-reduced-motion: reduce) {
  .bloom-scroll { height: auto; }
  .bloom-stage { position: static; height: auto; padding: 4rem 1rem; }
  .bloom-scroll.bloomed .b-flower { animation: none; }
  .bloom-hint { display: none; }
}

/* ---------- 🌬️ breathing widget ---------- */
.breath-widget { text-align: center; position: relative; }
.breath-stage {
  position: relative; width: min(300px, 72vw); aspect-ratio: 1;
  margin: 2.2rem auto 1.6rem; display: flex; align-items: center; justify-content: center;
}
.breath-stage::before {
  content: ""; position: absolute; inset: -14%; border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 163, 176, .22), transparent 68%);
  pointer-events: none;
}
.breath-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1.5px solid var(--line);
}
.breath-ring::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px dashed var(--line);
}
.breath-disc {
  position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #FBF1F1, #EBC6CD 62%, #DFA3B0);
  opacity: .9; transform: scale(.55);
  transition: transform 4s cubic-bezier(.4,0,.4,1);
  box-shadow: 0 14px 44px -14px rgba(197, 128, 143, .4);
}
.breath-label { position: relative; z-index: 2; }
.breath-label .phase {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--olive-deep);
  display: block; min-height: 1.4em;
}
.breath-label .count {
  font-size: .8rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--olive-deep); font-weight: 560;
}
.breath-round { font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-soft); font-weight: 520; min-height: 1.2em; }

/* ---------- 🪷 program finder quiz ---------- */
.quiz-box { max-width: 680px; margin-inline: auto; }
.quiz-q { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--olive-deep); margin-bottom: 1.4rem; min-height: 2.2em; }
.quiz-opts { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); }
.quiz-opts button {
  font-family: var(--font-body); font-size: .95rem; font-weight: 420; color: var(--ink);
  background: var(--cream-card); border: 1.5px solid var(--line-strong); border-radius: var(--r-md);
  padding: 1.1em 1.2em; cursor: pointer; transition: all .25s ease;
}
.quiz-opts button:hover { border-color: var(--pink); background: var(--pink-wash); transform: translateY(-3px); }
.quiz-dots { display: flex; gap: .5rem; justify-content: center; margin-top: 1.8rem; }
.quiz-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: background .3s ease; }
.quiz-dots i.on { background: var(--pink); }
.quiz-result { animation: fadeUp .6s ease; }
.quiz-result .r-name { font-family: var(--font-display); font-size: 2.2rem; color: var(--olive-deep); }
.quiz-result .r-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--pink); margin: .4rem 0 1rem; }
.quiz-restart { background: none; border: 0; color: var(--olive-soft); cursor: pointer; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 1.4rem; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- 💬 testimonials ---------- */
.testi-stage { position: relative; max-width: 760px; margin-inline: auto; min-height: 230px; }
.testi {
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  transition: opacity .8s ease, transform .8s ease; pointer-events: none;
  text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.testi.on { opacity: 1; transform: none; pointer-events: auto; }
.testi blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 380;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.5; color: var(--olive-deep);
  margin: 0 0 1.2rem; max-width: 56ch;
}
.testi .who { font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-soft); font-weight: 540; }
.testi .who b { color: var(--pink); font-weight: 600; }
.testi-dots { display: flex; gap: .55rem; justify-content: center; margin-top: 1.6rem; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: var(--line); cursor: pointer; transition: all .3s ease; }
.testi-dots button.on { background: var(--pink); transform: scale(1.25); }

@media (prefers-reduced-motion: reduce) {
  .intro-veil { display: none; }
  .breath-disc { transition: none; }
}

/* ============================================================
   POLISH LAYER — depth, texture & motion refinements
   ============================================================ */

/* ---------- paper grain (very subtle, ties the palette together) ---------- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- hero: ambient color blooms + entrance choreography ---------- */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  pointer-events: none; z-index: -1;
}
.hero::before {
  width: 560px; height: 560px; top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(240, 117, 158, .17), transparent 65%);
  animation: blob-drift 16s ease-in-out infinite alternate;
}
.hero::after {
  width: 500px; height: 500px; bottom: -200px; left: -160px;
  background: radial-gradient(circle, rgba(135, 152, 132, .2), transparent 65%);
  animation: blob-drift 20s ease-in-out infinite alternate-reverse;
}
@keyframes blob-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(45px, 30px) scale(1.1); }
}
.hero .badge-location { animation: fadeUp .7s var(--ease) .05s both; }
.hero h1 { animation: fadeUp .8s var(--ease) .15s both; }
.hero .tagline-dots { animation: fadeUp .8s var(--ease) .28s both; }
.hero .lede { animation: fadeUp .8s var(--ease) .38s both; }
.hero .btn-row { animation: fadeUp .8s var(--ease) .48s both; }
.hero p.small { animation: fadeUp .8s var(--ease) .58s both; }

/* ---------- cards: accent bar + icon medallion ---------- */
.card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.card { position: relative; overflow: hidden; }
.card:hover::after { transform: scaleX(1); }
.card .card-icon {
  width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-wash), var(--cream-deep));
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover .card-icon { transform: rotate(-8deg) scale(1.08); box-shadow: var(--shadow-pink); }

/* ---------- journey: steps bloom in one by one ---------- */
.journey > * { transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal:not(.in) .journey > * { opacity: 0; transform: translateY(14px); }
.journey > *:nth-child(2) { transition-delay: .1s; }
.journey > *:nth-child(3) { transition-delay: .2s; }
.journey > *:nth-child(4) { transition-delay: .3s; }
.journey > *:nth-child(5) { transition-delay: .4s; }
.journey > *:nth-child(6) { transition-delay: .5s; }
.journey > *:nth-child(7) { transition-delay: .6s; }

/* ---------- updates ticker: soft edge fades ---------- */
.updates-strip { position: relative; }
.updates-strip::before, .updates-strip::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 72px; z-index: 2; pointer-events: none;
}
.updates-strip::before { left: 0; background: linear-gradient(90deg, var(--cream-deep), transparent); }
.updates-strip::after { right: 0; background: linear-gradient(270deg, var(--cream-deep), transparent); }

/* ---------- deeper bands ---------- */
.band-olive { background: radial-gradient(120% 150% at 85% -10%, #4A604A 0%, var(--olive-deep) 58%); }
.band-pink-wash { background: linear-gradient(180deg, var(--cream), #F6ECE8 45%, #F2E3DD); }
.site-footer { background: linear-gradient(180deg, #465846, var(--olive-deep) 30%); }

/* ---------- imagery: gentle life on hover ---------- */
.journal-card:hover .cover img, .gallery-item:hover img { filter: saturate(1.12) brightness(1.03); }
.portrait-frame img { transition: transform .8s var(--ease); }
.portrait-frame:hover img { transform: scale(1.02); }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 120;
  background: linear-gradient(90deg, var(--olive-soft), var(--pink));
  border-radius: 0 3px 3px 0;
}

/* ---------- floating WhatsApp chat ---------- */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 85;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(37, 211, 102, .55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 14px 34px -8px rgba(37, 211, 102, .65); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
.wa-float .wa-label {
  position: absolute; right: calc(100% + .8rem); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--olive-deep); color: var(--cream); font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; white-space: nowrap; padding: .45em 1em; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s var(--ease);
}
.wa-float:hover .wa-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; right: 1.7rem; bottom: 6.2rem; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--line-strong); background: var(--cream-card);
  color: var(--olive-deep); font-size: 1.05rem; cursor: pointer;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s ease, color .3s ease;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--pink); border-color: var(--pink); color: #fff; transform: translateY(-3px); }

/* ---------- photo strips ---------- */
.photo-strip { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); }
.photo-tile {
  margin: 0; border-radius: var(--r-md); overflow: hidden;
  border: 1.5px solid var(--line); aspect-ratio: 4 / 5; background: var(--cream-deep);
  position: relative;
}
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .7s ease; }
.photo-tile:hover img { transform: scale(1.05); filter: saturate(1.1) brightness(1.03); }
.photo-tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.8rem .95rem .75rem;
  background: linear-gradient(transparent, rgba(51, 59, 51, .72));
  color: var(--cream); font-size: .8rem; letter-spacing: .1em;
}
.photo-strip.no-caps figcaption { display: none; }

/* ---------- header condenses on scroll ---------- */
.site-header { transition: box-shadow .35s ease; }
.brand img { transition: height .35s var(--ease); }
.nav-bar { transition: padding .35s var(--ease); }
body.scrolled .site-header { box-shadow: 0 8px 28px -14px rgba(60, 79, 60, .3); }
body.scrolled .brand img { height: 36px; }
body.scrolled .nav-bar { padding-block: .5rem; }

/* ---------- scroll-linked motion (modern browsers, graceful fallback) ---------- */
@supports (animation-timeline: view()) {
  .portrait-frame::before {
    animation: frame-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  @keyframes frame-drift {
    from { transform: translate(6px, 14px); }
    to { transform: translate(-6px, -14px); }
  }
  .breath-ring::before {
    animation: ring-spin linear both;
    animation-timeline: scroll(root);
  }
  @keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .divider-flower {
    animation: flower-spin linear both;
    animation-timeline: view();
  }
  @keyframes flower-spin {
    from { transform: rotate(-12deg); }
    to { transform: rotate(12deg); }
  }
}

/* ---------- finishing touches ---------- */
a { transition: color .25s ease; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 3px; }
/* custom scrollbar on desktop only — on touch devices it would
   replace the overlay scrollbar and eat layout space */
@media (hover: hover) and (pointer: fine) {
  ::-webkit-scrollbar { width: 11px; }
  ::-webkit-scrollbar-track { background: var(--cream-deep); }
  ::-webkit-scrollbar-thumb { background: var(--olive-faint); border-radius: 8px; border: 2px solid var(--cream-deep); }
  ::-webkit-scrollbar-thumb:hover { background: var(--olive-soft); }
}

/* ============================================================
   RESPONSIVE REFINEMENTS — phones & small tablets
   ============================================================ */

/* anchor jumps & form-step scrolls clear the sticky header */
[id], form { scroll-margin-top: 84px; }

/* mobile nav hangs off the header's real bottom edge,
   even after the header condenses on scroll */
@media (max-width: 920px) {
  .nav-links { position: absolute; inset: auto 0 auto 0; top: 100%; }
}

@media (max-width: 700px) {
  /* stack the register form's inline field-pair grids */
  [data-register-form] .grid-3[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .check-grid[style*="grid-template-columns"] { grid-template-columns: 1fr 1fr !important; }
  /* photo mosaics: two-up beats one giant column */
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-tile figcaption { font-size: .72rem; padding: 1.4rem .7rem .6rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  /* rotating quotes need more room when lines wrap */
  .testi-stage { min-height: 340px; }
  .bloom-caption { height: 8em; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.1rem, 9.5vw, 2.6rem); }
  .wrap, .wrap-text { width: calc(100% - 2rem); }
  /* remaining two-up inline grids (mini feature cards) go single column */
  .grid-3[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .event-card { grid-template-columns: 66px 1fr; gap: 1rem; }
  .form-steps .fs { font-size: .62rem; letter-spacing: .08em; }
  .price-card .price { font-size: 1.85rem; }
  .brand img { height: 38px; }
  body.scrolled .brand img { height: 32px; }
  fieldset { padding: 1.1rem 1rem; }
}

/* floating buttons clear the iPhone home indicator */
.wa-float { bottom: calc(1.4rem + env(safe-area-inset-bottom, 0px)); }
.to-top { bottom: calc(6.2rem + env(safe-area-inset-bottom, 0px)); }

/* stable pinned stage on iOS (URL bar collapse) */
@supports (height: 100svh) {
  .bloom-stage { height: 100svh; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
  .hero .badge-location, .hero h1, .hero .tagline-dots, .hero .lede,
  .hero .btn-row, .hero p.small { animation: none; }
  .journey > *, .reveal:not(.in) .journey > * { opacity: 1; transform: none; transition: none; }
  .card::after, .card .card-icon, .to-top, .portrait-frame img { transition: none; }
}
