/* ==========================================================================
   Momcheva Therapy — Design System
   Botanical premium wellness identity, built from the brand logo greens.
   ========================================================================== */

:root {
  /* Color tokens, grounded in the logo's watercolor leaf greens */
  --forest: #1F3D22;
  --deep-green: #2E5233;
  --botanical-green: #4B7A40;
  --leaf-green: #74A35A;
  --lime-green: #A9C97E;
  --green-soft: #EBF2E2;
  --green-pale: #F7FAF2;
  --white: #FFFFFF;
  --cream: #FCFCF8;
  --text: #22301F;
  --text-muted: #5E6B59;
  --border: #DCE7D2;

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-s: 4px;
  --radius-m: 6px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

p { color: var(--text); }
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 46ch;
}

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--botanical-green);
  font-weight: 500;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head.center { margin-inline: auto; text-align: center; }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--forest);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
  border-radius: var(--radius-s);
}
.skip-link:focus {
  left: 24px;
  top: 12px;
}

:focus-visible {
  outline: 2px solid var(--botanical-green);
  outline-offset: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: background-color 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--deep-green); }
.btn-primary:active { transform: translateY(1px); }

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: var(--green-soft); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn[aria-describedby="booking-note"] { position: relative; }

.booking-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 32ch;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: 52px; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--forest);
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--botanical-green);
  font-weight: 600;
  margin-top: 2px;
}

.main-nav {
  display: none;
}
.main-nav ul {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--deep-green);
  padding-block: 6px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--leaf-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--forest); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-cta .btn { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: 8px 24px 20px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 13px 4px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--deep-green);
  border-bottom: 1px solid var(--green-soft);
}
.mobile-nav a[aria-current="page"] { color: var(--forest); }
.mobile-nav .btn { margin-top: 14px; width: 100%; justify-content: center; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 78%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
  padding-block: 56px 64px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { display: block; margin-bottom: 18px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { margin-bottom: 34px; max-width: 50ch; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.hero-art {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  z-index: 1;
}
.hero-art svg { width: 100%; height: auto; }

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    padding-block: 84px 96px;
  }
  .hero-art { max-width: none; order: 2; }
  .hero-copy { order: 1; }
}

/* ---------- Intro / About ---------- */
.intro {
  padding-block: 72px;
}
.intro-grid {
  display: grid;
  gap: 40px;
}
.intro-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--deep-green);
  line-height: 1.5;
  border-left: 3px solid var(--leaf-green);
  padding-left: 24px;
}
.intro-body p + p { margin-top: 18px; }
.intro-body p { max-width: 62ch; }

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
  }
}

/* ---------- Focus strip (what we do) ---------- */
.focus {
  background: var(--green-soft);
  padding-block: 68px;
  position: relative;
}
.focus-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.focus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 30px 26px;
}
.focus-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--botanical-green);
}
.focus-card h3 { margin-bottom: 10px; }
.focus-card p { color: var(--text-muted); font-size: 0.96rem; }

@media (min-width: 700px) {
  .focus-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Philosophy / callout ---------- */
.philosophy {
  padding-block: 80px;
  position: relative;
}
.philosophy-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.philosophy blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--forest);
  line-height: 1.35;
  margin: 0 0 20px;
}
.philosophy cite {
  font-style: normal;
  font-weight: 600;
  color: var(--botanical-green);
  letter-spacing: 0.02em;
}

