/* ============================================================
   INVOLVE — Variable Font
   ============================================================ */
@font-face {
  font-family: 'Involve';
  src: url('styles/fonts/Involve-VF.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   DESIGN SYSTEM — RA|RÉ Sage Editorial
   ============================================================ */
:root {
  /* Brand greens */
  --green-dark:    #182E27;
  --green-muted:   #1e3630;
  --green-brand:   #3a5436;
  --green-medium:  #4e6e49;
  --green-button:  #568673;

  /* Backgrounds */
  --bg-primary:    #fdfcf8;
  --bg-secondary:  #faf7f0;
  --bg-dark:       #182E27;

  /* Text */
  --text-primary:  #231f18;
  --text-secondary:#5a5349;
  --text-muted:    #968e81;
  --text-white:    #fdfcf8;

  /* Borders */
  --border-light:  #e8e4dd;
  --border-default:#d4cfc5;

  /* Ivory accent */
  --ivory-500:     #d0b98a;
  --ivory-600:     #b89a68;

  /* Shadows */
  --shadow-card:   0 1px 4px rgba(26,39,24,0.05), 0 2px 12px rgba(26,39,24,0.04);
  --shadow-card-hover: 0 2px 8px rgba(26,39,24,0.07), 0 6px 24px rgba(26,39,24,0.09);
  --shadow-modal:  0 24px 80px rgba(26,39,24,0.22);
  --shadow-btn:    0 2px 8px rgba(26,39,24,0.10);

  /* Border radius scale */
  --radius-card:   10px;
  --radius-sm:     6px;
  --radius-lg:     18px;
  --radius-pill:   100px;

  /* Compatibility aliases (cross-system) */
  --gold:          #d0b98a;
  --bg-alt:        #faf7f0;
  --border:        rgba(26,39,24,0.10);

  /* Fonts */
  --font-serif:    'Involve', Georgia, serif;
  --font-sans:     'Involve', 'Helvetica Neue', Arial, sans-serif;

  /* Motion */
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
  --tr:            0.3s var(--ease-smooth);
  --tr-spring:     0.4s var(--ease-spring);

  /* Layout */
  --max-w:         1440px;
  --gutter:        clamp(24px, 6vw, 96px);
  --section-pad:   clamp(80px, 10vw, 140px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-brand);
}

.eyebrow--ivory { color: var(--ivory-500); }
.eyebrow--muted { color: var(--text-muted); }

em.accent {
  font-style: normal;
  font-weight: 300;
  color: inherit;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn--primary {
  background: var(--green-button);
  color: var(--text-white);
  letter-spacing: 0.04em;
}
.btn--primary:hover {
  background: var(--green-dark);
  opacity: 1;
}
.btn--primary:active { opacity: 0.9; }

.btn--secondary {
  background: transparent;
  color: var(--green-dark);
  border: 1px solid rgba(24,46,39,0.35);
  letter-spacing: 0.04em;
}
.btn--secondary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--text-white);
}
.btn--secondary:active { opacity: 0.9; }

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 14px 0;
  letter-spacing: 0.04em;
}
.btn--ghost:hover { color: var(--green-dark); }

.btn--ivory {
  background: var(--ivory-500);
  color: var(--green-dark);
}
.btn--ivory:hover {
  background: var(--ivory-600);
}

.btn--white {
  background: var(--text-white);
  color: var(--green-dark);
}
.btn--white:hover {
  background: var(--bg-secondary);
}

.btn--outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(253,252,248,0.5);
}
.btn--outline-white:hover {
  background: rgba(253,252,248,0.1);
  border-color: rgba(253,252,248,0.8);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 10px;
}

.btn--lg {
  padding: 18px 48px;
  font-size: 12px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  transition: background 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(253, 252, 248, 0.96);
  padding: 16px var(--gutter);
  box-shadow: 0 1px 0 var(--border-light), 0 4px 24px rgba(26,39,24,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header__logo {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-white);
  transition: color var(--tr);
  flex-shrink: 0;
}
.site-header.scrolled .header__logo { color: var(--text-primary); }

.header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex: 1;
  justify-content: center;
}

.header__nav-link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,252,248,0.65);
  transition: color var(--tr);
  position: relative;
  padding: 4px 0;
}
.header__nav-link:hover { color: var(--text-white); }
.site-header.scrolled .header__nav-link { color: var(--text-secondary); }
.site-header.scrolled .header__nav-link:hover { color: var(--text-primary); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px rgba(26,39,24,0.10);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease-smooth), visibility 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
  z-index: 300;
}

.nav-dropdown__inner { padding: 8px 0; }

.nav-dropdown__link {
  display: block;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  transition: background var(--tr), color var(--tr);
}
.nav-dropdown__link:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__phone {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(253,252,248,0.65);
  transition: color var(--tr);
}
.header__phone:hover { color: var(--text-white); }
.site-header.scrolled .header__phone { color: var(--text-secondary); }
.site-header.scrolled .header__phone:hover { color: var(--text-primary); }

/* Burger */
.header__burger {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.header__burger span {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: rgba(253,252,248,0.9);
  transition: transform 0.35s var(--ease-smooth), opacity 0.35s var(--ease-smooth), background var(--tr);
  transform-origin: center;
}
/* On scrolled (light bg): dark lines */
.site-header.scrolled .header__burger span { background: var(--text-primary); }
/* On open state: always dark (nav is light bg) */
.header__burger.active span { background: var(--text-primary); }
.header__burger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__burger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 190;
  display: flex;
  flex-direction: column;
  padding: 100px var(--gutter) 48px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-smooth);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--tr);
}
.mobile-nav__link:hover { color: var(--green-brand); }
.mobile-nav__bottom { margin-top: auto; }
.mobile-nav__phone {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
/* Top gradient — ensures burger/logo always readable on any slide */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.hero__slides { position: relative; width: 100%; height: 100%; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease-smooth);
}
.hero__slide.active { opacity: 1; z-index: 1; }

.hero__slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s var(--ease-smooth);
}
.hero__slide.active .hero__slide-bg { transform: scale(1); }

.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,39,24,0.4) 0%, rgba(26,39,24,0.15) 50%, rgba(26,39,24,0.55) 100%);
}

