@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
}
.animate-on-scroll.slide-up {
  transform: translateY(30px);
}
.animate-on-scroll.slide-up.animated {
  transform: translateY(0);
}
.animate-on-scroll.slide-left {
  transform: translateX(-30px);
}
.animate-on-scroll.slide-left.animated {
  transform: translateX(0);
}
.animate-on-scroll.slide-right {
  transform: translateX(30px);
}
.animate-on-scroll.slide-right.animated {
  transform: translateX(0);
}
.animate-on-scroll.fade-scale {
  transform: scale(0.9);
}
.animate-on-scroll.fade-scale.animated {
  transform: scale(1);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

.animate-delay-6 {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.yoga-chip-title {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: #BEE3DB;
  color: #0F4C5C;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .yoga-trust-bar__header .yoga-chip-title,
  .yoga-includes__header .yoga-chip-title,
  .yoga-beach__banner .yoga-chip-title,
  .yoga-reviews__header .yoga-chip-title,
  .yoga-rooms__header .yoga-chip-title,
  .yoga-team__header .yoga-chip-title {
    margin-left: auto;
    margin-right: auto;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #2D3436;
  background: #F7F5F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.yoga-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.yoga-container--wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.yoga-fade-in {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 0.8s ease;
}
.yoga-fade-in.is-visible {
  transform: none;
}

.yoga-includes__card.yoga-fade-in,
.yoga-reviews__item.yoga-fade-in,
.yoga-team__card.yoga-fade-in,
.yoga-rooms__card.yoga-fade-in {
  transform: none;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.yoga-includes__card.yoga-fade-in.is-visible,
.yoga-reviews__item.yoga-fade-in.is-visible,
.yoga-team__card.yoga-fade-in.is-visible,
.yoga-rooms__card.yoga-fade-in.is-visible {
  opacity: 1;
}

.btn-yoga-primary {
  display: inline-block;
  background: #FF8E72;
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 142, 114, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-yoga-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 142, 114, 0.5);
}
.btn-yoga-primary.btn--small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-yoga-secondary {
  display: inline-block;
  background: transparent;
  color: #FFFFFF;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-yoga-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

.yoga-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: #FF8E72;
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

.yoga-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.yoga-header--scrolled {
  background: #0F4C5C;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  padding: 12px 0;
}
.yoga-header__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yoga-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.yoga-header__logo img {
  height: 48px;
  width: auto;
  display: block;
}
.yoga-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.yoga-header__nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.yoga-header__nav a:hover {
  opacity: 1;
}
.yoga-header__nav a.btn-yoga-primary {
  opacity: 1;
}
.yoga-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.yoga-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
@media (max-width: 768px) {
  .yoga-header__burger {
    display: flex;
  }
}
.yoga-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.yoga-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.yoga-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .yoga-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: #0F4C5C;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
  }
  .yoga-header__nav.is-open {
    right: 0;
  }
  .yoga-header__nav a {
    font-size: 1.2rem;
    padding: 12px 0;
    width: 100%;
  }
}
.yoga-hero {
  position: relative;
  min-height: max(600px, 100dvh);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: max(28px, env(safe-area-inset-bottom, 0));
}
@media (max-width: 768px) {
  .yoga-hero {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: calc(52px + max(12px, env(safe-area-inset-bottom, 0px)));
  }
}
.yoga-hero__bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.yoga-hero__bg picture,
.yoga-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.yoga-hero__bg img {
  object-fit: cover;
  object-position: center 30%;
}
.yoga-hero__bg.is-loaded {
  transform: scale(1);
}
.yoga-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(92, 29, 58, 0.75) 0%, rgba(15, 76, 92, 0.6) 50%, rgba(9, 54, 66, 0.8) 100%);
}
.yoga-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  padding: 0 24px;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .yoga-hero__content {
    padding: calc(env(safe-area-inset-top, 0px) + 5.75rem) 28px 0;
    box-sizing: border-box;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100dvh - 52px - max(12px, env(safe-area-inset-bottom, 0px)));
  }
}
.yoga-hero__logo {
  margin-bottom: 32px;
}
.yoga-hero__logo img {
  height: clamp(90px, 14vw, 140px);
  width: auto;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .yoga-hero__logo {
    display: none;
  }
}
.yoga-hero__title {
  font-size: clamp(1.55rem, 2.8vw + 1rem, 3.8rem);
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.yoga-hero__title span {
  display: block;
  font-size: 0.65em;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .yoga-hero__title {
    line-height: 1.18;
    margin-bottom: 0;
    padding: 0 4px;
    max-width: 100%;
  }
}
.yoga-hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw + 0.55rem, 1.15rem);
  line-height: 1.7;
  opacity: 0.9;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .yoga-hero__subtitle {
    margin-bottom: 0;
  }
}
.yoga-hero__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.yoga-hero__price-value {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #FF8E72;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(255, 142, 114, 0.4);
}
.yoga-hero__price-label {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 8px;
}
.yoga-hero__price-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}
.yoga-hero__details-trigger {
  margin: 12px 0 24px;
  padding: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .yoga-hero__details-trigger {
    margin: 0;
  }
}
.yoga-hero__details-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.yoga-hero__details-link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.75);
}
.yoga-hero__details-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
  border-radius: 2px;
}
.yoga-hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .yoga-hero__buttons {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.yoga-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}
@media (max-width: 768px) {
  .yoga-hero__scroll-hint {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.yoga-hero__scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: yogaScrollBounce 1.5s ease-in-out infinite;
}

@keyframes yogaScrollBounce {
  0%, 100% {
    transform: rotate(45deg) translate(0, 0);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .yoga-hero__bg {
    transform: scale(1);
    transition: none;
  }
  .yoga-hero__bg.is-loaded {
    transform: scale(1);
  }
  .yoga-hero__scroll-arrow {
    animation: none;
  }
}
.yoga-trust-bar {
  padding: clamp(40px, 6vw, 56px) 24px clamp(44px, 6vw, 64px);
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(15, 76, 92, 0.1);
  box-shadow: 0 12px 32px rgba(15, 76, 92, 0.06);
}
@media (max-width: 767px) {
  .yoga-trust-bar {
    padding: 3rem 24px 3rem;
  }
}
.yoga-trust-bar__container {
  max-width: 1200px;
  margin: 0 auto;
}
.yoga-trust-bar__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.yoga-trust-bar__header h2 {
  color: #0F4C5C;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}
.yoga-trust-bar__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: #666666;
}
.yoga-trust-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
@media (min-width: 640px) {
  .yoga-trust-bar__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.yoga-trust-bar__item {
  padding: 2rem;
  text-align: center;
  background: #F7F5F2;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.yoga-trust-bar__value {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: #0F4C5C;
  line-height: 1.15;
}
.yoga-trust-bar__item--rating .yoga-trust-bar__value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2em;
}
.yoga-trust-bar__stars {
  color: #FF8E72;
  font-size: 0.65em;
  letter-spacing: 0.05em;
}
.yoga-trust-bar__label {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.4;
}
.yoga-trust-bar__link {
  color: #0F4C5C;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.25em;
  white-space: nowrap;
}
.yoga-trust-bar__link:hover {
  color: #093642;
}

.yoga-includes {
  background: #F7F5F2;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.yoga-includes__container {
  max-width: 900px;
  margin: 0 auto;
}
.yoga-includes__header {
  text-align: center;
  margin-bottom: 60px;
}
.yoga-includes__header h2 {
  color: #0F4C5C;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-includes__header p:not(.yoga-chip-title) {
  font-size: 1.1rem;
  color: #666666;
  max-width: 500px;
  margin: 0 auto;
}
.yoga-includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .yoga-includes__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.yoga-includes__card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(15, 76, 92, 0.08);
}
.yoga-includes__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 76, 92, 0.12);
}
.yoga-includes__card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F4C5C;
  margin: 12px 0 8px;
  line-height: 1.3;
}
.yoga-includes__card p {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.5;
  margin: 0;
}
.yoga-includes__optional {
  display: block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666666;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.yoga-includes__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  background: rgb(151.5, 193.78, 191.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yoga-includes__icon img,
.yoga-includes__icon svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.yoga-includes__icon svg {
  color: #FFFFFF;
  fill: currentColor;
}

.yoga-beach__banner {
  background: #0F4C5C;
  padding: clamp(20px, 4vw, 28px) 24px;
  text-align: center;
}
.yoga-beach__banner .yoga-beach__headline {
  color: #FFFFFF;
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 1rem auto;
  max-width: 40rem;
}
.yoga-beach__banner .yoga-beach__subline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 36rem;
}
.yoga-beach__photo {
  height: 70vh;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.yoga-beach__photo-bg {
  position: absolute;
  z-index: 0;
  top: -12%;
  left: -4%;
  width: 108%;
  height: 128%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.yoga-beach__photo-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 76, 92, 0.1) 0%, rgba(15, 76, 92, 0.35) 100%);
}
.yoga-beach__text-block {
  background: #BEE3DB;
  padding: clamp(48px, 6vw, 80px) 24px;
}
.yoga-beach__text-inner {
  max-width: 700px;
  margin: 0 auto;
}
.yoga-beach__text-inner h2 {
  color: #0F4C5C;
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-beach__text-inner p {
  color: #2D3436;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 16px;
}
.yoga-beach__text-inner p:last-child {
  margin-bottom: 0;
}

.yoga-program {
  background: #FFFFFF;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.yoga-program__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.yoga-program__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .yoga-program__block {
    grid-template-columns: 1fr 1fr;
  }
  .yoga-program__block:nth-child(even) .yoga-program__photo {
    order: 2;
  }
  .yoga-program__block:nth-child(even) .yoga-program__text {
    order: 1;
  }
}
.yoga-program__photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.yoga-program__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.yoga-program__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.yoga-program__photo:hover img {
  transform: scale(1.03);
}
.yoga-program__label {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: #BEE3DB;
  color: #0F4C5C;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  text-align: center;
}
.yoga-program__text h2 {
  color: #0F4C5C;
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-program__text p {
  color: #2D3436;
  line-height: 1.7;
  margin: 0 0 20px;
}
.yoga-program__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.yoga-program__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #2D3436;
  line-height: 1.5;
}
.yoga-program__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #FF8E72;
  border-radius: 50%;
}
.yoga-program__note {
  font-size: 0.9rem;
  color: #666666;
  font-style: italic;
  margin: 0 !important;
}

