/* ============================================================
   Yoga tout — styles.css
   Calm, generous, purple + cream. Photography-first. No cards.
   ============================================================ */

:root {
  /* Brand palette (do not hardcode) */
  --primary: #553068;
  --primary-rgb: 85, 48, 104;
  --primary-ink: #ffffff;
  --primary-ink-rgb: 255, 255, 255;
  --primary-dark: #3d2249;
  --primary-dark-rgb: 61, 34, 73;
  --primary-light: #7a4d92;
  --primary-light-rgb: 122, 77, 146;
  --secondary: #949083;
  --secondary-rgb: 148, 144, 131;
  --secondary-ink: #111827;
  --secondary-ink-rgb: 17, 24, 39;
  --accent: #a184b1;
  --accent-rgb: 161, 132, 177;
  --accent-ink: #111827;
  --accent-ink-rgb: 17, 24, 39;
  --accent-on-light: #a184b1;
  --accent-on-light-rgb: 161, 132, 177;
  --text: #2a1a35;
  --text-rgb: 42, 26, 53;
  --text-light: #a090ab;
  --text-light-rgb: 160, 144, 171;
  --text-muted: #5a4a64;
  --text-muted-rgb: 90, 74, 100;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --bg-alt: #f7f4ea;
  --bg-alt-rgb: 247, 244, 234;
  --bg-alt-ink: #111827;
  --bg-alt-ink-rgb: 17, 24, 39;
  --surface: #faf8f1;
  --surface-rgb: 250, 248, 241;
  --border: #e8e1d4;
  --border-rgb: 232, 225, 212;
  --secondary-dark: #6a675b;
  --secondary-dark-rgb: 106, 103, 91;
  --secondary-light: #c8c6bf;
  --secondary-light-rgb: 200, 198, 191;
  --accent-dark: #79588b;
  --accent-dark-rgb: 121, 88, 139;

  /* Utility */
  --font-body: 'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Quicksand', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --container: 1200px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px -30px rgba(var(--primary-rgb), 0.28);
  --shadow-media: 0 30px 80px -40px rgba(var(--primary-dark-rgb), 0.35);
  --ease: cubic-bezier(.2,.7,.2,1);
  --header-h: 100px;
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--primary-dark); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 600;
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* -------------------- Utilities -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--primary-ink);
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.eyebrow--center { display: block; text-align: center; }
.eyebrow--light { color: rgba(var(--primary-ink-rgb), 0.85); }

