:root {
  --yoga-ink: #2c2630;
  --yoga-muted: rgba(44, 38, 48, 0.72);
  --yoga-blush: #f8dfe7;
  --yoga-rose: #b96f8e;
  --yoga-sage: #dcece2;
  --yoga-lavender: #ece7ff;
  --yoga-cream: #fffaf6;
  --yoga-white: #ffffff;
  --yoga-line: rgba(115, 88, 105, 0.16);
  --yoga-shadow: 0 26px 70px rgba(75, 58, 72, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.yoga-lucie-page {
  margin: 0;
  color: var(--yoga-ink);
  background: var(--yoga-cream);
  font-family: "Space Grotesk", system-ui, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yoga-ink);
  color: #fff;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.yoga-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  background:
    radial-gradient(520px 320px at 38% 34%, rgba(255, 221, 234, 0.98), transparent 68%),
    radial-gradient(520px 320px at 62% 66%, rgba(219, 197, 255, 0.92), transparent 68%),
    linear-gradient(135deg, #fffaf6, #edf5ff);
  color: var(--yoga-ink);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.yoga-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.yoga-loader__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(143, 92, 176, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 62px rgba(75, 58, 72, 0.16);
}

.yoga-loader__mark::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid transparent;
  border-top-color: #b96f8e;
  border-right-color: #8e6fd0;
  border-radius: 32px;
  animation: yogaSpin 0.95s linear infinite;
}

.yoga-loader__mark i {
  color: #8a4d66;
  font-size: 1.55rem;
}

.yoga-loader span {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.yoga-container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.yoga-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(115, 88, 105, 0.12);
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(14px);
}

.yoga-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 7px;
  border: 1px solid rgba(143, 92, 176, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 240, 255, 0.86)),
    rgba(255, 255, 255, 0.58);
  color: var(--yoga-ink);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(75, 58, 72, 0.1);
}

.yoga-home-link span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.24), transparent 42%),
    var(--yoga-ink);
  color: #fff;
  font-size: 0.95rem;
}

.yoga-home-link:hover,
.yoga-nav__cta:hover,
.yoga-back-top:hover {
  transform: translateY(-1px);
}

.yoga-nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(44, 38, 48, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.yoga-nav__links a {
  text-decoration: none;
}

.yoga-nav__cta {
  position: relative;
  isolation: isolate;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 8px 7px 22px;
  border: 1px solid rgba(143, 92, 176, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 251, 0.42)) padding-box,
    linear-gradient(135deg, #d8c1ff, #ffbdd6 58%, #d7edff) border-box;
  color: #2c2630 !important;
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    0 18px 42px rgba(111, 76, 145, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.yoga-nav__cta::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: white;
}

.yoga-nav__cta span {
  position: relative;
  z-index: 1;
  line-height: 1;
}

.yoga-nav__cta i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.24), transparent 42%),
    var(--yoga-ink);
  color: #fff;
  font-size: 0.86rem;
  box-shadow: 0 10px 24px rgba(44, 38, 48, 0.22);
  transition: transform 0.18s ease;
}

