:root {
  --warm-white: #f8f6f3;
  --premium-milk: #f2eeea;
  --graphite: #262626;
  --muted: #77736f;
  --pink: #d89aa5;
  --pink-soft: #e5aeb7;
  --pink-light: #f3b7ce;
  --pink-hover: #c88492;
  --cream-line: rgba(255, 255, 255, 0.46);
  --dark-glass: rgba(30, 25, 23, 0.24);
  --soft-shadow: 0 34px 90px rgba(72, 58, 52, 0.18);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--warm-white);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, #fff 0, var(--warm-white) 42%, var(--premium-milk) 100%);
  color: var(--graphite);
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.hero a,
.site-header a,
.mobile-sticky a,
.menu-overlay a {
  color: inherit;
  text-decoration: none;
}

.hero .scroll-cue {
  color: rgba(255, 255, 255, 0.74);
}

.hero .scroll-cue:hover {
  color: rgba(255, 255, 255, 0.94);
}

.header-cta,
.hero .btn-primary,
.menu-overlay .menu-trial {
  color: #4a403d;
}

.site-header .header-cta {
  color: #4a403d;
}

.hero .btn-secondary,
.mobile-sticky .sticky-primary {
  color: #fff;
}

/* Tilda applies a global link color. Keep AHG interface colors stable. */
#allrecords .site-header a,
#allrecords .hero a,
#allrecords .mobile-sticky a,
#allrecords .menu-overlay a,
#allrecords .trainers-section a {
  text-decoration: none !important;
}

#allrecords .desktop-nav a {
  color: rgba(255, 255, 255, 0.86) !important;
}

#allrecords .header-cta,
#allrecords .hero .btn-primary,
#allrecords .trainers-cta-link,
#allrecords .menu-overlay .menu-trial {
  color: #4a403d !important;
}

#allrecords .hero .btn-secondary,
#allrecords .mobile-sticky .sticky-primary {
  color: #fff !important;
}

#allrecords .hero .scroll-cue {
  color: rgba(255, 255, 255, 0.74) !important;
}

#allrecords .hero .scroll-cue:hover {
  color: rgba(255, 255, 255, 0.94) !important;
}

#allrecords .mobile-sticky a,
#allrecords .menu-overlay nav a {
  color: var(--graphite) !important;
}

#allrecords .menu-overlay .menu-socials a {
  color: rgba(52, 45, 42, 0.82) !important;
}

#allrecords .menu-overlay .menu-socials .sticky-icon {
  color: rgba(52, 45, 42, 0.82) !important;
}

#allrecords .menu-overlay nav a:hover {
  color: var(--pink-hover) !important;
}

#allrecords .trainers-cta-secondary {
  color: rgba(74, 64, 61, 0.86) !important;
}

#allrecords .groups-section a {
  text-decoration: none !important;
}

#allrecords .group-card-link {
  color: #c88492 !important;
}

#allrecords .groups-note-link {
  color: #4a403d !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: max(26px, env(safe-area-inset-top));
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 54px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(37, 28, 25, 0.28);
  transition:
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(75, 65, 60, 0.22);
  backdrop-filter: blur(22px);
  box-shadow: 0 22px 70px rgba(47, 39, 35, 0.16);
}

.header-actions,
.desktop-nav {
  display: flex;
  align-items: center;
}

.header-mobile-logo {
  display: none;
}

.header-mobile-logo img {
  display: block;
  width: auto;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(31, 24, 21, 0.24));
}

.sparkles {
  position: absolute;
  top: 4px;
  right: -34px;
  display: none;
  width: 27px;
  height: 28px;
  color: var(--pink-light);
}

.sparkles i,
.sparkles::before,
.sparkles::after {
  position: absolute;
  display: block;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.sparkles::before {
  top: 0;
  right: 2px;
  width: 14px;
  height: 14px;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.sparkles::after {
  right: 18px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.sparkles i {
  right: 18px;
  bottom: 14px;
  width: 6px;
  height: 6px;
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}

.desktop-nav {
  display: none;
}

.header-actions {
  gap: 14px;
}

.header-cta {
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, #efc7cd 0%, #e5afb8 52%, var(--pink) 100%);
  color: #4a403d;
  font-size: 15px;
  font-weight: 650;
  text-shadow: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 16px 34px rgba(143, 91, 101, 0.2);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.cta-label-short,
.cta-label-tiny {
  display: none;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, #edbec6 0%, #dfa4af 58%, var(--pink-hover) 100%);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 58px;
  height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    margin 220ms ease,
    transform 220ms ease;
}

.menu-button[aria-expanded="true"] {
  gap: 0;
}

.menu-button[aria-expanded="true"] span:first-child {
  margin: 0;
  transform: rotate(45deg) translateY(2px);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.menu-button[aria-expanded="true"] span:last-child {
  margin: 0;
  transform: rotate(-45deg) translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #2d2926;
}

.hero-media,
.hero-video,
.hero-media-fallback,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-video {
  display: none;
}

.hero-media-fallback {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(55, 43, 38, 0.3) 0%, rgba(72, 56, 49, 0.1) 44%, rgba(72, 56, 49, 0) 74%),
    url("https://static.tildacdn.com/tild3464-6131-4935-b935-373138313335/hero-mobile-ribbon.webp");
  background-position: 58% 50%;
  background-size: cover;
  transform: scale(1.012);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(45, 35, 31, 0.16) 0%, rgba(45, 35, 31, 0.06) 10%, transparent 24%),
    radial-gradient(ellipse at 18% 55%, rgba(48, 38, 34, 0.38) 0%, rgba(48, 38, 34, 0.28) 28%, rgba(48, 38, 34, 0.08) 52%, transparent 70%),
    radial-gradient(circle at 18% 14%, rgba(255, 219, 229, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(44, 34, 30, 0) 0%, rgba(44, 34, 30, 0.04) 48%, rgba(44, 34, 30, 0.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100svh;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  padding: 190px 28px calc(178px + env(safe-area-inset-bottom));
}

.hero-content {
  max-width: 670px;
  color: #fff;
  animation: heroReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-brand-logo {
  width: fit-content;
  margin: 0 0 34px;
  filter: drop-shadow(0 18px 44px rgba(31, 24, 21, 0.2));
}

.hero-brand-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  height: clamp(78px, 12vw, 128px);
  max-width: min(58vw, 260px);
  object-fit: contain;
}

.hero-proof,
.scroll-cue {
  display: none;
}

.eyebrow {
  max-width: 27ch;
  margin: 0 0 30px;
  color: var(--pink-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: min(100%, 350px);
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 8.4vw, 48px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(31, 24, 21, 0.36), 0 18px 52px rgba(31, 24, 21, 0.2);
}

h1 span {
  display: block;
}

h1 em {
  color: var(--pink-light);
  font-style: italic;
}

.hero-copy {
  max-width: 31ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(31, 24, 21, 0.28);
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, #efc7cd 0%, #e5afb8 52%, var(--pink) 100%);
  color: #4a403d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 18px 46px rgba(143, 91, 101, 0.22);
}

.btn-primary .cta-label-full,
.btn-primary .cta-label-tiny,
.btn-primary .cta-label-short {
  display: none;
}

.btn-primary .cta-label-full {
  display: inline;
}

.btn-primary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, #edbec6 0%, #dfa4af 58%, var(--pink-hover) 100%);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
}

.btn-arrow {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 64, 61, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.chat-icon {
  position: relative;
  width: 28px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 11px;
}

.chat-icon::before {
  position: absolute;
  right: 2px;
  bottom: -7px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(38deg);
}

.chat-icon::after {
  position: absolute;
  top: 10px;
  left: 7px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 6px 0 0 currentColor, 12px 0 0 currentColor;
  content: "";
}

.mobile-sticky {
  position: fixed;
  z-index: 18;
  right: 26px;
  bottom: max(20px, env(safe-area-inset-bottom));
  left: 26px;
  display: grid;
  grid-template-columns: 0.82fr 1.1fr 1.08fr;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(29, 24, 22, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 28px));
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

body.show-mobile-sticky .mobile-sticky {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky a {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 16px;
  color: var(--graphite);
  font-size: 16px;
  font-weight: 600;
}

.mobile-sticky a + a::before {
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: -3px;
  width: 1px;
  background: rgba(38, 38, 38, 0.1);
  content: "";
}

.mobile-sticky .sticky-primary {
  background: linear-gradient(180deg, #dda8b1 0%, var(--pink) 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.sticky-icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  background: currentColor;
}

.sticky-icon-max {
  -webkit-mask: url("https://static.tildacdn.com/tild3338-3732-4166-b461-663762356634/max-logo.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild3338-3732-4166-b461-663762356634/max-logo.svg") center / contain no-repeat;
}

.sticky-icon-telegram {
  -webkit-mask: url("https://static.tildacdn.com/tild3638-3138-4464-b261-633139356434/telegram.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild3638-3138-4464-b261-633139356434/telegram.svg") center / contain no-repeat;
}

.menu-overlay {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  min-height: 100svh;
  padding: 18px;
  place-items: stretch;
  background:
    radial-gradient(circle at 80% 8%, rgba(216, 154, 165, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(248, 246, 243, 0.96), rgba(242, 238, 234, 0.98));
  color: var(--graphite);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.menu-overlay[hidden] {
  display: none;
}

.menu-overlay.is-closing {
  opacity: 0;
  transform: translateY(10px);
}

.menu-panel {
  position: relative;
  display: grid;
  max-height: calc(100svh - 36px);
  min-height: calc(100svh - 36px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: max(20px, env(safe-area-inset-top)) 16px max(20px, env(safe-area-inset-bottom));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(248, 246, 243, 0.78);
  box-shadow: 0 28px 90px rgba(70, 54, 48, 0.14);
  backdrop-filter: blur(22px);
  overflow: hidden auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 154, 165, 0.36) transparent;
}

.menu-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 34%),
    radial-gradient(ellipse at 12% 72%, rgba(216, 154, 165, 0.12), transparent 42%);
  content: "";
}

.menu-brand,
.menu-overlay nav,
.menu-footer,
.menu-close {
  position: relative;
  z-index: 1;
}

.menu-brand {
  display: grid;
  max-width: 230px;
  gap: 8px;
}

.menu-brand img {
  display: block;
  width: 96px;
  height: auto;
  filter: brightness(0) saturate(0) opacity(0.72);
}

.menu-brand span {
  color: rgba(74, 64, 61, 0.68);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-overlay nav {
  display: grid;
  align-content: start;
  gap: clamp(10px, 3.2vh, 20px);
  min-height: 0;
  padding: clamp(24px, 4.8vh, 38px) 0 clamp(22px, 4vh, 30px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 154, 165, 0.36) transparent;
}

.menu-overlay a {
  width: fit-content;
}

.menu-overlay nav a {
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 10.2vw, 56px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.menu-overlay nav a:hover {
  color: var(--pink-hover);
  transform: translateX(4px);
}

.menu-close {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  right: 16px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(74, 64, 61, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

.menu-close::before,
.menu-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--graphite);
  content: "";
}

.menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-footer {
  display: grid;
  gap: 12px;
}

.menu-overlay .menu-trial {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, #efc7cd 0%, #e5afb8 52%, var(--pink) 100%);
  color: #4a403d;
  font-size: 15px;
  font-weight: 650;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 18px 46px rgba(143, 91, 101, 0.16);
}

.menu-socials {
  display: flex;
  gap: 10px;
}

.menu-socials a {
  display: inline-flex;
  min-height: 42px;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  color: rgba(52, 45, 42, 0.82);
  font-size: 14px;
  font-weight: 650;
}

.menu-socials .sticky-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.why-section {
  position: relative;
  padding: 36px 20px 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(216, 154, 165, 0.12), transparent 28%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--premium-milk) 100%);
}

.why-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.12), transparent);
  content: "";
}

.why-proof {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  width: min(100%, 1160px);
  margin: 0 auto 68px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(216, 154, 165, 0.16);
  box-shadow: 0 28px 90px rgba(83, 65, 58, 0.08);
}

.why-proof::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.78), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.12));
  content: "";
  pointer-events: none;
}

.why-proof-item {
  position: relative;
  display: grid;
  min-height: 120px;
  grid-template-columns: 46px minmax(0, 1fr);
  align-content: start;
  gap: 6px 16px;
  padding: 20px;
  background: rgba(248, 246, 243, 0.78);
}

.why-proof-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216, 154, 165, 0.14);
  color: var(--pink-hover);
  grid-row: 1 / span 2;
  margin-top: 2px;
}

.why-proof-icon::before,
.why-proof-icon::after {
  position: absolute;
  content: "";
}

.why-proof-icon-adaptation::before {
  width: 30px;
  height: 30px;
  background: currentColor;
  -webkit-mask: url("https://static.tildacdn.com/tild3633-3264-4265-b331-666436383239/care.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild3633-3264-4265-b331-666436383239/care.svg") center / contain no-repeat;
}

.why-proof-icon-adaptation::after {
  display: none;
}

.why-proof-icon-group::before {
  top: 50%;
  left: 50%;
  width: 29px;
  height: 29px;
  background: currentColor;
  transform: translate(-50%, -50%);
  -webkit-mask: url("https://static.tildacdn.com/tild6632-3461-4930-b965-386534376537/group.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild6632-3461-4930-b965-386534376537/group.svg") center / contain no-repeat;
}

.why-proof-icon-group::after {
  display: none;
}

.why-proof-icon-contact::before {
  width: 27px;
  height: 27px;
  background: currentColor;
  -webkit-mask: url("https://static.tildacdn.com/tild6339-6239-4662-b961-393237363962/chat-bubble.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild6339-6239-4662-b961-393237363962/chat-bubble.svg") center / contain no-repeat;
}

.why-proof-icon-contact::after {
  display: none;
}

.why-proof-icon-load::before {
  width: 30px;
  height: 30px;
  background: currentColor;
  -webkit-mask: url("https://static.tildacdn.com/tild6364-6566-4230-a530-353235333930/load-steps.svg") center / contain no-repeat;
  mask: url("https://static.tildacdn.com/tild6364-6566-4230-a530-353235333930/load-steps.svg") center / contain no-repeat;
}

.why-proof-icon-load::after {
  display: none;
}

.why-proof-item strong {
  align-self: end;
  padding-top: 2px;
  color: #342d2a;
  font-size: clamp(15px, 4vw, 17px);
  font-weight: 750;
  line-height: 1.28;
}

.why-proof-item p {
  grid-column: 2;
  margin: 0;
  color: rgba(119, 115, 111, 0.92);
  font-size: clamp(13px, 3.45vw, 14px);
  font-weight: 550;
  line-height: 1.54;
}

.why-header {
  width: min(100%, 1160px);
  margin: 0 auto 34px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--pink-hover);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-header h2 {
  max-width: 680px;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 11vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.why-header p {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.why-cards {
  display: grid;
  width: min(100%, 1160px);
  gap: 14px;
  margin: 0 auto;
}

.why-card {
  position: relative;
  display: grid;
  min-height: 224px;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: start;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.3)),
    rgba(248, 246, 243, 0.62);
  box-shadow: 0 22px 58px rgba(83, 65, 58, 0.065);
  backdrop-filter: blur(14px);
}

.why-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 154, 165, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 44%);
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.why-card > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.why-card-index {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  color: rgba(200, 132, 146, 0.72);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-card:first-child {
  border-color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    rgba(248, 246, 243, 0.68);
  box-shadow:
    0 24px 70px rgba(83, 65, 58, 0.075),
    0 0 0 1px rgba(216, 154, 165, 0.06);
}

.why-card:first-child::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(216, 154, 165, 0.18), transparent 32%),
    radial-gradient(circle at 14% 90%, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 44%);
  opacity: 0.82;
}

.why-card h3 {
  max-width: 12.5ch;
  margin: 28px 0 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 9vw, 42px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.why-card p {
  max-width: 34ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.64;
}

.calm-section {
  position: relative;
  padding: 52px 20px 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(180deg, var(--premium-milk) 0%, var(--warm-white) 100%);
}

.calm-section::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.1), transparent);
  content: "";
}

.calm-inner {
  display: grid;
  width: min(100%, 1160px);
  gap: 36px;
  margin: 0 auto;
}

.calm-media {
  position: relative;
  overflow: hidden;
  height: clamp(430px, 112vw, 520px);
  border-radius: 34px;
  background: #eadfd8;
  box-shadow: 0 34px 96px rgba(83, 65, 58, 0.14);
}

.calm-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(38, 30, 27, 0.045)),
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.14), transparent 30%);
  content: "";
  pointer-events: none;
}

.calm-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 44%;
}

.calm-content {
  align-self: center;
}

.calm-support {
  align-self: start;
}

.calm-content h2 {
  max-width: 640px;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 11vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.calm-content .section-kicker {
  margin-bottom: 22px;
}

.calm-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.calm-list {
  display: grid;
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(74, 64, 61, 0.1);
}

.calm-list-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 94px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(74, 64, 61, 0.1);
}

.calm-list-item:last-child {
  border-bottom: 0;
}