.hero__slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 8vw, 120px);
}

.hero__eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-500);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero__title em {
  font-style: normal;
  color: rgba(253,252,248,0.85);
}

.hero__subtitle {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  color: rgba(253,252,248,0.7);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Light slide variant */
.hero__slide--light .hero__slide-overlay {
  background: linear-gradient(to right, rgba(253,252,248,0.95) 50%, rgba(253,252,248,0.3) 100%);
}
.hero__slide--light .hero__slide-content { justify-content: center; }
.hero__slide--light .hero__eyebrow { color: var(--green-brand); }
.hero__slide--light .hero__title { color: var(--text-primary); }
.hero__slide--light .hero__title em { font-style: normal; color: var(--green-brand); }
.hero__slide--light .hero__subtitle { color: var(--text-secondary); }

/* Split slide */
.hero__slide--split .hero__slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: initial;
  padding-top: 80px;
}
.hero__slide--split .hero__slide-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__slide--split .hero__slide-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

/* Green panel slide */
.hero__slide--panel .hero__slide-overlay { display: none; }
.hero__slide--panel .hero__panel-left {
  position: absolute;
  inset: 0 50% 0 0;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(40px, 5vw, 80px);
  z-index: 2;
}
.hero__slide--panel .hero__panel-right {
  position: absolute;
  inset: 0 0 0 50%;
  overflow: hidden;
}
.hero__slide--panel .hero__panel-right img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Film strip slide */
.hero__slide--film .hero__slide-content {
  justify-content: flex-end;
  padding-bottom: 0;
}
.hero__film-strip {
  background: rgba(26,39,24,0.88);
  padding: 32px clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(8px);
  margin-bottom: 0;
}
.hero__film-strip .hero__title {
  font-size: clamp(22px, 3vw, 42px);
  margin-bottom: 0;
}

/* Countdown */
.countdown { display: flex; gap: 24px; margin-bottom: 28px; }
.countdown__unit { text-align: center; }
.countdown__num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.countdown__label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253,252,248,0.5);
  margin-top: 6px;
}

/* Promo badge */
.promo-badge {
  display: inline-block;
  background: var(--green-brand);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Hero controls */
.hero__controls {
  position: absolute;
  bottom: clamp(28px, 4vw, 48px);
  right: var(--gutter);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(253,252,248,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-smooth), transform 0.3s var(--ease-spring), width 0.3s var(--ease-smooth);
  padding: 0;
}
.hero__dot.active {
  background: var(--text-white);
  width: 24px;
  border-radius: 3px;
}

.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ivory-500);
  width: 0%;
  transition: width 5s linear;
  z-index: 10;
}
.hero__progress.running { width: 100%; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-secondary); }
.section--dark { background: var(--green-dark); }
.section--dark-muted { background: var(--green-muted); }

.section__header {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section__header--center { text-align: center; }

.section__eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 16px;
}
.section--dark .section__eyebrow { color: var(--ivory-500); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.section__title em {
  font-style: normal;
  color: var(--green-brand);
}
.section--dark .section__title { color: var(--text-white); }
.section--dark .section__title em { color: var(--ivory-500); }

.section__subtitle {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 560px;
}
.section--dark .section__subtitle { color: rgba(253,252,248,0.6); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  transition: box-shadow 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Service cards */
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.service-card__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.service-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.service-card:hover .service-card__photo img { transform: scale(1.06); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,24,0.85) 0%, rgba(26,39,24,0.1) 60%);
  transition: opacity 0.3s var(--ease-smooth);
}
.service-card:hover .service-card__overlay { opacity: 0.9; }
.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}
.service-card__eyebrow {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-500);
  margin-bottom: 10px;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,252,248,0.6);
  margin-top: 14px;
  transition: color var(--tr), gap var(--tr);
}
.service-card:hover .service-card__link { color: var(--text-white); gap: 14px; }
.service-card__link::after {
  content: '→';
  font-size: 12px;
}

/* Specialist card */
.specialist-card {
  overflow: hidden;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  transition: box-shadow 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
}
.specialist-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.specialist-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--bg-secondary);
}
.specialist-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-smooth);
}
.specialist-card:hover .specialist-card__photo img { transform: scale(1.04); }
.specialist-card__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,39,24,0.3) 100%);
}
.specialist-card__body {
  padding: 20px 24px 24px;
}
.specialist-card__role {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 8px;
}
.specialist-card__name {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.2;
}
.specialist-card__meta {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.specialist-card__btn {
  width: 100%;
}

/* Review card — for index.html inline reviews */
.review-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease-smooth);
}
.review-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-secondary);
  flex-shrink: 0;
}
.review-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-card__name {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}
.review-card__source {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 2px;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--ivory-500);
  font-size: 12px;
}
.review-card__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}
.review-card__date {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 14px;
}

/* Before/After card */
.ba-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: ew-resize;
  user-select: none;
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.ba-card__before,
.ba-card__after {
  position: absolute;
  inset: 0;
}
.ba-card__before img,
.ba-card__after img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-card__after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.1s linear;
}
.ba-card__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--text-white);
  transform: translateX(-50%);
  z-index: 5;
  transition: left 0.1s linear;
}
.ba-card__handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--text-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  font-size: 12px;
  color: var(--green-dark);
  transition: left 0.1s linear;
}
.ba-card__labels {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 7;
  pointer-events: none;
}
.ba-card__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-white);
  background: rgba(26,39,24,0.6);
  padding: 4px 10px;
  border-radius: 100px;
}
.ba-card__meta {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 7;
  background: linear-gradient(to bottom, rgba(26,39,24,0.5) 0%, transparent 100%);
}
.ba-card__procedure {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,252,248,0.8);
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.h-scroll {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll > * { flex-shrink: 0; width: clamp(260px, 28vw, 340px); }

/* ============================================================
   ADVANTAGES GRID
   ============================================================ */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-light);
}
.advantage {
  padding: clamp(32px, 4vw, 52px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--border-light);
  transition: background var(--tr);
}
.advantage:last-child { border-right: none; }
.advantage:hover { background: var(--bg-secondary); }
.advantage__num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--green-brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.advantage__title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.advantage__text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--border-light);
}
.accordion-item:first-child { border-top: 1px solid var(--border-light); }