.yoga-nav__cta:hover {
  border-color: rgba(143, 92, 176, 0.34);
  box-shadow:
    0 22px 52px rgba(111, 76, 145, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.yoga-nav__cta:hover i {
  transform: rotate(-4deg) scale(1.04);
}

.yoga-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(46px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(248, 223, 231, 0.78), transparent 36%),
    linear-gradient(165deg, var(--yoga-cream), var(--yoga-sage) 56%, var(--yoga-lavender));
}

.yoga-hero__inner,
.yoga-flow__inner,
.yoga-final__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.yoga-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(185, 111, 142, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: #8a4d66;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.yoga-hero h1,
.yoga-section h2,
.yoga-final h2 {
  margin: 20px 0 18px;
  color: var(--yoga-ink);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.1rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: none;
}

.yoga-hero p,
.yoga-section-head p,
.yoga-final p,
.yoga-for-all p {
  max-width: 64ch;
  color: var(--yoga-muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 700;
  line-height: 1.78;
}

.yoga-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.yoga-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.yoga-btn--primary {
  background: var(--yoga-ink);
  color: #fff;
  box-shadow: 0 18px 38px rgba(44, 38, 48, 0.18);
}

.yoga-btn--ghost {
  border: 1px solid rgba(44, 38, 48, 0.16);
  background: rgba(255, 255, 255, 0.48);
  color: var(--yoga-ink);
}

.yoga-hero__media,
.yoga-flow__image,
.yoga-final figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--yoga-line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--yoga-shadow);
}

.yoga-hero__media {
  min-height: clamp(460px, 58vw, 680px);
}

.yoga-flow__image,
.yoga-final figure {
  min-height: clamp(340px, 42vw, 520px);
}

.yoga-hero__media img,
.yoga-flow__image img,
.yoga-final img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yoga-hero__media img {
  object-position: 50% 70%;
}

.yoga-flow__image img {
  object-position: 50% 76%;
}

.yoga-final img {
  object-position: 50% 44%;
}

.yoga-section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.yoga-section--intro {
  background: var(--yoga-cream);
}

.yoga-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.yoga-section-head h2,
.yoga-flow h2,
.yoga-for-all h2,
.yoga-final h2 {
  max-width: 860px;
  font-size: clamp(1.3rem, 3.2vw, 2.8rem);
  line-height: 0.98;
}

.yoga-practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.yoga-practice-card,
.yoga-steps article,
.yoga-for-all__inner {
  border: 1px solid var(--yoga-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 48px rgba(75, 58, 72, 0.1);
}

.yoga-practice-card {
  padding: clamp(22px, 3vw, 34px);
}

.yoga-practice-card i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--yoga-blush);
  color: #8a4d66;
  font-size: 1.25rem;
}

.yoga-practice-card h3,
.yoga-steps h3 {
  margin: 18px 0 10px;
  color: var(--yoga-ink);
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
}

.yoga-practice-card p,
.yoga-steps p {
  margin: 0;
  color: var(--yoga-muted);
  font-weight: 700;
  line-height: 1.75;
}

.yoga-flow {
  background: linear-gradient(180deg, #fffaf6, #f7edf4);
}

.yoga-flow__inner {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.yoga-steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.yoga-steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 16px;
  padding: 18px;
}

.yoga-steps span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--yoga-ink);
  color: #fff;
  font-weight: 900;
}

.yoga-steps h3 {
  margin: 2px 0 6px;
}

.yoga-steps p {
  grid-column: 2;
}

.yoga-for-all {
  background: #f4f7f0;
}

.yoga-for-all__inner {
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(248, 223, 231, 0.55)),
    var(--yoga-white);
}

.yoga-for-all__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.yoga-for-all__cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--yoga-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  color: #594357;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.yoga-for-all__cards i {
  color: var(--yoga-rose);
}

.yoga-final {
  padding: clamp(58px, 8vw, 104px) 0;
  background:
    linear-gradient(140deg, var(--yoga-lavender), var(--yoga-cream) 48%, var(--yoga-sage));
}

.yoga-final__inner {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.yoga-footer {
  padding: 28px 0;
  border-top: 1px solid var(--yoga-line);
  background: #fffaf6;
}

.yoga-footer .yoga-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.yoga-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--yoga-muted);
  font-weight: 700;
}

.yoga-back-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 50;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(143, 92, 176, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #dbc5ff, #ffd5e6);
  color: var(--yoga-ink);
  box-shadow: 0 18px 46px rgba(75, 58, 72, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.94);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, box-shadow 0.18s ease;
}

.yoga-back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.yoga-back-top i {
  font-size: 1rem;
}

.yoga-home-link,
.yoga-back-top {
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.22s ease, visibility 0.22s ease;
}

.yoga-modal-open {
  overflow: hidden;
}

.yoga-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.yoga-contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.yoga-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 22, 31, 0.5);
  backdrop-filter: blur(14px);
}

