:root {
  --rose-bg: #ececf2;
  --rose-soft: #f6d4df;
  --rose-pale: #f7f7fb;
  --ink: #312830;
  --ink-soft: #726a75;
  --white: #ffffff;
  --line: rgba(49, 40, 48, 0.12);
  --accent: #2a252d;
  --accent-2: #e27ba3;
  --shadow: 0 24px 60px rgba(96, 90, 104, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.44), transparent 24%),
    linear-gradient(180deg, #f5f5fa 0%, var(--rose-bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  appearance: none;
}

.cookie-slot:empty {
  display: none;
}

.site-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 0 0 42px;
  overflow: hidden;
}

.site-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 0 20px;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
}

.utility-meta,
.utility-social {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.utility-social span {
  font-weight: 700;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.site-brand {
  font-size: 1.36rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-transform: capitalize;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(47, 45, 68, 0.72);
}

.site-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 520px;
  padding: 26px 40px 46px;
  background: linear-gradient(180deg, #eef0f6 0%, #f6f7fb 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy h1,
.section-head h2,
.feature-card h3,
.info-card h3,
.footer-grid h3,
.inner-hero h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 360px;
  min-width: 0;
  position: relative;
  z-index: 1;
  justify-self: end;
  text-align: left;
}

.hero-copy h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.9;
  color: #ca799c;
}

.hero-copy h1 span {
  display: block;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #7b7598;
  font-weight: 300;
}

.hero-copy p,
.section-head p,
.feature-card p,
.info-card p,
.footer-grid p,
.footer-grid a,
.inner-hero p,
.detail-list li,
.field span,
.checkbox-field span {
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-copy p {
  max-width: 220px;
  margin: 18px 0 0;
  font-size: 0.98rem;
  color: rgba(74, 69, 82, 0.8);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button,
.button-outline,
.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 700;
}

.button {
  background: #d6739b;
  color: var(--white);
  border-radius: 999px;
  min-height: 42px;
  padding: 0 22px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button-outline {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(48, 49, 75, 0.16);
  color: var(--accent);
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  z-index: 1;
}

.hero-yoga-image {
  width: 100%;
  max-width: 430px;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
  transform: translate(-18px, 10px);
  filter: drop-shadow(0 24px 34px rgba(86, 80, 92, 0.12));
}

.hero-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.92);
}

.hero-arrow--left {
  left: 12px;
}

.hero-arrow--right {
  right: 12px;
}

.section {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(47, 45, 68, 0.56);
}

.section-head h2,
.inner-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.08;
}

.feature-grid,
.info-grid,
.footer-grid,
.contact-grid,
.form-grid,
.inner-card-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.info-card,
.inner-hero {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  min-width: 0;
}

.feature-card__visual {
  height: 180px;
  margin-bottom: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.62), transparent 20%),
    linear-gradient(135deg, #dfe5f3, #f2d4de);
  position: relative;
  overflow: hidden;
}

.feature-card__visual::before,
.feature-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-card__visual::before {
  width: 120px;
  height: 18px;
  left: 32px;
  bottom: 68px;
  transform: rotate(22deg);
}

.feature-card__visual::after {
  width: 92px;
  height: 18px;
  right: 34px;
  bottom: 48px;
  transform: rotate(-18deg);
}

.info-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 8px;
}

.inner-page {
  display: grid;
  gap: 24px;
  margin-top: 26px;
}

.inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(48, 49, 75, 0.1);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: 0;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-field {
  display: flex;
  align-items: start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  padding: 24px;
  margin-top: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.footer-grid a {
  display: block;
}

.footer-grid a + a {
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero,
  .feature-grid,
  .info-grid,
  .inner-card-grid,
  .contact-grid,
  .footer-grid,
  .form-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 12px);
  }

  .site-utility,
  .site-header,
  .hero,
  .section,
  .section-head,
  .feature-grid,
  .feature-card,
  .info-grid,
  .info-card,
  .footer-grid {
    min-width: 0;
  }

  .utility-meta {
    gap: 10px;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  .utility-social {
    gap: 10px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--accent);
  }

  .mobile-nav {
    display: none;
    gap: 12px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 22px 46px;
    min-height: auto;
  }

  .site-brand {
    font-size: 1.1rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-yoga-image {
    max-width: 320px;
    transform: translate(0, 8px);
  }

  .hero-copy {
    justify-self: start;
  }

  .hero-copy h1,
  .section-head h2,
  .inner-hero h1 {
    font-size: 1.85rem;
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .section-head {
    width: 100%;
  }

  .section-head > div,
  .section-head h2 {
    max-width: 100%;
  }
}