.calm-list-item span {
  position: relative;
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--pink-hover);
}

.calm-list-item span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 0 0 5px rgba(216, 154, 165, 0.08),
    0 0 22px rgba(216, 154, 165, 0.2);
  content: "";
}

.calm-list-item strong {
  display: block;
  margin: 0;
  color: #3f3734;
  font-size: 15.5px;
  font-weight: 750;
  line-height: 1.32;
}

.calm-list-item p {
  margin: 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.58;
}

.calm-list-item strong + p {
  margin-top: 7px;
}

.calm-quote {
  position: relative;
  max-width: 450px;
  margin: 28px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(74, 64, 61, 0.1);
}

.calm-quote blockquote {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: rgba(52, 45, 42, 0.72);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 6.5vw, 32px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
}

.calm-quote blockquote::before {
  position: absolute;
  top: -8px;
  left: 0;
  color: rgba(216, 154, 165, 0.74);
  font-size: 1.25em;
  font-style: normal;
  content: "\201C";
}

.calm-quote figcaption {
  display: grid;
  gap: 3px;
  margin-top: 20px;
  padding-left: 26px;
  color: rgba(119, 115, 111, 0.92);
  font-size: 12px;
  line-height: 1.45;
}

.calm-quote figcaption span {
  color: var(--pink-hover);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calm-quote figcaption strong {
  color: rgba(74, 64, 61, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.trainers-section {
  position: relative;
  padding: 40px 20px 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(216, 154, 165, 0.1), transparent 30%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--premium-milk) 100%);
}

.trainers-section::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.1), transparent);
  content: "";
}

.trainers-inner {
  display: grid;
  width: min(100%, 1160px);
  gap: 34px;
  margin: 0 auto;
}

.trainers-header {
  max-width: 680px;
}

.trainers-header h2 {
  max-width: 680px;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 10.6vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.trainers-header p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.trainers-grid {
  display: grid;
  gap: 14px;
  align-items: start;
}

.trainer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    rgba(248, 246, 243, 0.66);
  box-shadow: 0 30px 90px rgba(83, 65, 58, 0.1);
}

.trainer-photo {
  position: relative;
  overflow: hidden;
  height: 340px;
  min-height: 276px;
  background: #eadfd8;
}

.trainer-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(38, 30, 27, 0.08)),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.16), transparent 30%);
  content: "";
  pointer-events: none;
}

.trainer-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% 42%;
}

.trainer-photo-amelia img,
.trainer-photo-anastasia img {
  object-position: 64% 42%;
}

.trainer-photo-regina img {
  object-position: 50% 34%;
}

.trainer-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.68), transparent 34%),
    linear-gradient(180deg, rgba(242, 238, 234, 0.94), rgba(232, 219, 212, 0.86));
}

.trainer-photo-placeholder span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(216, 154, 165, 0.18);
  border-radius: 999px;
  color: rgba(119, 115, 111, 0.78);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trainer-card-content {
  min-width: 0;
  padding: 26px 22px 28px;
}

.trainer-role {
  display: inline-flex;
  color: var(--pink-hover);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trainer-card-content h3 {
  max-width: min(100%, 22ch);
  margin: 18px 0 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 7.8vw, 42px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.trainer-profile-trigger {
  display: none;
}

.trainer-card-content p {
  max-width: 36ch;
  margin: 18px 0 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.64;
}

.trainer-facts {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.trainer-facts li {
  position: relative;
  padding-left: 16px;
  color: rgba(74, 64, 61, 0.84);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.46;
}

.trainer-facts li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink-hover);
  box-shadow: 0 0 0 4px rgba(216, 154, 165, 0.08);
  content: "";
}

.trainer-details {
  margin-top: 22px;
}

.trainer-details summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(200, 132, 146, 0.88);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  list-style: none;
  text-transform: uppercase;
}

.trainer-details summary::-webkit-details-marker {
  display: none;
}

.trainer-details summary::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.trainer-details[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.trainer-details p {
  max-width: 40ch;
  margin: 14px 0 0;
  color: rgba(119, 115, 111, 0.92);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.62;
}

.trainer-details p + p {
  margin-top: 12px;
}

.trainer-desktop-profile {
  display: none;
}

.trainer-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 40px;
  pointer-events: none;
}

.trainer-modal.is-open {
  pointer-events: auto;
}

.trainer-modal[hidden] {
  display: none;
}

.trainer-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 72% 16%, rgba(216, 154, 165, 0.16), transparent 34%),
    rgba(39, 31, 28, 0.42);
  backdrop-filter: blur(18px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 120ms ease;
}

.trainer-modal.is-open .trainer-modal-backdrop {
  opacity: 1;
}

.trainer-modal-panel {
  position: relative;
  display: grid;
  width: min(100%, 980px);
  height: min(700px, calc(100svh - 80px));
  min-height: 620px;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 42px;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 154, 165, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 246, 243, 0.92));
  box-shadow: 0 44px 120px rgba(38, 30, 27, 0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transition:
    opacity 220ms ease 70ms,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1) 70ms;
}

.trainer-modal.is-open .trainer-modal-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trainer-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.trainer-modal-close:hover {
  background: rgba(255, 255, 255, 0.82);
  transform: scale(1.04);
}

.trainer-modal-close::before,
.trainer-modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(74, 64, 61, 0.76);
  content: "";
}

.trainer-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.trainer-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.trainer-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.trainer-modal-nav:hover {
  background: rgba(255, 255, 255, 0.82);
}

.trainer-modal-prev {
  left: max(24px, calc(50% - 572px));
}

.trainer-modal-next {
  right: max(24px, calc(50% - 572px));
}

.trainer-modal-nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(74, 64, 61, 0.76);
  border-right: 1.5px solid rgba(74, 64, 61, 0.76);
  content: "";
}

.trainer-modal-prev::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.trainer-modal-next::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

.trainer-modal-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.64), transparent 32%),
    linear-gradient(180deg, rgba(242, 238, 234, 0.96), rgba(232, 219, 212, 0.86));
}

.trainer-modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 44%;
}

.trainer-modal-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(38, 30, 27, 0.1)),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.18), transparent 30%);
  content: "";
  pointer-events: none;
}

.trainer-modal-media span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(216, 154, 165, 0.18);
  border-radius: 999px;
  color: rgba(119, 115, 111, 0.78);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.trainer-modal-media span[hidden],
.trainer-modal-media img[hidden] {
  display: none;
}

.trainer-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 78px 66px 60px 58px;
}

.trainer-modal-content h3 {
  max-width: 11ch;
  margin: 20px 0 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 4.1vw, 70px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.trainer-modal-content p {
  max-width: 42ch;
  margin: 26px 0 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 16px;
  font-weight: 550;
  line-height: 1.68;
}

.trainer-modal-note {
  color: rgba(74, 64, 61, 0.74);
}

body.trainer-modal-open {
  overflow: hidden;
}

.trainers-cta {
  display: grid;
  gap: 20px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 154, 165, 0.09), transparent 30%),
    transparent;
  box-shadow: none;
}

.trainers-cta h3 {
  max-width: 16ch;
  margin: 14px 0 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 8vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.trainers-cta p {
  max-width: 43ch;
  margin: 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.64;
}

.trainers-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trainers-cta-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(180deg, #efc7cd 0%, #e5afb8 52%, var(--pink) 100%);
  color: #4a403d;
  font-size: 15px;
  font-weight: 650;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 16px 40px rgba(143, 91, 101, 0.16);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trainers-cta-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, #edbec6 0%, #dfa4af 58%, var(--pink-hover) 100%);
  transform: translateY(-1px);
}

.trainers-cta-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid rgba(74, 64, 61, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(74, 64, 61, 0.86);
  font-size: 15px;
  font-weight: 650;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trainers-cta-secondary:hover {
  border-color: rgba(74, 64, 61, 0.24);
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-1px);
}

.groups-section {
  position: relative;
  padding: 36px 20px 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.74), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(216, 154, 165, 0.1), transparent 32%),
    linear-gradient(180deg, var(--premium-milk) 0%, var(--warm-white) 100%);
}

.groups-section::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.1), transparent);
  content: "";
}

.groups-inner {
  display: grid;
  width: min(100%, 1160px);
  gap: 34px;
  margin: 0 auto;
}

.groups-header {
  max-width: 700px;
}

.groups-header h2 {
  max-width: 700px;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 10.4vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.groups-header p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.groups-grid {
  display: grid;
  gap: 14px;
}

.group-card {
  position: relative;
  display: grid;
  min-height: 292px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 25px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.28)),
    rgba(248, 246, 243, 0.64);
  box-shadow: 0 24px 72px rgba(83, 65, 58, 0.08);
  backdrop-filter: blur(14px);
}

.group-card-main {
  align-self: start;
  position: relative;
  z-index: 1;
}

.group-card-main::before {
  position: absolute;
  inset: -18px -12px -24px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(248, 246, 243, 0.82), rgba(248, 246, 243, 0.64) 62%, rgba(248, 246, 243, 0)),
    radial-gradient(circle at 24% 56%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 66%);
  content: "";
  filter: blur(12px);
  opacity: 0.78;
  pointer-events: none;
}

.group-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 86% 10%, rgba(216, 154, 165, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 46%);
  content: "";
  opacity: 0.74;
  pointer-events: none;
}

.group-card::after {
  position: absolute;
  right: -50px;
  bottom: 18px;
  width: 210px;
  height: 92px;
  border-top: 1.5px solid rgba(216, 154, 165, 0.24);
  border-right: 1px solid rgba(216, 154, 165, 0.1);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-18deg);
  box-shadow:
    18px -10px 0 -17px rgba(216, 154, 165, 0.28),
    36px -20px 0 -35px rgba(216, 154, 165, 0.18);
}

.group-card:nth-child(1)::after {
  right: -56px;
  bottom: 22px;
  width: 190px;
  height: 78px;
  opacity: 0.58;
  transform: rotate(-16deg);
}

.group-card:nth-child(2)::after {
  right: -76px;
  bottom: 26px;
  width: 244px;
  height: 86px;
  border-top-color: rgba(216, 154, 165, 0.2);
  opacity: 0.64;
  transform: rotate(-10deg);
}

.group-card:nth-child(3)::after {
  right: -62px;
  bottom: 16px;
  width: 258px;
  height: 112px;
  border-top-color: rgba(216, 154, 165, 0.28);
  opacity: 0.76;
  transform: rotate(-24deg);
}

.group-card:nth-child(4)::after {
  right: -82px;
  bottom: 18px;
  width: 286px;
  height: 118px;
  border-top-color: rgba(216, 154, 165, 0.3);
  opacity: 0.78;
  transform: rotate(-12deg);
  box-shadow:
    22px -12px 0 -20px rgba(216, 154, 165, 0.32),
    48px -26px 0 -42px rgba(216, 154, 165, 0.2);
}

.group-card:nth-child(5)::after {
  right: -84px;
  bottom: 12px;
  width: 312px;
  height: 136px;
  border-top-color: rgba(216, 154, 165, 0.32);
  border-right-color: rgba(216, 154, 165, 0.14);
  opacity: 0.8;
  transform: rotate(-20deg);
  box-shadow:
    24px -14px 0 -22px rgba(216, 154, 165, 0.32),
    56px -32px 0 -50px rgba(216, 154, 165, 0.2);
}

.group-card > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.group-card-feature {
  min-height: 340px;
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 82% 14%, rgba(216, 154, 165, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34)),
    rgba(248, 246, 243, 0.72);
  box-shadow:
    0 28px 86px rgba(83, 65, 58, 0.09),
    0 0 0 1px rgba(216, 154, 165, 0.06);
}

.group-card-index {
  display: inline-flex;
  width: fit-content;
  color: #c88492;
  font-size: clamp(12px, 2.8vw, 13.5px);
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.group-symbol {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  border: 1px solid rgba(216, 154, 165, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.74), transparent 58%),
    rgba(216, 154, 165, 0.08);
  color: rgba(200, 132, 146, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 14px 30px rgba(143, 91, 101, 0.08);
}

.group-symbol svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.group-symbol-pro svg path,
.group-symbol-soft svg path:first-child {
  fill: rgba(216, 154, 165, 0.11);
}

.group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 72px;
  align-content: flex-start;
  margin-top: 24px;
}

.group-age {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(216, 154, 165, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  color: rgba(74, 64, 61, 0.82);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.group-age-accent {
  border-color: rgba(216, 154, 165, 0.26);
  background: rgba(216, 154, 165, 0.1);
  color: rgba(157, 94, 105, 0.88);
}

.group-card h3 {
  max-width: none;
  margin: 18px 0 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 8.8vw, 42px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.group-card p {
  max-width: 38ch;
  margin: 18px 0 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.62;
}

.group-card-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  align-self: end;
  gap: 8px;
  margin-top: 28px;
  color: #c88492;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.group-card-link::before {
  position: absolute;
  inset: -10px -16px;
  z-index: -1;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(248, 246, 243, 0.86), rgba(248, 246, 243, 0.68) 72%, rgba(248, 246, 243, 0)),
    radial-gradient(circle at 32% 50%, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0) 70%);
  content: "";
  filter: blur(10px);
  opacity: 0.78;
  pointer-events: none;
}

.group-card-link::after {
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.group-card:hover .group-card-link::after {
  transform: translateX(3px) rotate(45deg);
}

.groups-note {
  display: grid;
  scroll-margin-top: 120px;
  gap: 18px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(74, 64, 61, 0.1);
}

.groups-note p {
  max-width: 54ch;
  margin: 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.64;
}

.groups-note-link {
  display: inline-flex;
  width: fit-content;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(180deg, #efc7cd 0%, #e5afb8 52%, var(--pink) 100%);
  color: #4a403d;
  font-size: 15px;
  font-weight: 650;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 16px 40px rgba(143, 91, 101, 0.16);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.groups-note-link:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: linear-gradient(180deg, #edbec6 0%, #dfa4af 58%, var(--pink-hover) 100%);
  transform: translateY(-1px);
}

.journey-section {
  position: relative;
  padding: 52px 20px 112px;
  overflow: visible;
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 154, 165, 0.1), transparent 30%),
    radial-gradient(circle at 12% 36%, rgba(255, 255, 255, 0.86), transparent 34%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--premium-milk) 100%);
}

.journey-section::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.1), transparent);
  content: "";
  pointer-events: none;
}

.journey-inner {
  display: grid;
  width: min(100%, 1160px);
  gap: 34px;
  margin: 0 auto;
}

.journey-header {
  max-width: 720px;
}

.journey-header h2 {
  max-width: 720px;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 10.4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.journey-header p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.journey-stage {
  display: grid;
  gap: 16px;
}

.journey-visual-shell {
  position: relative;
  min-height: 260px;
}

.journey-visual {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(216, 154, 165, 0.2), transparent 38%),
    radial-gradient(circle at 18% 78%, rgba(200, 132, 146, 0.08), transparent 42%),
    linear-gradient(135deg, rgba(248, 246, 243, 0.92), rgba(242, 238, 234, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 24px 72px rgba(83, 65, 58, 0.08);
}

.journey-visual::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 74px);
  content: "";
  opacity: 0.82;
}

.journey-visual::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(216, 154, 165, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 165, 0.12), transparent 64%);
  content: "";
}

.journey-scene {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.journey-scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--journey-photo-position, center);
  filter: saturate(0.92) contrast(0.96) brightness(1.04);
}

.journey-scene::before,
.journey-scene::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.journey-scene::before {
  inset: 30px;
  border-radius: 28px;
}

.journey-scene::after {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(2px);
}

.journey-scene-1::before {
  background:
    radial-gradient(circle at 20% 22%, rgba(216, 154, 165, 0.12), transparent 18%),
    linear-gradient(135deg, transparent 0 46%, rgba(216, 154, 165, 0.12) 47%, transparent 49% 100%);
}

.journey-scene-1::after {
  right: 12%;
  bottom: 14%;
  border: 1px solid rgba(216, 154, 165, 0.14);
  background: rgba(255, 255, 255, 0.16);
}

.journey-scene-2::before {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.6), transparent 22%),
    repeating-linear-gradient(115deg, transparent 0 38px, rgba(216, 154, 165, 0.1) 39px 40px, transparent 41px 86px);
}

.journey-scene-2::after {
  left: 14%;
  bottom: 16%;
  border: 1px solid rgba(200, 132, 146, 0.16);
  background: rgba(216, 154, 165, 0.08);
}

.journey-scene-3::before {
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(255, 255, 255, 0.42) 31% 32%, transparent 33% 100%),
    linear-gradient(0deg, transparent 0 52%, rgba(216, 154, 165, 0.12) 53%, transparent 55% 100%);
}

.journey-scene-3::after {
  right: 20%;
  top: 18%;
  border: 1px solid rgba(216, 154, 165, 0.18);
  background: radial-gradient(circle, rgba(216, 154, 165, 0.1), transparent 68%);
}

