:root {
  /* Muted, aesthetic palette — sage / clay / warm paper */
  --paper:    #f4f0e8;
  --paper-2:  #ebe4d7;
  --ink:      #2c2a25;
  --ink-soft: #6a6458;
  --line:     #d8cfbe;
  --sage:     #7a8567;   /* desaturated olive-sage */
  --sage-d:   #5f6a4d;
  --clay:     #b3795f;   /* muted terracotta */
  --clay-d:   #9c6448;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;

  --shell: min(1180px, 90%);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: transparent;
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.shell { width: var(--shell); margin-inline: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -.01em; }
h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.kicker {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--sage-d);
  display: inline-block; margin-bottom: 1.4rem;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease);
}
.nav.scrolled { border-color: var(--line); }

.nav__util { border-bottom: 1px solid var(--line); }
.nav__util-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px; font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.nav__util-mid { color: var(--sage-d); }

.nav__bar {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px;
}
.brand {
  font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: -.02em; text-align: center; line-height: 1;
}
.brand__dot { color: var(--clay); }
.nav__links--left { justify-self: start; }
.nav__right { justify-self: end; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { position: relative; font-size: .9rem; font-weight: 500; color: var(--ink-soft); transition: color .25s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px;
  background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__book {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .88rem; font-weight: 600; padding: .55rem 1.15rem;
  border: 1px solid var(--ink); border-radius: 100px; transition: .25s var(--ease);
}
.nav__book:hover { background: var(--ink); color: var(--paper); }
.nav__book:hover .pulse { background: var(--paper); }
.pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--clay); display: inline-block;
  box-shadow: 0 0 0 0 rgba(179,121,95,.6); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(179,121,95,.55); }
  70% { box-shadow: 0 0 0 8px rgba(179,121,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(179,121,95,0); }
}
.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 6px; justify-self: end; }
.nav__toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ---------- HERO ---------- */
.hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__inner {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__avail {
  display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--sage-d); margin-bottom: 1.8rem;
}
.hero__title { font-size: clamp(2.7rem, 6.6vw, 5.6rem); letter-spacing: -.02em; }
.hero__title em { color: var(--clay); }
.hero__intro { color: var(--ink-soft); font-size: 1.12rem; max-width: 40ch; margin: 1.8rem 0 2.2rem; }
.hero__cta { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.btn-primary {
  font-weight: 600; font-size: .98rem; color: var(--paper); background: var(--ink);
  padding: .9rem 1.7rem; border-radius: 100px; transition: .25s var(--ease);
}
.btn-primary:hover { background: var(--clay-d); }
.link-arrow { font-weight: 600; border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: .25s; }
.link-arrow:hover { color: var(--clay-d); border-color: var(--clay); }
.hero__disc {
  list-style: none; display: flex; gap: clamp(1.4rem, 3vw, 2.6rem); flex-wrap: wrap;
  margin-top: clamp(2.4rem, 5vw, 3.4rem); padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.hero__disc li { font-size: .98rem; font-weight: 500; }
.hero__disc i { font-style: normal; font-family: var(--serif); font-size: 1.1rem; color: var(--clay); margin-right: .5rem; }

/* Hero visual */
.hero__visual { position: relative; min-height: clamp(360px, 46vw, 540px); }
.hero__arch { position: absolute; border-radius: 1000px 1000px 16px 16px; overflow: hidden; }
.hero__arch::after { content: ""; position: absolute; inset: 0; mix-blend-mode: soft-light; opacity: .5;
  background-image: radial-gradient(circle at 35% 18%, rgba(255,255,255,.7), transparent 55%); }
.hero__arch--main { inset: 0 0 0 22%; background: linear-gradient(160deg, #9aa585 0%, #5f6a4d 100%); }
.hero__arch--sub {
  width: 38%; height: 46%; bottom: 0; left: 0; border-radius: 14px 14px 14px 14px;
  background: linear-gradient(160deg, #d3bba6, #b3795f); box-shadow: 0 18px 40px -20px rgba(44,42,37,.45);
}
.seal {
  position: absolute; top: -22px; left: 8%; width: 116px; height: 116px;
  background: var(--paper); border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 30px -14px rgba(44,42,37,.4);
}
.seal svg { width: 100%; height: 100%; animation: spin 26s linear infinite; }
.seal text { font-family: var(--sans); font-size: 9.2px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; fill: var(--ink); }
.seal__arrow { position: absolute; font-size: 1.3rem; color: var(--clay); }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__caption {
  position: absolute; right: -6px; bottom: 24px; max-width: 230px;
  background: var(--paper); padding: 1rem 1.2rem; border-radius: 12px;
  box-shadow: 0 16px 36px -18px rgba(44,42,37,.45); font-size: .92rem; color: var(--ink-soft); line-height: 1.4;
}
.hero__caption span {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-d); margin-bottom: .35rem;
}

/* ===== HERO VISUAL — single arch, animated pose cycle ===== */
.hv__arch {
  position: absolute; inset: 0 0 0 14%; border-radius: 1000px 1000px 16px 16px; overflow: hidden;
  display: grid; place-items: center; box-shadow: 0 30px 60px -34px rgba(44,42,37,.5);
  background: radial-gradient(120% 90% at 50% 16%, #eef2e8, #dde6d2);
}
.hv__arch--light { background: radial-gradient(120% 90% at 50% 16%, #eef2e8, #dde6d2); }

/* cross-fading Lottie players (each supplies its own motion) */
.pose {
  position: absolute; inset: 5%; display: block; width: auto; height: auto;
  opacity: 0; transition: opacity .8s var(--ease);
}
.pose.is-active { opacity: 1; }

/* leaf accent */
.hv__leaf { position: absolute; width: 60px; height: 92px; z-index: 2; }
.hv__leaf--tl { top: -12px; left: 0; transform: rotate(-10deg); }

/* floating "now practising" card */
.hv__card {
  position: absolute; right: -6px; bottom: 28px; background: var(--paper);
  padding: .9rem 1.15rem; border-radius: 12px; box-shadow: 0 18px 38px -18px rgba(44,42,37,.5);
  z-index: 3; min-width: 160px;
}
.hv__card span { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clay-d); margin-bottom: .25rem; }
.hv__card em { font-style: normal; font-family: var(--serif); font-size: 1.4rem; color: var(--ink); }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); margin-top: clamp(3rem,7vw,5rem); padding: 1.1rem 0; }
.marquee__track {
  display: flex; gap: 1.6rem; white-space: nowrap; width: max-content;
  font-family: var(--serif); font-size: 1.7rem; color: var(--ink); font-style: italic;
  animation: drift 28s linear infinite;
}
.marquee__track span:nth-child(even) { color: var(--clay); }
@keyframes drift { to { transform: translateX(-50%); } }

/* ---------- BLOCK ---------- */
.block { padding: clamp(4rem, 9vw, 7rem) 0; }
.block--tint { background: var(--paper-2); }
.block__head { max-width: 22ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); }

/* ---------- PRACTICES (pinned scroll-driven) ---------- */
.practices { padding-top: clamp(2.5rem, 5vw, 4rem); }
.block__head--center { text-align: center; margin-inline: auto; max-width: 26ch; margin-bottom: clamp(1rem, 2vw, 1.6rem); }
.practices__track { height: 240vh; position: relative; }
.practices__stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.practices__inner { position: relative; width: var(--shell); min-height: clamp(440px, 72vh, 620px); }

.practice {
  position: absolute; inset: 0; display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
  opacity: 0; pointer-events: none; transition: opacity .55s var(--ease);
}
.practice.is-active { opacity: 1; pointer-events: auto; }

/* text + staggered child reveal */
.pt { display: flex; flex-direction: column; justify-content: center; }
.pt > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.practice.is-active .pt > * { opacity: 1; transform: none; }
.practice.is-active .pt__no { transition-delay: .06s; }
.practice.is-active .pt h3 { transition-delay: .15s; }
.practice.is-active .pt p:not(.pt__tags) { transition-delay: .24s; }
.practice.is-active .pt__tags { transition-delay: .33s; }
.pt__no { font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-d); margin-bottom: 1.2rem; }
.pt h3 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1.2rem; }
.pt p { color: var(--ink-soft); font-size: 1.1rem; max-width: 38ch; }
.pt__tags { margin-top: 1.4rem; font-size: .85rem; letter-spacing: .04em; color: var(--sage-d); font-weight: 500; }

.pv {
  position: relative; height: clamp(400px, 62vh, 560px);
  border-radius: 1000px 1000px 18px 18px; overflow: hidden;
  display: grid; place-items: center;
  transform: scale(1.05); filter: blur(14px);
  transition: transform 1s var(--ease), filter .8s var(--ease);
}
.practice.is-active .pv { transform: none; filter: blur(0); }
.practice[data-step="0"] .pv { background: radial-gradient(120% 92% at 50% 16%, #f7ead8, #eddcc8); }
.practice[data-step="1"] .pv { background: radial-gradient(120% 92% at 50% 16%, #f8f0e3, #efe3d1); }
.practice[data-step="2"] .pv { background: radial-gradient(120% 92% at 50% 16%, #eef2e8, #e1e8d8); }
.pv__num { position: absolute; right: 1.8rem; bottom: 1.4rem; font-family: var(--serif); font-size: 3.4rem; color: rgba(44,42,37,.16); z-index: 2; }

/* hand-drawn illustration */
.pv__illus {
  position: relative; z-index: 1; max-width: 90%; max-height: 88%; width: auto; height: auto;
  object-fit: contain; filter: drop-shadow(0 22px 32px rgba(44,42,37,.16));
}
.pv__illus.is-missing { display: none; }

/* animated figure inside the arch */
.pv__art { position: relative; width: 78%; max-width: 320px; height: auto; z-index: 1; }
.pv__orb { position: absolute; border-radius: 50%; filter: blur(34px); opacity: .55; }
.pv__orb--a { width: 170px; height: 170px; background: rgba(214,140,80,.45); top: 6%; left: 8%; animation: floatOrb 9s ease-in-out infinite; }
.pv__orb--b { width: 150px; height: 150px; background: rgba(120,150,160,.45); bottom: 8%; right: 8%; animation: floatOrb 11s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%,100% { transform: translate(0,0); } 50% { transform: translate(26px,-30px); } }
@keyframes spin { to { transform: rotate(360deg); } } /* used by the hero seal */

.aura { transform-box: view-box; transform-origin: center; }
.fig { transform-box: view-box; }
.fig path, .fig circle { vector-effect: non-scaling-stroke; }

/* 01 — physiotherapy: side stretch */
.fig--stretch { transform-origin: 100px 170px; animation: figStretch 6s ease-in-out infinite; }
@keyframes figStretch { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(5deg); } 75% { transform: rotate(-5deg); } }

/* 02 — meditation: gentle breathing */
.fig--breath { transform-origin: 100px 152px; animation: figBreathe 5.5s ease-in-out infinite; }
@keyframes figBreathe { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-4px) scale(1.03); } }
.aura--pulse { animation: auraPulse 5.5s ease-in-out infinite; }
@keyframes auraPulse { 0%,100% { opacity: .1; transform: scale(.9); } 50% { opacity: .22; transform: scale(1.05); } }

/* 03 — yoga: balance sway (tree pose) */
.fig--sway { transform-origin: 100px 174px; animation: figSway 6.5s ease-in-out infinite; }
@keyframes figSway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

/* ---------- MAP ---------- */
.map { position: relative; margin-top: clamp(2.5rem, 6vw, 4rem); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm, 0 24px 50px -30px rgba(44,42,37,.4)); border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: clamp(300px, 42vw, 440px); filter: grayscale(.3) contrast(.95) saturate(.85); }
.map figcaption {
  position: absolute; left: 18px; bottom: 18px; background: var(--paper);
  padding: .8rem 1.1rem; border-radius: 12px; font-size: .92rem; color: var(--ink-soft);
  box-shadow: 0 16px 36px -18px rgba(44,42,37,.5); max-width: 78%;
}
.map figcaption span { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clay-d); margin-bottom: .25rem; }

.practices__progress { position: absolute; left: 2rem; bottom: 2rem; display: flex; gap: .6rem; z-index: 2; }
.practices__progress button {
  width: 30px; height: 4px; border: 0; border-radius: 4px; background: rgba(44,42,37,.22);
  cursor: pointer; padding: 0; transition: background .3s;
}
.practices__progress button.is-active { background: var(--clay); }

/* ---------- APPROACH ---------- */
.approach { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); }
.approach__left h2 em { color: var(--clay); }
.approach__right .lead { font-size: 1.25rem; line-height: 1.5; margin-bottom: 2.4rem; }
.facts { display: grid; gap: 1.4rem; }
.facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.facts dt { font-family: var(--serif); font-size: 1.3rem; }
.facts dd { color: var(--ink-soft); }

/* ---------- TIMETABLE ---------- */
.timetable { width: 100%; border-collapse: collapse; }
.timetable tr { border-bottom: 1px solid var(--line); transition: background .25s; }
.timetable tr:first-child { border-top: 1px solid var(--line); }
.timetable tr:hover { background: var(--paper-2); }
.timetable td { padding: 1.5rem .8rem; vertical-align: middle; }
.t-time { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); width: 16%; }
.t-name { font-size: 1.1rem; font-weight: 500; width: 38%; }
.t-cat { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; width: 24%; }
.t-cat[data-cat="yoga"] { color: var(--sage-d); }
.t-cat[data-cat="meditation"] { color: var(--clay-d); }
.t-cat[data-cat="physio"] { color: #7d7a6b; }
.t-days { color: var(--ink-soft); font-size: .92rem; text-align: right; }
.note { margin-top: 1.6rem; font-style: italic; font-family: var(--serif); font-size: 1.2rem; color: var(--ink-soft); }

/* ---------- STUDIO GALLERY ---------- */
.gallery {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(130px, 17vw, 200px); gap: 14px;
}
.gallery__item {
  position: relative; overflow: hidden; border-radius: 16px;
  box-shadow: 0 18px 40px -24px rgba(44,42,37,.4);
}
.gallery__item--studio { background: linear-gradient(160deg, #9aa585, #5f6a4d); }
.gallery__item--yoga { background: linear-gradient(160deg, #b6bcaa, #7a8567); }
.gallery__item--meditation { background: linear-gradient(160deg, #d3bba6, #b3795f); }
.gallery__item--physio { background: linear-gradient(160deg, #cdb49f, #9c6448); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.1rem .9rem;
  color: #fff; font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  background: linear-gradient(transparent, rgba(44,42,37,.65));
}
.g--a { grid-row: span 2; }
.g--d { grid-column: span 2; }

/* ---------- REVIEWS ---------- */
.reviews {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(179,121,95,.18), transparent 60%),
    linear-gradient(180deg, #efe1d3 0%, #e7d6c5 100%);
}
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.8);
  border-radius: 18px; padding: 2rem 1.8rem; backdrop-filter: blur(4px);
  box-shadow: 0 24px 50px -30px rgba(44,42,37,.4); display: flex; flex-direction: column;
}
.review__stars { color: var(--clay); letter-spacing: .25em; font-size: .9rem; margin-bottom: 1.1rem; }
.review blockquote { font-family: var(--serif); font-size: 1.4rem; line-height: 1.32; color: var(--ink); flex: 1; }
.review figcaption { margin-top: 1.6rem; display: flex; flex-direction: column; }
.review figcaption strong { font-weight: 600; }
.review figcaption span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--sage-d); margin-top: .25rem; }

/* ---------- SOCIALS ---------- */
.socials { display: flex; gap: .8rem; margin-top: 2rem; }
.social {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--ink); font-size: 1.05rem;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.social:hover { transform: translateY(-4px); color: #fff; border-color: transparent; }
.social--fb:hover { background: #1877f2; }
.social--ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social--tt:hover { background: #010101; }
.social--wa:hover { background: #25d366; }
.social--vi:hover { background: #7360f2; }

/* ---------- CONTACT ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.contact__left h2 { margin-bottom: 2rem; }
.contact__left h2 em { color: var(--clay); }
.details { list-style: none; display: grid; gap: .7rem; color: var(--ink-soft); font-size: 1.05rem; }
.form { display: grid; gap: 1.6rem; }
.field { display: grid; gap: .5rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1.05rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: .55rem 0; transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); }
.field textarea { resize: vertical; }
.submit {
  justify-self: start; margin-top: .6rem; font-family: var(--sans); font-size: .98rem; font-weight: 600;
  color: var(--paper); background: var(--ink); border: 0; padding: .9rem 1.8rem;
  border-radius: 100px; cursor: pointer; transition: .25s var(--ease);
}
.submit:hover { background: var(--clay-d); }
.form__note { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--sage-d); }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: 2.6rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink-soft); }
.footer__copy { font-size: .85rem; color: var(--ink-soft); }

/* ---------- BACKGROUND WASH ---------- */
.bg-wash { position: fixed; inset: 0; z-index: -2; background: var(--paper); transition: background-color 1.1s var(--ease); }

/* ---------- SCROLL PROGRESS ---------- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 60;
  background: linear-gradient(90deg, var(--sage), var(--clay)); transition: width .12s linear;
}

/* ---------- SIDE INDEX DOTS ---------- */
.dots {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%); z-index: 55;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.dots a {
  width: 9px; height: 9px; border-radius: 50%; background: var(--line); position: relative;
  transition: transform .3s var(--ease), background .3s;
}
.dots a:hover { background: var(--sage); }
.dots a.is-active { background: var(--clay); transform: scale(1.5); }
.dots a::before {
  content: attr(data-label); position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s;
}
.dots a:hover::before { opacity: 1; }

/* ---------- STATS (count-up) ---------- */
.stats { padding: clamp(3rem, 7vw, 5rem) 0; }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; border-left: 1px solid var(--line); padding: .4rem 1rem; }
.stat:first-child { border-left: 0; }
.stat__num, .stat__suffix { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--ink); }
.stat__suffix { color: var(--clay); }
.stat p { margin-top: .7rem; font-size: .85rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- BREATHE ---------- */
.breathe { background: var(--sage-d); color: var(--paper); padding: clamp(4rem, 10vw, 8rem) 0; text-align: center; }
.kicker--light { color: rgba(244,240,232,.6); }
.breathe__title { font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 18ch; margin: .4rem auto clamp(2.5rem, 6vw, 4rem); }
.breathe__stage { position: relative; width: min(320px, 80vw); aspect-ratio: 1; margin: 0 auto; display: grid; place-items: center; }
.breathe__rings { position: absolute; inset: 0; display: grid; place-items: center; }
.breathe__rings span {
  position: absolute; border: 1px solid rgba(244,240,232,.25); border-radius: 50%;
  width: 100%; height: 100%; animation: ripple 7s ease-out infinite;
}
.breathe__rings span:nth-child(2) { animation-delay: 2.3s; }
.breathe__rings span:nth-child(3) { animation-delay: 4.6s; }
@keyframes ripple { 0% { transform: scale(.45); opacity: 0; } 30% { opacity: .8; } 100% { transform: scale(1.05); opacity: 0; } }
.breathe__circle {
  width: 66%; height: 66%; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #cdb49f 0%, #b3795f 55%, #9c6448 100%);
  box-shadow: 0 0 70px -10px rgba(205,180,159,.6); transform: scale(.5);
  transition: transform 4s var(--ease);
}
.breathe__phase {
  position: absolute; font-family: var(--serif); font-size: 1.5rem; color: var(--paper);
  letter-spacing: .02em; transition: opacity .6s;
}
.breathe__hint { margin-top: clamp(2.5rem, 6vw, 3.5rem); color: rgba(244,240,232,.65); font-size: .95rem; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.magnetic { will-change: transform; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .dots { display: none; }
}
@media (max-width: 860px) {
  .nav__bar { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; text-align: left; }
  .nav__right { display: none; }
  .nav__toggle { display: flex; }
  .nav__util-mid { display: none; }
  .nav__links--left { justify-self: stretch; }
  /* Practices stays pinned + scroll-driven on mobile, as a single centered column */
  .practices__inner { min-height: 86vh; }
  .practice { grid-template-columns: 1fr; gap: clamp(.9rem, 3vw, 1.5rem); align-content: center; }
  .pv { height: clamp(180px, 36vh, 320px); order: -1; }
  .pt { align-items: center; text-align: center; }
  .pt h3 { font-size: clamp(1.6rem, 6vw, 2.1rem); margin-bottom: .7rem; }
  .pt p { font-size: 1rem; max-width: 42ch; margin-inline: auto; }
  .pt__no { margin-bottom: .7rem; }
  .pt__tags { margin-top: .9rem; }
  .practices__progress { left: 50%; transform: translateX(-50%); bottom: 1.1rem; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(odd) { border-left: 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 1.4rem;
    background: var(--paper); padding: 1.8rem 5%; border-bottom: 1px solid var(--line);
    transform: translateY(-130%); transition: transform .4s var(--ease); z-index: -1;
  }
  .nav__links.open { transform: translateY(0); }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { min-height: clamp(320px, 70vw, 440px); order: 2; }
  .hero__caption { right: 0; }
  .approach, .contact { grid-template-columns: 1fr; }
  .t-cat { display: none; }
}
@media (max-width: 520px) {
  .seal { width: 92px; height: 92px; left: 4%; }
  .hero__caption { max-width: 190px; right: 0; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .facts > div { grid-template-columns: 1fr; gap: .3rem; }
  .timetable td { padding: 1.15rem .5rem; }
  .t-time { font-size: 1.25rem; }
  .t-days { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .g--a { grid-row: span 1; }
  .g--d { grid-column: span 1; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track, .fig, .aura--pulse, .pv__orb, .breathe__rings span, .seal svg, .pose { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
