:root {
  --milk: #fbf0e5;
  --white: #fffaf3;
  --lilac-50: #f2e6ee;
  --lilac-100: #ead6e8;
  --lilac-300: #d0a9cb;
  --lilac-500: #926093;
  --lilac-700: #5d3b66;
  --sage-100: #e4ead7;
  --sage-300: #bdc9a3;
  --sage-500: #7b905c;
  --sage-700: #50613e;
  --apricot-100: #f5dac2;
  --apricot-300: #d89c67;
  --plum: #3e2843;
  --muted: #76666e;
  --line: rgba(93, 59, 102, .18);
  --radius-lg: 38px;
  --radius-md: 24px;
  --shadow: 0 30px 70px rgba(76, 47, 55, .14);
  --page: min(1240px, calc(100vw - 64px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--plum);
  background: var(--milk);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.sr-only {
  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;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--plum);
  transform: translateY(-150%);
  pointer-events: none;
}

.skip-link:focus-visible { transform: translateY(0); pointer-events: auto; }

:focus-visible {
  outline: 3px solid #6f7f47;
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(93, 59, 102, .95);
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 12px 34px rgba(62, 40, 67, .16);
}

.header-inner {
  width: var(--page);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 44px;
  min-height: 44px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.brand-mark svg { width: 25px; fill: none; stroke: var(--lilac-100); stroke-width: 1.7; }

.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); }
.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.83);
  font-size: 14px;
  text-decoration: none;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 8px;
  height: 1px;
  background: var(--sage-300);
  transition: right .22s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--apricot-300);
  border-radius: 999px;
  background: var(--apricot-300);
  color: var(--plum);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.header-cta:hover { color: var(--plum); background: #e7b484; transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 82px);
  margin: 0;
  padding: 54px max(32px, calc((100vw - 1240px) / 2)) 62px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, .95fr);
  align-items: center;
  gap: clamp(40px, 5vw, 82px);
  background:
    radial-gradient(circle at 33% 30%, rgba(255,250,243,.98) 0 13%, rgba(255,250,243,0) 37%),
    linear-gradient(105deg, #f8e3d4 0%, #fff6ea 52%, #ead7e8 100%);
  isolation: isolate;
  overflow: clip;
}

.hero-copy { position: relative; z-index: 2; min-width: 0; }
.eyebrow, .section-index {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--lilac-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { width: 38px; height: 1px; background: var(--lilac-500); }

h1, h2, h3 { margin: 0; font-family: Georgia, serif; font-weight: 400; line-height: .98; letter-spacing: -.045em; }
h1 { max-width: 690px; font-size: clamp(54px, 6vw, 88px); }
h1 em, h2 em { color: var(--lilac-500); font-weight: 400; }

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #67565f;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-practices {
  max-width: 560px;
  margin: 27px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.hero-practices li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #564651;
  font-size: 15px;
}

.hero-practices span {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lilac-700);
  color: var(--apricot-100);
  font-size: 10px;
}

.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { background: var(--lilac-700); color: var(--white); box-shadow: 0 14px 32px rgba(93, 59, 102, .22); }
.button-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(93, 59, 102, .28); background: #4f315a; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sage-700);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.hero-note {
  margin-top: clamp(34px, 5vh, 58px);
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.hero-note-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lilac-700);
  font-family: Georgia, serif;
}