.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-align: left;
  gap: 20px;
  transition: color var(--tr);
}
.accordion-btn:hover { color: var(--green-brand); }

.accordion-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--tr), border-color var(--tr), transform 0.35s var(--ease-smooth);
  color: var(--text-secondary);
  font-size: 12px;
}
.accordion-item.open .accordion-icon {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--text-white);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}
.accordion-body__inner {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
  padding: 0 0 22px;
}

/* Price accordion */
.price-category { margin-bottom: 0; }
.price-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: color var(--tr);
}
.price-category__header:hover { color: var(--green-brand); }
.price-category__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  gap: 16px;
}
.price-row:last-child { border-bottom: none; }
.price-row__name {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  flex: 1;
}
.price-row__price {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  white-space: nowrap;
}
.price-row__btn { flex-shrink: 0; }

/* ============================================================
   BOOKING FORM
   ============================================================ */
.form {
  display: grid;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-primary);
  transition: border-color var(--tr), box-shadow var(--tr);
  border-radius: var(--radius-sm);
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-brand);
  box-shadow: 0 0 0 3px rgba(58,84,54,0.08);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
}
.form-error {
  font-size: 10px;
  color: #c0392b;
  letter-spacing: 0.04em;
}
.form-textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.form-checkbox input {
  width: 16px; height: 16px;
  border: 1px solid var(--border-default);
  background: var(--bg-secondary);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--tr), border-color var(--tr);
}
.form-checkbox input:checked {
  background: var(--green-dark);
  border-color: var(--green-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.form-checkbox__label {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}
.form-checkbox__label a {
  color: var(--green-brand);
  text-decoration: underline;
}
.form--grid-2 { grid-template-columns: 1fr 1fr; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,39,24,0.6);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s linear 0.35s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s var(--ease-smooth), visibility 0s linear 0s;
}
.modal {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease-spring);
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal__header {
  padding: 36px 36px 24px;
  border-bottom: 1px solid var(--border-light);
}
.modal__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal__subtitle {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}
.modal__body { padding: 28px 36px 36px; }
.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 18px;
  transition: background var(--tr), color var(--tr);
}
.modal__close:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  padding: clamp(64px, 8vw, 100px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
  display: block;
}
.footer__tagline {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,252,248,0.45);
  margin-bottom: 28px;
}
.footer__col-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-500);
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,252,248,0.55);
  margin-bottom: 12px;
  transition: color var(--tr);
  letter-spacing: 0.02em;
}
.footer__link:hover {
  color: var(--text-white);
}
.footer__address {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,252,248,0.55);
  margin-bottom: 12px;
}
.footer__phone-large {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: block;
  transition: color var(--tr);
}
.footer__phone-large:hover { color: var(--ivory-500); }
.footer__bottom {
  border-top: 1px solid rgba(253,252,248,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__copy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(253,252,248,0.3);
  letter-spacing: 0.06em;
}
.footer__policy {
  font-size: 10px;
  font-weight: 300;
  color: rgba(253,252,248,0.3);
  letter-spacing: 0.06em;
  transition: color var(--tr);
}
.footer__policy:hover { color: rgba(253,252,248,0.6); }

/* ============================================================
   INNER HERO (subpages)
   ============================================================ */
.inner-hero {
  height: 40vh;
  min-height: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.inner-hero--full { height: 100vh; }
.inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,39,24,0.3) 0%, rgba(26,39,24,0.7) 100%);
}
.inner-hero__content {
  position: relative;
  z-index: 2;
}
.inner-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(253,252,248,0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.inner-hero__breadcrumbs a:hover { color: var(--text-white); }
.inner-hero__breadcrumbs span { opacity: 0.4; }
.inner-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.inner-hero__title em { font-style: normal; color: rgba(253,252,248,0.75); }
.inner-hero__subtitle {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(253,252,248,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ============================================================
   PROMO BLOCK
   ============================================================ */
.promo-block {
  background: var(--green-dark);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.promo-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,185,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.promo-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 64px);
  flex-wrap: wrap;
}
.promo-block__content { flex: 1; min-width: 280px; }
.promo-block__eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-500);
  margin-bottom: 16px;
}
.promo-block__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.promo-block__title em { font-style: normal; color: var(--ivory-500); }
.promo-block__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(253,252,248,0.55);
  margin-bottom: 32px;
  max-width: 420px;
}
.promo-block__side { flex-shrink: 0; text-align: center; }
.promo-block__price-old {
  font-size: 12px;
  font-weight: 300;
  color: rgba(253,252,248,0.35);
  text-decoration: line-through;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.promo-block__price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--ivory-500);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.promo-block__price-note {
  font-size: 10px;
  font-weight: 300;
  color: rgba(253,252,248,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ============================================================
   3D TOUR BLOCK
   ============================================================ */
.tour-block {
  background: var(--bg-secondary);
  padding: var(--section-pad) 0;
}
.tour-block__frame-wrap {
  aspect-ratio: 16/7;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}
.tour-block__frame-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
.tour-block__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-secondary);
  color: var(--text-muted);
}
.tour-block__placeholder-icon {
  font-size: 48px;
  opacity: 0.3;
}

/* ============================================================
   MAP / CONTACTS
   ============================================================ */
.contacts-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contacts-info {
  padding: clamp(56px, 8vw, 100px) clamp(32px, 5vw, 80px);
  background: var(--bg-secondary);
}
.contacts-map {
  background: var(--bg-secondary);
  min-height: 480px;
  position: relative;
}
.contacts-map iframe {
  width: 100%; height: 100%;
  border: none;
  position: absolute;
  inset: 0;
  display: block;
}
.contacts-map__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 13px;
  min-height: 480px;
}
.contact-item { margin-bottom: 32px; }
.contact-item__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 10px;
}
.contact-item__value {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.contact-item__value a:hover { color: var(--green-brand); }
.contact-item__note {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   FOUNDER QUOTE
   ============================================================ */
.founder-section {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  overflow: visible;
}
.founder-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.founder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,24,0.25) 0%, transparent 50%);
}
/* .founder-quote has NO data-reveal → no transform/opacity → no GPU layer → ::before never clips */
.founder-quote {
  position: relative;
  overflow: visible;
}
.founder-quote::before {
  content: '\201C';
  position: absolute;
  top: -24px;
  left: -12px;
  font-family: var(--font-serif);
  font-size: 72px;
  font-style: normal;
  color: var(--green-brand);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.founder-quote__text {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.founder-quote__author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-brand);
}
.founder-quote__role {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
  background: transparent;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  cursor: pointer;
}
.filter-btn:hover {
  border-color: var(--green-brand);
  color: var(--green-brand);
}
.filter-btn.active {
  background: var(--green-dark);
  color: var(--text-white);
  border-color: var(--green-dark);
}