.yoga-contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(143, 92, 176, 0.2);
  border-radius: 34px;
  background:
    radial-gradient(680px 320px at 10% 0%, rgba(255, 221, 234, 0.96), transparent 64%),
    radial-gradient(560px 300px at 100% 14%, rgba(219, 197, 255, 0.9), transparent 60%),
    linear-gradient(135deg, #fffaf6, #f4ecff 58%, #eaf4ff);
  box-shadow: 0 34px 90px rgba(27, 22, 31, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.yoga-contact-modal.is-open .yoga-contact-modal__dialog {
  transform: translateY(0) scale(1);
}

.yoga-contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(44, 38, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--yoga-ink);
  cursor: pointer;
}

.yoga-contact-modal h2 {
  max-width: 660px;
  margin: 16px 46px 12px 0;
  color: var(--yoga-ink);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.96;
  text-transform: none;
}

.yoga-contact-modal p {
  max-width: 58ch;
  color: var(--yoga-muted);
  font-weight: 700;
  line-height: 1.58;
}

.yoga-contact-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.yoga-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.yoga-contact-form label {
  display: grid;
  gap: 8px;
}

.yoga-contact-form label span {
  color: #72536b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.yoga-contact-form input,
.yoga-contact-form select,
.yoga-contact-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(115, 88, 105, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--yoga-ink);
  font: 700 1rem "Space Grotesk", system-ui, sans-serif;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.yoga-contact-form textarea {
  min-height: 108px;
  resize: vertical;
}

.yoga-contact-form input:focus,
.yoga-contact-form select:focus,
.yoga-contact-form textarea:focus {
  border-color: rgba(143, 92, 176, 0.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(219, 197, 255, 0.42);
}

.yoga-contact-form .yoga-btn {
  border: 0;
  cursor: pointer;
}

.yoga-contact-form .yoga-btn:disabled {
  cursor: wait;
  opacity: 0.72;
}

.yoga-contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.yoga-contact-form__status {
  min-height: 24px;
  margin: 0;
  font-weight: 900;
}

.yoga-contact-form__status[data-state="success"] {
  color: #287a4f;
}

.yoga-contact-form__status[data-state="error"] {
  color: #b33b54;
}

.yoga-contact-form__status[data-state="loading"] {
  color: #6f4c91;
}

@keyframes yogaSpin {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yoga-loader,
  .yoga-loader__mark::before,
  .yoga-back-top,
  .yoga-contact-modal,
  .yoga-contact-modal__dialog {
    animation: none;
    transition: none;
  }
}

@media (max-width: 940px) {
  .yoga-nav {
    position: static;
    flex-wrap: wrap;
    padding: 16px 20px;
  }

  .yoga-nav__links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .yoga-nav__links a {
    padding: 8px 0;
  }

  .yoga-hero__inner,
  .yoga-flow__inner,
  .yoga-final__inner {
    grid-template-columns: 1fr;
  }

  .yoga-hero__media {
    order: -1;
    min-height: clamp(320px, 80vw, 540px);
  }

  .yoga-flow__image,
  .yoga-final figure {
    min-height: clamp(280px, 74vw, 460px);
  }

  .yoga-practice-grid,
  .yoga-for-all__cards {
    grid-template-columns: 1fr;
  }

  .yoga-footer .yoga-container {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .yoga-container {
    width: min(100% - 24px, 1180px);
  }

  .yoga-nav {
    gap: 8px;
  }

  .yoga-nav__cta {
    min-height: 44px;
    padding: 6px 7px 6px 16px;
    font-size: 0.82rem;
  }

  .yoga-nav__cta i {
    width: 32px;
    height: 32px;
  }

  .yoga-hero h1,
  .yoga-section-head h2,
  .yoga-flow h2,
  .yoga-for-all h2,
  .yoga-final h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .yoga-hero__actions,
  .yoga-btn {
    width: 100%;
  }

  .yoga-steps article {
    grid-template-columns: 1fr;
  }

  .yoga-steps p {
    grid-column: auto;
  }

  .yoga-hero__media,
  .yoga-flow__image,
  .yoga-final figure,
  .yoga-practice-card,
  .yoga-steps article,
  .yoga-for-all__inner {
    border-radius: 20px;
  }

  .yoga-home-link {
    width: 44px;
    height: 44px;
    padding: 6px;
  }

  .yoga-back-top {
    width: 46px;
    height: 46px;
    right: 14px;
    bottom: 14px;
  }

  .yoga-contact-modal {
    align-items: end;
    justify-items: start;
    padding: 12px;
  }

  .yoga-contact-modal__dialog {
    width: min(100%, 360px);
    max-width: 360px;
    max-height: 92vh;
    padding: 22px;
    border-radius: 26px;
  }

  .yoga-contact-modal__close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .yoga-contact-modal h2 {
    margin-right: 42px;
    font-size: clamp(1.85rem, 9.2vw, 2.8rem);
  }

  .yoga-contact-modal p {
    max-width: none;
  }

  .yoga-contact-form__grid {
    grid-template-columns: 1fr;
  }
}