.yoga-food {
  background: #E8DCC6;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.yoga-food__container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .yoga-food__container {
    grid-template-columns: 1fr 1fr;
  }
}
.yoga-food__photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.yoga-food__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.yoga-food__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yoga-food__label {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 16px;
  box-sizing: border-box;
  background: #BEE3DB;
  color: #0F4C5C;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  text-align: center;
}
.yoga-food__text h2 {
  color: #0F4C5C;
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-food__text p {
  color: #2D3436;
  line-height: 1.7;
  margin: 0 0 20px;
}
.yoga-food__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.yoga-food__tags span {
  background: #FFFFFF;
  color: #0F4C5C;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.yoga-rooms {
  background: #F7F5F2;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.yoga-rooms__container {
  max-width: 900px;
  margin: 0 auto;
}
.yoga-rooms__header {
  text-align: center;
  margin-bottom: 48px;
}
.yoga-rooms__header h2 {
  color: #0F4C5C;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-rooms__header p:not(.yoga-chip-title) {
  color: #666666;
  font-size: 1.05rem;
  margin: 0;
}
.yoga-rooms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .yoga-rooms__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.yoga-rooms__card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.yoga-rooms__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 76, 92, 0.12);
}
.yoga-rooms__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.yoga-rooms__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.yoga-rooms__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yoga-rooms__info {
  padding: 24px;
}
.yoga-rooms__info h3 {
  color: #0F4C5C;
  font-size: 1.1rem;
  margin: 0 0 16px;
}
.yoga-rooms__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yoga-rooms__info ul li {
  padding: 8px 0;
  border-bottom: 1px solid #F7F5F2;
  color: #2D3436;
  font-size: 0.9rem;
}
.yoga-rooms__info ul li:last-child {
  border-bottom: none;
}
.yoga-rooms__info ul li::before {
  content: "✓ ";
  color: #FF8E72;
  font-weight: 700;
}
.yoga-rooms__urgency {
  background: #0F4C5C;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.yoga-rooms__urgency p {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin: 0;
  flex: 1 1 320px;
}
.yoga-rooms__urgency p strong {
  color: #FF8E72;
}