/* ============================================================
   PLATFORM RATINGS
   ============================================================ */
.rating-card {
  border: 1px solid var(--border-light);
  padding: 28px 24px;
  background: var(--bg-primary);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow 0.3s var(--ease-smooth);
}
.rating-card:hover {
  box-shadow: var(--shadow-card-hover);
}
.rating-card__logo {
  width: 48px; height: 48px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.rating-card__name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.rating-card__score {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.rating-card__stars {
  color: var(--ivory-500);
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 3px;
}
.rating-card__count {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================================
   VIDEO BLOCK
   ============================================================ */
.video-block { padding: var(--section-pad) 0; }
.video-block__frame {
  aspect-ratio: 16/9;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}
.video-block__frame iframe {
  width: 100%; height: 100%;
  border: none;
}
.video-block__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green-dark);
  color: rgba(253,252,248,0.4);
  font-size: 13px;
  gap: 16px;
}
.video-play-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(253,252,248,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(253,252,248,0.6);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,39,24,0.9);
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-smooth), visibility 0.3s var(--ease-smooth);
  cursor: zoom-out;
}
.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(253,252,248,0.15);
  color: var(--text-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tr);
}
.lightbox-close:hover { background: rgba(253,252,248,0.3); }

/* ============================================================
   SLIDER NAV ARROWS
   ============================================================ */
.slider-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 16px;
  transition: background var(--tr), border-color var(--tr), color var(--tr);
}
.slider-arrow:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--text-white);
}

/* ============================================================
   CERTIFICATES GRID
   ============================================================ */
.certificate-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-card);
}
.certificate-item:hover {
  box-shadow: var(--shadow-card-hover);
}
.certificate-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.certificate-item:hover img { transform: scale(1.04); }
.certificate-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,24,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr);
  color: var(--text-white);
  font-size: 24px;
}
.certificate-item:hover .certificate-item__overlay { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .advantage:nth-child(2) { border-right: none; }
  .advantage { border-bottom: 1px solid var(--border-light); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contacts-section { grid-template-columns: 1fr; }
  .contacts-map { min-height: 360px; }
  .contacts-map__placeholder { min-height: 360px; }
  .founder-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .hero__slide--split .hero__slide-content { grid-template-columns: 1fr; }
  .hero__slide--split .hero__slide-right { display: none; }
  .hero__slide--panel .hero__panel-left { inset: 0 40% 0 0; }
  .hero__slide--panel .hero__panel-right { inset: 0 0 0 60%; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__phone { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .advantages { grid-template-columns: 1fr; }
  .advantage { border-right: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__film-strip { flex-direction: column; gap: 16px; }
  .promo-block__inner { flex-direction: column; }
  .contacts-section { grid-template-columns: 1fr; }
  .hero__slide--panel .hero__panel-left { inset: 0; background: rgba(26,39,24,0.75); }
  .hero__slide--panel .hero__panel-right { display: none; }
  .form--grid-2 { grid-template-columns: 1fr; }
  .modal { margin: 12px; max-width: 100%; }
  .modal__header { padding: 24px 24px 16px; }
  .modal__body { padding: 20px 24px 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero__controls { right: 16px; }
}

/* ============================================================
   SERVICES GRID (text-based, used on specialist page)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.svc-item {
  background: var(--bg-primary);
  padding: 28px 24px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--tr);
}
.svc-item:hover { background: var(--bg-alt); }
.svc-item__number {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.svc-item__title {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
  flex: 1;
}
.svc-item__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}
.svc-item__arrow {
  font-size: 16px;
  color: var(--green-brand);
  transition: transform var(--tr);
  align-self: flex-start;
  margin-top: 4px;
}
.svc-item:hover .svc-item__arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SPECIALISTS GRID
   ============================================================ */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: 24px;
}
.specialists-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn--active,
.filter-btn.active {
  background: var(--green-dark);
  color: var(--text-white);
  border-color: var(--green-dark);
}
.specialist-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.specialist-card__dot {
  color: var(--text-muted);
  font-size: 10px;
}
.specialist-card__years,
.specialist-card__certs {
  font-size: 11px;
  color: var(--text-muted);
}
.specialist-card__photo-link {
  display: block;
  text-decoration: none;
}

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-default);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ============================================================
   SPECIALIST HERO (split layout)
   ============================================================ */
.specialist-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding-top: 80px; /* header height */
}
.specialist-hero__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.specialist-hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.specialist-hero__info {
  padding: clamp(40px, 5vw, 80px) clamp(32px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
}
.specialist-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 12px 0 28px;
}
.specialist-hero__name em { font-style: normal; color: var(--green-brand); }
.specialist-hero__bio {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}
.specialist-hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.specialist-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-pill__num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-pill__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.breadcrumb__link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--tr);
}
.breadcrumb__link:hover { color: var(--text-primary); }
.breadcrumb__sep { opacity: 0.4; }
.breadcrumb__current { color: var(--text-primary); }

/* ============================================================
   EDUCATION LIST
   ============================================================ */
.education-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}
.education-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.education-item__year {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.education-item__title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.4;
}
.education-item__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   CERTIFICATES GRID
   ============================================================ */
.certs-section { padding: clamp(72px, 9vw, 120px) 0; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cert-thumb {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}
.cert-thumb:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card-hover);
}
.cert-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   PLATFORM RATINGS (reviews page)
   ============================================================ */