/* ---------- Partners ---------- */
.partners {
  background: var(--cream);
  padding-block: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 36px;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 28px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 260px;
  max-width: 320px;
  transition: box-shadow 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.partner-card:hover {
  border-color: var(--leaf-green);
  box-shadow: 0 14px 30px -18px rgba(31,61,34,0.28);
  transform: translateY(-2px);
}
.partner-card img { height: 140px; width: auto; max-width: 100%; object-fit: contain; }

@media (min-width: 700px) {
  .partner-card img { height: 168px; }
}

/* ---------- Contact ---------- */
.contact {
  padding-block: 76px;
  background: var(--green-pale);
}
.contact-grid {
  display: grid;
  gap: 40px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.icon-sm {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--botanical-green);
  margin-top: 2px;
}
.contact-label {
  font-weight: 700;
  color: var(--forest);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.contact-list a {
  color: var(--deep-green);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms var(--ease), color 180ms var(--ease);
}
.contact-list a:hover { border-color: currentColor; color: var(--botanical-green); }
.contact-list p { margin: 0; color: var(--text-muted); }

.contact-booking {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.contact-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
}
.contact-qr img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-s);
  border: 1px solid var(--border);
  background: var(--white);
  padding: 4px;
  flex: none;
}
.contact-qr span {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.contact-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-embed, .entrance-photo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.map-embed iframe { display: block; width: 100%; }
.entrance-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.15;
  object-fit: cover;
}
.map-embed figcaption, .entrance-photo figcaption {
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.map-embed figcaption a { color: var(--botanical-green); font-weight: 600; }

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  color: var(--white);
  padding-block: 68px;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 30px; max-width: 48ch; }
.cta-band .booking-note { color: rgba(255,255,255,0.7); }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-start; }

.leaf-deco {
  position: absolute;
  opacity: 0.9;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--deep-green);
  color: var(--white);
  padding-block: 56px 28px;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-logo-badge {
  background: var(--white);
  border-radius: 50%;
  width: 112px;
  height: 112px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.footer-logo-badge img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.footer-brand p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  max-width: 40ch;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
}
.footer-col a:hover { color: var(--lime-green); }
.footer-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* ---------- Tech split (apparatus overview) ---------- */
.tech-split {
  padding-block: 64px;
  background: var(--green-soft);
}
.tech-split-inner {
  display: grid;
  gap: 36px;
  align-items: center;
}
.tech-split-copy .lede { max-width: 52ch; margin-top: 14px; }
.tech-split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tech-split-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 18px;
}
.tech-split-media img:nth-child(2) { margin-top: 28px; }

@media (min-width: 900px) {
  .tech-split-inner { grid-template-columns: 1fr 1fr; }
}

/* ---------- Equipment overview grid ---------- */
.equipment-overview {
  padding-block: 72px;
}
.equipment-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.equipment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.equipment-card:hover { box-shadow: 0 14px 30px -18px rgba(31,61,34,0.28); transform: translateY(-2px); }
.equipment-card-media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--green-pale);
}
.equipment-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  transition: transform 320ms var(--ease);
}
.equipment-card:hover .equipment-card-media img { transform: scale(1.04); }
.equipment-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.equipment-card-body h3 { font-size: 1.2rem; margin: 2px 0 4px; }
.equipment-card-body h3 a { color: var(--forest); }
.equipment-card-body h3 a:hover { color: var(--botanical-green); }
.equipment-card-body p { color: var(--text-muted); font-size: 0.94rem; flex: 1; }
.card-link {
  margin-top: 10px;
  font-weight: 700;
  color: var(--botanical-green);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link span { transition: transform 200ms var(--ease); display: inline-block; }
.card-link:hover span { transform: translateX(3px); }

@media (min-width: 620px) {
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .equipment-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Detail page: breadcrumb + hero ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--botanical-green); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-current] { color: var(--text-muted); }

.detail-hero-inner {
  display: grid;
  gap: 40px;
  align-items: center;
  padding-block: 48px 56px;
}
.detail-hero-media {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.detail-hero-media img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
}
.detail-hero-media .video-card {
  max-height: 480px;
  width: auto;
  margin-inline: auto;
}
.detail-hero-media .video-wrap {
  max-height: 480px;
  width: auto;
  margin-inline: auto;
  display: inline-block;
}
.detail-hero-media .video-wrap .video-card { max-height: 480px; }