.section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.section-intro {
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  font-size: 1.05rem;
}
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
  align-items: end;
}
.section-head--split .section-title { text-align: left; }
.section-head__aside {
  color: var(--text-muted);
  max-width: 460px;
  margin: 0;
  font-size: 1rem;
}
@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), border-color .2s var(--ease),
              box-shadow .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
  box-shadow: 0 12px 30px -14px rgba(var(--primary-rgb), 0.5);
}
.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--primary-ink);
  transform: translateY(-1px);
}
.btn--secondary {
  background: var(--bg-alt);
  color: var(--primary);
  border-color: var(--bg-alt);
}
.btn--secondary:hover {
  background: var(--background);
  color: var(--primary-dark);
  border-color: var(--background);
  transform: translateY(-1px);
}
.btn--ghost-light {
  background: transparent;
  color: var(--primary-ink);
  border-color: rgba(var(--primary-ink-rgb), 0.4);
}
.btn--ghost-light:hover {
  background: rgba(var(--primary-ink-rgb), 0.12);
  color: var(--primary-ink);
  border-color: var(--primary-ink);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.btn--large { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--small { padding: .55rem 1.1rem; font-size: .9rem; }
.btn__icon { display: inline-flex; align-items: center; }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.35);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link-underline:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}
.link-underline--light {
  color: var(--primary-ink);
  border-bottom-color: rgba(var(--primary-ink-rgb), 0.5);
}
.link-underline--light:hover {
  color: var(--primary-ink);
  border-bottom-color: var(--primary-ink);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
  transition: gap .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.link-arrow:hover {
  gap: .8rem;
  color: var(--primary-dark);
  border-bottom-color: var(--primary-dark);
}

/* -------------------- Header -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(var(--background-rgb), 0.96);
  backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--border);
}
.topbar {
  background: var(--primary);
  color: var(--primary-ink);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 36px;
  padding-block: .35rem;
}
.topbar__contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary-ink);
  font-weight: 500;
  white-space: nowrap;
}
.topbar__link:hover { color: var(--primary-ink); opacity: .85; }
.topbar__icon {
  display: inline-flex;
  color: rgba(var(--primary-ink-rgb), 0.85);
}
.topbar__social {
  display: flex;
  gap: .5rem;
}
.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--primary-ink);
  border-radius: 50%;
  transition: background .2s var(--ease);
}
.topbar__social a:hover { background: rgba(var(--primary-ink-rgb), 0.15); }

.mainbar {
  padding-block: .9rem;
}
.mainbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--primary);
  flex-shrink: 0;
}
.brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -.01em;
}
.brand__yoga {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}
.brand__tout {
  color: var(--primary);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 2px;
}

.primary-nav {
  margin-left: auto;
}
.nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .65rem .85rem;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  border-radius: var(--radius-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover, .nav-link:focus-visible {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-caret { transition: transform .2s var(--ease); }

.has-dropdown > .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s var(--ease), visibility .2s var(--ease), transform .2s var(--ease);
  z-index: 20;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.is-open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover .nav-caret,
.has-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: .55rem .8rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-weight: 500;
}
.dropdown a:hover {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}
.header-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.header-icon:hover { background: var(--bg-alt); color: var(--primary); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  padding: 0 .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .05em;
}
.lang-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.header-cta { margin-left: .35rem; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform .2s var(--ease), opacity .2s var(--ease);
  border-radius: 2px;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(70% 60% at 85% 20%, rgba(var(--accent-rgb), 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt) 55%, var(--background) 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr .95fr;
  }
}
.hero__content { max-width: 620px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--primary);
  letter-spacing: -.015em;
  margin-bottom: 1.25rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--primary-light);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--primary-rgb), 0.15);
}
.hero__signals li {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.hero__signals strong {
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.1;
}
.hero__signals span {
  color: var(--text-muted);
  font-size: .82rem;
}

.hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 65%, rgba(var(--accent-rgb), 0.35), rgba(var(--accent-rgb), 0.05) 55%, transparent 70%),
    var(--background);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.hero__frame img {
  width: 100%;
  height: auto;
  max-height: 108%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 40px rgba(var(--primary-dark-rgb), 0.15));
}
.hero__badge {
  position: absolute;
  bottom: 6%;
  left: 2%;
  background: var(--primary);
  color: var(--primary-ink);
  padding: .95rem 1.15rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: var(--shadow-soft);
}
.hero__badge-text { display: block; }

/* -------------------- Value Strip -------------------- */
.strip {
  background: var(--background);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) {
  .strip__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (min-width: 1000px) {
  .strip__inner { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
}
.strip__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.strip__num {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1.35rem;
  line-height: 1;
  padding-top: .2rem;
}
.strip__item h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: .25rem;
}
.strip__item p {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
}

/* -------------------- Services (alternating pairs) -------------------- */
.services {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--background);
}
.pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2rem, 5vw, 4rem);
}
.pair + .pair {
  border-top: 1px dashed rgba(var(--primary-rgb), 0.14);
}
@media (min-width: 900px) {
  .pair {
    grid-template-columns: 1fr 1fr;
  }
  .pair--reverse .pair__media { order: 2; }
}
.pair__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 5;
  box-shadow:
    0 40px 80px -30px rgba(var(--primary-dark-rgb), 0.28),
    0 12px 30px -12px rgba(var(--primary-dark-rgb), 0.15);
}
.pair__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}
.pair:hover .pair__media img { transform: scale(1.03); }
.pair__body { max-width: 520px; }
.pair__index {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: .85rem;
}
.pair__body h3 {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .85rem;
  letter-spacing: -.01em;
}
.pair__body > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
}
.pair__list {
  margin-bottom: 1.75rem;
  display: grid;
  gap: .5rem;
}
.pair__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text);
  font-size: .96rem;
}
.pair__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* -------------------- Video Showcase -------------------- */
.video-showcase {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
}
.video-showcase .section-title { color: var(--primary); }
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-item--feature { grid-column: span 2; }
}
@media (min-width: 1000px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .video-item--feature { grid-column: span 2; }
}
.video-item {
  margin: 0;
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.video-item figcaption {
  padding: 1.25rem 1.5rem 1.5rem;
}
.video-item__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: .5rem;
}
.video-item figcaption h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}
.video-item--feature figcaption h3 { font-size: 1.4rem; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--primary-dark);
}
.video-container iframe,
.video-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Click-to-play thumbnail (YouTube facade) */
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  background: var(--primary-dark);
  cursor: pointer;
  overflow: hidden;
  color: var(--primary-ink);
}
.video-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease), filter .3s var(--ease);
}
.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(var(--primary-dark-rgb), 0.35) 100%);
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(var(--primary-ink-rgb), 0.95);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px -10px rgba(var(--primary-dark-rgb), 0.6);
  z-index: 2;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.video-facade__play svg { margin-left: 3px; }