.hero-visual {
  position: relative;
  width: min(100%, 650px);
  height: min(72vh, 710px);
  min-height: 590px;
  justify-self: end;
  display: grid;
  place-items: center;
}
.portrait-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 254, 250, .8);
  border-radius: 46px 8px 46px 8px;
  box-shadow: var(--shadow);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,240,229,.2), transparent 24%), linear-gradient(180deg, transparent 64%, rgba(62, 40, 67, .22));
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.photo-halo {
  position: absolute;
  inset: -18px 18px 18px -18px;
  border-radius: 54px 12px 54px 12px;
  background: linear-gradient(145deg, var(--apricot-100), var(--sage-300) 48%, var(--lilac-300));
  transform: translate3d(calc(var(--breath, 0) * 10px), calc(var(--breath, 0) * -7px), 0) rotate(-5deg) scale(calc(1 + var(--breath, 0) * .025));
  transition: transform .12s linear;
}
.portrait-label {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 9%;
  min-width: 150px;
  padding: 17px 23px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 20px;
  background: rgba(255, 254, 250, .82);
  box-shadow: 0 18px 38px rgba(62, 40, 67, .13);
  backdrop-filter: blur(14px);
}
.portrait-label span { display: block; color: var(--muted); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.portrait-label strong { display: block; margin-top: 4px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; }
.hero-flower {
  position: absolute;
  z-index: 3;
  left: -8%;
  bottom: -2%;
  width: 31%;
  overflow: visible;
  fill: none;
  stroke: var(--sage-500);
  stroke-width: 2;
  stroke-linecap: round;
}

.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(146, 96, 147, .12); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 430px; height: 430px; right: -160px; top: -4%; }
.orbit-two { width: 220px; height: 220px; left: -150px; bottom: 2%; }
.scroll-cue {
  position: absolute;
  left: max(32px, calc((100vw - 1240px) / 2));
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.scroll-cue span { width: 36px; height: 1px; background: var(--sage-500); }

.fact-strip {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact-strip div { padding: 26px 20px; border-right: 1px solid var(--line); }
.fact-strip div:last-child { border-right: 0; }
.fact-strip span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.fact-strip strong { font-family: Georgia, serif; font-size: clamp(16px, 1.5vw, 20px); font-weight: 400; }

.section-pad { width: var(--page); margin: 0 auto; padding: clamp(100px, 11vw, 160px) 0; scroll-margin-top: 90px; }
.section-index { margin-bottom: 36px; }
.section-index.light { color: var(--lilac-100); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr); gap: clamp(50px, 10vw, 150px); align-items: start; }
.intro h2 { font-size: clamp(58px, 7.2vw, 110px); }
.intro-copy { padding-top: 16px; }
.intro-copy p { max-width: 560px; color: #655c68; }
.intro-copy .lead-quote { margin: 0 0 26px; color: var(--plum); font-family: Georgia, serif; font-size: clamp(23px, 2.25vw, 34px); line-height: 1.3; }
.intro-copy .text-link { margin-top: 15px; }
.breath-line { height: 90px; margin-top: 50px; overflow: hidden; }
.breath-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center / 100% 100% url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath d='M0 50 C 160 50, 180 50, 260 50 C 350 50, 360 10, 440 10 C 520 10, 530 90, 610 90 C 690 90, 700 50, 790 50 L1200 50' fill='none' stroke='%23926093' stroke-opacity='.34'/%3E%3C/svg%3E");
}

.practices {
  width: 100%;
  max-width: none;
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 156, 103, .22), transparent 34%),
    linear-gradient(135deg, #5d3b66 0%, #674363 48%, #8a604f 100%);
  color: var(--white);
  overflow: clip;
}
.section-head { display: grid; grid-template-columns: 1.2fr .7fr; align-items: end; gap: 60px; margin-bottom: 62px; }
.section-head h2 { font-size: clamp(54px, 6vw, 92px); }
.section-head > p { max-width: 440px; margin: 0 0 5px; color: rgba(255,255,255,.7); font-size: 18px; }
.practice-grid { display: grid; grid-template-columns: 1.06fr .94fr .84fr; gap: 18px; }
.practice-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--plum);
  box-shadow: 0 24px 60px rgba(49, 31, 55, .18);
}
.practice-art { position: relative; min-height: 286px; flex: 1 0 286px; overflow: hidden; background: var(--apricot-100); }
.practice-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.practice-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(62, 40, 67, 0) 46%, rgba(62, 40, 67, .18) 100%);
  pointer-events: none;
}
.practice-card:hover .practice-photo img { transform: scale(1.035); }
.practice-content { padding: 30px; }
.practice-content h3 { margin: 14px 0 18px; font-size: clamp(31px, 3vw, 43px); line-height: 1.05; }
.practice-content p { max-width: 340px; margin: 0; color: #665963; }
.card-number { color: #8a604f; font-size: 11px; letter-spacing: .16em; }
.card-move { background: #f1deea; }
.card-energy { background: #e6ead9; }
.card-dance { background: var(--white); }

.journey { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, .85fr); gap: clamp(60px, 10vw, 160px); align-items: start; }
.journey h2 { font-size: clamp(54px, 6vw, 92px); }
.journey-steps { list-style: none; margin: 0; padding: 0; }
.journey-steps li { padding: 30px 0; display: grid; grid-template-columns: 46px 1fr; gap: 24px; border-top: 1px solid var(--line); }
.journey-steps li:last-child { border-bottom: 1px solid var(--line); }
.journey-steps li > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--sage-100); color: var(--sage-700); font-size: 11px; }
.journey-steps strong { font-family: Georgia, serif; font-size: 31px; font-weight: 400; }
.journey-steps p { margin: 7px 0 0; color: var(--muted); }

.anna {
  position: relative;
  width: 100%;
  max-width: none;
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
  background: linear-gradient(135deg, var(--sage-700) 0%, #6b6143 100%);
  color: var(--white);
  overflow: clip;
}
.anna-bloom { position: relative; width: min(100%, 520px); aspect-ratio: 1; display: grid; place-items: center; }
.anna-bloom::before { content: ""; position: absolute; inset: 11%; border-radius: 50%; background: rgba(246,243,238,.08); }
.anna-bloom svg { width: 100%; fill: rgba(222,210,231,.08); stroke: rgba(238,232,242,.45); stroke-width: 1.2; }
.anna-bloom span { position: absolute; font-family: Georgia, serif; font-size: clamp(26px, 3.6vw, 48px); letter-spacing: .2em; transform: translateX(.1em); }
.anna-copy { max-width: 600px; }
.script-word { margin: 0 0 2px; color: var(--lilac-100); font-family: Georgia, serif; font-size: 22px; font-style: italic; }
.anna h2 { font-size: clamp(80px, 10vw, 154px); }
.anna-lead { margin: 30px 0 16px; font-family: Georgia, serif; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.3; }
.anna-copy > p:not(.script-word) { color: rgba(255,255,255,.76); }
.button-light { margin-top: 24px; background: var(--white); color: var(--sage-700); }
.button-light:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(58,69,44,.2); }

.details { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .55fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.details h2 { margin-bottom: 50px; font-size: clamp(54px, 6vw, 88px); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: Georgia, serif; font-size: 21px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--lilac-100); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 600px; margin: -3px 55px 24px 0; color: var(--muted); }
.poster-card { position: sticky; top: 112px; overflow: hidden; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.poster-window { aspect-ratio: .78; overflow: hidden; }
.poster-window img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.poster-caption { padding: 20px; display: flex; flex-direction: column; gap: 7px; }
.poster-caption > span { color: var(--muted); font-size: 12px; }
.poster-caption a { min-height: 44px; display: inline-flex; align-items: center; color: var(--lilac-700); font-weight: 700; }

.contacts {
  width: 100%;
  max-width: none;
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-bottom: 80px;
  background: linear-gradient(180deg, var(--milk) 0 20%, var(--apricot-100) 20% 100%);
}
.contact-stage {
  position: relative;
  padding: clamp(48px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: end;
  overflow: hidden;
  border-radius: 46px;
  background:
    radial-gradient(circle at 83% 8%, rgba(216, 156, 103, .24), transparent 34%),
    linear-gradient(135deg, var(--lilac-700) 0%, #744d5f 58%, #8a604f 100%);
  color: var(--white);
}
.contact-stage::after { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; top: -210px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.contact-copy { position: relative; z-index: 1; }
.contact-copy h2 { font-size: clamp(58px, 7vw, 104px); }
.contact-copy h2 em { color: var(--sage-300); }
.contact-copy > p { max-width: 580px; margin: 27px 0 0; color: rgba(255,255,255,.72); font-size: 18px; }
.contact-actions { margin-top: 35px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.phone-link { min-height: 54px; display: inline-flex; flex-direction: column; justify-content: center; font-family: Georgia, serif; font-size: 22px; text-decoration: none; }
.phone-link span { color: var(--lilac-100); font-family: "Segoe UI", sans-serif; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.location-card { position: relative; z-index: 1; padding: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.location-pin { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 52px; border-radius: 50%; background: var(--sage-300); color: var(--sage-700); }
.location-pin svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.location-card small { display: block; color: var(--lilac-100); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.location-card strong { display: block; margin-top: 5px; font-family: Georgia, serif; font-size: 40px; font-weight: 400; }
.location-card p { color: rgba(255,255,255,.7); }
.location-card > a { min-height: 44px; display: inline-flex; align-items: center; color: var(--white); font-weight: 700; }

.site-footer {
  padding: 42px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: auto 1fr minmax(220px, 400px) auto;
  align-items: center;
  gap: 36px;
  background: #e9e7d3;
  color: #5c654d;
  font-size: 12px;
}
.site-footer p { margin: 0; }
.footer-brand { color: var(--sage-700); }
.demo-note { text-align: right; }

.back-to-top {
  position: fixed;
  z-index: 45;
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(55,36,63,.2);
  cursor: pointer;
}
.back-to-top { right: 20px; color: var(--white); background: var(--lilac-700); opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --page: min(100% - 48px, 960px); }
  .site-nav { display: none; }
  .menu-toggle {
    order: 3;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,.08);
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 74px;
    z-index: 60;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--lilac-700);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    clip-path: inset(0 0 100% 0 round 24px);
    pointer-events: none;
    transition: opacity .2s ease, clip-path .25s ease, visibility .2s ease;
  }
  .site-nav.is-open { display: flex; opacity: 1; visibility: visible; clip-path: inset(0 round 24px); pointer-events: auto; }
  .site-nav a { padding: 9px 12px; font-size: 17px; }
  .hero { grid-template-columns: minmax(0, .9fr) minmax(390px, .78fr); gap: 30px; }
  .portrait-label { right: -5px; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .fact-strip div:nth-child(2) { border-right: 0; }
  .fact-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .practice-card:last-child { grid-column: 1 / -1; min-height: 430px; }
  .journey, .details { gap: 60px; }
  .site-footer { grid-template-columns: auto 1fr auto; }
  .demo-note { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 820px) {
  .header-inner { height: 72px; }
  .header-cta { margin-left: auto; }
  .hero { min-height: auto; padding: 34px 24px 84px; grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { display: contents; }
  .eyebrow { order: 1; margin-bottom: 0; }
  .hero h1 { order: 2; max-width: 700px; }
  .hero-lead { order: 3; margin-top: 0; max-width: 680px; }
  .hero-actions { order: 4; margin-top: 0; }
  .hero-visual { order: 5; width: min(100%, 560px); height: auto; min-height: 0; aspect-ratio: .82; justify-self: center; }
  .hero-note { order: 6; margin-top: 12px; }
  .scroll-cue { display: none; }
  .intro-grid, .journey, .anna, .details, .contact-stage { grid-template-columns: 1fr; }
  .intro-grid { gap: 40px; }
  .intro-copy { max-width: 650px; padding-top: 0; }
  .section-head { grid-template-columns: 1fr; gap: 30px; }
  .practice-card { min-height: 460px; }
  .journey { gap: 50px; }
  .anna { gap: 54px; }
  .anna-bloom { width: min(88%, 520px); justify-self: center; }
  .details { gap: 70px; }
  .poster-card { position: static; width: min(100%, 500px); justify-self: center; }
  .contact-stage { gap: 58px; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 32px); --radius-lg: 28px; }
  body { font-size: 16px; }
  html { scroll-padding-top: 70px; }
  .header-inner { height: 66px; gap: 12px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 31px; height: 31px; }
  .header-cta { min-height: 44px; padding: 0 15px; font-size: 12px; }
  .menu-toggle { width: 44px; height: 44px; }
  .site-nav { left: 16px; right: 16px; top: 62px; }
  .hero { padding-top: 27px; gap: 22px; }
  .eyebrow { font-size: 10px; letter-spacing: .14em; }
  .eyebrow span { width: 24px; }
  h1 { font-size: clamp(45px, 13.8vw, 72px); line-height: 1.01; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero-practices { display: none; }
  .hero-visual { width: calc(100% + 32px); margin-inline: -16px; aspect-ratio: .88; }
  .portrait-frame { width: 100%; height: 100%; border-width: 0; border-radius: 26px 0 26px 0; }
  .portrait-frame img { object-position: 50% 30%; }
  .photo-halo { inset: -9px 12px 12px -9px; border-radius: 32px 0 32px 0; }
  .portrait-label { right: 4%; bottom: 7%; min-width: 127px; padding: 13px 17px; }
  .portrait-label strong { font-size: 24px; }
  .hero-flower { left: -1%; bottom: -3%; width: 31%; }
  .hero-lead { font-size: 17px; line-height: 1.5; }
  .hero-actions { gap: 16px; }
  .button { width: 100%; min-height: 54px; }
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-note { display: none; }
  .fact-strip { width: 100%; grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .fact-strip div { min-width: 0; padding: 19px 8px; }
  .fact-strip strong { font-size: 14px; overflow-wrap: anywhere; }
  .section-pad { padding-top: 88px; padding-bottom: 88px; }
  .section-index { margin-bottom: 25px; }
  .intro h2, .section-head h2, .journey h2, .details h2 { font-size: clamp(46px, 13vw, 62px); }
  .intro-grid { gap: 30px; }
  .intro-copy .lead-quote { font-size: 24px; }
  .breath-line { height: 60px; margin-top: 35px; }
  .practices, .anna, .contacts { padding-left: 16px; padding-right: 16px; }
  .section-head > p { font-size: 16px; }
  .practice-grid {
    display: flex;
    gap: 14px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .practice-grid::-webkit-scrollbar { display: none; }
  .practice-card, .practice-card:last-child { flex: 0 0 86%; min-height: 455px; scroll-snap-align: start; }
  .practice-art { min-height: 236px; flex-basis: 236px; }
  .practice-content { padding: 25px; }
  .practice-content h3 { font-size: 34px; }
  .journey { gap: 35px; }
  .journey-steps li { padding: 24px 0; gap: 14px; }
  .journey-steps strong { font-size: 27px; }
  .anna { gap: 32px; }
  .anna-bloom { width: 92%; }
  .anna-copy { text-align: left; }
  .anna h2 { font-size: clamp(78px, 27vw, 118px); }
  .anna-lead { font-size: 24px; }
  .details { gap: 52px; }
  .details h2 { margin-bottom: 35px; }
  .faq-list summary { min-height: 70px; font-size: 18px; }
  .faq-list details p { margin-right: 0; }
  .poster-card { width: 100%; }
  .poster-window { aspect-ratio: .9; }
  .contact-stage { padding: 40px 22px; border-radius: 30px; }
  .contact-copy h2 { font-size: clamp(50px, 14vw, 68px); }
  .contact-copy > p { font-size: 16px; }
  .contact-actions { gap: 15px; }
  .phone-link { width: 100%; align-items: center; }
  .location-card { padding: 25px; }
  .location-pin { margin-bottom: 35px; }
  .location-card strong { font-size: 34px; }
  .site-footer { padding: 35px 16px 78px; grid-template-columns: 1fr auto; gap: 18px; }
  .site-footer > p:first-of-type { display: none; }
  .demo-note { grid-column: 1 / -1; }
  .back-to-top { width: 50px; height: 50px; bottom: max(14px, env(safe-area-inset-bottom)); }
  .back-to-top { right: 14px; }
}

@media (max-width: 370px) {
  .brand > span:last-child { display: none; }
  .header-cta { padding: 0 13px; }
  h1 { font-size: 43px; }
  .portrait-label { right: 0; }
  .practice-card, .practice-card:last-child { flex-basis: 91%; }
  .practice-content h3 { font-size: 28px; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .photo-halo { transform: rotate(-5deg); }
  .reveal { opacity: 1; transform: none; }
}