.platform-ratings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.platform-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  background: var(--bg-primary);
  box-shadow: var(--shadow-card);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.platform-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-default);
}
.platform-card__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.platform-card__name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.platform-card__score {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}
.platform-card__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.platform-card__count {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   REVIEWS GRID
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card__platform {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reviews-filter {
  display: flex;
  flex-direction: column;
}

/* ============================================================
   BOOKING SPLIT (specialist page)
   ============================================================ */
.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

/* ============================================================
   ADDITIONAL BUTTONS
   ============================================================ */
.btn--gold {
  background: var(--gold);
  color: var(--green-dark);
  border: 1px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr), transform 0.2s ease;
}
.btn--gold:hover {
  background: var(--gold-light, #d4b485);
  border-color: var(--gold-light, #d4b485);
}
.btn--outline-light {
  background: transparent;
  color: rgba(253,252,248,0.75);
  border: 1px solid rgba(253,252,248,0.30);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: border-color var(--tr), color var(--tr);
}
.btn--outline-light:hover {
  border-color: rgba(253,252,248,0.7);
  color: rgba(253,252,248,1);
}

/* ============================================================
   INNER HERO SHORT MODIFIER
   ============================================================ */
.inner-hero--short {
  height: 30vh;
  min-height: 240px;
}

/* ============================================================
   RESPONSIVE — NEW PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .specialist-hero { grid-template-columns: 1fr; min-height: auto; }
  .specialist-hero__photo { height: 60vw; max-height: 500px; }
  .certs-grid { grid-template-columns: repeat(4, 1fr); }
  .platform-ratings { grid-template-columns: repeat(2, 1fr); }
  .booking-split { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .specialists-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .platform-ratings { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .education-item { grid-template-columns: 56px 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .specialists-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-ratings { grid-template-columns: 1fr 1fr; }
  .specialist-hero__stats { gap: 16px; }
}

/* ============================================================
   SECTION HELPERS (shared between old & new pages)
   ============================================================ */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-subheading {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 48px;
}
.section-subheading--wide { max-width: 680px; }

/* ============================================================
   PRICE TABLE (prices.html)
   ============================================================ */
.prices-section { padding: clamp(72px, 9vw, 120px) 0; }

.price-category {
  border-top: 1px solid var(--border-light);
  padding-top: 48px;
  margin-top: 48px;
}
.price-category:first-child { margin-top: 0; border-top: none; }

.price-category__title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--tr);
}
.price-table tr:hover { background: var(--bg-secondary); }
.price-table td {
  padding: 20px 16px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
}
.price-table td:first-child { padding-right: 24px; }
.price-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15px;
}
.price-note {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   PROMO CARDS (promos.html)
   ============================================================ */
.promos-section { padding: clamp(72px, 9vw, 120px) 0; }

.promos-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.promo-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-card);
  text-decoration: none;
  cursor: pointer;
}

.promo-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s var(--ease-smooth);
}
.promo-card:hover .promo-card__bg { opacity: 0; }

.promo-card__face {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,24,0.8) 0%, rgba(26,39,24,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  z-index: 2;
  transition: opacity 0.4s var(--ease-smooth);
}
.promo-card:hover .promo-card__face { opacity: 0; }

.promo-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-500);
  border: 1px solid rgba(208,185,138,0.45);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.promo-card__title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.3;
}

.promo-card__back {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 3;
}
.promo-card:hover .promo-card__back { opacity: 1; }

.promo-card__quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.01em;
}