.video-facade:hover img { transform: scale(1.03); filter: brightness(1.05); }
.video-facade:hover .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--primary);
  color: var(--primary-ink);
}
.video-facade:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
.video-item--feature .video-facade__play {
  width: 88px;
  height: 88px;
}
.video-item--feature .video-facade__play svg {
  width: 34px;
  height: 34px;
}

/* -------------------- About -------------------- */
.about {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--background);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .about__inner { grid-template-columns: .9fr 1.1fr; }
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-media);
  background: var(--bg-alt);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.about__lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.about__lead strong { color: var(--primary); font-weight: 700; }
.about__body > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.about__benefits {
  display: grid;
  gap: .85rem;
  margin: 0 0 1.5rem;
}
.about__benefits li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  color: var(--text);
  font-size: .98rem;
  line-height: 1.55;
}
.about__benefits li strong {
  color: var(--primary);
  font-weight: 700;
}
.about__benefit-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.2);
  color: var(--primary);
  margin-top: 2px;
}
.about__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  padding: 1.5rem 0;
  margin: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .about__facts { grid-template-columns: repeat(3, 1fr); }
}
.about__facts dt {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: .3rem;
}
.about__facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.35;
}
.about__cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* -------------------- Process -------------------- */
.process {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--bg-alt);
  color: var(--bg-alt-ink);
}
.process .section-title { color: var(--primary); }
.steps {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.step {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--background);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -20px rgba(var(--primary-rgb), 0.25);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.step p {
  color: var(--text-muted);
  margin: 0;
  font-size: .95rem;
}

/* -------------------- Testimonials -------------------- */
.testimonials {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--background);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 800px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.testimonial {
  position: relative;
  margin: 0;
  padding: 2.5rem 2rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .7;
}
.testimonial__quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}
.testimonial__extra {
  color: var(--text-muted);
  font-size: .92rem;
  margin: 0;
}
.testimonial__attribution {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.testimonial__attribution cite {
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  font-size: .98rem;
}
.testimonial__attribution span {
  color: var(--text-muted);
  font-size: .82rem;
}
.testimonials__foot {
  text-align: center;
  margin-top: 2rem;
}

/* -------------------- FAQ -------------------- */
.faq {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--background);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .faq__inner { grid-template-columns: .8fr 1.2fr; }
}
.faq__head { text-align: left; margin-bottom: 0; }
.faq__head .section-title { text-align: left; }
.faq__head p {
  color: var(--text-muted);
  max-width: 380px;
  margin: 0;
}
.faq__list {
  display: grid;
  gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open] {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 10px 30px -20px rgba(var(--primary-rgb), 0.2);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] > summary::after {
  transform: rotate(-135deg);
}
.faq-item__answer {
  padding: 0 1.4rem 1.4rem;
}
.faq-item__answer p {
  color: var(--text-muted);
  margin: 0;
  font-size: .96rem;
  line-height: 1.65;
}

/* -------------------- Final CTA -------------------- */
.cta-final {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(var(--accent-rgb), 0.25), transparent 55%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--primary-ink);
}
.cta-final__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .cta-final__inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}
.cta-final__body h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--primary-ink);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.cta-final__body p {
  color: rgba(var(--primary-ink-rgb), 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  max-width: 540px;
}
.cta-final__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.cta-final__aside {
  background: rgba(var(--primary-ink-rgb), 0.08);
  border: 1px solid rgba(var(--primary-ink-rgb), 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--primary-ink);
}
.cta-final__aside p {
  color: rgba(var(--primary-ink-rgb), 0.92);
  margin-bottom: .5rem;
  font-size: .95rem;
}
.cta-final__product-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(var(--primary-ink-rgb), 0.7);
  margin-bottom: 1rem !important;
}
.cta-final__product-note {
  color: rgba(var(--primary-ink-rgb), 0.75) !important;
  font-size: .88rem !important;
  margin-bottom: 1.25rem !important;
}

/* -------------------- Footer -------------------- */
.site-footer {
  background: var(--primary-dark);
  color: var(--primary-ink);
  padding-top: clamp(3rem, 5vw, 4rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer__col h4 {
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary-ink);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer__col ul { display: grid; gap: .7rem; }
.footer__col a {
  color: rgba(var(--primary-ink-rgb), 0.95);
  font-size: 1rem;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}
.footer__col a:hover { color: var(--primary-ink); text-decoration: underline; text-underline-offset: 3px; }
.footer__col--brand .brand {
  color: var(--primary-ink);
  margin-bottom: 1rem;
}
.footer__col--brand .brand__yoga,
.footer__col--brand .brand__tout { color: var(--primary-ink); }
.footer__col--brand .brand__tout { border-bottom-color: var(--accent); }
.brand--footer .brand__wordmark { font-size: 1.8rem; }

.footer__tag {
  color: rgba(var(--primary-ink-rgb), 0.88);
  max-width: 320px;
  font-size: .98rem;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--primary-ink-rgb), 0.1);
  color: var(--primary-ink);
  transition: background .2s var(--ease);
}
.footer__social a:hover { background: rgba(var(--primary-ink-rgb), 0.2); }