.journey-scene-4::before {
  background:
    radial-gradient(circle at 34% 72%, rgba(216, 154, 165, 0.15), transparent 22%),
    linear-gradient(150deg, transparent 0 28%, rgba(200, 132, 146, 0.13) 29%, transparent 31% 100%),
    linear-gradient(20deg, transparent 0 64%, rgba(216, 154, 165, 0.1) 65%, transparent 67% 100%);
}

.journey-scene-4::after {
  right: 10%;
  top: 26%;
  border: 1px solid rgba(200, 132, 146, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.journey-scene-5::before {
  background:
    radial-gradient(circle at 22% 68%, rgba(216, 154, 165, 0.12), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(200, 132, 146, 0.14), transparent 20%),
    linear-gradient(132deg, transparent 0 42%, rgba(216, 154, 165, 0.14) 43%, transparent 45% 100%);
}

.journey-scene-5::after {
  right: 14%;
  bottom: 12%;
  border: 1px solid rgba(216, 154, 165, 0.2);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(216, 154, 165, 0.08) 70%);
}

.is-journey-step-1 .journey-scene-1,
.is-journey-step-2 .journey-scene-2,
.is-journey-step-3 .journey-scene-3,
.is-journey-step-4 .journey-scene-4,
.is-journey-step-5 .journey-scene-5 {
  opacity: 1;
}

.is-journey-step-2 .journey-ribbon-one {
  transform: translateY(24px) rotate(-8deg);
}

.is-journey-step-3 .journey-ribbon-one {
  transform: translateX(28px) translateY(34px) rotate(-22deg);
}

.is-journey-step-4 .journey-ribbon-two {
  transform: translateX(-24px) translateY(-18px) rotate(-16deg);
}

.is-journey-step-5 .journey-ribbon-one {
  transform: translateX(44px) translateY(64px) rotate(-28deg);
}

.is-journey-step-5 .journey-ribbon-two {
  transform: translateX(-42px) translateY(-42px) rotate(-30deg);
}

.journey-ribbon {
  position: absolute;
  display: block;
  border: solid rgba(216, 154, 165, 0.42);
  border-width: 2px 0 0;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 420ms ease, opacity 420ms ease;
}

.journey-ribbon-one {
  top: 82px;
  left: -44px;
  width: 520px;
  height: 176px;
  transform: rotate(-14deg);
}

.journey-ribbon-two {
  right: -112px;
  bottom: 64px;
  width: 430px;
  height: 142px;
  border-color: rgba(200, 132, 146, 0.26);
  transform: rotate(-24deg);
}

.journey-orbit {
  position: absolute;
  top: 78px;
  right: 18%;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(216, 154, 165, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 22px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.journey-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(200, 132, 146, 0.72);
  box-shadow: 0 0 0 12px rgba(216, 154, 165, 0.1);
}

.journey-dot-one {
  top: 62px;
  left: 62px;
}

.journey-dot-two {
  right: 96px;
  bottom: 82px;
}

.journey-list {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(74, 64, 61, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 64px rgba(83, 65, 58, 0.06);
}

.journey-steps-ribbon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  z-index: 0;
  width: 116px;
  height: 100%;
  object-fit: fill;
  opacity: 0.46;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.68) 68%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.68) 68%, transparent 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

.journey-step {
  position: relative;
  z-index: 1;
  appearance: none;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  padding: 24px 22px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 220ms ease;
}

.journey-step + .journey-step {
  border-top: 1px solid rgba(74, 64, 61, 0.08);
}

.journey-step:hover,
.journey-step.is-active {
  background:
    radial-gradient(circle at 0% 50%, rgba(216, 154, 165, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.2);
}

.journey-step.is-complete:not(.is-active) {
  background:
    linear-gradient(90deg, rgba(216, 154, 165, 0.055), transparent 46%),
    rgba(255, 255, 255, 0.08);
}

.journey-step:focus-visible {
  outline: 2px solid rgba(200, 132, 146, 0.38);
  outline-offset: -3px;
}

.journey-number {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 72px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #342d2a;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.92;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.journey-step.is-complete .journey-number {
  color: #342d2a;
}

.journey-step:hover .journey-number,
.journey-step:focus-visible .journey-number,
.journey-step.is-active .journey-number {
  color: #c88492;
  transform: scale(1.04);
}

.journey-step h3 {
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 400;
  line-height: 1.02;
  transition: color 220ms ease;
}

.journey-step:hover h3,
.journey-step:focus-visible h3,
.journey-step.is-active h3 {
  color: #c88492;
}

.journey-step p {
  max-width: 42ch;
  margin: 10px 0 0;
  color: rgba(119, 115, 111, 0.94);
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.62;
}

.atmosphere-section {
  position: relative;
  padding: 52px 20px 112px;
  overflow: hidden;
  scroll-margin-top: 116px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.78), transparent 30%),
    radial-gradient(circle at 88% 34%, rgba(216, 154, 165, 0.1), transparent 34%),
    linear-gradient(180deg, var(--premium-milk) 0%, var(--warm-white) 100%);
}

.atmosphere-section::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.1), transparent);
  content: "";
}

.atmosphere-inner {
  display: grid;
  width: min(100%, 1160px);
  gap: 34px;
  margin: 0 auto;
}

.atmosphere-header {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.atmosphere-header h2 {
  max-width: 760px;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 10.4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.atmosphere-header p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.atmosphere-gallery {
  display: grid;
  gap: 16px;
}

.atmosphere-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 24px 72px rgba(83, 65, 58, 0.08);
}

.atmosphere-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(248, 246, 243, 0.96), rgba(226, 198, 190, 0.54));
}

.atmosphere-media::before,
.atmosphere-media::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.atmosphere-media::before {
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 82px);
}

.atmosphere-media::after {
  right: -90px;
  bottom: 42px;
  width: 360px;
  height: 122px;
  border: solid rgba(216, 154, 165, 0.34);
  border-width: 2px 0 0;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.atmosphere-media-support {
  background:
    radial-gradient(circle at 72% 24%, rgba(216, 154, 165, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(248, 246, 243, 0.95), rgba(242, 238, 234, 0.58));
}

.atmosphere-media-support::after {
  right: auto;
  bottom: 54px;
  left: -100px;
  transform: rotate(14deg);
}

.atmosphere-media-details {
  background:
    radial-gradient(circle at 28% 76%, rgba(216, 154, 165, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(242, 238, 234, 0.94), rgba(248, 246, 243, 0.76));
}

.atmosphere-media-details::after {
  right: -42px;
  bottom: auto;
  top: 74px;
  width: 250px;
  transform: rotate(-34deg);
}

.atmosphere-media-starts {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(216, 154, 165, 0.13), transparent 30%),
    linear-gradient(140deg, rgba(248, 246, 243, 0.96), rgba(226, 198, 190, 0.48));
}

.atmosphere-media-starts::after {
  right: 8%;
  bottom: 74px;
  width: 420px;
  transform: rotate(-10deg);
}

.atmosphere-card-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 28px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(52, 45, 42, 0.04) 20%, rgba(52, 45, 42, 0.2) 100%);
}

.atmosphere-card-copy span {
  display: inline-flex;
  margin-bottom: 16px;
  color: #c88492;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atmosphere-card-copy h3 {
  max-width: 11ch;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 8.2vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.atmosphere-card-copy p {
  max-width: 34ch;
  margin: 16px 0 0;
  color: rgba(68, 60, 56, 0.76);
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.62;
}

.atmosphere-play {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 154, 165, 0.22), rgba(255, 255, 255, 0.24)),
    rgba(248, 246, 243, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 40px rgba(83, 65, 58, 0.1);
  backdrop-filter: blur(12px);
}

.atmosphere-play::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #c88492;
  content: "";
  transform: translate(-45%, -50%);
}

.atmosphere-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.atmosphere-stage {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: clamp(560px, 76vw, 760px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background:
    radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.84), transparent 30%),
    linear-gradient(150deg, rgba(248, 246, 243, 0.96), rgba(226, 198, 190, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 34px 90px rgba(83, 65, 58, 0.1);
}

.atmosphere-stage::after {
  position: absolute;
  inset: 22% 0 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 28% 78%, rgba(42, 34, 31, 0.46), transparent 52%),
    linear-gradient(180deg, transparent 0%, rgba(42, 34, 31, 0.08) 24%, rgba(42, 34, 31, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.atmosphere-stage-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.atmosphere-stage-media::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(216, 154, 165, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(52, 45, 42, 0.16));
  content: "";
  transition: opacity 360ms ease;
}

.atmosphere-stage-media::after {
  position: absolute;
  right: -18%;
  bottom: 14%;
  width: 72%;
  height: 24%;
  border: solid rgba(216, 154, 165, 0.36);
  border-width: 2px 0 0;
  border-radius: 50%;
  content: "";
  filter: blur(0.5px);
  transform: rotate(-14deg);
}

.atmosphere-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 520ms ease, transform 780ms ease;
}

.atmosphere-frame::before,
.atmosphere-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.atmosphere-frame::before {
  inset: 30px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 92px);
}

.atmosphere-frame::after {
  width: 42%;
  height: 48%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.78), transparent 18%),
    linear-gradient(180deg, rgba(216, 154, 165, 0.38), rgba(196, 132, 146, 0.12));
  filter: blur(1px);
}

.atmosphere-frame-one {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    radial-gradient(circle at 72% 34%, rgba(216, 154, 165, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(248, 246, 243, 0.9), rgba(224, 190, 182, 0.58));
}

.atmosphere-frame-one::after {
  right: 13%;
  bottom: 14%;
  transform: rotate(-16deg);
}

.atmosphere-frame-two {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.72), transparent 22%),
    linear-gradient(145deg, rgba(242, 238, 234, 0.92), rgba(214, 179, 170, 0.42));
}

.atmosphere-frame-two::after {
  left: 12%;
  bottom: 18%;
  width: 36%;
  transform: rotate(12deg);
}

.atmosphere-frame-three {
  background:
    radial-gradient(circle at 30% 72%, rgba(216, 154, 165, 0.17), transparent 24%),
    linear-gradient(120deg, rgba(248, 246, 243, 0.96), rgba(232, 211, 204, 0.62));
}

.atmosphere-frame-three::after {
  right: 10%;
  top: 16%;
  width: 34%;
  height: 42%;
  transform: rotate(-28deg);
}

.atmosphere-frame-four {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.78), transparent 26%),
    radial-gradient(circle at 78% 78%, rgba(216, 154, 165, 0.16), transparent 28%),
    linear-gradient(150deg, rgba(242, 238, 234, 0.94), rgba(226, 198, 190, 0.46));
}

.atmosphere-frame-four::after {
  left: 18%;
  top: 20%;
  width: 54%;
  height: 38%;
  transform: rotate(-8deg);
}

.atmosphere-frame-five {
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 30% 76%, rgba(216, 154, 165, 0.18), transparent 30%),
    linear-gradient(140deg, rgba(248, 246, 243, 0.94), rgba(215, 178, 170, 0.52));
}

.atmosphere-frame-five::after {
  right: 6%;
  bottom: 20%;
  width: 48%;
  height: 44%;
  transform: rotate(8deg);
}

.is-atmosphere-scene-1 .atmosphere-frame-one,
.is-atmosphere-scene-2 .atmosphere-frame-two,
.is-atmosphere-scene-3 .atmosphere-frame-three,
.is-atmosphere-scene-4 .atmosphere-frame-four,
.is-atmosphere-scene-5 .atmosphere-frame-five {
  opacity: 1;
  transform: scale(1.015);
}

.atmosphere-video-chip {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(248, 246, 243, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.atmosphere-stage-play {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 154, 165, 0.28), rgba(255, 255, 255, 0.22)),
    rgba(248, 246, 243, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 46px rgba(83, 65, 58, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, background 220ms ease;
}

.atmosphere-stage-play::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
  content: "";
  transform: translate(-45%, -50%);
}

.atmosphere-stage-media:hover .atmosphere-stage-play,
.atmosphere-stage-media:focus-visible .atmosphere-stage-play {
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 154, 165, 0.42), rgba(255, 255, 255, 0.28)),
    rgba(248, 246, 243, 0.3);
  transform: scale(1.04);
}

.atmosphere-stage-media:focus-visible {
  outline: 2px solid rgba(200, 132, 146, 0.72);
  outline-offset: -8px;
}

.atmosphere-stage-copy {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: end;
  max-width: 640px;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
  color: #ffffff;
  pointer-events: none;
}

.atmosphere-stage-kicker {
  color: rgba(255, 221, 228, 0.96);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atmosphere-stage-copy h3 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 7vw, 74px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 18px 56px rgba(42, 34, 31, 0.32);
  text-wrap: balance;
}

.atmosphere-stage-copy p {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 520;
  line-height: 1.68;
}

.atmosphere-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
  pointer-events: auto;
}

.atmosphere-primary-action,
.atmosphere-secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.atmosphere-primary-action {
  border: 1px solid rgba(216, 154, 165, 0.86);
  background: linear-gradient(135deg, #f1b8c2 0%, #d89aa5 100%);
  color: #40302f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 16px 38px rgba(200, 132, 146, 0.22);
}

.atmosphere-secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(248, 246, 243, 0.12);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.atmosphere-primary-action:hover,
.atmosphere-secondary-action:hover,
.atmosphere-primary-action:focus-visible,
.atmosphere-secondary-action:focus-visible {
  transform: translateY(-1px);
}

.atmosphere-primary-action:focus-visible,
.atmosphere-secondary-action:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.76);
  outline-offset: 3px;
}

.atmosphere-rail {
  display: grid;
  gap: 10px;
}

.atmosphere-story {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: 86px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.44);
  color: #3d3531;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 16px 42px rgba(83, 65, 58, 0.06);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.atmosphere-story::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 154, 165, 0.16), transparent 58%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.atmosphere-story span {
  position: relative;
  color: rgba(200, 132, 146, 0.74);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 0.9;
}

.atmosphere-story strong {
  position: relative;
  display: block;
  color: #3d3531;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.2;
}

.atmosphere-story small {
  position: relative;
  display: block;
  margin-top: 6px;
  color: rgba(119, 115, 111, 0.92);
  font-size: 13px;
  font-weight: 520;
  line-height: 1.42;
}

.atmosphere-story:hover,
.atmosphere-story:focus-visible,
.atmosphere-story.is-active {
  border-color: rgba(216, 154, 165, 0.4);
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 20px 54px rgba(83, 65, 58, 0.09);
  transform: translateY(-1px);
}

.atmosphere-story:hover::before,
.atmosphere-story:focus-visible::before,
.atmosphere-story.is-active::before {
  opacity: 1;
}

.atmosphere-story:focus-visible {
  outline: 2px solid rgba(200, 132, 146, 0.68);
  outline-offset: 3px;
}

.atmosphere-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom));
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

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

.atmosphere-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: rgba(38, 32, 30, 0.5);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.atmosphere-modal-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: 22px;
  width: min(100%, 1040px);
  max-height: min(760px, calc(100vh - 36px));
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(140deg, rgba(248, 246, 243, 0.96), rgba(242, 238, 234, 0.92));
  box-shadow: 0 38px 100px rgba(38, 32, 30, 0.28);
  transform: translateY(12px) scale(0.985);
  transition: transform 260ms ease;
}

.atmosphere-modal-panel {
  --atmosphere-media-top: 18px;
  --atmosphere-media-height: 520px;
}

.atmosphere-modal.is-open .atmosphere-modal-panel {
  transform: translateY(0) scale(1);
}

.atmosphere-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(74, 64, 61, 0.12);
  border-radius: 50%;
  background: rgba(248, 246, 243, 0.76);
  box-shadow: 0 14px 34px rgba(83, 65, 58, 0.08);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.atmosphere-modal-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: #5f5450;
  transform: translate(-50%, -50%) rotate(45deg);
}

.atmosphere-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.atmosphere-modal-media {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 76% 72%, rgba(216, 154, 165, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(226, 198, 190, 0.52), rgba(248, 246, 243, 0.9));
}

.atmosphere-modal-media::before {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 44%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 84px);
  content: "";
}

.atmosphere-modal-media small {
  position: absolute;
  bottom: 26px;
  left: 26px;
  color: rgba(68, 60, 56, 0.58);
  font-size: 12px;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.atmosphere-modal-play {
  position: relative;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 154, 165, 0.32), rgba(255, 255, 255, 0.28)),
    rgba(248, 246, 243, 0.34);
  box-shadow: 0 22px 52px rgba(83, 65, 58, 0.12);
  backdrop-filter: blur(14px);
}

.atmosphere-modal-play::before {
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid #c88492;
  content: "";
  transform: translate(-45%, -50%);
}

.atmosphere-modal-copy {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 66px 18px 22px 0;
}

.atmosphere-modal-copy span {
  color: #c88492;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atmosphere-modal-copy h3 {
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 400;
  line-height: 0.98;
}

.atmosphere-modal-copy p {
  max-width: 42ch;
  margin: 0;
  color: rgba(68, 60, 56, 0.78);
  font-size: 15.5px;
  font-weight: 520;
  line-height: 1.7;
}

