:root {
  --site-bg: #98aa9e;
  --site-paper: #ffffff;
  --site-ink: #202521;
  --site-muted: #4e5d55;
  --site-line: #dfe6df;
  --site-green: #758b80;
  --site-green-dark: #52695f;
  --site-green-soft: #e7eee9;
  --site-gold: #ffd34d;
  --site-gold-soft: #fff2bd;
  --site-beige: #efe3d0;
  --site-rose: #ffe3f0;
  --site-blue: #e1ecff;
  --site-shadow: 0 20px 60px rgba(32, 37, 33, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--site-ink);
  background: var(--site-bg);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 211, 77, 0.92);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  overflow: hidden;
  transition:
    min-height 180ms ease,
    padding 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    backdrop-filter 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 76px;
  padding-block: 8px;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: rgba(152, 170, 158, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(32, 37, 33, 0.1);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 68px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
}

.site-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .site-brand img {
  width: 58px;
  height: 58px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.site-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.site-cta,
.button.primary {
  color: #1f211b;
  background: var(--site-gold);
}

.site-cta:hover,
.button.primary:hover {
  background: #ffdc70;
}

.button.secondary {
  border-color: rgba(82, 105, 95, 0.22);
  color: var(--site-ink);
  background: rgba(255, 255, 255, 0.82);
}

.button.secondary:hover {
  background: var(--site-green-soft);
}

.site-hero {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(640px, calc(100svh - 72px), 860px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 96px) 32px;
  overflow: hidden;
  color: #ffffff;
  background: var(--site-green);
  isolation: isolate;
}

.site-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(28, 34, 30, 0.88) 0%, rgba(28, 34, 30, 0.72) 34%, rgba(28, 34, 30, 0.24) 64%, rgba(28, 34, 30, 0.08) 100%),
    linear-gradient(180deg, rgba(28, 34, 30, 0.02) 0%, rgba(28, 34, 30, 0.34) 100%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  filter: saturate(0.96) contrast(0.98);
  transition: opacity 220ms ease;
}

.hero-media img.is-loaded {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--site-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero-content h1 {
  max-width: 11ch;
  font-size: clamp(52px, 6.6vw, 96px);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.8vw, 22px);
}

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

.hero-facts {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(40px, 7vw, 80px);
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.11);
}

.hero-facts strong {
  color: var(--site-gold);
}

.site-hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.site-hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 0;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  padding: 0;
  border-bottom: 1px solid var(--site-line);
  background: var(--site-line);
}

.intro-band div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: var(--site-paper);
}

.intro-band span,
.section-copy p,
.visual-copy p,
.section-heading p,
.calendar-section p,
.contact-section p,
.service-card p,
.access-card p,
.faq-list p {
  color: var(--site-muted);
}

.intro-band span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-band strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.22;
}

.split-section,
.visual-section,
.calendar-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.section-copy,
.visual-copy,
.section-heading {
  max-width: 640px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.section-copy > p:not(.eyebrow),
.visual-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.calendar-section p,
.contact-section p {
  margin: 18px 0 0;
  font-size: 18px;
}

.trust-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.trust-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-muted);
  background: var(--site-paper);
}

.trust-points strong {
  color: var(--site-ink);
}

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

.service-card,
.access-card,
.system-preview,
.benefit-item,
.month-mini,
.faq-list details {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  box-shadow: 0 1px 0 rgba(32, 37, 33, 0.03);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 212px;
  padding: 24px;
}

.service-card.soft-card {
  min-height: 180px;
  background: #eef3ef;
}

.reformer-section {
  align-items: stretch;
}

.reformer-media-card {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: var(--site-green-dark);
  box-shadow: var(--site-shadow);
}

.reformer-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(32, 37, 33, 0.18));
  pointer-events: none;
}

.reformer-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.reformer-benefit-list {
  display: grid;
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--site-line);
}

.reformer-benefit-list li {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
}

.reformer-benefit-list strong {
  font-size: 16px;
}

.reformer-benefit-list span {
  color: var(--site-muted);
}

.service-card h3,
.access-card h3 {
  margin: 0;
  font-size: 22px;
}