.yoga-lead-bridge {
  background: rgba(15, 76, 92, 0.06);
  padding: clamp(40px, 6vw, 56px) 24px;
  text-align: center;
}
.yoga-lead-bridge__inner {
  max-width: 36rem;
  margin: 0 auto;
}
.yoga-lead-bridge__text {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2D3436;
}

.yoga-lead-bridge .btn-yoga-secondary {
  color: #0F4C5C;
  border-color: rgba(15, 76, 92, 0.55);
}
.yoga-lead-bridge .btn-yoga-secondary:hover {
  background: rgba(15, 76, 92, 0.08);
  border-color: #0F4C5C;
  color: #093642;
}

.yoga-reviews {
  position: relative;
  background: #BEE3DB;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.yoga-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
}
.yoga-reviews__header {
  text-align: center;
  margin-bottom: 48px;
}
.yoga-reviews__header h2 {
  color: #0F4C5C;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-reviews__header p:not(.yoga-chip-title) {
  color: #666666;
  font-size: 1.05rem;
  margin: 0;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}
.yoga-reviews__header .yoga-chip-title {
  background: #FFFFFF;
  color: #0F4C5C;
  box-shadow: 0 1px 4px rgba(15, 76, 92, 0.12);
}
.yoga-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}
@media (min-width: 640px) {
  .yoga-reviews__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.yoga-reviews__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.yoga-reviews__summary {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #666666;
}
.yoga-reviews__card {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  text-align: left;
  background: #093642;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  font: inherit;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  aspect-ratio: 9/16;
}
@media (hover: hover) and (pointer: fine) {
  .yoga-reviews__card:hover, .yoga-reviews__card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}
.yoga-reviews__card:focus-visible {
  outline: 3px solid #0F4C5C;
  outline-offset: 2px;
}
.yoga-reviews__thumb {
  position: absolute;
  inset: 0;
}
.yoga-reviews__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #093642;
}
.yoga-reviews__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 76, 92, 0.55);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.yoga-reviews__card:hover .yoga-reviews__play, .yoga-reviews__card:focus-visible .yoga-reviews__play {
  background: rgba(15, 76, 92, 0.75);
  transform: translate(-50%, -50%) scale(1.05);
}
.yoga-reviews__play svg {
  width: 28px;
  height: 28px;
  display: block;
  margin-left: 4px;
}
.yoga-reviews__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(transparent, rgba(15, 76, 92, 0.85));
}