.atmosphere-modal-nav {
  position: absolute;
  top: calc(var(--atmosphere-media-top) + var(--atmosphere-media-height) / 2);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: transparent;
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(83, 65, 58, 0.08);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.atmosphere-modal-nav:hover,
.atmosphere-modal-nav:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-50%) scale(1.04);
}

.atmosphere-modal-nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(74, 64, 61, 0.76);
  border-right: 1.5px solid rgba(74, 64, 61, 0.76);
  content: "";
}

.atmosphere-modal-prev {
  left: 28px;
}

.atmosphere-modal-prev::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.atmosphere-modal-next {
  left: calc(18px + min(100%, 1040px) * 0.58);
  transform: translate(-50%, -50%);
}

.atmosphere-modal-next:hover,
.atmosphere-modal-next:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
}

.atmosphere-modal-next::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

.reviews-section,
.faq-section,
.final-cta-section {
  position: relative;
  padding: 52px 20px 112px;
  overflow: hidden;
}

.reviews-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(216, 154, 165, 0.1), transparent 30%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--premium-milk) 100%);
}

.faq-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(180deg, var(--premium-milk) 0%, var(--warm-white) 100%);
}

.final-cta-section {
  padding-bottom: 74px;
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 154, 165, 0.16), transparent 34%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--premium-milk) 100%);
}

.reviews-section::before,
.faq-section::before,
.final-cta-section::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(74, 64, 61, 0.1), transparent);
  content: "";
}

.reviews-inner,
.faq-inner,
.final-cta-inner,
.footer-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.reviews-inner,
.faq-inner {
  display: grid;
  gap: 34px;
}

.reviews-header,
.faq-header {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.reviews-header h2,
.faq-header h2,
.final-cta-content h2 {
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(40px, 10.4vw, 58px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.reviews-header p,
.faq-header p,
.final-cta-content p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.reviews-grid {
  display: grid;
  gap: 16px;
}

.review-card {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 72px rgba(83, 65, 58, 0.07);
}

.review-card-feature {
  min-height: 430px;
}

.review-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 22%, rgba(216, 154, 165, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(248, 246, 243, 0.96), rgba(226, 198, 190, 0.46));
}

.review-media::after {
  position: absolute;
  right: -60px;
  bottom: 68px;
  width: 340px;
  height: 118px;
  border: solid rgba(216, 154, 165, 0.32);
  border-width: 2px 0 0;
  border-radius: 50%;
  content: "";
  transform: rotate(-15deg);
}

.review-play {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(248, 246, 243, 0.34);
  backdrop-filter: blur(12px);
}

.review-play::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #c88492;
  content: "";
  transform: translate(-45%, -50%);
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #342d2a;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(29px, 7vw, 42px);
  font-weight: 400;
  line-height: 1.04;
}

.review-author {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  margin-top: 24px;
  color: rgba(52, 45, 42, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.review-author small {
  color: #c88492;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(74, 64, 61, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 20px 64px rgba(83, 65, 58, 0.06);
}

.faq-list details {
  padding: 0;
}

.faq-list details + details {
  border-top: 1px solid rgba(74, 64, 61, 0.08);
}

.faq-list summary {
  position: relative;
  display: block;
  padding: 24px 58px 24px 24px;
  color: #342d2a;
  cursor: pointer;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #c88492;
  border-bottom: 1.5px solid #c88492;
  content: "";
  transform: translateY(-60%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-list p {
  max-width: 72ch;
  margin: -4px 58px 24px 24px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 550;
  line-height: 1.68;
}

.final-cta-inner {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 28px 90px rgba(83, 65, 58, 0.1);
}

.final-cta-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.72), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(216, 154, 165, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(248, 246, 243, 0.96), rgba(226, 198, 190, 0.5));
}

.final-cta-media::after {
  position: absolute;
  right: -110px;
  bottom: 90px;
  width: 560px;
  height: 170px;
  border: solid rgba(216, 154, 165, 0.34);
  border-width: 2px 0 0;
  border-radius: 50%;
  content: "";
  transform: rotate(-13deg);
}

.final-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 720px;
  align-self: end;
  gap: 22px;
  padding: 34px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.final-primary,
.final-secondary {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.final-primary {
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(180deg, #edbec6 0%, #dfa4af 58%, var(--pink-hover) 100%);
  color: rgba(52, 45, 42, 0.9);
  box-shadow: 0 16px 40px rgba(143, 91, 101, 0.16);
}

.final-secondary {
  gap: 8px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: rgba(52, 45, 42, 0.82);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(83, 65, 58, 0.055);
  backdrop-filter: blur(12px);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 650px;
}

.contact-details a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: rgba(52, 45, 42, 0.78);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.contact-details a:first-child {
  color: rgba(52, 45, 42, 0.9);
}

.final-map {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0 34px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 54px rgba(83, 65, 58, 0.1);
}

.final-map::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(248, 246, 243, 0.82);
  box-shadow: 0 14px 34px rgba(83, 65, 58, 0.1);
  color: rgba(52, 45, 42, 0.86);
  content: "Р¤СѓС‡РёРєР°, 90 В· РѕС‚РєСЂС‹С‚СЊ РЅР° РєР°СЂС‚Рµ";
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  pointer-events: none;
}

.final-map iframe {
  display: block;
  width: 100%;
  height: 286px;
  border: 0;
  filter: saturate(0.78) sepia(0.08) brightness(1.04);
  margin-bottom: -26px;
  transform: translateY(-26px);
}

.site-footer {
  margin: 0 -20px;
  padding: 54px clamp(26px, 7vw, 56px) calc(112px + env(safe-area-inset-bottom));
  background: #f2eeea;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1320px);
  margin: 0 auto;
  gap: 34px 24px;
  color: rgba(52, 45, 42, 0.78);
}

.footer-brand {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  max-width: 360px;
}

.footer-brand img {
  width: 116px;
  height: auto;
  filter: brightness(0) saturate(0) opacity(0.68);
}

.footer-brand p,
.footer-list a {
  margin: 0;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.68;
}

.footer-list {
  display: grid;
  gap: 11px;
  align-content: start;
}

.footer-list h3 {
  margin: 0 0 6px;
  color: rgba(52, 45, 42, 0.86);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-list a {
  color: rgba(52, 45, 42, 0.72);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: rgba(52, 45, 42, 0.92);
  transform: translateX(2px);
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (min-width: 740px) {
  body {
    padding: 28px;
  }

  .site-header {
    top: 56px;
    left: 72px;
    right: 72px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    background: rgba(55, 45, 40, 0.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 64px rgba(44, 34, 30, 0.1);
  }

  .sparkles {
    display: none;
  }

  .header-cta {
    display: inline-flex;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 15px;
  }

  .menu-button {
    display: flex;
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: calc(100svh - 56px);
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--soft-shadow);
  }

  .hero-inner {
    min-height: calc(100svh - 56px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    gap: 46px;
    padding: 132px clamp(48px, 5vw, 78px) 56px;
  }

  .hero-content {
    align-self: center;
    max-width: min(760px, 82vw);
  }

  .eyebrow {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(50px, 4.3vw, 68px);
    line-height: 1.05;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    max-width: 620px;
    grid-template-columns: minmax(270px, 1fr) minmax(230px, 0.82fr);
    gap: 18px;
    margin-top: 28px;
  }

  .btn {
    min-height: 56px;
    justify-content: center;
    padding: 0 28px;
    border-radius: 999px;
    font-size: 15px;
  }

  .btn-primary .cta-label-full {
    display: none;
  }

  .btn-primary .cta-label-tiny {
    display: none;
  }

  .btn-primary .cta-label-short {
    display: inline;
  }

  .btn-arrow,
  .chat-icon {
    display: none;
  }

  .hero-proof {
    display: flex;
    max-width: 700px;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(31, 24, 21, 0.28);
  }

  .hero-proof span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .hero-proof span::before {
    width: 7px;
    height: 7px;
    border: 1px solid rgba(243, 183, 206, 0.72);
    border-radius: 50%;
    background: rgba(243, 183, 206, 0.28);
    box-shadow: 0 0 18px rgba(216, 154, 165, 0.32);
    content: "";
  }

  .scroll-cue {
    display: inline-flex;
    align-self: end;
    justify-self: start;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(31, 24, 21, 0.28);
    transition:
      color 180ms ease,
      transform 180ms ease;
  }

  .scroll-cue:hover {
    color: rgba(255, 255, 255, 0.94);
    transform: translateY(1px);
  }

  .scroll-cue span {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
  }

  .scroll-cue span::before {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateX(-50%) rotate(45deg);
  }

  .mobile-sticky {
    display: none;
  }

  .why-section {
    margin: 28px -28px 0;
    padding: 0 28px 40px;
  }

  .why-section::before {
    right: 56px;
    left: 56px;
  }

  .why-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    margin-bottom: 82px;
    border-radius: 30px;
  }

  .why-proof-item {
    min-height: 150px;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 6px 18px;
    padding: 26px 24px;
  }

  .why-proof-icon {
    width: 52px;
    height: 52px;
    margin-top: 0;
  }

  .why-proof-item strong {
    font-size: 16px;
  }

  .why-proof-item p {
    max-width: 34ch;
    font-size: 13px;
  }

  .why-header {
    display: grid;
    width: min(100%, 1160px);
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 52px;
  }

  .why-header h2 {
    max-width: 720px;
    font-size: clamp(52px, 5vw, 78px);
  }

  .why-header p {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .why-header .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -22px;
  }

  .why-cards {
    width: min(100%, 1160px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 auto;
  }

  .why-card {
    min-height: 258px;
    grid-template-columns: 1fr;
    gap: 0;
    align-content: start;
    padding: 28px;
    transition:
      border-color 220ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .why-card:hover {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 80px rgba(83, 65, 58, 0.12);
    transform: translateY(-4px);
  }

  .why-card h3 {
    max-width: 12ch;
    min-height: 3.06em;
    margin-top: 44px;
    font-size: clamp(31px, 2.35vw, 38px);
  }

  .why-card p {
    grid-column: auto;
    margin-top: 22px;
    font-size: 15px;
  }

  .calm-section {
    margin: 0 -28px;
    padding: 56px 28px 54px;
  }

  .calm-section::before {
    right: 56px;
    left: 56px;
  }

  .calm-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
    gap: 40px 54px;
    align-items: center;
  }

  .calm-media {
    grid-row: 1 / span 2;
  }

  .calm-content {
    align-self: end;
  }

  .calm-support {
    align-self: start;
  }

  .calm-media {
    height: 620px;
    border-radius: 38px;
  }

  .calm-media img {
    object-position: 50% 44%;
  }

  .calm-content h2 {
    font-size: clamp(52px, 5.1vw, 76px);
  }

  .calm-lead {
    font-size: 16px;
  }

  .calm-list-item {
    min-height: 98px;
  }

  .calm-list-item strong {
    font-size: 16px;
  }

  .calm-list-item p {
    font-size: 14.5px;
  }

  .trainers-section {
    margin: 0 -28px;
    padding: 42px 28px 74px;
  }

  .trainers-section::before {
    right: 56px;
    left: 56px;
  }

  .trainers-inner {
    gap: 46px;
  }

  .trainers-header {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 48px;
    align-items: end;
  }

  .trainers-header .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -22px;
  }

  .trainers-header h2 {
    max-width: 720px;
    font-size: clamp(52px, 5vw, 78px);
  }

  .trainers-header p {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .trainers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trainer-card {
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
    border-radius: 38px;
  }

  .trainer-card-feature {
    grid-column: auto;
    min-height: auto;
  }

  .trainer-card-feature .trainer-photo {
    height: 100%;
  }

  .trainer-card-feature .trainer-photo img {
    object-position: 58% 44%;
  }

  .trainer-card:not(.trainer-card-feature) .trainer-photo {
    height: 100%;
  }

  .trainer-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 36px;
  }

  .trainer-card-feature .trainer-card-content h3 {
    font-size: clamp(40px, 4vw, 56px);
  }

  .trainer-card-content p {
    font-size: 15.5px;
  }

  .trainers-cta {
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.58fr) auto;
    gap: 30px;
    align-items: end;
    padding-top: 32px;
  }

  .trainers-cta h3 {
    max-width: 16ch;
    font-size: clamp(38px, 3.2vw, 50px);
  }

  .trainers-cta p {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .trainers-cta-actions {
    justify-content: flex-end;
  }

  .groups-section {
    margin: 0 -28px;
    padding: 36px 28px 56px;
  }

  .groups-section::before {
    right: 56px;
    left: 56px;
  }

  .groups-inner {
    gap: 46px;
  }

  .groups-header {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 48px;
    align-items: end;
  }

  .groups-header .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -22px;
  }

  .groups-header h2 {
    max-width: 780px;
    font-size: clamp(52px, 5vw, 76px);
  }

  .groups-header p {
    margin: 0 0 4px;
    font-size: 16px;
  }

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

  .group-card {
    min-height: 330px;
    padding: 28px;
    transition:
      border-color 220ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .group-card:hover {
    border-color: rgba(255, 255, 255, 0.94);
    box-shadow: 0 30px 90px rgba(83, 65, 58, 0.12);
    transform: translateY(-4px);
  }

  .group-card-feature {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .group-card-feature::after {
    right: -34px;
    bottom: 28px;
    width: 260px;
    height: 104px;
    opacity: 0.72;
  }

  .group-symbol {
    width: 48px;
    height: 48px;
  }

  .group-card h3 {
    font-size: clamp(34px, 3.7vw, 46px);
  }

  .group-card p {
    font-size: 15px;
  }

  .groups-note {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    padding-top: 32px;
  }

  .groups-note p {
    font-size: 15px;
  }

  .journey-section {
    margin: 0 -28px;
    padding: 56px 28px 136px;
  }

  .journey-section::before {
    right: 56px;
    left: 56px;
  }

  .journey-inner {
    gap: 46px;
  }

  .journey-header {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 48px;
    align-items: end;
  }

  .journey-header .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -22px;
  }

  .journey-header h2 {
    max-width: 760px;
    font-size: clamp(52px, 5vw, 76px);
  }

  .journey-header p {
    margin: 0 0 4px;
    font-size: 16px;
  }

  .journey-stage {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
    gap: 18px;
    align-items: stretch;
  }

  .journey-visual-shell {
    min-height: 620px;
  }

  .journey-visual {
    border-radius: 38px;
  }

  .journey-list {
    border-radius: 38px;
  }

  .journey-step {
    min-height: 124px;
    align-items: start;
    padding: 25px 26px;
  }

  .atmosphere-section,
  .reviews-section,
  .faq-section,
  .final-cta-section {
    margin: 0 -28px;
    padding: 56px 28px 136px;
  }

  .final-cta-section {
    padding-bottom: 82px;
  }

  .atmosphere-section::before,
  .reviews-section::before,
  .faq-section::before,
  .final-cta-section::before {
    right: 56px;
    left: 56px;
  }

  .atmosphere-inner,
  .reviews-inner,
  .faq-inner {
    gap: 46px;
  }

  .atmosphere-header,
  .reviews-header,
  .faq-header {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
    gap: 48px;
    align-items: end;
  }

  .atmosphere-header .section-kicker,
  .reviews-header .section-kicker,
  .faq-header .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -22px;
  }

  .atmosphere-header h2,
  .reviews-header h2,
  .faq-header h2 {
    max-width: 780px;
    font-size: clamp(52px, 5vw, 76px);
  }

  .atmosphere-header p,
  .reviews-header p,
  .faq-header p {
    margin: 0 0 4px;
    font-size: 16px;
  }

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

  .atmosphere-card {
    min-height: 430px;
    border-radius: 38px;
  }

  .atmosphere-card-main,
  .atmosphere-card-wide {
    min-height: 520px;
  }

  .reviews-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.68fr);
    gap: 18px;
  }

  .review-card-feature {
    grid-row: span 2;
    min-height: 620px;
  }

  .review-card {
    min-height: 301px;
    border-radius: 38px;
  }

  .faq-list {
    border-radius: 38px;
  }

  .final-cta-inner {
    min-height: 640px;
    border-radius: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    align-items: end;
  }

  .final-cta-content {
    padding: 48px;
  }

  .final-map {
    margin: 48px 48px 48px 0;
  }

  .final-map iframe {
    height: 366px;
  }

  .final-cta-content h2 {
    max-width: 720px;
    font-size: clamp(52px, 5vw, 76px);
  }

  .site-footer {
    margin: 0 -28px;
    padding: 64px 28px 72px;
  }

  .footer-inner {
    grid-template-columns: minmax(280px, 1fr) minmax(170px, 0.42fr) minmax(240px, 0.52fr);
    align-items: start;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-map {
    margin: 0 48px 48px;
  }
}

@media (min-width: 740px) and (max-width: 959px) {
  .why-header {
    display: block;
    margin-bottom: 48px;
  }

  .why-header .section-kicker {
    margin-bottom: 18px;
  }

  .why-header h2 {
    max-width: 680px;
    font-size: clamp(48px, 7vw, 56px);
  }

  .why-header p {
    max-width: 620px;
    margin-top: 22px;
  }

  .calm-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .calm-media {
    grid-row: auto;
    height: 560px;
  }

  .calm-content,
  .calm-support {
    max-width: 680px;
  }

  .trainers-header {
    display: block;
  }

  .trainers-header .section-kicker {
    margin-bottom: 18px;
  }

  .trainers-header h2 {
    max-width: 680px;
    font-size: clamp(48px, 7vw, 56px);
  }

  .trainers-header p {
    max-width: 620px;
    margin-top: 22px;
  }

  .trainer-card-feature {
    grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  }

  .trainer-card-feature .trainer-photo {
    height: 100%;
    min-height: 420px;
  }

  .trainer-card:not(.trainer-card-feature) .trainer-photo {
    height: 360px;
  }

  .trainer-photo-amelia img,
  .trainer-photo-anastasia img {
    object-position: 50% 36%;
  }

  .trainer-photo-regina img {
    object-position: 50% 32%;
  }

  .trainer-card-content {
    padding: 34px 32px 36px;
  }

  .trainers-cta {
    grid-template-columns: 1fr;
  }

  .groups-header {
    display: block;
  }

  .groups-header .section-kicker {
    margin-bottom: 18px;
  }

  .groups-header h2 {
    max-width: 680px;
    font-size: clamp(48px, 7vw, 56px);
  }

  .groups-header p {
    max-width: 620px;
    margin-top: 22px;
  }

  .groups-note {
    grid-template-columns: 1fr;
  }

  .atmosphere-header,
  .reviews-header,
  .faq-header {
    display: block;
  }

  .atmosphere-header .section-kicker,
  .reviews-header .section-kicker,
  .faq-header .section-kicker {
    margin-bottom: 18px;
  }

  .atmosphere-header h2,
  .reviews-header h2,
  .faq-header h2 {
    max-width: 680px;
    font-size: clamp(48px, 7vw, 56px);
  }

  .atmosphere-header p,
  .reviews-header p,
  .faq-header p {
    max-width: 620px;
    margin-top: 22px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card-feature {
    min-height: 520px;
  }
}

@media (min-width: 960px) and (max-width: 1119px) {
  .why-header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }

  .calm-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
    gap: 40px 48px;
  }

  .calm-media {
    height: 640px;
  }

  .trainers-header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }

  .trainer-card-feature {
    grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.62fr);
  }

  .trainer-desktop-profile {
    display: block;
  }

  .trainer-card-feature .trainer-details {
    display: none;
  }

  .trainer-card-feature .trainer-details .trainer-details-duplicate {
    display: none;
  }

  .trainer-profile-note {
    max-width: 38ch;
  }

  .trainers-cta {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  }

  .trainers-cta-actions {
    grid-column: 1 / -1;
    justify-self: start;
    justify-content: flex-start;
  }

  .groups-header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }

  .atmosphere-header,
  .reviews-header,
  .faq-header {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  }
}