/* Placeholder tinted backgrounds */
.ph { background-size: cover; background-position: center; }
.ph--promo-1 { background-color: var(--green-dark); background-image: linear-gradient(135deg, #1a2718 0%, #3a5436 100%); }
.ph--promo-2 { background-color: var(--green-muted); background-image: linear-gradient(135deg, #243520 0%, #4e6e49 100%); }
.ph--promo-3 { background-color: #968e81; background-image: linear-gradient(135deg, #79796D 0%, #d4cfc5 100%); }
.ph--promo-4 { background-color: var(--ivory-500); background-image: linear-gradient(135deg, #b89a68 0%, #d0b98a 100%); }
.ph--spec-1 { background-color: var(--green-dark); background-image: linear-gradient(160deg, #1a2718 0%, #3a5436 100%); }
.ph--spec-2 { background-color: var(--green-muted); background-image: linear-gradient(160deg, #243520 0%, #4e6e49 100%); }
.ph--spec-3 { background-color: #968e81; background-image: linear-gradient(160deg, #6b6358 0%, #b8b0a4 100%); }

/* Specialist cards for about.html (old design, simple) */
.specialists-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  margin-top: 48px;
}
.specialists-section {
  padding: clamp(72px, 9vw, 120px) 0;
}

/* Simple specialist card for about.html */
.specialist-card__name {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
  padding-left: 20px;
  padding-right: 20px;
}
.specialist-card__role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 22px;
}
.specialist-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-secondary);
  border-radius: var(--radius-card);
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .promos-page-grid { grid-template-columns: repeat(2, 1fr); }
  .specialists-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .promos-page-grid { grid-template-columns: 1fr; }
  .specialists-row { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   TABLET & MOBILE ADAPTATION
   Only overrides within breakpoints — desktop untouched.
   ============================================================ */

/* ── TABLET ────────────────────────────────── ≤1024px ── */
@media (max-width: 1024px) {
  /* Slightly tighter header on tablet */
  .site-header { padding: 20px var(--gutter); }
  .site-header.scrolled { padding: 14px var(--gutter); }

  /* Section vertical rhythm */
  :root { --section-pad: clamp(64px, 9vw, 120px); }

  /* Inner hero shorter on tablet */
  .inner-hero { min-height: 300px; }

  /* Contacts section: stack info over map */
  .contacts-info { padding: clamp(48px, 7vw, 80px) clamp(28px, 4vw, 56px); }

  /* Cat intro grid (service subcategory pages) */
  .cat-intro__grid { grid-template-columns: 1fr; }
}

/* ── TABLET → MOBILE ────────────────────────── ≤768px ── */
@media (max-width: 768px) {
  /* --- Header --- */
  .site-header { padding: 18px var(--gutter); }
  .site-header.scrolled { padding: 12px var(--gutter); }
  .header__logo { font-size: 15px; letter-spacing: 0.22em; }
  .header__right { gap: 12px; }

  /* --- Mobile nav: clean, light, finger-friendly --- */
  .mobile-nav {
    padding: 84px 28px 44px;
  }
  .mobile-nav__link {
    font-size: clamp(19px, 5vw, 28px);
    padding: 15px 0;
    letter-spacing: -0.005em;
    line-height: 1.2;
  }
  .mobile-nav__bottom {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
  }
  .mobile-nav__phone {
    font-size: 14px;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
  }

  /* --- Hero --- */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero__slide-content { padding-bottom: clamp(52px, 7vh, 88px); }
  .hero__title { margin-bottom: 18px; line-height: 1.06; }
  .hero__subtitle { margin-bottom: 24px; max-width: 100%; }
  .hero__actions { flex-wrap: wrap; gap: 10px; }
  .hero__controls { bottom: 28px; }

  /* --- Section rhythm --- */
  :root { --section-pad: clamp(52px, 8vw, 96px); }
  .section__header { margin-bottom: clamp(32px, 5vw, 56px); }

  /* --- About intro 2-col → 1-col (index.html) --- */
  .about-intro-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .about-intro-photo {
    aspect-ratio: 3/2 !important;
    max-height: 420px;
  }

  /* --- Split grids (smas.html description) --- */
  .split-grid {
    grid-template-columns: 1fr !important;
    gap: clamp(32px, 5vw, 52px) !important;
  }

  /* --- Advantages: reduce padding --- */
  .advantage { padding: clamp(24px, 4vw, 40px) clamp(20px, 3vw, 32px); }
  .advantage__num { font-size: clamp(32px, 6vw, 48px); }

  /* --- h-scroll on mobile: allow horizontal but ensure good snap --- */
  .h-scroll { scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .h-scroll > * { scroll-snap-align: start; }

  /* --- Promo block rhythm --- */
  .promo-block { padding: clamp(44px, 6vw, 72px) 0; }
  .promo-block__desc { margin-bottom: 20px; }

  /* --- Footer --- */
  .site-footer { padding: clamp(48px, 7vw, 80px) 0 0; }
  .footer__grid { row-gap: 32px; }
  .footer__phone-large { font-size: 18px; }
  .footer__col-title { margin-bottom: 14px; }
  .footer__link { margin-bottom: 10px; }

  /* --- Modal → bottom sheet on mobile --- */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92dvh;
    max-height: 92vh;
    margin: 0;
    max-width: 100%;
    width: 100%;
    transform: translateY(48px) scale(1);
  }
  .modal-overlay.open .modal {
    transform: translateY(0) scale(1);
  }

  /* --- Inner hero --- */
  .inner-hero { min-height: 260px; padding-bottom: clamp(36px, 5vw, 64px); }
  .inner-hero__title { line-height: 1.06; }
  .inner-hero__subtitle { max-width: 100%; }
  .inner-hero__breadcrumbs { flex-wrap: wrap; }

  /* --- Contacts section mobile --- */
  .contacts-info { padding: clamp(40px, 6vw, 64px) var(--gutter); }
  .contacts-map {
    min-height: 320px;
    border-left: none;
    border-top: 1px solid var(--border-light);
  }

  /* --- Price table mobile --- */
  .price-table td { padding: 15px 10px; font-size: 12px; }
  .price-table td:last-child { font-size: 13px; }
  .price-category__title { margin-bottom: 20px; }

  /* --- Specialist hero --- */
  .specialist-hero { padding-top: 0; }
  .specialist-hero__info { padding: clamp(32px, 5vw, 56px) var(--gutter); }

  /* --- Booking split on specialist page --- */
  .booking-split { gap: clamp(32px, 5vw, 56px); }
}

/* ── MOBILE ──────────────────────────────────── ≤600px ── */
@media (max-width: 600px) {
  /* Hero CTA: stack vertically, comfortable width */
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero__actions .btn {
    min-width: 200px;
    justify-content: center;
  }

  /* Titles: tighter tracking at small sizes */
  .section__title { letter-spacing: -0.02em; }
  .inner-hero__title { font-size: clamp(26px, 7.5vw, 42px); }

  /* Review cards: tighter padding */
  .review-card { padding: 22px 20px 20px; }
  .review-card__text { font-size: 12px; }

  /* Contact values */
  .contact-item__value { font-size: clamp(14px, 4.5vw, 18px); }

  /* Smas bullets: 2 columns */
  .bullets-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Cat-procs cards: full padding reduction */
  .proc-card { padding: 24px; }
  .proc-card__title { font-size: 18px; }

  /* Promo block CTA */
  .promo-block__inner .btn { width: 100%; justify-content: center; }

  /* Platform ratings on reviews page */
  .platform-ratings { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Founders quote font */
  .founder-quote__text { font-size: clamp(17px, 4.5vw, 24px); }
}

/* ── SMALL MOBILE ────────────────────────────── ≤480px ── */
@media (max-width: 480px) {
  :root { --gutter: 18px; }

  /* Header */
  .site-header { padding: 16px var(--gutter); }
  .header__logo { font-size: 14px; letter-spacing: 0.2em; }

  /* Hero */
  .hero__title { font-size: clamp(30px, 8.5vw, 48px); }
  .hero__subtitle { font-size: 13px; }
  .hero__actions .btn { width: 100%; min-width: 0; }

  /* Inner hero */
  .inner-hero { min-height: 220px; }

  /* Mobile nav */
  .mobile-nav { padding: 76px 20px 36px; }
  .mobile-nav__link { font-size: clamp(17px, 6vw, 24px); padding: 13px 0; }

  /* Service cards: square ratio on very small screens */
  .service-card { aspect-ratio: 1 / 1; }

  /* Specialist card body */
  .specialist-card__body { padding: 16px 18px 20px; }

  /* Advantages: 2 columns still readable */
  .advantage__num { font-size: clamp(28px, 7vw, 40px); }
  .advantage__text { font-size: 11px; }

  /* Footer */
  .footer__phone-large { font-size: 17px; }

  /* Modal */
  .modal__header { padding: 20px 20px 14px; }
  .modal__body { padding: 16px 20px 28px; }
  .modal__close { top: 14px; right: 14px; }
  .modal__title { font-size: clamp(18px, 5vw, 24px); }

  /* Forms: 16px prevents iOS auto-zoom */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
    padding: 13px 15px;
  }
  .form-checkbox__label { font-size: 12px; }

  /* Price table: tighter */
  .price-table td { padding: 13px 6px; font-size: 11px; }
  .price-table td:last-child { font-size: 12px; white-space: normal; }

  /* Smas bullets: 1 column */
  .bullets-grid { grid-template-columns: 1fr !important; }

  /* Cat-intro padding */
  .cat-intro { padding: clamp(56px, 8vw, 96px) 0; }
  .cat-procs { padding: clamp(48px, 7vw, 88px) 0; }
}

/* ── EXTRA SMALL ─────────────────────────────── ≤390px ── */
@media (max-width: 390px) {
  :root { --gutter: 16px; }

  .hero__title { font-size: clamp(26px, 8vw, 38px); line-height: 1.07; }
  .hero__subtitle { font-size: 12px; }
  .section__title { font-size: clamp(22px, 7.5vw, 32px); }
  .inner-hero__title { font-size: clamp(22px, 8vw, 36px); }

  .hero__actions .btn { font-size: 10px; padding: 13px 22px; }

  .mobile-nav__link { font-size: clamp(16px, 6vw, 22px); padding: 12px 0; }
  .mobile-nav { padding: 72px 16px 32px; }

  .footer__grid { row-gap: 28px; }
  .advantage { padding: 20px 16px; }
}

/* ============================================================
   FIGMA REDESIGN — Phase 2 layout additions
   ============================================================ */

/* — No italic for em accents site-wide — */
em,
h1 em, h2 em, h3 em, h4 em,
.section__title em,
.hero__title em,
.inner-hero__title em,
.inner-hero__subtitle em,
.promo-block__title em,
.specialist-hero__name em,
.about-cta__heading em,
.about-page-intro__title em,
em.accent {
  font-style: normal !important;
}
.section__title em { font-weight: 400; color: var(--green-brand); }
.section--dark .section__title em { color: var(--ivory-500); }
.hero__title em { font-weight: 400; color: rgba(253,252,248,0.9); }
.hero__slide--light .hero__title em { font-style: normal; color: var(--green-brand); }
.founder-quote__text { font-style: normal; }

/* — Hero: editorial split (slide 1) — */
.hero__slide--editorial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s var(--ease-smooth);
  display: grid;
  grid-template-columns: 50% 50%;
}
.hero__slide--editorial.active {
  opacity: 1;
  z-index: 1;
}
.hero__editorial-left {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(40px, 5.5vw, 96px) 72px;
}
.hero__editorial-right {
  position: relative;
  overflow: hidden;
}
.hero__editorial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.06);
  transition: transform 8s var(--ease-smooth);
}
.hero__slide--editorial.active .hero__editorial-photo {
  transform: scale(1);
}

/* — About: full-bleed editorial split — */
.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(500px, 58vh, 740px);
}
.about-editorial__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}
.about-editorial__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-editorial__content {
  padding: clamp(56px, 7vw, 100px) clamp(48px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-primary);
}
.about-editorial__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(36px, 4vw, 56px);
  border: 1px solid var(--border-light);
}
.about-editorial__stat {
  padding: 22px 24px;
  border-right: 1px solid var(--border-light);
}
.about-editorial__stat:nth-child(2) { border-right: none; }
.about-editorial__stat:nth-child(3) {
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
}
.about-editorial__stat:nth-child(4) {
  border-top: 1px solid var(--border-light);
  border-right: none;
}
.about-editorial__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--green-brand);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-editorial__stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* — Services: bento editorial grid — */
.services-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: clamp(190px, 20vw, 295px);
  gap: clamp(10px, 1.2vw, 16px);
}
.services-bento .service-card {
  aspect-ratio: unset;
  height: 100%;
}
.services-bento .service-card--featured {
  grid-row: span 2;
}
.services-bento .service-card--wide {
  grid-column: 1 / -1;
  height: clamp(160px, 16vw, 220px);
}
.services-bento .service-card--wide .service-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  bottom: 0; top: 0; left: 0; right: 0;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.services-bento .service-card--wide .service-card__title {
  font-size: clamp(20px, 2.5vw, 32px);
}
.services-bento .service-card--wide .service-card__link {
  margin-top: 0;
}

/* — Promo photo cards — */
.promo-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(32px, 4vw, 48px);
}
.promo-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  display: block;
  transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}