.yoga-video-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.yoga-video-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.yoga-video-modal[hidden] {
  display: none !important;
}
.yoga-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 92, 0.72);
}
.yoga-video-modal__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(420px, 100vw - 32px);
  max-height: min(90vh, 820px);
  background: #2D3436;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.yoga-video-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.yoga-video-modal__close:hover {
  background: rgba(0, 0, 0, 0.65);
}
.yoga-video-modal__player {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(90vh - 32px, 800px);
  vertical-align: bottom;
}

.yoga-team {
  background: #E8DCC6;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.yoga-team__container {
  max-width: 1100px;
  margin: 0 auto;
}
.yoga-team__header {
  text-align: center;
  margin-bottom: 48px;
}
.yoga-team__header h2 {
  color: #0F4C5C;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.yoga-team__header p:not(.yoga-chip-title) {
  color: #666666;
  font-size: 1.05rem;
  margin: 0;
}
.yoga-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 560px) {
  .yoga-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .yoga-team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.yoga-team__card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.yoga-team__photo {
  aspect-ratio: 3/4;
  background: #093642;
}
.yoga-team__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.yoga-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yoga-team__photo--center-subject img {
  object-position: 38% 50%;
}
.yoga-team__body {
  padding: 20px 20px 24px;
}
.yoga-team__name {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: #0F4C5C;
}
.yoga-team__role {
  display: block;
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #FF8E72;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.yoga-team__bio {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2D3436;
}
.yoga-team__pancha {
  margin-top: 8px;
  padding: 28px 24px;
  border-radius: 20px;
  background: #F7F5F2;
  border: 1px solid rgba(15, 76, 92, 0.12);
  text-align: center;
}
.yoga-team__pancha h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  color: #0F4C5C;
}
.yoga-team__pancha p {
  margin: 0 0 20px;
  color: #666666;
  line-height: 1.6;
}
.yoga-team__pancha a {
  display: inline-block;
}