@media (min-width: 900px) {
  .detail-hero-inner { grid-template-columns: 1.05fr 0.95fr; padding-block: 72px 80px; }
}

/* ---------- Detail body ---------- */
.detail-body { padding-block: 12px 56px; }
.detail-body-inner {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.detail-body-inner h2 {
  margin-top: 28px;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}
.detail-body-inner h3 {
  margin-top: 10px;
  color: var(--deep-green);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
}
.detail-body-inner p { max-width: 68ch; color: var(--text); }
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 8px;
}
.detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}
.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--leaf-green);
}

/* ---------- Gallery + lightbox ---------- */
.detail-gallery { padding-block: 12px 56px; }
.gallery-heading { margin-bottom: 22px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  display: block;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  padding: 14px;
  transition: transform 280ms var(--ease);
}
.gallery-item:hover img { transform: scale(1.03); }

@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,61,34,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 32px;
}
.lightbox-overlay[hidden] { display: none; }
.lightbox-overlay img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-m);
  background: var(--white);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 20px; height: 20px; }

/* ---------- Detail video ---------- */
.detail-video { padding-block: 12px 56px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 760px;
}
.video-wrap {
  position: relative;
}
.video-card {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background: var(--green-pale);
  display: block;
}
/* Transparent button sitting over the video canvas (not the bottom control
   bar) so a click anywhere on the picture toggles play/pause, while the
   native scrub bar, volume and fullscreen controls stay fully usable. */
.video-click-catcher {
  position: absolute;
  inset: 0;
  bottom: 44px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.video-click-catcher:focus-visible {
  outline: 2px solid var(--botanical-green);
  outline-offset: -2px;
}

/* ---------- Related items ---------- */
.related { padding-block: 12px 64px; background: var(--green-pale); padding-top: 56px; }
.related h2 { margin-bottom: 24px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.related-card:hover { box-shadow: 0 14px 30px -18px rgba(31,61,34,0.28); transform: translateY(-2px); }
.related-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  padding: 14px;
  background: var(--green-pale);
}
.related-name {
  padding: 12px 14px 16px;
  font-weight: 700;
  color: var(--forest);
  font-size: 0.96rem;
}

@media (max-width: 620px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* ---------- Uslugi / Offers sections ---------- */
.uslugi-section { padding-block: 56px; }
.uslugi-section.alt { background: var(--green-pale); }
.uslugi-section .eyebrow { display: block; margin-bottom: 8px; }
.uslugi-section .lede { max-width: 62ch; }
.uslugi-section .lede a { color: var(--botanical-green); font-weight: 700; }
.uslugi-section .lede a:hover { text-decoration: underline; }

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--white);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.95rem;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.price-table th:first-child, .price-table td:first-child { white-space: normal; min-width: 220px; }
.price-table thead th {
  background: var(--green-soft);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--green-pale); }

.accordion-group { display: flex; flex-direction: column; gap: 12px; }
.price-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  background: var(--white);
  overflow: hidden;
}
.price-accordion summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  color: var(--forest);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-accordion summary::-webkit-details-marker { display: none; }
.price-accordion summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--botanical-green);
  font-weight: 400;
  margin-left: 12px;
}
.price-accordion[open] summary::after { content: '–'; }
.price-accordion summary:hover { background: var(--green-pale); }
.price-accordion-body { padding: 0 20px 20px; }

.offers-illustration-wrap {
  max-width: 640px;
  margin: 0 auto 40px;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
}
.offers-illustration-wrap img { width: 100%; height: auto; display: block; }

/* ---------- Reveal on scroll ---------- */
/* Visible by default -- this is a progressive enhancement only.
   JS adds .js-pending to animate elements in; if JS is slow, blocked,
   or errors out, content simply stays visible with no animation. */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.js-pending {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
}
.reveal.js-pending.is-visible {
  opacity: 1;
  transform: none;
}