@media (min-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.4fr);
  }

  .scroll-cue {
    align-self: end;
    margin-bottom: 0;
    transform: translateY(28px);
  }

  .scroll-cue:hover {
    transform: translateY(29px);
  }

  .hero-media-fallback {
    background:
      linear-gradient(90deg, rgba(80, 61, 53, 0.46) 0%, rgba(92, 70, 61, 0.18) 38%, rgba(92, 70, 61, 0) 68%),
      url("https://static.tildacdn.com/tild3764-3239-4133-b038-393262653730/hero-desktop-ribbon.webp");
    background-position: 50% 50%;
    background-size: cover;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(45, 35, 31, 0.24) 0%, rgba(45, 35, 31, 0.1) 10%, transparent 24%),
      radial-gradient(ellipse at 23% 50%, rgba(48, 38, 34, 0.48) 0%, rgba(48, 38, 34, 0.34) 30%, rgba(48, 38, 34, 0.12) 56%, transparent 74%),
      radial-gradient(circle at 16% 24%, rgba(255, 221, 230, 0.18), transparent 32%),
      linear-gradient(180deg, rgba(32, 27, 24, 0.01) 0%, rgba(32, 27, 24, 0.06) 54%, rgba(32, 27, 24, 0.34) 100%);
  }

  .why-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: initial;
    grid-auto-columns: initial;
  }

  .why-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .why-proof-item {
    min-height: 184px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 13px;
    padding: 30px 24px 28px;
  }

  .why-proof-icon {
    grid-row: auto;
    width: 50px;
    height: 50px;
    margin: 0 0 4px;
  }

  .why-proof-item strong {
    align-self: auto;
    padding-top: 0;
    font-size: 15px;
  }

  .why-proof-item p {
    grid-column: auto;
    max-width: 24ch;
    font-size: 12.5px;
  }

  .why-card {
    min-height: 326px;
  }

  .calm-inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.72fr);
    column-gap: 72px;
  }

  .calm-media {
    height: 700px;
  }

  .calm-content {
    padding-top: 16px;
  }

  .trainers-inner {
    gap: 54px;
  }

  .trainers-header h2 {
    max-width: 780px;
    font-size: clamp(52px, 4.4vw, 68px);
  }

  .trainers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .trainer-card {
    grid-template-columns: 1fr;
    min-height: 650px;
    cursor: pointer;
    transition:
      border-color 220ms ease,
      box-shadow 220ms ease,
      transform 220ms ease;
  }

  .trainer-card-feature {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 650px;
  }

  .trainer-card-feature .trainer-photo,
  .trainer-card:not(.trainer-card-feature) .trainer-photo {
    height: 384px;
    min-height: 384px;
  }

  .trainer-photo img {
    object-fit: cover;
    transform-origin: 50% 50%;
  }

  .trainer-photo-amelia img {
    object-position: 50% 42%;
    transform: none;
  }

  .trainer-photo-anastasia img {
    object-position: 50% 42%;
    transform: none;
  }

  .trainer-photo-regina img {
    object-position: 50% 42%;
    transform: none;
  }

  .trainer-card:hover {
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 34px 96px rgba(83, 65, 58, 0.14);
    transform: translateY(-4px);
  }

  .trainer-card-content {
    min-height: 264px;
    justify-content: flex-start;
    padding: 32px 30px 34px;
  }

  .trainer-card-feature .trainer-card-content h3,
  .trainer-card-content h3 {
    font-size: clamp(34px, 2.35vw, 40px);
  }

  .trainer-card-content p {
    font-size: 14.5px;
  }

  .trainer-profile-trigger {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 22px 0 0;
    border: 0;
    background: transparent;
    color: rgba(200, 132, 146, 0.88);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .trainer-profile-trigger::after {
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 180ms ease;
  }

  .trainer-card:hover .trainer-profile-trigger::after,
  .trainer-profile-trigger:hover::after {
    transform: translateX(3px) rotate(45deg);
  }

  .trainer-desktop-profile,
  .trainer-details {
    display: none;
  }

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

  .group-card {
    min-height: 430px;
  }

  .group-card-feature {
    grid-column: auto;
  }

  .group-card::after {
    right: -58px;
    bottom: 28px;
  }

  .group-card h3 {
    max-width: none;
    font-size: clamp(31px, 2.4vw, 40px);
  }

  .group-card p {
    font-size: 14.5px;
  }

  .atmosphere-gallery {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  }

  .atmosphere-card-main {
    grid-row: span 2;
    min-height: 620px;
  }

  .atmosphere-card-wide {
    grid-column: 1 / -1;
    min-height: 420px;
  }
}

@media (min-width: 1120px) and (max-width: 1439px) {
  .trainer-card-feature .trainer-card-content h3,
  .trainer-card-content h3 {
    max-width: none;
    font-size: clamp(30px, 2.35vw, 34px);
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .journey-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .journey-visual-shell {
    position: sticky;
    top: 86px;
    z-index: 4;
    min-height: clamp(340px, 45vw, 430px);
  }

  .journey-visual {
    border-radius: 36px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.68),
      0 26px 76px rgba(83, 65, 58, 0.1);
  }

  .journey-list {
    border-radius: 36px;
  }

  .journey-step {
    min-height: 118px;
    padding: 24px 28px;
  }

  .journey-step h3 {
    font-size: clamp(34px, 4.4vw, 44px);
  }

  .journey-step p {
    max-width: 58ch;
    font-size: 15px;
  }

  .atmosphere-gallery,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .atmosphere-card,
  .atmosphere-card-main,
  .atmosphere-card-wide {
    min-height: 420px;
  }
}

@media (min-width: 1440px) {
  .trainers-section {
    padding-top: 42px;
    padding-bottom: 82px;
  }

  .trainers-inner {
    width: min(100%, 1320px);
    gap: 54px;
    align-items: start;
  }

  .trainers-header {
    grid-column: 1 / -1;
  }

  .trainers-grid {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .trainer-card,
  .trainer-card-feature {
    min-height: 670px;
    grid-template-columns: 1fr;
    border-radius: 34px;
  }

  .trainer-card-feature .trainer-photo,
  .trainer-card:not(.trainer-card-feature) .trainer-photo {
    height: 408px;
    min-height: 408px;
  }

  .trainer-card-feature .trainer-photo img {
    object-position: 50% 42%;
  }

  .trainer-card-content {
    min-height: 260px;
    justify-content: flex-start;
    padding: 30px 34px 32px;
  }

  .trainer-card-feature .trainer-card-content h3,
  .trainer-card-content h3 {
    max-width: min(100%, 20ch);
    font-size: clamp(36px, 2.15vw, 44px);
  }

  .trainers-cta {
    grid-column: 1 / -1;
  }

  .groups-section {
    padding-top: 36px;
    padding-bottom: 60px;
  }

  .groups-inner {
    width: min(100%, 1320px);
    gap: 54px;
  }

  .groups-grid {
    gap: 18px;
  }

  .group-card {
    min-height: 430px;
    border-radius: 34px;
  }

  .group-card h3 {
    font-size: clamp(34px, 2.05vw, 42px);
  }

  .journey-section {
    padding-top: 60px;
    padding-bottom: 154px;
  }

  .journey-inner {
    width: min(100%, 1320px);
    gap: 54px;
  }

  .journey-stage {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.72fr);
    gap: 18px;
  }

  .journey-visual-shell {
    min-height: 660px;
  }

  .journey-visual {
    border-radius: 42px;
  }

  .journey-list {
    border-radius: 42px;
  }

  .journey-step {
    min-height: 132px;
    padding: 28px 30px;
  }

  .journey-step h3 {
    font-size: clamp(34px, 2vw, 42px);
  }

  .atmosphere-inner,
  .reviews-inner,
  .faq-inner,
  .final-cta-inner,
  .footer-inner {
    width: min(100%, 1320px);
  }
}

@media (min-width: 1280px) {
  .header-cta {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (min-width: 820px) {
  .site-header {
    justify-content: space-between;
    padding: 8px 10px 8px 30px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(55, 45, 40, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 64px rgba(44, 34, 30, 0.08);
  }

  .desktop-nav {
    display: flex;
    gap: clamp(12px, 1.6vw, 30px);
    font-size: clamp(13px, 1.15vw, 14px);
    font-weight: 500;
  }

  .desktop-nav a {
    white-space: nowrap;
    opacity: 0.86;
    transition: opacity 180ms ease;
  }

  .desktop-nav a:hover {
    opacity: 1;
  }

  .header-cta {
    min-height: 48px;
    padding: 0 24px;
    font-size: 15px;
  }

  .menu-button {
    display: none;
  }
}

@media (min-width: 1120px) {
  .site-header {
    justify-content: flex-end;
  }

  .desktop-nav {
    position: absolute;
    left: 50%;
    gap: clamp(24px, 3vw, 52px);
    transform: translateX(-50%);
  }
}

@media (min-width: 1400px) {
  .site-header {
    left: 86px;
    right: 86px;
  }

  .hero-inner {
    padding-right: 92px;
    padding-left: 92px;
  }
}

@media (max-width: 739px) {
  .group-tags {
    min-height: 0;
  }

  .journey-section {
    padding-top: 52px;
  }

  .journey-visual-shell {
    position: sticky;
    top: max(20px, env(safe-area-inset-top));
    z-index: 4;
    min-height: clamp(238px, 58vw, 292px);
  }

  .journey-visual {
    border-radius: 30px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.66),
      0 22px 64px rgba(83, 65, 58, 0.1);
  }

  .journey-ribbon-one {
    left: -70px;
    width: 320px;
  }

  .journey-orbit {
    right: 22px;
    width: 76px;
    height: 76px;
  }

  .journey-list {
    margin-top: 2px;
  }

  .journey-step {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 20px;
  }

  .journey-number {
    width: 64px;
    min-height: 48px;
    font-size: clamp(28px, 8vw, 38px);
  }

  .journey-step p {
    max-width: none;
  }

  .atmosphere-section,
  .reviews-section,
  .faq-section,
  .final-cta-section {
    padding-top: 52px;
    padding-bottom: 96px;
  }

  .atmosphere-card,
  .review-card {
    min-height: 340px;
    border-radius: 30px;
  }

  .atmosphere-card-main,
  .review-card-feature {
    min-height: 430px;
  }

  .atmosphere-card-copy,
  .review-card,
  .final-cta-content {
    padding: 24px;
  }

  .faq-list {
    border-radius: 30px;
  }

  .faq-list summary {
    padding: 22px 52px 22px 22px;
    font-size: 15.5px;
  }

  .faq-list p {
    margin: -4px 22px 22px;
  }

  .final-cta-inner {
    min-height: 560px;
    border-radius: 32px;
  }

  .final-map {
    margin: 0 24px 24px;
    border-radius: 26px;
  }

  .final-map iframe {
    height: 256px;
  }

  .final-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }

  .hero-actions .btn-secondary {
    display: none;
  }

  .btn-primary .cta-label-full {
    display: inline;
  }

  .btn-primary .cta-label-tiny {
    display: none;
  }

  .btn-primary .cta-label-short {
    display: none;
  }

  .sparkles {
    display: block;
  }

  .site-header {
    top: max(30px, env(safe-area-inset-top));
    left: auto;
    right: 28px;
    width: 70px;
    justify-content: center;
    min-height: 70px;
    padding: 6px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(55, 45, 40, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 56px rgba(44, 34, 30, 0.16);
  }

  .header-actions {
    align-self: start;
  }

  .header-mobile-logo {
    display: none;
  }

  .hero-brand-logo {
    display: block;
    position: absolute;
    top: clamp(138px, 20svh, 174px);
    left: 50%;
    z-index: 3;
    margin: 0;
    transform: translateX(-50%);
  }

  .hero-brand-logo::before {
    position: absolute;
    inset: -32px -62px;
    z-index: 0;
    border-radius: 50%;
    background:
      radial-gradient(ellipse at 50% 54%, rgba(38, 30, 27, 0.08) 0%, rgba(38, 30, 27, 0.035) 44%, transparent 76%),
      radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.2), transparent 58%);
    content: "";
    filter: blur(10px);
    pointer-events: none;
  }

  .hero-brand-logo img {
    height: clamp(94px, 24vw, 116px);
    max-width: 240px;
  }

  .menu-button {
    display: flex;
    width: 58px;
    height: 58px;
  }

  .hero-media-fallback {
    background:
      linear-gradient(90deg, rgba(54, 42, 37, 0.28) 0%, rgba(58, 45, 40, 0.08) 58%, rgba(58, 45, 40, 0) 100%),
      url("https://static.tildacdn.com/tild3464-6131-4935-b935-373138313335/hero-mobile-ribbon.webp");
    background-position: 57% 50%;
    background-size: cover;
  }

  .hero-inner {
    padding-top: 178px;
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .hero,
  .hero-inner {
    height: var(--hero-lock-height, 100svh);
    min-height: var(--hero-lock-height, 100svh);
  }

  .hero-content {
    animation: heroFade 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
    justify-self: center;
    text-align: center;
  }

  .trainer-photo {
    height: clamp(410px, 112vw, 500px);
  }

  .trainer-photo-amelia img,
  .trainer-photo-anastasia img {
    object-position: 50% 32%;
  }

  .trainer-photo-regina img {
    object-position: 50% 28%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(30px, 7vw, 40px);
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
  }

}

@media (max-width: 430px) {
  .site-header {
    right: 24px;
  }

  .hero-brand-logo {
    top: clamp(132px, 19svh, 164px);
  }

  .hero-brand-logo img {
    height: clamp(94px, 24vw, 104px);
    max-width: 226px;
  }

  .menu-button {
    width: 56px;
    height: 56px;
  }

  .hero-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: 30px;
  }

  .eyebrow {
    font-size: 14px;
  }

  .mobile-sticky {
    right: 18px;
    left: 18px;
  }

  .mobile-sticky a {
    font-size: 14px;
  }

  .mobile-sticky {
    grid-template-columns: 0.8fr 1.08fr 1.08fr;
    gap: 5px;
  }
}

@media (max-width: 410px) {
  .btn-primary .cta-label-full {
    display: none;
  }

  .btn-primary .cta-label-tiny {
    display: inline;
  }

  .btn-primary .cta-label-short {
    display: none;
  }
}