.yoga-activities {
  background: #F7F5F2;
  padding: 0 24px clamp(60px, 8vw, 100px);
}
.yoga-activities__container {
  max-width: 1000px;
  margin: 0 auto;
}
.yoga-activities__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.yoga-activities__block:first-of-type {
  margin-top: 0;
}
.yoga-activities__block--beige {
  background: #E8DCC6;
}
.yoga-activities__block--mint {
  background: #BEE3DB;
}
@media (min-width: 800px) {
  .yoga-activities__block {
    grid-template-columns: 1fr 1.1fr;
  }
}
@media (min-width: 800px) {
  .yoga-activities__block--reverse .yoga-activities__photo {
    order: 2;
  }
  .yoga-activities__block--reverse .yoga-activities__text {
    order: 1;
  }
}
.yoga-activities__photo {
  min-height: 220px;
}
@media (min-width: 800px) {
  .yoga-activities__photo {
    min-height: 100%;
  }
}
.yoga-activities__photo picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}
.yoga-activities__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  display: block;
}
.yoga-activities__text {
  padding: 28px 24px 32px;
}
@media (min-width: 800px) {
  .yoga-activities__text {
    padding: 36px 32px 40px;
  }
}
.yoga-activities__text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: #0F4C5C;
}
.yoga-activities__text p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2D3436;
}

.yoga-contacts {
  background: #F7F5F2;
  padding: clamp(60px, 8vw, 100px) 24px clamp(40px, 5vw, 56px);
}
.yoga-contacts__container {
  max-width: 900px;
  margin: 0 auto;
}
.yoga-contacts__header {
  text-align: center;
  margin-bottom: 40px;
}
.yoga-contacts__header h2 {
  color: #0F4C5C;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.yoga-contacts__header p {
  margin: 0;
  color: #666666;
  font-size: 1.05rem;
}
.yoga-contacts__grid {
  list-style: none;
  margin: 0 auto 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 520px;
}
.yoga-contacts__grid > li {
  margin: 0;
}
@media (min-width: 640px) {
  .yoga-contacts__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
  }
}
@media (min-width: 900px) {
  .yoga-contacts__grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: 900px;
  }
}
.yoga-contacts__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2D3436;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .yoga-contacts__link:hover, .yoga-contacts__link:focus-visible {
    color: #0F4C5C;
    transform: translateY(-2px);
  }
}
.yoga-contacts__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #0F4C5C;
}
.yoga-contacts__icon svg {
  width: 30px;
  height: 30px;
}
@media (min-width: 1024px) {
  .yoga-contacts__icon {
    width: 72px;
    height: 72px;
  }
  .yoga-contacts__icon svg {
    width: 34px;
    height: 34px;
  }
  .yoga-contacts__icon img {
    width: 34px;
    height: 34px;
  }
}

.yoga-site-footer {
  background: #F7F5F2;
  border-top: 1px solid rgba(15, 76, 92, 0.1);
  margin-top: 0;
  padding: 28px 0 36px;
  text-align: center;
  color: #666666;
  font-size: 0.875rem;
}
.yoga-site-footer p {
  margin: 0;
}