.service-card p,
.access-card p {
  margin: 0;
}

.service-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.service-dot.ems {
  background: #4f8d63;
}

.service-dot.lymph {
  background: #e78aae;
}

.service-dot.reformer {
  background: #b49a78;
}

.service-dot.relax {
  background: #e1bd3d;
}

.benefits-section {
  display: grid;
  gap: clamp(34px, 6vw, 64px);
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 96px);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 211, 77, 0.14), transparent 28%),
    var(--site-bg);
}

.benefits-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.benefits-heading p {
  margin-inline: auto;
}

.benefits-stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 0.82fr) minmax(260px, 0.92fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}

.benefits-list {
  display: grid;
  gap: 18px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(82, 105, 95, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.benefits-list-left .benefit-item {
  text-align: right;
  grid-template-columns: minmax(0, 1fr) 56px;
}

.benefits-list-left .benefit-item .benefit-icon {
  grid-column: 2;
  grid-row: 1;
}

.benefits-list-left .benefit-item > div {
  grid-column: 1;
  grid-row: 1;
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #26342d;
  background: var(--site-gold);
  box-shadow: 0 12px 28px rgba(32, 37, 33, 0.16);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.18;
}

.benefit-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.benefits-image-wrap {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  border-radius: 999px;
  padding: 4px;
  background:
    linear-gradient(135deg, rgba(255, 211, 77, 0.82), rgba(255, 255, 255, 0.72) 52%, rgba(255, 211, 77, 0.48));
  box-shadow: 0 18px 48px rgba(32, 37, 33, 0.16);
}

.benefits-image-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.benefits-image-wrap img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.social-proof-section,
.education-section {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  align-items: stretch;
}

.rating-card,
.proof-points article,
.visit-steps article,
.education-card {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  box-shadow: 0 1px 0 rgba(32, 37, 33, 0.03);
}

.rating-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 40px);
  color: #ffffff;
  background: var(--site-green-dark);
}

.rating-stars {
  color: var(--site-gold);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.review-source-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.11);
  font-size: 12px;
  font-weight: 850;
}

.rating-card strong {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.rating-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.rating-card .button.secondary {
  justify-self: start;
  margin-top: 8px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.13);
}

.rating-card .button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-points article,
.education-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
}

.proof-points article span,
.visit-steps article span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  color: #2a332d;
  background: var(--site-gold);
  font-size: 14px;
  font-weight: 900;
}

.proof-points article small {
  color: var(--site-green-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-points h3,
.visit-steps h3,
.education-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.proof-points p,
.visit-steps p,
.education-card p {
  margin: 0;
  color: var(--site-muted);
}

.first-visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(82, 105, 95, 0.18);
  border-bottom: 1px solid rgba(82, 105, 95, 0.18);
}

.visit-steps {
  counter-reset: visit;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.visit-steps article {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.education-card {
  min-height: 210px;
  background: #eef3ef;
}

.visual-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 96px);
  background: var(--site-bg);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
}

.about-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
}

.about-section > p {
  margin: 0;
  color: var(--site-muted);
  font-size: 20px;
}

.system-preview {
  padding: 18px;
  box-shadow: var(--site-shadow);
}

.preview-top {
  display: flex;
  gap: 6px;
  padding-bottom: 18px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--site-line);
}

.preview-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  border-top: 1px solid var(--site-line);
}

.preview-row span {
  color: var(--site-muted);
  font-variant-numeric: tabular-nums;
}

.preview-row em {
  padding: 5px 10px;
  border-radius: 999px;
  color: #315f52;
  background: #dfeee7;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.preview-row.strong {
  border-top: 0;
  background: #eef3ef;
}

.preview-row.beige em {
  color: #5f4a31;
  background: var(--site-beige);
}

.preview-row.rose em {
  color: #6f2853;
  background: var(--site-rose);
}

.access-section,
.faq-section,
.shop-section {
  display: grid;
  gap: 32px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: start;
  gap: 12px;
  max-width: 960px;
}

.access-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 0;
  padding: 28px;
}

.access-card .button {
  justify-self: start;
  margin-top: 8px;
}