@media (max-width: 379px) {
  .site-header {
    right: 20px;
  }

  .hero-inner {
    padding-top: 178px;
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-brand-logo img {
    height: 90px;
    max-width: 206px;
  }

  .btn {
    min-height: 58px;
    padding: 0 22px;
    font-size: 15px;
  }

  .btn-primary .cta-label-full {
    display: none;
  }

  .btn-primary .cta-label-tiny {
    display: inline;
  }

  .btn-primary .cta-label-short {
    display: none;
  }

}

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

/* Prepared trainer portraits fill the card media area. */
.trainer-photo img,
.trainer-photo-amelia img,
.trainer-photo-anastasia img,
.trainer-photo-regina img,
.trainer-card-feature .trainer-photo img {
  object-fit: cover;
  object-position: center center;
}

/* Differentiated group ribbon marks: each program has its own soft movement trace. */
.group-card::after {
  right: -24px;
  bottom: 6px;
  width: 282px;
  height: 150px;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg width='282' height='150' viewBox='0 0 282 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 122C74 42 152 34 264 86' stroke='%23D89AA5' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M70 136C128 86 188 78 266 108' stroke='%23D89AA5' stroke-width='1.45' stroke-linecap='round' opacity='.52'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.5;
  box-shadow: none;
  transform: rotate(-3deg);
}

.group-card:nth-child(1)::after {
  right: -28px;
  bottom: 18px;
  width: 230px;
  height: 116px;
  background-image: url("data:image/svg+xml,%3Csvg width='230' height='116' viewBox='0 0 230 116' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 90C70 62 124 58 212 74' stroke='%23D89AA5' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M20 90C24 86 28 83 32 80' stroke='white' stroke-width='1.1' stroke-linecap='round' opacity='.72'/%3E%3Ccircle cx='74' cy='66' r='3.5' fill='%23D89AA5' opacity='.42'/%3E%3C/svg%3E");
  opacity: 0.48;
  transform: rotate(-1deg);
}

.group-card:nth-child(2)::after {
  right: -28px;
  bottom: 12px;
  width: 274px;
  height: 124px;
  background-image: url("data:image/svg+xml,%3Csvg width='274' height='124' viewBox='0 0 274 124' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 82C58 58 94 58 136 78C176 98 214 98 258 70' stroke='%23D89AA5' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M34 102C72 82 112 82 148 96C186 110 224 108 260 88' stroke='%23D89AA5' stroke-width='1.35' stroke-linecap='round' opacity='.5'/%3E%3C/svg%3E");
  opacity: 0.5;
  transform: rotate(0deg);
}

.group-card:nth-child(3)::after {
  right: -24px;
  bottom: 0;
  width: 300px;
  height: 168px;
  background-image: url("data:image/svg+xml,%3Csvg width='300' height='168' viewBox='0 0 300 168' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 138C62 40 152 38 190 82C222 118 252 110 280 70' stroke='%23D89AA5' stroke-width='3' stroke-linecap='round' opacity='.7'/%3E%3Cpath d='M104 142C132 102 182 92 268 114' stroke='%23D89AA5' stroke-width='1.4' stroke-linecap='round' opacity='.5'/%3E%3Cpath d='M48 126C84 88 110 78 140 82' stroke='white' stroke-width='1.05' stroke-linecap='round' opacity='.58'/%3E%3C/svg%3E");
  opacity: 0.62;
  transform: rotate(-4deg);
}

.group-card:nth-child(4)::after {
  right: -44px;
  bottom: -8px;
  width: 354px;
  height: 188px;
  background-image: url("data:image/svg+xml,%3Csvg width='354' height='188' viewBox='0 0 354 188' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 154C58 54 130 30 184 72C226 104 252 146 336 72' stroke='%23D89AA5' stroke-width='3.35' stroke-linecap='round' opacity='.66'/%3E%3Cpath d='M74 166C112 94 184 88 236 126C270 150 308 130 336 96' stroke='%23D89AA5' stroke-width='1.7' stroke-linecap='round' opacity='.58'/%3E%3Cpath d='M104 146C146 118 194 120 236 146' stroke='white' stroke-width='1.06' stroke-linecap='round' opacity='.58'/%3E%3Ccircle cx='286' cy='86' r='8' fill='%23D89AA5' opacity='.18'/%3E%3Ccircle cx='286' cy='86' r='17' stroke='%23D89AA5' stroke-width='1.1' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.18) 30%, #000 68%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.18) 30%, #000 68%);
  transform: rotate(-4deg);
}

.group-card:nth-child(5)::after {
  right: -44px;
  bottom: -8px;
  width: 354px;
  height: 188px;
  background-image: url("data:image/svg+xml,%3Csvg width='354' height='188' viewBox='0 0 354 188' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 154C52 58 118 24 176 62C226 95 250 146 338 62' stroke='%23D89AA5' stroke-width='3.35' stroke-linecap='round' opacity='.64'/%3E%3Cpath d='M58 170C98 104 166 84 224 118C270 145 308 132 342 92' stroke='%23D89AA5' stroke-width='1.75' stroke-linecap='round' opacity='.6'/%3E%3Cpath d='M102 142C144 106 196 110 252 150' stroke='%23D89AA5' stroke-width='1.25' stroke-linecap='round' opacity='.36'/%3E%3Cpath d='M128 132C162 112 204 118 240 142' stroke='white' stroke-width='1.05' stroke-linecap='round' opacity='.56'/%3E%3Ccircle cx='286' cy='86' r='8' fill='%23D89AA5' opacity='.18'/%3E%3Ccircle cx='286' cy='86' r='18' stroke='%23D89AA5' stroke-width='1.05' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.66;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.16) 32%, #000 70%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.16) 32%, #000 70%);
  transform: rotate(-4deg);
}

.group-card:nth-child(6)::after {
  right: -36px;
  bottom: 2px;
  width: 310px;
  height: 146px;
  background-image: url("data:image/svg+xml,%3Csvg width='310' height='146' viewBox='0 0 310 146' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 112C62 88 108 84 154 98C202 112 246 104 292 72' stroke='%23D89AA5' stroke-width='2.55' stroke-linecap='round' opacity='.56'/%3E%3Cpath d='M52 128C100 112 150 112 204 124C236 132 266 122 294 100' stroke='%23D89AA5' stroke-width='1.35' stroke-linecap='round' opacity='.4'/%3E%3Cpath d='M72 92C104 78 136 76 168 84' stroke='white' stroke-width='1.05' stroke-linecap='round' opacity='.54'/%3E%3Ccircle cx='238' cy='92' r='7' fill='%23D89AA5' opacity='.13'/%3E%3C/svg%3E");
  opacity: 0.56;
  transform: rotate(-2deg);
}

@media (min-width: 960px) {
  .atmosphere-experience {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
    gap: 18px;
    align-items: stretch;
  }

  .atmosphere-stage {
    min-height: 680px;
  }

  .atmosphere-rail {
    align-content: stretch;
    gap: 12px;
  }

  .atmosphere-story {
    min-height: 126px;
    padding: 22px 20px;
    border-radius: 30px;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-experience {
    gap: 14px;
  }

  .atmosphere-stage {
    min-height: clamp(560px, 72vw, 680px);
  }

  .atmosphere-rail {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    margin: 0 -28px;
    padding: 0 28px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .atmosphere-rail::-webkit-scrollbar {
    display: none;
  }

  .atmosphere-story {
    min-height: 132px;
    scroll-snap-align: start;
  }

  .atmosphere-modal-panel {
    grid-template-columns: 1fr;
    width: min(100%, 720px);
    overflow-y: auto;
  }

  .atmosphere-modal-media {
    min-height: min(54vh, 480px);
  }

  .atmosphere-modal-copy {
    align-content: start;
    padding: 0 14px 18px;
  }
}

@media (max-width: 739px) {
  .atmosphere-inner {
    gap: 32px;
  }

  .atmosphere-experience {
    gap: 12px;
  }

  .atmosphere-stage {
    min-height: clamp(590px, 154vw, 700px);
    border-radius: 32px;
  }

  .atmosphere-frame::before {
    inset: 18px;
    border-radius: 26px;
  }

  .atmosphere-video-chip {
    top: 20px;
    left: 20px;
    min-height: 31px;
    padding: 0 12px;
    font-size: 10px;
  }

  .atmosphere-stage-play {
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .atmosphere-stage-copy {
    gap: 14px;
    padding: 24px;
  }

  .atmosphere-stage-copy h3 {
    font-size: clamp(39px, 10.8vw, 48px);
  }

  .atmosphere-stage-copy p {
    font-size: 14.5px;
  }

  .atmosphere-stage-actions {
    flex-direction: column;
  }

  .atmosphere-primary-action,
  .atmosphere-secondary-action {
    width: 100%;
    min-height: 52px;
  }

  .atmosphere-rail {
    display: flex;
    gap: 10px;
    margin: 0 -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .atmosphere-rail::-webkit-scrollbar {
    display: none;
  }

  .atmosphere-story {
    flex: 0 0 min(78vw, 310px);
    min-height: 118px;
    scroll-snap-align: start;
  }

  .atmosphere-modal {
    padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  }

  .atmosphere-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    padding: 12px;
    overflow-y: auto;
    border-radius: 30px;
  }

  .atmosphere-modal-close {
    top: 14px;
    right: 14px;
  }

  .atmosphere-modal-media {
    min-height: min(58vh, 430px);
    border-radius: 24px;
  }

  .atmosphere-modal-copy {
    align-content: start;
    gap: 14px;
    padding: 4px 8px 14px;
  }

  .atmosphere-modal-copy h3 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .atmosphere-modal-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .atmosphere-modal-nav:hover,
  .atmosphere-modal-nav:focus-visible {
    transform: scale(1.04);
  }
}

/* Atmosphere layout alternative: immersive stage first, compact filmstrip navigation second. */
.atmosphere-experience {
  grid-template-columns: 1fr;
  gap: 14px;
}

.atmosphere-stage {
  min-height: clamp(620px, 58vw, 760px);
}

.atmosphere-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 54px rgba(83, 65, 58, 0.07);
  backdrop-filter: blur(16px);
}

.atmosphere-story {
  min-height: 96px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  padding: 15px 14px;
  border-color: transparent;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.atmosphere-story:hover,
.atmosphere-story:focus-visible,
.atmosphere-story.is-active {
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 12px 34px rgba(83, 65, 58, 0.06);
}

.atmosphere-story span {
  font-size: 25px;
}

.atmosphere-story strong {
  font-size: 14px;
}

.atmosphere-story small {
  font-size: 12.5px;
  line-height: 1.36;
}

@media (min-width: 1280px) {
  .atmosphere-stage {
    min-height: 740px;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-rail {
    display: flex;
    margin: 0 -28px;
    padding: 10px 28px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .atmosphere-story {
    flex: 0 0 222px;
    min-height: 74px;
    align-items: center;
    scroll-snap-align: start;
  }

  .atmosphere-story small {
    display: none;
  }
}

@media (max-width: 739px) {
  .atmosphere-stage {
    min-height: clamp(590px, 154vw, 700px);
  }

  .atmosphere-rail {
    display: flex;
    gap: 8px;
    margin: 0 -20px;
    padding: 10px 20px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .atmosphere-story {
    flex: 0 0 min(58vw, 220px);
    min-height: 74px;
    align-items: center;
    scroll-snap-align: start;
  }

  .atmosphere-story small {
    display: none;
  }
}

/* Atmosphere collage: media-first version. */
.atmosphere-collage {
  position: relative;
  display: flex;
  gap: 14px;
  margin: 0 calc((100vw - min(100%, 1160px)) / -2);
  padding: 4px max(20px, calc((100vw - min(100%, 1160px)) / 2)) 18px;
  min-height: 0;
  overflow-x: auto;
  scroll-padding-inline: max(20px, calc((100vw - min(100%, 1160px)) / 2));
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.atmosphere-collage::-webkit-scrollbar {
  display: none;
}

.atmosphere-collage-item {
  position: relative;
  display: grid;
  flex: 0 0 360px;
  overflow: hidden;
  min-width: 0;
  min-height: 460px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 26px 76px rgba(83, 65, 58, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.atmosphere-collage-item::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 26% 78%, rgba(42, 34, 31, 0.44), transparent 54%),
    linear-gradient(180deg, transparent 32%, rgba(42, 34, 31, 0.48) 100%);
  content: "";
  pointer-events: none;
}

.atmosphere-collage-item:hover,
.atmosphere-collage-item:focus-visible,
.atmosphere-collage-item.is-active {
  border-color: rgba(216, 154, 165, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 34px 92px rgba(83, 65, 58, 0.13);
  transform: translateY(-2px);
}

.atmosphere-collage-item:focus-visible {
  outline: 2px solid rgba(200, 132, 146, 0.72);
  outline-offset: 4px;
}

.atmosphere-collage-item:nth-child(6n + 1) {
  flex-basis: clamp(390px, 38vw, 560px);
  min-height: clamp(520px, 46vw, 680px);
  border-radius: 42px;
}

.atmosphere-collage-item:nth-child(6n + 2) {
  flex-basis: clamp(270px, 24vw, 340px);
  min-height: clamp(560px, 48vw, 720px);
  border-radius: 999px;
}

.atmosphere-collage-item:nth-child(6n + 3) {
  flex-basis: clamp(300px, 27vw, 420px);
  min-height: clamp(380px, 34vw, 500px);
  align-self: end;
  border-radius: 32px;
}

.atmosphere-collage-item:nth-child(6n + 4) {
  flex-basis: clamp(430px, 42vw, 620px);
  min-height: clamp(350px, 30vw, 460px);
  align-self: center;
  border-radius: 34px;
}

.atmosphere-collage-item:nth-child(6n + 5) {
  flex-basis: clamp(300px, 28vw, 420px);
  align-self: end;
  min-height: clamp(360px, 30vw, 460px);
  border-radius: 50% 50% 34px 34px;
}

.atmosphere-collage-item:nth-child(6n) {
  flex-basis: clamp(330px, 30vw, 470px);
  min-height: clamp(440px, 36vw, 560px);
  align-self: start;
  border-radius: 38px 38px 999px 999px;
}

.atmosphere-collage-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.78), transparent 26%),
    radial-gradient(circle at 74% 70%, rgba(216, 154, 165, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(248, 246, 243, 0.92), rgba(226, 198, 190, 0.48));
  transition: transform 620ms ease, filter 240ms ease;
}

.atmosphere-collage-media::before,
.atmosphere-collage-media::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.atmosphere-collage-media::before {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 86px);
}

.atmosphere-collage-media::after {
  right: -16%;
  bottom: 22%;
  width: 72%;
  height: 22%;
  border: solid rgba(216, 154, 165, 0.38);
  border-width: 2px 0 0;
  border-radius: 50%;
  transform: rotate(-16deg);
}

.atmosphere-collage-item:hover .atmosphere-collage-media,
.atmosphere-collage-item:focus-visible .atmosphere-collage-media,
.atmosphere-collage-item.is-active .atmosphere-collage-media {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.atmosphere-collage-support {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.7), transparent 22%),
    radial-gradient(circle at 48% 74%, rgba(216, 154, 165, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(242, 238, 234, 0.94), rgba(215, 178, 170, 0.5));
}

.atmosphere-collage-details {
  background:
    radial-gradient(circle at 32% 72%, rgba(216, 154, 165, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(248, 246, 243, 0.96), rgba(232, 211, 204, 0.58));
}

.atmosphere-collage-group {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 80% 72%, rgba(216, 154, 165, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(242, 238, 234, 0.94), rgba(226, 198, 190, 0.46));
}

.atmosphere-collage-starts {
  background:
    radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.84), transparent 24%),
    radial-gradient(circle at 34% 76%, rgba(216, 154, 165, 0.2), transparent 28%),
    linear-gradient(140deg, rgba(248, 246, 243, 0.94), rgba(215, 178, 170, 0.52));
}

.atmosphere-collage-caption {
  position: relative;
  z-index: 3;
  display: grid;
  align-self: end;
  gap: 8px;
  padding: 24px;
  pointer-events: none;
}

.atmosphere-collage-caption small {
  color: rgba(255, 221, 228, 0.96);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atmosphere-collage-caption strong {
  max-width: 12ch;
  color: #ffffff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 0.96;
  text-shadow: 0 16px 48px rgba(42, 34, 31, 0.32);
}

.atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption {
  padding: 32px 26px;
}

.atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption strong,
.atmosphere-collage-item:nth-child(6n + 5) .atmosphere-collage-caption strong {
  font-size: clamp(28px, 2.8vw, 38px);
}

.atmosphere-collage-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: 4px auto 0;
  padding: 0 8px;
}

.atmosphere-collage-footer p {
  margin: 0;
  color: rgba(119, 115, 111, 0.92);
  font-size: 14.5px;
  font-weight: 520;
  line-height: 1.58;
}

@media (min-width: 1120px) {
  .atmosphere-collage-item:nth-child(6n + 1) {
    margin-top: 26px;
  }

  .atmosphere-collage-item:nth-child(6n + 3) {
    margin-top: 72px;
  }

  .atmosphere-collage-item:nth-child(6n + 5) {
    margin-bottom: 28px;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-collage {
    margin: 0 -28px;
    padding: 4px 28px 18px;
    scroll-padding-inline: 28px;
  }

  .atmosphere-collage-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 739px) {
  .atmosphere-collage {
    gap: 12px;
    margin: 0 -20px;
    padding: 0 20px 10px;
    scroll-padding-inline: 20px;
  }

  .atmosphere-collage::-webkit-scrollbar {
    display: none;
  }

  .atmosphere-collage-item,
  .atmosphere-collage-item:nth-child(n) {
    flex: 0 0 min(78vw, 320px);
    min-height: 460px;
    border-radius: 32px;
    scroll-snap-align: start;
    align-self: stretch;
    margin: 0;
  }

  .atmosphere-collage-item:nth-child(6n + 1) {
    flex-basis: min(84vw, 340px);
  }

  .atmosphere-collage-item:nth-child(6n + 3),
  .atmosphere-collage-item:nth-child(6n + 4) {
    min-height: 360px;
  }

  .atmosphere-collage-caption {
    padding: 24px;
  }

  .atmosphere-collage-caption strong {
    font-size: clamp(34px, 10vw, 44px);
  }

  .atmosphere-collage-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: stretch;
    padding: 0;
  }

  .atmosphere-collage-footer .atmosphere-primary-action {
    width: 100%;
  }
}

/* Atmosphere collage final layout: compact multi-row editorial grid. */
.atmosphere-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.atmosphere-collage-item,
.atmosphere-collage-item:nth-child(n) {
  flex: initial;
  width: auto;
  min-height: 0;
  margin: 0;
  border-radius: 30px;
  scroll-snap-align: none;
}

.atmosphere-collage-item:nth-child(6n + 1) {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 430px;
}

.atmosphere-collage-item:nth-child(6n + 2) {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 430px;
  border-radius: 30px;
}

.atmosphere-collage-item:nth-child(6n + 3) {
  grid-column: span 4;
  min-height: 210px;
  align-self: stretch;
  border-radius: 30px;
}

.atmosphere-collage-item:nth-child(6n + 4) {
  grid-column: span 4;
  min-height: 210px;
  align-self: stretch;
  border-radius: 30px;
}

.atmosphere-collage-item:nth-child(6n + 5) {
  grid-column: span 4;
  min-height: 230px;
  align-self: stretch;
  border-radius: 30px;
}

.atmosphere-collage-item:nth-child(6n) {
  grid-column: span 4;
  min-height: 230px;
  align-self: stretch;
  border-radius: 30px;
}

.atmosphere-collage-caption {
  padding: 22px;
}

.atmosphere-collage-caption strong {
  max-width: 14ch;
  font-size: clamp(28px, 2.5vw, 42px);
}

.atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption {
  padding: 22px;
}

.atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption strong,
.atmosphere-collage-item:nth-child(6n + 5) .atmosphere-collage-caption strong {
  font-size: clamp(28px, 2.5vw, 40px);
}

@media (min-width: 1120px) {
  .atmosphere-collage-item:nth-child(n) {
    margin: 0;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-collage {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .atmosphere-collage-item:nth-child(6n + 1),
  .atmosphere-collage-item:nth-child(6n + 2) {
    grid-column: span 4;
    min-height: 360px;
  }

  .atmosphere-collage-item:nth-child(6n + 3),
  .atmosphere-collage-item:nth-child(6n + 4),
  .atmosphere-collage-item:nth-child(6n + 5),
  .atmosphere-collage-item:nth-child(6n) {
    grid-column: span 4;
    min-height: 220px;
  }
}

@media (max-width: 739px) {
  .atmosphere-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .atmosphere-collage-item,
  .atmosphere-collage-item:nth-child(n) {
    flex: initial;
    grid-column: span 1;
    min-height: 230px;
    border-radius: 24px;
  }

  .atmosphere-collage-item:nth-child(6n + 1) {
    grid-column: span 2;
    min-height: 360px;
  }

  .atmosphere-collage-item:nth-child(6n + 2) {
    min-height: 300px;
  }

  .atmosphere-collage-item:nth-child(6n + 3),
  .atmosphere-collage-item:nth-child(6n + 4) {
    min-height: 220px;
  }

  .atmosphere-collage-caption {
    padding: 18px;
  }

  .atmosphere-collage-caption small {
    font-size: 9px;
  }

  .atmosphere-collage-caption strong,
  .atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption strong,
  .atmosphere-collage-item:nth-child(6n + 5) .atmosphere-collage-caption strong {
    font-size: clamp(25px, 7.6vw, 34px);
  }
}

.atmosphere-collage-media,
.atmosphere-modal-media {
  background-position: center;
  background-size: cover;
}

.atmosphere-collage-item.has-media .atmosphere-collage-media {
  background-image:
    linear-gradient(180deg, rgba(248, 246, 243, 0.12), rgba(42, 34, 31, 0.32)),
    var(--media-src);
}

.atmosphere-collage-item.is-clean-photo .atmosphere-collage-media {
  background-image:
    linear-gradient(180deg, rgba(42, 34, 31, 0.02) 0%, rgba(42, 34, 31, 0.08) 48%, rgba(42, 34, 31, 0.36) 100%),
    var(--media-src);
}

.atmosphere-collage-item.is-clean-photo .atmosphere-collage-media::before,
.atmosphere-collage-item.is-clean-photo .atmosphere-collage-media::after {
  display: none;
}

.atmosphere-modal-panel.has-media .atmosphere-modal-media {
  background-image:
    linear-gradient(180deg, rgba(248, 246, 243, 0.08), rgba(42, 34, 31, 0.14)),
    var(--media-src);
}

.atmosphere-modal-panel.has-media .atmosphere-modal-media::before {
  display: none;
}

/* Responsive photo grid inspired by CSS Grid photo-wall layouts. */
.atmosphere-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  grid-auto-rows: 145px;
  grid-auto-flow: dense;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.atmosphere-collage-item,
.atmosphere-collage-item:nth-child(n) {
  flex: initial;
  width: auto;
  min-height: 0;
  margin: 0;
  border-radius: 26px;
  scroll-snap-align: none;
  align-self: stretch;
}

.atmosphere-collage-item:nth-child(6n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

.atmosphere-collage-item:nth-child(6n + 2) {
  grid-column: span 1;
  grid-row: span 2;
}

.atmosphere-collage-item:nth-child(6n + 3) {
  grid-column: span 2;
  grid-row: span 1;
}

.atmosphere-collage-item:nth-child(6n + 4) {
  grid-column: span 1;
  grid-row: span 1;
}

.atmosphere-collage-item:nth-child(6n + 5) {
  grid-column: span 2;
  grid-row: span 1;
}

.atmosphere-collage-item:nth-child(6n) {
  grid-column: span 1;
  grid-row: span 2;
}

.atmosphere-collage-item:nth-child(10n + 4),
.atmosphere-collage-item:nth-child(10n + 9) {
  grid-column: span 2;
  grid-row: span 2;
}

.atmosphere-collage-item:nth-child(12n + 7) {
  grid-column: span 3;
  grid-row: span 2;
}

.atmosphere-collage-caption,
.atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption {
  padding: 18px;
}

.atmosphere-collage-caption strong,
.atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption strong,
.atmosphere-collage-item:nth-child(6n + 5) .atmosphere-collage-caption strong {
  max-width: 14ch;
  font-size: clamp(23px, 1.9vw, 32px);
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-collage {
    grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
    grid-auto-rows: 130px;
    gap: 10px;
  }

  .atmosphere-collage-item:nth-child(12n + 7) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 739px) {
  .atmosphere-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    grid-auto-rows: 114px;
    grid-auto-flow: dense;
    gap: 10px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .atmosphere-collage-item,
  .atmosphere-collage-item:nth-child(n) {
    flex: initial;
    grid-column: span 1;
    grid-row: span 2;
    min-height: 0;
    border-radius: 22px;
    align-self: stretch;
    margin: 0;
  }

  .atmosphere-collage-item:nth-child(6n + 1) {
    grid-column: span 2;
    grid-row: span 3;
  }

  .atmosphere-collage-item:nth-child(6n + 2) {
    grid-column: span 1;
    grid-row: span 3;
  }

  .atmosphere-collage-item:nth-child(6n + 3),
  .atmosphere-collage-item:nth-child(6n + 4),
  .atmosphere-collage-item:nth-child(6n + 5),
  .atmosphere-collage-item:nth-child(6n) {
    grid-column: span 1;
    grid-row: span 2;
  }

  .atmosphere-collage-item:nth-child(10n + 4),
  .atmosphere-collage-item:nth-child(10n + 9),
  .atmosphere-collage-item:nth-child(12n + 7) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .atmosphere-collage-caption,
  .atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption {
    padding: 16px;
  }

  .atmosphere-collage-caption small {
    font-size: 9px;
  }

  .atmosphere-collage-caption strong,
  .atmosphere-collage-item:nth-child(6n + 2) .atmosphere-collage-caption strong,
  .atmosphere-collage-item:nth-child(6n + 5) .atmosphere-collage-caption strong {
    font-size: clamp(22px, 6.2vw, 29px);
  }
}

/* Static review collage. */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-auto-rows: 168px;
  grid-auto-flow: dense;
  gap: 14px;
}

.review-card,
.review-card-feature {
  position: relative;
  display: grid;
  min-height: 0;
  align-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(74, 64, 61, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.78), transparent 36%),
    rgba(255, 255, 255, 0.38);
  box-shadow: 0 20px 58px rgba(83, 65, 58, 0.055);
}

.review-card::before {
  position: absolute;
  top: 14px;
  left: 18px;
  color: rgba(216, 154, 165, 0.74);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 42px;
  font-style: normal;
  line-height: 1;
  content: "\201C";
}

.review-card blockquote {
  padding-top: 28px;
}

.review-card-feature,
.review-card:nth-child(11) {
  grid-column: span 2;
  grid-row: span 2;
  padding: 28px;
}

.review-card:nth-child(2),
.review-card:nth-child(3),
.review-card:nth-child(4),
.review-card:nth-child(5),
.review-card:nth-child(6),
.review-card:nth-child(7),
.review-card:nth-child(8),
.review-card:nth-child(10),
.review-card:nth-child(12),
.review-card:nth-child(13),
.review-card:nth-child(14),
.review-card:nth-child(18) {
  grid-column: span 2;
  grid-row: span 1;
}

.review-tone-warm {
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 154, 165, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(242, 238, 234, 0.54));
}

.review-tone-soft {
  background:
    radial-gradient(circle at 12% 90%, rgba(216, 154, 165, 0.11), transparent 36%),
    rgba(255, 255, 255, 0.42);
}

.review-tone-light {
  background:
    linear-gradient(145deg, rgba(248, 246, 243, 0.64), rgba(255, 255, 255, 0.36)),
    rgba(242, 238, 234, 0.36);
}

.review-tone-paper {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), transparent 42%),
    rgba(242, 238, 234, 0.52);
}

.review-media,
.review-play {
  display: none;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #3d3531;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(14.5px, 1vw, 16.5px);
  font-weight: 520;
  line-height: 1.5;
}

.review-card:not(.review-card-feature):not(:nth-child(11)) blockquote {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(14.5px, 1vw, 16.5px);
  font-weight: 520;
  line-height: 1.54;
}

.review-card:nth-child(3) blockquote,
.review-card:nth-child(7) blockquote,
.review-card:nth-child(13) blockquote,
.review-card:nth-child(20) blockquote {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(14.5px, 1vw, 16.5px);
  font-weight: 520;
  line-height: 1.54;
}

.review-author {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  margin-top: 14px;
  color: rgba(61, 53, 49, 0.82);
  font-size: 12px;
  font-weight: 740;
}

.review-author small {
  color: #c88492;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 740px) and (max-width: 1119px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-auto-rows: 158px;
    gap: 12px;
  }

  .review-card,
  .review-card-feature {
    padding: 20px;
    border-radius: 24px;
  }

  .review-card-feature,
  .review-card:nth-child(11) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 739px) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
    grid-auto-rows: 148px;
    gap: 10px;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 2;
    padding: 18px;
    border-radius: 22px;
  }

  .review-card-feature,
  .review-card:nth-child(3),
  .review-card:nth-child(7),
  .review-card:nth-child(11),
  .review-card:nth-child(13),
  .review-card:nth-child(20) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .review-card blockquote,
  .review-card:nth-child(3) blockquote,
  .review-card:nth-child(7) blockquote,
  .review-card:nth-child(13) blockquote,
  .review-card:nth-child(20) blockquote {
    font-family: "Instrument Serif", Georgia, serif;
    font-size: clamp(19px, 5.2vw, 25px);
    font-weight: 400;
    line-height: 1.1;
  }

  .review-card:not(.review-card-feature):not(:nth-child(3)):not(:nth-child(7)):not(:nth-child(11)):not(:nth-child(13)):not(:nth-child(20)) blockquote {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-author {
    margin-top: 14px;
    font-size: 12px;
  }
}

/* Final reviews rail override: two independent horizontal rows. */
.reviews-grid {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  width: 100%;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 132, 146, 0.44) rgba(74, 64, 61, 0.08);
}

.reviews-row {
  display: flex !important;
  flex: 0 0 auto;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  gap: 14px;
}

.review-card,
.review-card-feature,
.review-card:nth-child(n) {
  width: var(--review-card-width, 340px) !important;
  height: 236px !important;
  min-height: 0 !important;
  flex: 0 0 var(--review-card-width, 340px) !important;
  margin: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
  break-inside: auto;
  scroll-snap-align: start;
}

.review-card.is-review-short {
  --review-card-width: 270px;
}

.review-card.is-review-medium {
  --review-card-width: 330px;
}

.review-card.is-review-long {
  --review-card-width: 460px;
}

@media (min-width: 1120px) {
  .reviews-grid,
  .reviews-row {
    gap: 16px !important;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    height: 246px !important;
  }

  .review-card.is-review-short {
    --review-card-width: 286px;
  }

  .review-card.is-review-medium {
    --review-card-width: 360px;
  }

  .review-card.is-review-long {
    --review-card-width: 500px;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .reviews-grid,
  .reviews-row {
    gap: 12px !important;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    height: 232px !important;
  }

  .review-card.is-review-short {
    --review-card-width: 248px;
  }

  .review-card.is-review-medium {
    --review-card-width: 310px;
  }

  .review-card.is-review-long {
    --review-card-width: 420px;
  }
}

@media (max-width: 739px) {
  .reviews-grid,
  .reviews-row {
    gap: 10px !important;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    width: min(var(--review-card-width, 270px), 82vw) !important;
    height: 220px !important;
    flex-basis: min(var(--review-card-width, 270px), 82vw) !important;
  }

  .review-card.is-review-short {
    --review-card-width: 238px;
  }

  .review-card.is-review-medium {
    --review-card-width: 276px;
  }

  .review-card.is-review-long {
    --review-card-width: 330px;
  }
}

/* Stable atmosphere modal sizing: media stays fixed, copy scrolls inside. */
.atmosphere-modal-panel {
  --atmosphere-modal-height: min(760px, calc(100dvh - 36px));
  --atmosphere-panel-padding: 18px;
  --atmosphere-panel-gap: 22px;
  --atmosphere-media-height: calc(var(--atmosphere-modal-height) - var(--atmosphere-panel-padding) * 2);
  height: var(--atmosphere-modal-height);
  max-height: var(--atmosphere-modal-height);
  align-items: stretch;
}

.atmosphere-modal-media {
  height: 100%;
  min-height: 0;
}

.atmosphere-modal-copy {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.atmosphere-modal-nav {
  top: calc(var(--atmosphere-panel-padding) + var(--atmosphere-media-height) / 2) !important;
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-modal-panel {
    --atmosphere-modal-height: calc(100dvh - 36px);
    --atmosphere-panel-padding: 18px;
    --atmosphere-panel-gap: 22px;
    --atmosphere-media-height: min(56vh, calc((var(--atmosphere-modal-height) - var(--atmosphere-panel-padding) * 2 - var(--atmosphere-panel-gap)) * 0.62));
    grid-template-rows: var(--atmosphere-media-height) minmax(0, 1fr);
    height: var(--atmosphere-modal-height);
    overflow: hidden;
  }

  .atmosphere-modal-media {
    height: var(--atmosphere-media-height);
    min-height: 0;
  }

  .atmosphere-modal-copy {
    padding: 0 14px 18px;
  }
}

@media (max-width: 739px) {
  .atmosphere-modal-panel {
    --atmosphere-modal-height: calc(100dvh - 24px);
    --atmosphere-panel-padding: 12px;
    --atmosphere-panel-gap: 22px;
    --atmosphere-media-height: min(56vh, calc((var(--atmosphere-modal-height) - var(--atmosphere-panel-padding) * 2 - var(--atmosphere-panel-gap)) * 0.64));
    grid-template-rows: var(--atmosphere-media-height) minmax(0, 1fr);
    height: var(--atmosphere-modal-height);
    overflow: hidden;
  }

  .atmosphere-modal-media {
    height: var(--atmosphere-media-height);
    min-height: 0;
  }

  .atmosphere-modal-copy {
    padding: 0 10px 14px;
  }
}

/* Final CTA polish with real hall photo and Tilda-safe link colors. */
.final-cta-media {
  background:
    linear-gradient(90deg, rgba(248, 246, 243, 0.92) 0%, rgba(248, 246, 243, 0.74) 42%, rgba(248, 246, 243, 0.26) 100%),
    linear-gradient(180deg, rgba(42, 34, 31, 0.04), rgba(42, 34, 31, 0.12)),
    url("https://static.tildacdn.com/tild3165-3235-4530-b135-666631663765/__2026-03-18__103902.png") center / cover no-repeat;
}

.final-cta-media::after {
  opacity: 0.34;
}

.final-map::after {
  display: none;
}

.final-map-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(248, 246, 243, 0.86);
  box-shadow: 0 14px 34px rgba(83, 65, 58, 0.1);
  color: rgba(52, 45, 42, 0.86);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.final-map-caption:hover {
  color: #c88492;
}

#allrecords .final-cta-section a,
#allrecords .site-footer a {
  text-decoration: none !important;
}

#allrecords .site-footer .footer-list a {
  color: rgba(52, 45, 42, 0.72) !important;
}

#allrecords .site-footer .footer-list a:hover,
#allrecords .site-footer .footer-list a:focus-visible {
  color: rgba(52, 45, 42, 0.92) !important;
}

#allrecords .final-primary {
  color: rgba(52, 45, 42, 0.9) !important;
}