.yoga-faq {
  background: #BEE3DB;
  padding: clamp(56px, 7vw, 88px) 24px;
}
.yoga-faq__container {
  max-width: 720px;
  margin: 0 auto;
}
.yoga-faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.yoga-faq__header h2 {
  color: #0F4C5C;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}
.yoga-faq__header p {
  margin: 0;
  color: #666666;
  font-size: 1.05rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.yoga-faq__list {
  margin: 0;
}
.yoga-faq__row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(15, 76, 92, 0.12);
}
.yoga-faq__row:first-child {
  padding-top: 0;
}
.yoga-faq__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.yoga-faq__question {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #093642;
  line-height: 1.2;
}
.yoga-faq__answer {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #2D3436;
}

.yoga-form {
  position: relative;
  padding: clamp(60px, 10vw, 100px) 24px;
  overflow: hidden;
}
.yoga-form__bg {
  position: absolute;
  inset: 0;
  background: #0F4C5C center/cover no-repeat;
  z-index: 0;
}
.yoga-form__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.88) 0%, rgba(15, 76, 92, 0.65) 50%, rgba(44, 110, 122, 0.55) 100%);
  z-index: 1;
}
.yoga-form__container {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
}
.yoga-form__panel {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.yoga-form__logo {
  margin: 0 auto 16px;
  display: block;
}
.yoga-form h2 {
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  line-height: 1.2;
}
.yoga-form__lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 24px;
}
.yoga-form .is-hidden {
  display: none !important;
}
.yoga-form__status {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
}
.yoga-form__status--success {
  background: rgba(74, 124, 89, 0.95);
  color: #FFFFFF;
}
.yoga-form__status--error {
  background: rgba(220, 53, 69, 0.95);
  color: #FFFFFF;
}
.yoga-form__turnstile {
  min-height: 72px;
  margin-bottom: 1rem;
}
.yoga-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.yoga-form__row {
  margin-bottom: 1rem;
}
.yoga-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
}
.yoga-form__input, .yoga-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.yoga-form__input::placeholder, .yoga-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.yoga-form__input:focus, .yoga-form__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.yoga-form__input--error, .yoga-form__textarea--error {
  border-color: #f5a5a5;
  background: rgba(220, 53, 69, 0.15);
}
.yoga-form__textarea {
  min-height: 90px;
  resize: vertical;
}
.yoga-form__error-text {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #ffd0d0;
}
.yoga-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
}
.yoga-form__checkbox a {
  color: #FF8E72;
  text-decoration: underline;
}
.yoga-form__checkbox a:hover {
  color: #ff9d80;
}
.yoga-form__checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.yoga-form__privacy-btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: #FF8E72;
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
  vertical-align: baseline;
}
.yoga-form__privacy-btn:hover {
  color: #ff9d80;
}
.yoga-form__privacy-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}
.yoga-form .btn-yoga-primary--block {
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}
.yoga-form .btn-yoga-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

form.yoga-form.yoga-form--modal-light {
  margin: 0;
  padding: 0;
}
form.yoga-form.yoga-form--modal-light .yoga-form__label {
  color: #2D3436;
}
form.yoga-form.yoga-form--modal-light .yoga-form__input {
  border: 2px solid rgba(15, 76, 92, 0.2);
  background: #FFFFFF;
  color: #2D3436;
}
form.yoga-form.yoga-form--modal-light .yoga-form__input::placeholder {
  color: #666666;
}
form.yoga-form.yoga-form--modal-light .yoga-form__input:focus {
  border-color: #0F4C5C;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.12);
}
form.yoga-form.yoga-form--modal-light .yoga-form__checkbox {
  color: #2D3436;
}
form.yoga-form.yoga-form--modal-light .yoga-form__error-text {
  color: #b02a37;
}
form.yoga-form.yoga-form--modal-light .yoga-form__turnstile {
  min-height: 68px;
  margin-bottom: 0.75rem;
}

.yoga-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.yoga-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.yoga-modal[hidden] {
  display: none !important;
}
.yoga-modal.is-open {
  display: flex !important;
}
.yoga-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 76, 92, 0.78);
}
.yoga-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: min(88vh, 720px);
  background: #F7F5F2;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.yoga-modal__content--wide {
  max-width: min(720px, 100vw - 32px);
}
.yoga-modal__content--compact {
  max-width: min(480px, 100vw - 32px);
  max-height: min(90vh, 640px);
}
.yoga-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 76, 92, 0.12);
  color: #0F4C5C;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.yoga-modal__close:hover {
  background: rgba(15, 76, 92, 0.2);
}
.yoga-modal__title {
  margin: 0;
  padding: 1.25rem 3rem 0.5rem 1.25rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #0F4C5C;
  flex-shrink: 0;
}
.yoga-modal__body--compact {
  padding: 0 1.25rem 1.25rem;
  overflow-y: auto;
  max-height: min(70vh, 520px);
}
.yoga-modal__body {
  padding: 0.5rem 1.25rem 1.5rem;
  color: #2D3436;
  font-size: 0.95rem;
  line-height: 1.6;
}
.yoga-modal__body h3 {
  color: #0F4C5C;
  font-size: 1.05rem;
  margin: 1rem 0 0.4rem;
}
.yoga-modal__body ul {
  margin: 0.25rem 0 0.5rem 1.1rem;
}
.yoga-modal__body p {
  margin: 0.5rem 0;
}
.yoga-modal__body--scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .yoga-fade-in,
  .yoga-fade-in.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=yoga.css.map */