.access-label {
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--site-green-dark);
  background: #eef3ef;
  font-size: 12px;
  font-weight: 850;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 12px;
  align-items: start;
}

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

.shop-product-card,
.shop-checkout-card {
  border: 1px solid var(--site-line);
  border-radius: 0;
  background: var(--site-paper);
  box-shadow: 0 1px 0 rgba(32, 37, 33, 0.03);
}

.shop-product-card {
  --shop-accent: var(--site-green);
  display: grid;
  gap: 18px;
  align-content: space-between;
  min-height: 318px;
  padding: 22px;
  box-shadow: inset 4px 0 0 color-mix(in srgb, var(--shop-accent) 82%, transparent);
}

.shop-product-card.is-selected {
  border-color: color-mix(in srgb, var(--shop-accent) 42%, var(--site-line));
  background: #eef3ef;
}

.shop-product-card.is-featured {
  box-shadow:
    inset 4px 0 0 color-mix(in srgb, var(--shop-accent) 82%, transparent),
    0 18px 48px rgba(32, 37, 33, 0.1);
}

.shop-product-card span,
.shop-product-card small,
.shop-empty span,
.shop-selected-product span,
.shop-selected-product small,
.shop-form label span {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 800;
}

.shop-product-card h3 {
  margin: 8px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.shop-product-card p {
  margin: 12px 0 0;
  color: var(--site-muted);
}

.shop-product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.shop-product-meta strong {
  font-size: 28px;
}

.shop-option-list {
  display: grid;
  gap: 8px;
}

.shop-option-button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 0;
  padding: 12px;
  color: var(--site-ink);
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.shop-option-button:hover {
  border-color: color-mix(in srgb, var(--shop-accent) 46%, var(--site-line));
  background: color-mix(in srgb, var(--shop-accent) 8%, #ffffff);
}

.shop-option-button:focus-visible {
  outline: 3px solid rgba(255, 211, 77, 0.72);
  outline-offset: 2px;
}

.shop-option-button.is-selected {
  border-color: color-mix(in srgb, var(--shop-accent) 58%, var(--site-line));
  background: color-mix(in srgb, var(--shop-accent) 12%, #ffffff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--shop-accent) 24%, transparent);
}

.shop-option-button > span {
  display: grid;
  gap: 3px;
  min-width: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.shop-option-button strong {
  color: var(--site-ink);
  font-size: 16px;
  line-height: 1.1;
}

.shop-option-button em {
  overflow: hidden;
  color: var(--site-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-option-price {
  display: inline-grid;
  justify-items: end;
  gap: 3px;
  color: var(--site-ink);
  font-size: inherit;
  font-weight: inherit;
}

.shop-option-price del {
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.shop-option-price b {
  color: var(--site-ink);
  font-size: 16px;
  line-height: 1.15;
}

.shop-option-button.has-sale .shop-option-price b {
  border-radius: 999px;
  padding: 3px 9px;
  color: #5d4416;
  background: #fff1b8;
}

.shop-option-button small {
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.shop-option-button .shop-option-badge {
  justify-self: end;
  border-radius: 999px;
  padding: 3px 8px;
  color: #5d4416;
  background: #fff1b8;
  font-size: 11px;
  font-weight: 850;
}

.shop-product-card .button {
  justify-self: start;
}

.shop-accent-ems {
  --shop-accent: #4f8d63;
}

.shop-accent-pilates {
  --shop-accent: #b49a78;
}

.shop-accent-lymph {
  --shop-accent: #e78aae;
}

.shop-accent-suit {
  --shop-accent: #e1bd3d;
}

.shop-checkout-card {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 22px;
}

.shop-empty {
  display: grid;
  gap: 8px;
}

.shop-empty strong,
.shop-selected-product strong {
  display: block;
  color: var(--site-ink);
  font-size: 22px;
  line-height: 1.16;
}

.shop-empty p {
  margin: 0;
  color: var(--site-muted);
}

.shop-form {
  display: grid;
  gap: 12px;
}

.shop-form[hidden],
.shop-empty[hidden] {
  display: none;
}

.shop-selected-product {
  padding: 14px;
  border-radius: 0;
  background: var(--site-green-soft);
}

.shop-selected-price {
  display: inline-grid;
  gap: 6px;
  align-items: start;
  justify-items: start;
}

.shop-selected-product .shop-selected-price del {
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 750;
}

.shop-selected-product .shop-selected-price b {
  color: var(--site-ink);
  font-size: 17px;
}

.shop-selected-product .shop-selected-price.has-sale b {
  border-radius: 999px;
  padding: 3px 9px;
  color: #5d4416;
  background: #fff1b8;
}

.shop-selected-product .shop-selected-price small {
  color: #5d4416;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-form label {
  display: grid;
  gap: 6px;
}

.shop-form input,
.shop-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--site-ink);
  background: #ffffff;
  font: inherit;
}

.shop-form textarea {
  resize: vertical;
}

.shop-form input:focus,
.shop-form textarea:focus {
  outline: 3px solid rgba(255, 211, 77, 0.72);
  outline-offset: 1px;
  border-color: transparent;
}

.shop-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.shop-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.calendar-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 5vw, 96px);
  background: var(--site-green-dark);
}

.calendar-section h2,
.calendar-section p {
  color: #ffffff;
}

.calendar-section p {
  color: rgba(255, 255, 255, 0.78);
}

.calendar-section .button {
  margin-top: 28px;
}

.calendar-copy {
  max-width: 560px;
}

.site-booking-widget {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1.18fr);
  gap: 12px;
  align-items: start;
}

.site-calendar-card,
.site-slot-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--site-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 54px rgba(26, 31, 27, 0.18);
}

.site-calendar-card {
  padding: 18px;
}

.site-slot-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.site-calendar-toolbar,
.site-slot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-calendar-toolbar strong {
  text-transform: capitalize;
}

.site-icon-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: var(--site-ink);
  background: var(--site-green-soft);
  font: inherit;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}

.site-icon-button:hover {
  background: #d8e4dc;
}

.site-calendar-weekdays,
.site-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.site-calendar-weekdays {
  margin-top: 18px;
}

.site-calendar-weekdays span {
  display: grid;
  place-items: center;
  min-height: 28px;
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 800;
}

.site-calendar-day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  color: var(--site-ink);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.site-calendar-day:not(:disabled):hover {
  background: var(--site-green-soft);
}

.site-calendar-day.is-muted {
  color: #a5afa9;
}

.site-calendar-day.is-today {
  background: var(--site-gold);
}

.site-calendar-day.is-selected {
  color: #ffffff;
  background: var(--site-green-dark);
}

.site-calendar-day.is-selected.is-today {
  color: #1f211b;
  background: var(--site-gold);
  box-shadow: inset 0 0 0 2px rgba(82, 105, 95, 0.62);
}

.site-calendar-day:disabled {
  color: #c1c9c4;
  cursor: not-allowed;
}

.site-slot-head span,
.site-booking-form label span,
.site-selected-slot span {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 750;
}

.site-slot-head strong,
.site-selected-slot strong {
  display: block;
  margin-top: 2px;
  color: var(--site-ink);
  font-size: 18px;
}

.site-slot-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #315f52;
  background: #dfeee7;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}

.site-service-filter {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.site-service-filter::-webkit-scrollbar {
  display: none;
}

.site-service-filter button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-muted);
  background: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.site-service-filter button:hover,
.site-service-filter button.is-active {
  color: var(--site-ink);
  border-color: transparent;
  background: var(--site-gold);
}

.site-slot-status {
  min-height: 48px;
  padding: 14px;
  border-radius: 8px;
  color: var(--site-muted);
  background: var(--site-bg);
}

.site-slot-list {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 2px;
}

.site-slot-option {
  --slot-bg: var(--site-bg);
  --slot-accent: var(--site-green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--site-ink);
  background: var(--slot-bg);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.site-slot-option:hover,
.site-slot-option.is-selected {
  border-color: color-mix(in srgb, var(--slot-accent) 42%, transparent);
  box-shadow: inset 4px 0 0 var(--slot-accent);
}

.site-slot-option strong,
.site-slot-option small,
.site-slot-option em {
  display: block;
}

.site-slot-option small,
.site-slot-option em {
  color: var(--site-muted);
  font-size: 13px;
  font-style: normal;
}

.site-slot-option em {
  text-align: right;
}

.site-slot-option.service-consultation {
  --slot-bg: #edf4ff;
  --slot-accent: #7aa5e8;
}

.site-slot-option.service-trial_training {
  --slot-bg: #ffecec;
  --slot-accent: #e56a6a;
}

.site-slot-option.service-lymph_drainage {
  --slot-bg: #ffe8f2;
  --slot-accent: #e78aae;
}

.site-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid var(--site-line);
}

.site-booking-form[hidden],
.site-booking-message[hidden] {
  display: none;
}

.site-selected-slot,
.site-booking-form label:nth-of-type(4),
.site-checkbox,
.site-booking-form .button {
  grid-column: 1 / -1;
}

.site-selected-slot {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--site-green-soft);
}