/* Final CTA composition experiment: cleaner mobile, denser desktop. */
@media (min-width: 1120px) {
  .final-cta-inner {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
    align-items: center;
  }

  .final-cta-content {
    align-self: center;
    gap: 20px;
    padding: 52px;
  }

  .final-map {
    align-self: center;
    margin: 52px 52px 52px 0;
  }

  .final-map iframe {
    height: 394px;
  }
}

@media (max-width: 739px) {
  .final-cta-section {
    padding-bottom: 74px;
  }

  .final-cta-inner {
    min-height: auto;
  }

  .final-cta-media {
    background:
      linear-gradient(180deg, rgba(248, 246, 243, 0.94) 0%, rgba(248, 246, 243, 0.84) 54%, rgba(248, 246, 243, 0.42) 100%),
      linear-gradient(180deg, rgba(42, 34, 31, 0.02), rgba(42, 34, 31, 0.08)),
      url("https://static.tildacdn.com/tild3165-3235-4530-b135-666631663765/__2026-03-18__103902.png") 62% 50% / cover no-repeat;
  }

  .final-cta-content {
    gap: 16px;
    padding: 26px 22px 20px;
  }

  .final-cta-content h2 {
    max-width: 9em;
  }

  .final-cta-content p {
    max-width: 30em;
  }

  .final-cta-actions {
    gap: 9px;
    margin-top: 2px;
  }

  .final-cta-actions a:nth-child(n+3) {
    display: none;
  }

  .final-primary,
  .final-secondary {
    min-height: 52px;
    border-radius: 21px;
  }

  .final-map {
    margin: 0 18px 18px;
  }

  .final-map iframe {
    height: 232px;
  }

  .final-map-caption {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 11.5px;
  }
}