.promo-photo-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.promo-photo-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.promo-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.promo-photo-card:hover .promo-photo-card__img img { transform: scale(1.05); }
.promo-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,39,24,0.92) 0%, rgba(26,39,24,0.25) 55%, transparent 100%);
}
.promo-photo-card__body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 28px 24px;
}
.promo-photo-card__badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-500);
  border: 1px solid rgba(208,185,138,0.45);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.promo-photo-card__value {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.promo-photo-card__title {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 300;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 8px;
}
.promo-photo-card__desc {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(253,252,248,0.6);
  margin-bottom: 18px;
}
.promo-photo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-500);
  transition: gap 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}
.promo-photo-card__cta::after { content: '→'; }
.promo-photo-card:hover .promo-photo-card__cta { gap: 14px; color: var(--text-white); }

/* — Inline booking strip — */
.booking-strip {
  background: var(--green-dark);
  padding: clamp(60px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.booking-strip::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,185,138,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.booking-strip::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,110,73,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.booking-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.booking-strip__eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-500);
  margin-bottom: 14px;
}
.booking-strip__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 300;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.booking-strip__sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(253,252,248,0.5);
  max-width: 360px;
}
.booking-strip__form-wrap {
  background: rgba(253,252,248,0.06);
  border: 1px solid rgba(253,252,248,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
}
.booking-strip__form .form-label {
  color: rgba(253,252,248,0.45);
}
.booking-strip__form .form-input,
.booking-strip__form .form-select {
  background: rgba(253,252,248,0.08);
  border-color: rgba(253,252,248,0.14);
  color: var(--text-white);
}
.booking-strip__form .form-input::placeholder {
  color: rgba(253,252,248,0.28);
}
.booking-strip__form .form-input:focus,
.booking-strip__form .form-select:focus {
  border-color: var(--ivory-500);
  box-shadow: 0 0 0 3px rgba(208,185,138,0.12);
}
.booking-strip__form .form-select option {
  background: var(--green-dark);
  color: var(--text-white);
}
.booking-strip__form .form-select {
  color: rgba(253,252,248,0.7);
}

/* SPA wide card fallback background */
.services-bento .service-card--wide .service-card__photo {
  background: var(--green-brand);
}
/* Laser / RF / Skin placeholder cards background */
.services-bento .service-card:nth-child(3) .service-card__photo,
.services-bento .service-card:nth-child(4) .service-card__photo,
.services-bento .service-card:nth-child(5) .service-card__photo {
  background: var(--green-muted);
}

/* — Responsive additions — */
@media (max-width: 1024px) {
  .about-editorial { grid-template-columns: 1fr 1.15fr; }
  .booking-strip__inner { grid-template-columns: 1fr 1.1fr; }
}
@media (max-width: 860px) {
  .hero__slide--editorial {
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
  }
  .hero__editorial-left {
    padding: 100px var(--gutter) 32px;
    justify-content: flex-end;
  }
  .about-editorial { grid-template-columns: 1fr; }
  .about-editorial__photo { min-height: 50vw; max-height: 400px; }
  .services-bento {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(170px, 26vw, 260px);
  }
  .services-bento .service-card--featured {
    grid-column: 1 / -1;
    grid-row: span 1;
    height: clamp(230px, 38vw, 340px);
  }
  .services-bento .service-card--wide { grid-column: 1 / -1; }
  .promo-photo-grid { grid-template-columns: 1fr 1fr; }
  .promo-photo-grid .promo-photo-card:last-child { grid-column: 1 / -1; }
  .promo-photo-grid .promo-photo-card:last-child .promo-photo-card__img { aspect-ratio: 16/9; }
  .booking-strip__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 72vw;
  }
  .services-bento .service-card--featured { height: 80vw; }
  .services-bento .service-card--wide { grid-column: 1; height: 56vw; }
  .services-bento .service-card--wide .service-card__content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
  }
  .promo-photo-grid { grid-template-columns: 1fr; }
  .promo-photo-grid .promo-photo-card:last-child { grid-column: 1; }
  .about-editorial__stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   CLINIC GALLERY (tour section)