.site-booking-form label {
  display: grid;
  gap: 6px;
}

.site-booking-form input,
.site-booking-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--site-ink);
  background: #ffffff;
  font: inherit;
}

.site-booking-form textarea {
  resize: vertical;
}

.site-booking-form input:focus,
.site-booking-form textarea:focus {
  outline: 3px solid rgba(255, 211, 77, 0.72);
  outline-offset: 1px;
  border-color: transparent;
}

.site-checkbox {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.site-checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.site-booking-form .button {
  justify-self: start;
  margin-top: 0;
  border: 0;
  cursor: pointer;
}

.site-booking-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.site-booking-message {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--site-muted);
  background: var(--site-bg);
  font-weight: 750;
}

.site-booking-message.success {
  color: #315f52;
  background: #dfeee7;
}

.site-booking-message.error {
  color: #812d36;
  background: #ffe4e8;
}

.site-booking-message.warning {
  color: #6b5522;
  background: var(--site-gold-soft);
}

.site-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(32, 37, 33, 0.48);
  backdrop-filter: blur(10px);
}

.site-popup-card {
  position: relative;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 90px rgba(32, 37, 33, 0.26);
}

.site-popup-card .eyebrow {
  margin-bottom: 12px;
}

.site-popup-card h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--site-ink);
  font-size: clamp(34px, 6vw, 54px);
  line-height: 0.98;
  letter-spacing: 0;
}