#allrecords .final-secondary {
  color: rgba(52, 45, 42, 0.82) !important;
}

#allrecords .final-secondary .sticky-icon {
  color: rgba(52, 45, 42, 0.82) !important;
}

#allrecords .final-map-caption {
  color: rgba(52, 45, 42, 0.86) !important;
}

#allrecords .final-map-caption:hover {
  color: #c88492 !important;
}

@media (max-width: 739px) {
  .final-cta-media {
    background:
      linear-gradient(180deg, rgba(248, 246, 243, 0.92) 0%, rgba(248, 246, 243, 0.74) 46%, rgba(248, 246, 243, 0.38) 100%),
      linear-gradient(180deg, rgba(42, 34, 31, 0.02), rgba(42, 34, 31, 0.12)),
      url("https://static.tildacdn.com/tild3165-3235-4530-b135-666631663765/__2026-03-18__103902.png") center / cover no-repeat;
  }

  .final-map-caption {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }
}

/* Atmosphere and final CTA refinements. */
.atmosphere-collage-footer {
  max-width: min(100%, 1160px);
  margin: 14px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 54px rgba(83, 65, 58, 0.07);
  backdrop-filter: blur(14px);
}

.atmosphere-modal-panel.has-media .atmosphere-modal-media::before {
  display: none;
}

.final-cta-media {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(248, 246, 243, 0.96), rgba(226, 198, 190, 0.44));
}

.final-cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.66;
  filter: saturate(0.9) brightness(1.1);
}

.final-cta-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(248, 246, 243, 0.95) 0%, rgba(248, 246, 243, 0.72) 43%, rgba(248, 246, 243, 0.1) 100%),
    linear-gradient(180deg, rgba(42, 34, 31, 0.02), rgba(42, 34, 31, 0.12));
  content: "";
}

.final-cta-media::after {
  z-index: 2;
}

@media (max-width: 1119px) {
  .atmosphere-collage-footer {
    grid-template-columns: 1fr;
    margin-top: 12px;
    justify-items: start;
  }
}

@media (max-width: 739px) {
  .atmosphere-collage-footer {
    padding: 16px;
  }

  .final-cta-media::before {
    background:
      linear-gradient(180deg, rgba(248, 246, 243, 0.95) 0%, rgba(248, 246, 243, 0.72) 48%, rgba(248, 246, 243, 0.36) 100%),
      linear-gradient(180deg, rgba(42, 34, 31, 0.02), rgba(42, 34, 31, 0.1));
  }
}

/* Tilda-hosted photography for the child journey scenes. */
.journey-scene::before {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(248, 246, 243, 0.06), rgba(52, 45, 42, 0.14));
  filter: none;
}

.journey-scene::after {
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.3), transparent 34%),
    linear-gradient(90deg, rgba(248, 246, 243, 0.18), transparent 48%),
    linear-gradient(180deg, transparent 45%, rgba(42, 34, 31, 0.12));
  filter: none;
}

.journey-scene-1 {
  --journey-photo-position: 52% 42%;
}

.journey-scene-2 {
  --journey-photo-position: 46% 44%;
}

.journey-scene-3 {
  --journey-photo-position: 52% 48%;
}

.journey-scene-4 {
  --journey-photo-position: 58% 45%;
}

.journey-scene-5 {
  --journey-photo-position: 50% 44%;
}

/* Atmosphere media overlay navigation: same icon language as trainer overlay. */
.atmosphere-modal-panel {
  --atmosphere-panel-width: min(100vw - 36px, 1040px);
  --atmosphere-panel-padding: 18px;
  --atmosphere-panel-gap: 22px;
  --atmosphere-media-height: 520px;
  --atmosphere-media-width: calc((var(--atmosphere-panel-width) - var(--atmosphere-panel-padding) * 2 - var(--atmosphere-panel-gap)) * 0.9 / 1.48);
}

.atmosphere-modal-nav {
  top: calc(var(--atmosphere-panel-padding) + var(--atmosphere-media-height) / 2) !important;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(74, 64, 61, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: transparent;
  font-size: 0;
  box-shadow: 0 14px 34px rgba(83, 65, 58, 0.08);
  backdrop-filter: blur(16px);
}

.atmosphere-modal-nav::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(74, 64, 61, 0.76);
  border-right: 1.5px solid rgba(74, 64, 61, 0.76);
  content: "";
}

.atmosphere-modal-prev {
  left: calc(var(--atmosphere-panel-padding) + 16px) !important;
  transform: translateY(-50%) !important;
}

.atmosphere-modal-next {
  left: calc(var(--atmosphere-panel-padding) + var(--atmosphere-media-width) - 16px) !important;
  right: auto !important;
  transform: translate(-100%, -50%) !important;
}

.atmosphere-modal-prev:hover,
.atmosphere-modal-prev:focus-visible {
  transform: translateY(-50%) scale(1.04) !important;
}

.atmosphere-modal-next:hover,
.atmosphere-modal-next:focus-visible {
  transform: translate(-100%, -50%) scale(1.04) !important;
}

.atmosphere-modal-prev::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.atmosphere-modal-next::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-modal-panel {
    --atmosphere-panel-width: min(100vw - 36px, 720px);
    --atmosphere-panel-padding: 18px;
    --atmosphere-media-height: min(54vh, 480px);
    --atmosphere-media-width: calc(var(--atmosphere-panel-width) - var(--atmosphere-panel-padding) * 2);
  }
}

@media (max-width: 739px) {
  .atmosphere-modal-panel {
    --atmosphere-panel-width: calc(100vw - 24px);
    --atmosphere-panel-padding: 12px;
    --atmosphere-media-height: min(58vh, 430px);
    --atmosphere-media-width: calc(var(--atmosphere-panel-width) - var(--atmosphere-panel-padding) * 2);
  }

  .atmosphere-modal-nav {
    width: 44px;
    height: 44px;
  }

  .atmosphere-modal-prev {
    left: calc(var(--atmosphere-panel-padding) + 12px) !important;
  }

  .atmosphere-modal-next {
    left: calc(var(--atmosphere-panel-padding) + var(--atmosphere-media-width) - 12px) !important;
  }
}

/* Reviews use a vertical column flow: same visual style, calmer layout mechanics. */
.reviews-grid {
  display: block;
  column-count: 3;
  column-gap: 14px;
}

.review-card,
.review-card-feature,
.review-card:nth-child(n) {
  display: grid;
  width: 100%;
  min-height: 0;
  margin: 0 0 14px;
  padding: 22px;
  break-inside: avoid;
  page-break-inside: avoid;
  grid-column: auto;
  grid-row: auto;
}

.review-card blockquote,
.review-card:not(.review-card-feature):not(:nth-child(11)) blockquote,
.review-card:nth-child(3) blockquote,
.review-card:nth-child(7) blockquote,
.review-card:nth-child(13) blockquote,
.review-card:nth-child(20) blockquote {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(14.5px, 1vw, 16.5px);
  font-weight: 520;
  line-height: 1.54;
}

@media (min-width: 1120px) {
  .reviews-grid {
    column-count: 3;
    column-gap: 16px;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    margin-bottom: 16px;
    padding: 24px;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .reviews-grid {
    column-count: 3;
    column-gap: 12px;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    margin-bottom: 12px;
    padding: 20px;
  }
}

@media (max-width: 739px) {
  .reviews-grid {
    column-count: 1;
    column-gap: 0;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    margin-bottom: 10px;
    padding: 18px;
  }
}

/* Reviews rail: two fixed rows with horizontally scrolling cards. */
.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  grid-auto-flow: initial;
  grid-template-columns: none;
  grid-template-rows: none;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 4px 0 18px;
  column-count: initial;
  column-gap: initial;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 132, 146, 0.44) rgba(74, 64, 61, 0.08);
}

.reviews-row {
  display: flex;
  width: max-content;
  gap: 14px;
}

.reviews-grid::-webkit-scrollbar {
  height: 8px;
}

.reviews-grid::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(74, 64, 61, 0.06);
}

.reviews-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(200, 132, 146, 0.42);
}

.review-card,
.review-card-feature,
.review-card:nth-child(n) {
  display: grid;
  width: var(--review-card-width, 340px);
  height: 256px;
  flex: 0 0 var(--review-card-width, 340px);
  min-height: 0;
  margin: 0;
  padding: 22px;
  break-inside: auto;
  page-break-inside: auto;
  grid-column: auto;
  grid-row: auto;
  scroll-snap-align: start;
}

.review-card.is-review-short {
  --review-card-width: 270px;
}

.review-card.is-review-medium {
  --review-card-width: 330px;
}

.review-card.is-review-long {
  --review-card-width: 460px;
}

.review-card blockquote,
.review-card:not(.review-card-feature):not(:nth-child(11)) blockquote,
.review-card:nth-child(3) blockquote,
.review-card:nth-child(7) blockquote,
.review-card:nth-child(13) blockquote,
.review-card:nth-child(20) blockquote {
  overflow: hidden;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(14.5px, 0.95vw, 16px);
  font-weight: 520;
  line-height: 1.52;
}

@media (min-width: 1120px) {
  .reviews-grid {
    gap: 16px;
  }

  .reviews-row {
    gap: 16px;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    height: 268px;
    padding: 24px;
  }

  .review-card.is-review-short {
    --review-card-width: 286px;
  }

  .review-card.is-review-medium {
    --review-card-width: 360px;
  }

  .review-card.is-review-long {
    --review-card-width: 500px;
  }
}

@media (min-width: 740px) and (max-width: 1119px) {
  .reviews-grid {
    gap: 12px;
  }

  .reviews-row {
    gap: 12px;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    height: 252px;
    padding: 20px;
  }

  .review-card.is-review-short {
    --review-card-width: 248px;
  }

  .review-card.is-review-medium {
    --review-card-width: 310px;
  }

  .review-card.is-review-long {
    --review-card-width: 420px;
  }
}

@media (max-width: 739px) {
  .reviews-grid {
    gap: 10px;
    padding-bottom: 16px;
  }

  .reviews-row {
    gap: 10px;
  }

  .review-card,
  .review-card-feature,
  .review-card:nth-child(n) {
    width: min(var(--review-card-width, 270px), 82vw);
    height: 236px;
    flex-basis: min(var(--review-card-width, 270px), 82vw);
    padding: 18px;
  }

  .review-card.is-review-short {
    --review-card-width: 238px;
  }

  .review-card.is-review-medium {
    --review-card-width: 276px;
  }

  .review-card.is-review-long {
    --review-card-width: 330px;
  }

  .review-card blockquote,
  .review-card:not(.review-card-feature):not(:nth-child(11)) blockquote,
  .review-card:nth-child(3) blockquote,
  .review-card:nth-child(7) blockquote,
  .review-card:nth-child(13) blockquote,
  .review-card:nth-child(20) blockquote {
    font-family: "Manrope", "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 520;
    line-height: 1.48;
  }
}

/* Final modal geometry: fixed viewport height, stable media, scrollable copy. */
.atmosphere-modal-panel {
  --atmosphere-panel-width: min(100vw - 36px, 1040px);
  --atmosphere-modal-height: min(760px, calc(100dvh - 36px));
  --atmosphere-panel-padding: 18px;
  --atmosphere-panel-gap: 22px;
  --atmosphere-media-height: calc(var(--atmosphere-modal-height) - var(--atmosphere-panel-padding) * 2);
  --atmosphere-media-width: calc((var(--atmosphere-panel-width) - var(--atmosphere-panel-padding) * 2 - var(--atmosphere-panel-gap)) * 0.9 / 1.48);
  height: var(--atmosphere-modal-height) !important;
  max-height: var(--atmosphere-modal-height) !important;
  overflow: hidden !important;
  align-items: stretch;
}

.atmosphere-modal-media {
  height: var(--atmosphere-media-height) !important;
  min-height: 0 !important;
}

.atmosphere-modal-copy {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.atmosphere-modal-nav {
  top: calc(var(--atmosphere-panel-padding) + var(--atmosphere-media-height) / 2) !important;
}

@media (min-width: 740px) and (max-width: 1119px) {
  .atmosphere-modal-panel {
    --atmosphere-panel-width: min(100vw - 36px, 720px);
    --atmosphere-modal-height: calc(100dvh - 36px);
    --atmosphere-panel-padding: 18px;
    --atmosphere-panel-gap: 20px;
    --atmosphere-media-height: calc((var(--atmosphere-modal-height) - var(--atmosphere-panel-padding) * 2 - var(--atmosphere-panel-gap)) * 0.62);
    --atmosphere-media-width: calc(var(--atmosphere-panel-width) - var(--atmosphere-panel-padding) * 2);
    grid-template-columns: 1fr !important;
    grid-template-rows: var(--atmosphere-media-height) minmax(0, 1fr);
    gap: var(--atmosphere-panel-gap) !important;
    width: min(100%, 720px);
  }

  .atmosphere-modal-copy {
    padding: 0 14px 18px;
  }
}

@media (max-width: 739px) {
  .atmosphere-modal-panel {
    --atmosphere-panel-width: calc(100vw - 24px);
    --atmosphere-modal-height: calc(100dvh - 24px);
    --atmosphere-panel-padding: 12px;
    --atmosphere-panel-gap: 18px;
    --atmosphere-media-height: calc((var(--atmosphere-modal-height) - var(--atmosphere-panel-padding) * 2 - var(--atmosphere-panel-gap)) * 0.58);
    --atmosphere-media-width: calc(var(--atmosphere-panel-width) - var(--atmosphere-panel-padding) * 2);
    grid-template-columns: 1fr !important;
    grid-template-rows: var(--atmosphere-media-height) minmax(0, 1fr);
    gap: var(--atmosphere-panel-gap) !important;
  }

  .atmosphere-modal-copy {
    padding: 0 10px 14px;
  }
}