══════════════════════════════════════════════ */
.clinic-gallery {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 12px;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.clinic-gallery__main {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
  overflow: hidden;
  border-radius: var(--radius-card);
}
.clinic-gallery__main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease-smooth);
}
.clinic-gallery__main-img.fading { opacity: 0; }
.clinic-gallery__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(253,252,248,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253,252,248,0.2);
  color: var(--text-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 2;
}
.clinic-gallery__arrow:hover { background: rgba(253,252,248,0.28); }
.clinic-gallery__arrow--prev { left: 16px; }
.clinic-gallery__arrow--next { right: 16px; }
.clinic-gallery__counter {
  position: absolute;
  bottom: 16px; right: 20px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(253,252,248,0.75);
  background: rgba(26,39,24,0.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
}
.clinic-gallery__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: var(--radius-card);
}
.clinic-gallery__thumb {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s var(--ease), opacity 0.2s;
  padding: 0;
}
.clinic-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.clinic-gallery__thumb:hover { opacity: 0.85; }
.clinic-gallery__thumb--active { border-color: var(--ivory-500); }

@media (max-width: 860px) {
  .clinic-gallery { grid-template-columns: 1fr; }
  .clinic-gallery__thumbs {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    height: 72px;
  }
}
@media (max-width: 600px) {
  .clinic-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    height: auto;
  }
}

/* ============================================================
   SERVICE CATEGORIES — big color grid (shared: index + services)
   ============================================================ */
.service-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.service-cat {
  min-height: 400px;
  padding: clamp(48px, 5vw, 72px) clamp(40px, 5vw, 80px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}
.service-cat--dark  { background: var(--green-dark); }
.service-cat--medium { background: var(--green-brand); }
.service-cat--light {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
}
.service-cat--charcoal { background: #2a2a28; }

.service-cat__heading {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
}
.service-cat--dark .service-cat__heading,
.service-cat--charcoal .service-cat__heading,
.service-cat--medium .service-cat__heading { color: var(--text-white); }
.service-cat--light .service-cat__heading  { color: var(--green-dark); }

.service-cat__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-cat__item {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}
.service-cat__item::before {
  content: '—';
  position: absolute;
  left: 0;
  font-weight: 300;
}
.service-cat--dark .service-cat__item,
.service-cat--charcoal .service-cat__item,
.service-cat--medium .service-cat__item { color: rgba(253,252,248,0.65); }
.service-cat--dark .service-cat__item::before,
.service-cat--charcoal .service-cat__item::before,
.service-cat--medium .service-cat__item::before { color: var(--ivory-500); }
.service-cat--light .service-cat__item       { color: var(--text-secondary); }
.service-cat--light .service-cat__item::before { color: var(--green-brand); }

.service-cat__arrow-btn {
  margin-top: 40px;
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}
.service-cat--dark .service-cat__arrow-btn,
.service-cat--charcoal .service-cat__arrow-btn,
.service-cat--medium .service-cat__arrow-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.service-cat--dark .service-cat__arrow-btn:hover,
.service-cat--charcoal .service-cat__arrow-btn:hover,
.service-cat--medium .service-cat__arrow-btn:hover {
  background: var(--ivory-500);
  border-color: var(--ivory-500);
}
.service-cat--light .service-cat__arrow-btn {
  background: var(--green-dark);
  border: 1px solid var(--green-dark);
}
.service-cat--light .service-cat__arrow-btn:hover {
  background: var(--green-brand);
  border-color: var(--green-brand);
}
.service-cat__arrow-btn svg {
  width: 16px; height: 16px;
  stroke: var(--text-white);
  fill: none;
  stroke-width: 1.8;
}
.service-cat__photo {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 85%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}
.service-cat--light .service-cat__photo {
  opacity: 0.8;
  mix-blend-mode: normal;
  width: 50%; height: 100%;
}

@media (max-width: 1100px) {
  .service-cats { grid-template-columns: 1fr; }
}