.site-popup-card p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--site-muted);
  font-size: 17px;
  line-height: 1.62;
}

.site-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.site-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--site-muted);
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-popup-close:hover {
  color: var(--site-ink);
  background: var(--site-green-soft);
}

.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.system-preview.scroll-reveal,
.benefits-image-wrap.scroll-reveal,
.site-calendar-card.scroll-reveal,
.site-slot-card.scroll-reveal {
  transform: translate3d(0, 18px, 0) scale(0.985);
}

.system-preview.scroll-reveal.is-visible,
.benefits-image-wrap.scroll-reveal.is-visible,
.site-calendar-card.scroll-reveal.is-visible,
.site-slot-card.scroll-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.month-mini {
  padding: 22px;
}

.month-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.month-head span {
  color: var(--site-muted);
  font-weight: 800;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.month-grid span,
.month-grid button {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
}

.month-grid span {
  color: var(--site-muted);
  font-size: 13px;
}

.month-grid button {
  color: var(--site-ink);
  background: var(--site-green-soft);
}

.month-grid button.today {
  background: var(--site-gold);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 64px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p,
.faq-list ul {
  margin: 0;
  padding: 0 0 20px;
}

.faq-list ul {
  display: grid;
  gap: 6px;
  padding-left: 20px;
}

.faq-list p + ul,
.faq-list ul + p {
  margin-top: -8px;
}

.contact-section {
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.contact-grid > a,
.contact-grid > span {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 72px;
  padding: 18px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  font-weight: 800;
}

.contact-grid a span,
.contact-grid small {
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-grid strong {
  color: var(--site-ink);
  font-size: 15px;
  line-height: 1.25;
}

.site-social-links,
.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.site-social-links {
  margin-top: 18px;
}

.site-footer-social {
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.site-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px 0 10px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-ink);
  background: var(--site-paper);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-social-link:hover {
  border-color: color-mix(in srgb, var(--site-green) 28%, var(--site-line));
  background: var(--site-green-soft);
  transform: translateY(-1px);
}

.site-footer-social .site-social-link {
  width: 40px;
  height: 40px;
  min-height: 40px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-color: color-mix(in srgb, var(--site-muted) 24%, transparent);
  color: var(--site-muted);
  background: transparent;
  box-shadow: none;
}

.site-footer-social .site-social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer-social .site-social-link svg {
  width: 19px;
  height: 19px;
}

.site-footer-social .site-social-link:hover {
  border-color: color-mix(in srgb, var(--site-green-dark) 28%, var(--site-line));
  color: var(--site-ink);
  background: rgba(255, 255, 255, 0.24);
}

.contact-form-card {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--site-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(26, 31, 27, 0.08);
}

.contact-form-card h3 {
  margin: 2px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

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

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

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

.contact-form label span {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 750;
}

.contact-form .full,
.contact-form .site-checkbox,
.contact-form .button,
.contact-form .site-booking-message {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--site-ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 211, 77, 0.72);
  outline-offset: 1px;
  border-color: transparent;
}

.contact-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-form .button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.partner-section {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  padding-top: clamp(68px, 8vw, 108px);
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.partner-section .section-heading {
  max-width: 760px;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.partner-logo-card {
  display: grid;
  min-height: 154px;
  place-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(223, 230, 223, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(32, 37, 33, 0.04), 0 18px 44px rgba(32, 37, 33, 0.08);
  overflow: hidden;
}

.partner-logo-card-light {
  background: rgba(255, 255, 255, 0.94);
}

.partner-logo-card-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #26302a 0%, #52695f 100%);
}

.partner-logo {
  display: block;
  width: min(100%, 360px);
  max-height: 82px;
  object-fit: contain;
}

.partner-logo-egym {
  width: min(100%, 330px);
}

.partner-logo-sportplanet {
  width: min(100%, 520px);
  max-height: 76px;
}

.legal-page {
  background: var(--site-green-soft);
}

.legal-hero {
  display: grid;
  gap: 14px;
  min-height: 300px;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 6vw, 96px) clamp(48px, 7vw, 88px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(32, 37, 33, 0.86), rgba(82, 105, 95, 0.78)),
    var(--site-green);
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
}

.legal-section {
  padding-top: clamp(48px, 7vw, 88px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.legal-meta,
.legal-card {
  border: 1px solid var(--site-line);
  background: var(--site-paper);
}

.legal-meta {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
}

.legal-meta span {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-meta strong {
  margin-bottom: 8px;
  color: var(--site-ink);
  font-size: 24px;
  line-height: 1.1;
}

.legal-meta a {
  color: var(--site-green-dark);
  font-weight: 850;
}

.legal-card {
  display: grid;
  gap: 12px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  box-shadow: var(--site-shadow);
}

.legal-card h2 {
  margin: 26px 0 0;
  color: var(--site-ink);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.12;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 0;
  max-width: 760px;
  color: var(--site-muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-card a {
  color: var(--site-green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 24px;
  padding: 32px clamp(24px, 6vw, 76px) 48px;
  border-top: 1px solid var(--site-line);
  color: var(--site-muted);
}

.site-footer a:hover {
  color: var(--site-ink);
}

.site-footer-action {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.site-footer-action:hover {
  color: var(--site-ink);
}

.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 1300;
  width: min(520px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(223, 230, 223, 0.92);
  border-radius: 8px;
  color: var(--site-ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 60px rgba(32, 37, 33, 0.18), 0 3px 10px rgba(32, 37, 33, 0.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.cookie-banner p {
  margin: 10px 0 0;
  color: var(--site-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--site-ink);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(82, 105, 95, 0.22);
  border-radius: 999px;
  color: var(--site-ink);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cookie-button:hover {
  transform: translateY(-1px);
  border-color: rgba(82, 105, 95, 0.44);
  background: rgba(241, 247, 241, 0.96);
}

.cookie-button-primary {
  border-color: transparent;
  background: var(--site-gold);
}

.cookie-button-primary:hover {
  background: #ffd65a;
}

.cookie-settings {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--site-line);
}

.cookie-settings[hidden] {
  display: none;
}

.cookie-choice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(223, 230, 223, 0.8);
  border-radius: 8px;
  background: rgba(246, 249, 246, 0.72);
}

.cookie-choice input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--site-gold);
}

.cookie-choice strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.cookie-choice > span {
  display: block;
}

.cookie-choice > span > span {
  display: block;
  margin-top: 4px;
  color: var(--site-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 1200;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 34px rgba(32, 37, 33, 0.2), 0 2px 8px rgba(32, 37, 33, 0.14);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: #1fb85a;
  box-shadow: 0 18px 40px rgba(32, 37, 33, 0.24), 0 4px 12px rgba(32, 37, 33, 0.16);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(255, 204, 68, 0.82);
  outline-offset: 4px;
}

/* Website UI polish layer */
:root {
  --site-shadow-soft: 0 10px 30px rgba(32, 37, 33, 0.08);
  --site-shadow-card: 0 1px 2px rgba(32, 37, 33, 0.04), 0 18px 50px rgba(32, 37, 33, 0.1);
}

.site-header {
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 32px rgba(32, 37, 33, 0.08);
}

.site-nav a,
.site-cta,
.button,
.site-icon-button,
.site-calendar-day,
.site-service-filter button,
.site-slot-option,
.shop-option-button {
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.site-cta:hover,
.button.primary:hover {
  box-shadow: 0 10px 22px rgba(255, 211, 77, 0.2);
  transform: translateY(-1px);
}

.button.secondary:hover,
.site-hero .button.secondary:hover {
  transform: translateY(-1px);
}

.site-cta:active,
.button:active,
.site-icon-button:active,
.shop-option-button:active,
.site-slot-option:active {
  transform: translateY(1px);
}

.hero-content {
  text-wrap: balance;
}

.hero-copy {
  line-height: 1.56;
}

.hero-facts {
  max-width: 980px;
}

.hero-facts span {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.section h2 {
  text-wrap: balance;
}

.service-card,
.access-card,
.system-preview,
.month-mini,
.faq-list details,
.shop-product-card,
.shop-checkout-card,
.site-calendar-card,
.site-slot-card,
.contact-form-card {
  box-shadow: var(--site-shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover,
.access-card:hover,
.benefit-item:hover,
.faq-list details:hover,
.shop-product-card:hover {
  border-color: color-mix(in srgb, var(--site-gold) 44%, var(--site-line));
  box-shadow: var(--site-shadow-card);
  transform: translateY(-2px);
}

.intro-band div {
  transition: background 160ms ease;
}

.intro-band div:hover {
  background: #fbfcfb;
}

.trust-points span {
  box-shadow: 0 1px 0 rgba(32, 37, 33, 0.03);
}

.shop-product-card.is-selected {
  box-shadow: var(--site-shadow-card), inset 4px 0 0 color-mix(in srgb, var(--shop-accent) 82%, transparent);
}

.shop-option-button:hover {
  transform: none;
  box-shadow: 0 8px 18px rgba(32, 37, 33, 0.06);
}

.shop-option-button.is-selected {
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--shop-accent) 24%, transparent),
    0 8px 20px rgba(32, 37, 33, 0.06);
}

.site-calendar-card,
.site-slot-card {
  box-shadow: var(--site-shadow-card);
}

.site-icon-button:hover {
  box-shadow: 0 8px 18px rgba(32, 37, 33, 0.08);
}

.site-calendar-day:not(:disabled):hover {
  box-shadow: inset 0 0 0 1px rgba(82, 105, 95, 0.14);
}

.site-calendar-day.is-selected {
  box-shadow: 0 8px 18px rgba(82, 105, 95, 0.18);
}

.site-slot-status {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-slot-option:hover,
.site-slot-option.is-selected {
  background: color-mix(in srgb, var(--slot-accent) 10%, var(--slot-bg));
}

.site-booking-form input,
.site-booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-booking-form input:hover,
.site-booking-form textarea:hover,
.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: color-mix(in srgb, var(--site-green) 30%, var(--site-line));
}

.site-booking-form input:focus,
.site-booking-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 211, 77, 0.18);
}

.faq-list summary {
  transition: color 160ms ease;
}

.faq-list details[open] {
  border-color: color-mix(in srgb, var(--site-green) 26%, var(--site-line));
  box-shadow: var(--site-shadow-soft);
}

.site-footer {
  background: rgba(255, 255, 255, 0.18);
}

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-brand {
    margin-right: auto;
  }

  .site-nav {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .intro-band,
  .split-section,
  .visual-section,
  .benefits-stage,
  .proof-layout,
  .first-visit-section,
  .calendar-section,
  .contact-section,
  .about-section,
  .access-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .visual-section,
  .benefits-section,
  .calendar-section {
    width: 100%;
  }

  .benefits-stage {
    max-width: 680px;
  }

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

  .benefits-image-wrap {
    grid-row: 1;
    width: min(420px, 82vw);
    justify-self: center;
  }

  .benefits-list-left .benefit-item,
  .benefits-list-right .benefit-item {
    grid-template-columns: 56px minmax(0, 1fr);
    text-align: left;
  }

  .benefits-list-left .benefit-item .benefit-icon,
  .benefits-list-left .benefit-item > div {
    grid-column: auto;
    grid-row: auto;
  }

  .reformer-media-card {
    min-height: 360px;
  }

  .site-booking-widget {
    grid-template-columns: 1fr;
  }

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

  .shop-checkout-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-card {
    min-height: 132px;
  }

  .site-header {
    gap: 10px;
    min-height: auto;
    padding: 10px 16px;
  }

  .site-brand {
    min-width: 56px;
  }

  .site-brand img {
    width: 56px;
    height: 56px;
  }

  .site-header.is-scrolled .site-brand img {
    width: 50px;
    height: 50px;
  }

  .site-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 14px;
  }

  .site-hero {
    min-height: min(760px, max(640px, calc(100svh - 80px)));
    padding: 48px 20px 24px;
  }

  .site-hero::after {
    background:
      linear-gradient(180deg, rgba(28, 34, 30, 0.66) 0%, rgba(28, 34, 30, 0.82) 58%, rgba(28, 34, 30, 0.62) 100%),
      linear-gradient(90deg, rgba(28, 34, 30, 0.52), rgba(28, 34, 30, 0.16));
  }

  .hero-media {
    inset: 0;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-content h1 {
    font-size: clamp(44px, 15vw, 68px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 48px;
  }

  .hero-facts span {
    width: 100%;
    justify-content: space-between;
  }

  .reformer-media-card {
    min-height: 280px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    position: static;
  }

  .section {
    width: calc(100% - 32px);
    padding-block: 56px;
  }

  .intro-band {
    width: 100%;
  }

  .intro-band div {
    min-height: 96px;
    padding: 22px 20px;
  }

  .service-grid,
  .benefits-list,
  .proof-points,
  .visit-steps,
  .education-grid,
  .contact-grid,
  .contact-form-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .rating-card,
  .proof-points article,
  .visit-steps article,
  .education-card {
    min-height: 0;
    padding: 20px;
  }

  .benefits-section {
    padding-inline: 16px;
  }

  .benefit-item {
    min-height: 0;
    padding: 16px;
  }

  .site-calendar-card,
  .site-slot-card {
    padding: 16px;
  }

  .site-popup-layer {
    align-items: end;
    padding: 16px;
  }

  .site-popup-card {
    padding: 28px 22px 22px;
  }

  .site-popup-card h2 {
    max-width: 14ch;
  }

  .site-calendar-weekdays,
  .site-calendar-grid {
    gap: 4px;
  }

  .site-calendar-day {
    min-height: 38px;
    aspect-ratio: auto;
  }

  .site-slot-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-slot-count {
    align-self: flex-start;
  }

  .site-slot-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-slot-option em {
    text-align: left;
  }

  .site-booking-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-inline: 20px;
  }

  .site-footer-social {
    justify-content: flex-start;
    margin-left: 0;
  }

  .cookie-banner {
    right: 16px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    padding: 18px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }

  .preview-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .preview-row em {
    grid-column: 2;
    justify-self: start;
  }
}