.footer__contact .footer__phone {
  color: var(--primary-ink);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.footer__bottom {
  border-top: 1px solid rgba(var(--primary-ink-rgb), 0.12);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  color: rgba(var(--primary-ink-rgb), 0.88);
  margin: 0;
  font-size: .9rem;
}
.footer__bottom ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__bottom a {
  color: rgba(var(--primary-ink-rgb), 0.88);
  font-size: .9rem;
}
.footer__bottom a:hover { color: var(--primary-ink); text-decoration: underline; }

/* -------------------- Responsive nav / mobile -------------------- */
@media (max-width: 980px) {
  .header-cta { display: none; }
  .primary-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 88vw);
    background: var(--background);
    padding: 6rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(var(--primary-dark-rgb), 0.4);
    overflow-y: auto;
    z-index: 90;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
  }
  .nav-link {
    justify-content: space-between;
    padding: .85rem 1rem;
    font-size: 1rem;
  }
  .has-dropdown > .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--bg-alt);
    border: none;
    box-shadow: none;
    padding: .25rem .25rem .5rem 1.5rem;
    display: none;
  }
  .has-dropdown.is-open > .dropdown { display: block; }
  .has-dropdown.is-open .nav-caret { transform: rotate(180deg); }
  .nav-toggle { display: inline-flex; }
  .lang-toggle { display: none; }
}

@media (max-width: 640px) {
  .topbar__inner { flex-wrap: wrap; }
  .topbar__contact { gap: 1rem; font-size: .78rem; }
  .topbar__link--email .topbar__label { display: none; }
  .hero__signals { gap: .8rem 1.5rem; }
  .hero__cta { gap: .85rem; }
  .brand__wordmark { font-size: 1.4rem; }
}

/* -------------------- Motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* -------------------- Focus visibility -------------------- */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 3px;
}

/* -------------------- Scrolled header state -------------------- */
.site-header.is-scrolled {
  box-shadow: 0 8px 30px -20px rgba(var(--primary-dark-rgb), 0.25);
}

/* betterly-css-safety-net:start */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img, .hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  width: 100%;
  max-width: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
}

.testimonial {
  background: var(--background, #fff);
  border: 1px solid var(--border, #e1e6ed);
  border-radius: var(--radius, 12px);
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--text, #1f1f1f);
  box-shadow: var(--shadow-sm, 0 2px 6px rgba(0,0,0,.08));
}

.card h3, .feature h3, .feature-card h3, .pillar-card h3, .program-card h3,
.testimonial h3, .testimonial-card h3, .trust-item h3 {
  color: var(--text, #1f1f1f);
}

.card p, .feature p, .feature-card p, .pillar-card p, .program-card p,
.trust-item p {
  color: var(--secondary-dark, #2c2c2c);
}

.testimonial p, .testimonial blockquote, .testimonial-card p, .testimonial-card blockquote {
  color: inherit;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial {
  margin: 0;
  width: 100%;
}

@media (max-width: 760px) {
  .intro-grid,
  .founder-grid,
  .visit-grid,
  .feature-grid,
  .trust-grid,
  .value-grid,
  .value__grid,
  .program-grid,
  .pillar-grid,
  .link-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .value__list,
  .values-list,
  .trust-list,
  .checklist,
  .bullets {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    display: grid;
  }
  .cta-banner-inner {
    display: grid;
  }
}
/* betterly-css-safety-net:end */

/* -------------------- Homepage repair pass -------------------- */
/* Restore hero__media to its intended grid column (safety-net broke it) */
.hero .hero__media {
  position: relative;
  inset: auto;
  z-index: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero__media img {
  width: 100%;
  height: auto;
  max-height: 108%;
  object-fit: contain;
  object-position: center bottom;
}
.hero .hero__frame {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Let testimonial cards size to their content so shorter quotes
   don't leave a large gap between quote and attribution. */
.testimonials .testimonial-grid {
  align-items: start;
}
.testimonials .testimonial {
  height: auto;
}
.testimonials .testimonial__attribution {
  margin-top: 0.5rem;
}
