/* =====================================================
   SMOOTH STUDIO — Light Luxury Theme
   Cormorant Garant + Inter | Warm Cream × Gold
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ─── CSS Variables ─── */
:root {
  --bg:          #FFFEFD;
  --bg-2:        #FFFEFD;
  --bg-card:     #ffffff;
  --bg-card-h:   #f9f5ef;

  --text:        #1c1309;
  --text-2:      #5a4e3c;
  --text-3:      #8a7a6a;

  --gold:        #c8924a;
  --gold-light:  #d4a05a;
  --gold-glow:   rgba(200, 146, 74, 0.08);

  --border:      rgba(180, 155, 110, 0.20);
  --border-h:    rgba(180, 155, 110, 0.40);

  --font-serif:  'Cormorant Garant', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --py:          clamp(5rem, 9vw, 8rem);
  --wrap:        1180px;
  --r:           1.5rem;
  --r-sm:        0.875rem;
  --ease:        0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Hero slider: настройки (переопределяются inline-style на .hero-slider) ── */
  --hero-content-width:     min(640px, 54vw);
  --hero-title-font:        var(--font-serif);
  --hero-title-size:        clamp(3.25rem, 8.5vw, 6.5rem);
  --hero-desc-size:         0.9375rem;
  --hero-btn-bg:            #fff;
  --hero-btn-color:         #1a0a00;
  --hero-btn-border:        none;
  --hero-btn-hover-bg:      #8B9D83;
  --hero-btn-hover-color:   #fff;

  /* ── Navbar: переопределяются Customizer через wp_head ── */
  --nav-top:                16px;
  --nav-pill-radius:        56px;
  --nav-pill-gap:           24px;
  --nav-pill-left:          28px;
  --nav-glass-bg:           rgba(255,255,255,0.18);
  --nav-glass-blur:         24px;
  --nav-glass-border:       rgba(255,255,255,0.20);
  --nav-scrolled-bg:        rgba(252,249,246,0.88);
  --logo-size:              20px;
  --logo-color:             #fff;
  --logo-scrolled-color:    #2C2A28;
  --logo-hover-color:       #8B9D83;
  --navlink-size:           11px;
  --navlink-gap:            32px;
  --navlink-color:          rgba(255,255,255,0.80);
  --navlink-scrolled-color: #2C2A28;
  --navlink-hover-color:    #8B9D83;
  --book-size:              10px;
  --book-color:             #fff;
  --book-hover-color:       #fff;
  --book-bg:                rgba(255,255,255,0.20);
  --book-hover-bg:          rgba(255,255,255,0.32);
  --book-scrolled-bg:       #2C2A28;
  --book-scrolled-hover-bg: #8B9D83;
}

/* ─── 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-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  min-height: 100dvh;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

/* ─── Section label ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ─── Focus ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 146, 74, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border-h);
  transition: border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: #25d366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 100px;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn-whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* ─────────────────────────────────────────
   NAVBAR — floating pill
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--nav-top) 1.25rem;
}

/* The pill itself — frosted glass над hero, непрозрачная при скролле */
.navbar-pill {
  position: relative; /* нужно для absolute-позиционирования мегаменю */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nav-pill-gap);
  max-width: 1200px;
  margin: 0 auto;
  background: var(--nav-glass-bg);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.6);
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.6);
  border-radius: var(--nav-pill-radius);
  border: 1px solid var(--nav-glass-border);
  padding: 0.5rem 0.5rem 0.5rem var(--nav-pill-left);
  box-shadow: none;
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.navbar.scrolled .navbar-pill {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--nav-glass-blur)) saturate(1.4);
  border-color: rgba(200, 146, 74, 0.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.12);
}

/* Logo — «Smooth» bold + «Studio.» italic light, one line */
.navbar-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: var(--logo-size);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--logo-color);
  transition: color 0.5s ease;
}
.logo-sub {
  font-family: var(--font-serif);
  font-size: var(--logo-size);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--logo-color);
  transition: color 0.5s ease;
}
/* Scrolled: dark text */
.navbar.scrolled .logo-main,
.navbar.scrolled .logo-sub { color: var(--logo-scrolled-color); }
/* Hover */
.navbar-logo:hover .logo-main,
.navbar-logo:hover .logo-sub { color: var(--logo-hover-color); }

/* Desktop nav links */
.navbar-links {
  display: none;
  align-items: center;
  gap: var(--navlink-gap);
  flex: 1;
  justify-content: center;
}
@media (min-width: 1024px) { .navbar-links { display: flex; } }

/* Если wp_nav_menu добавит <ul> — делаем его прозрачным для flex-gap */
.navbar-links > ul {
  display: contents;
}

.nav-link {
  font-size: var(--navlink-size);
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--navlink-color);
  position: relative;
  transition: color 0.5s ease;
}
.navbar.scrolled .nav-link { color: var(--navlink-scrolled-color); }
.nav-link:hover,
.nav-link.active { color: var(--navlink-hover-color); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--navlink-hover-color);
  transition: width var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* Right side */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Book button — ghost over hero, dark pill when scrolled */
.navbar-book {
  display: none;
  align-items: center;
  padding: 0.625rem 1.375rem;
  background: var(--book-bg);
  color: var(--book-color);
  font-family: var(--font-sans);
  font-size: var(--book-size);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.5s ease, color 0.5s ease, transform var(--ease);
}
@media (min-width: 640px) { .navbar-book { display: inline-flex; } }
.navbar-book:hover { background: var(--book-hover-bg); color: var(--book-hover-color); transform: translateY(-1px); }
/* Scrolled state */
.navbar.scrolled .navbar-book { background: var(--book-scrolled-bg); color: var(--book-color); }
.navbar.scrolled .navbar-book:hover { background: var(--book-scrolled-hover-bg); }

/* Burger */
.navbar-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  transition: border-color 0.5s ease, color 0.5s ease, background var(--ease);
  flex-shrink: 0;
}
.navbar-burger:hover { background: rgba(255, 255, 255, 0.12); }
/* Scrolled state */
.navbar.scrolled .navbar-burger {
  border-color: rgba(44, 42, 40, 0.25);
  color: #2C2A28;
}
.navbar.scrolled .navbar-burger:hover {
  background: rgba(44, 42, 40, 0.06);
}
@media (min-width: 1024px) { .navbar-burger { display: none; } }

/* ─────────────────────────────────────────
   MOBILE MENU
───────────────────────────────────────── */

/* Оверлей: полноэкранный, прокручиваемый */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* скролл на старых iOS (< v14) */
  overscroll-behavior: contain;      /* не передаёт скролл фоновой странице */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Внутренний flex-контейнер: header + nav + footer */
.mobile-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.75rem 2.5rem;
}

/* ── Кнопка закрытия — чёрный круг, всегда видна ── */
.mobile-close {
  position: fixed;      /* fixed, а не absolute: не скроллится вместе с контентом */
  top: 1.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 210;         /* выше z-index оверлея (200), чтобы быть поверх */
  transition: background var(--ease), transform var(--ease);
}
.mobile-close:hover {
  background: var(--gold);
  transform: rotate(90deg);
}

/* ── Шапка оверлея ── */
.mobile-header { margin-bottom: 2.25rem; }

.mobile-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.mobile-title {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 7vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.1;
}

/* ── Пункты меню ── */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--ease), padding-left var(--ease);
}
.mobile-nav-item:first-child { border-top: 1px solid var(--border); }
.mobile-nav-item:hover,
.mobile-nav-item.active { color: var(--text); padding-left: 0.375rem; }

/* Иконка (задаётся CSS-классом has-icon-ICONNAME в настройках меню) */
.mobile-item-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(200, 146, 74, 0.07);
  border: 1px solid rgba(200, 146, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-style: normal;
}
.mobile-item-text { flex: 1; }
.mobile-item-arrow {
  color: var(--text-3);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity var(--ease), transform var(--ease);
}
.mobile-nav-item:hover .mobile-item-arrow {
  opacity: 0.75;
  transform: translateX(3px);
}

/* ── Подвал оверлея: контакты + соцсети ── */
.mobile-footer {
  margin-top: auto;
  padding-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.mobile-contacts { display: flex; flex-direction: column; gap: 0.625rem; }
.mobile-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.5;
}
.mobile-contact-row svg { flex-shrink: 0; margin-top: 1px; }
.mobile-contact-row a { color: var(--text-3); transition: color 0.2s ease; }
.mobile-contact-row a:hover { color: var(--text-2); }

.mobile-socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mobile-social-icons { display: flex; gap: 8px; }
.mobile-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mobile-social-btn:hover { border-color: var(--gold); color: var(--gold); }

.mobile-social-text {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile-social-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.mobile-social-handle {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--text-2);
}

/* ─────────────────────────────────────────
   MEGA MENU
───────────────────────────────────────── */

/* Триггер — flex-элемент в ряду ссылок.
   ВАЖНО: display:contents ломает mouseenter/mouseleave в Chrome,
   поэтому используем inline-flex + position:static, чтобы
   mega-menu по-прежнему позиционировался относительно .navbar-pill */
.mega-wrapper {
  display: inline-flex;
  align-items: center;
  position: static; /* позиционирование mega-menu — относительно .navbar-pill */
}

/* Шеврон рядом с текстом ссылки */
.mega-chevron {
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.25s ease;
  display: inline-block;
}
.mega-wrapper.is-open .mega-chevron {
  transform: rotate(180deg);
}

/* Карточка мегаменю — абсолютно под пилюлей */
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.10);

  /* Скрыто по умолчанию */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 300;
}
.mega-wrapper.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Сетка колонок */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

/* Колонка */
.mega-col {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
  border-right: 1px solid #f0ece6;
}
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child  { padding-right: 0; border-right: none; }

/* Шапка колонки: иконка + заголовок */
.mega-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ece6;
}

/* Квадрат иконки */
.mega-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Название категории */
.mega-col-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: #2c2a28;
  line-height: 1.2;
}

/* Список услуг */
.mega-services {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.mega-services li + li { margin-top: 0; }
.mega-services a {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: #7a6f66;
  line-height: 2.3;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-services a:hover {
  color: #2c2a28;
  padding-left: 4px;
}

/* «View Prices» ссылка */
.mega-prices-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0ece6;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #8b9d83;
  transition: color 0.2s ease, gap 0.2s ease;
}
.mega-prices-link:hover {
  color: #2c2a28;
  gap: 10px;
}

/* Не показываем мегаменю на мобильных.
   .mega-wrapper не нужно скрывать — .navbar-links уже display:none < 1024px */
@media (max-width: 1023px) {
  .mega-menu    { display: none; }
  .mega-chevron { display: none; }
}

/* ─────────────────────────────────────────
   HERO SLIDER
───────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg);
  user-select: none;
}
@media (max-width: 767px) {
  .hero-slider {
    height: 100svh;
    max-height: 100svh;
  }
}

/* Track holds all slides */
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Single slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
}
.slide.is-active { opacity: 1; z-index: 2; }

/* Background photo */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.slide.is-active .slide-bg { transform: scale(1); }

/* Fallback gradient backgrounds (no photo) */
.slide-bg--grad-0 {
  background: linear-gradient(135deg, #1a0f05 0%, #3d2010 45%, #1a0e04 100%);
}
.slide-bg--grad-1 {
  background: linear-gradient(135deg, #0d0d18 0%, #1a1a35 45%, #0d0d18 100%);
}
.slide-bg--grad-2 {
  background: linear-gradient(135deg, #0f1a0d 0%, #1a3018 45%, #0f1a0d 100%);
}

/* Warm, asymmetric overlay — darker on left, open on right for the form */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(20, 14, 10, 0.55) 0%,
      rgba(20, 14, 10, 0.32) 40%,
      rgba(20, 14, 10, 0.18) 70%,
      rgba(20, 14, 10, 0.10) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(20, 14, 10, 0.18) 0%,
      rgba(20, 14, 10, 0.00) 35%,
      rgba(20, 14, 10, 0.00) 65%,
      rgba(20, 14, 10, 0.22) 100%
    );
  z-index: 1;
}

/* Slide content — left column, single vertical axis */
.slide-content {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding-left: max(2.5rem, calc((100vw - 1200px) / 2 + 4.5rem));
  padding-right: 2.5rem;
  padding-top: clamp(5rem, 8vh, 7rem);
  padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
  width: 62%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* everything snaps to the same left axis */
}
@media (max-width: 1024px) {
  .slide-content { width: 70%; padding-left: max(2rem, 4vw); }
}
@media (max-width: 767px) {
  .slide-content {
    width: 100%;
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}

/* Label */
.slide-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--hero-label-size, 0.6875rem); /* ≈11px */
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero-label-color, rgba(255, 255, 255, 0.80));
  margin: 0 0 1.75rem;
}

/* Heading — tight leading, bounded width */
.slide-title {
  font-family: var(--hero-title-font);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0 0 2rem;
  max-width: 100%;
}
.slide-title-line {
  display: block;
  font-size: var(--hero-title-size, clamp(3.5rem, 7vw, 5.5rem));
  color: var(--hero-title-color, var(--text));
  font-style: normal;
}
.slide-title-italic {
  display: block;
  font-size: var(--hero-title-size, clamp(3.5rem, 7vw, 5.5rem));
  color: var(--hero-title-color, var(--text));
  font-style: italic;
  letter-spacing: -0.02em; /* compensate italic */
}

/* Description */
.slide-desc {
  font-size: var(--hero-desc-size, 0.9375rem);
  line-height: 1.65;
  color: var(--hero-desc-color, rgba(255, 255, 255, 0.86));
  max-width: 420px;
  margin: 0 0 2.25rem;
}
.slide-desc.wysiwyg-content p {
  color: var(--hero-desc-color, rgba(255, 255, 255, 0.86));
  margin-bottom: 0;
}

/* CTA button — pill */
.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: auto;
  height: 56px;
  padding: 0 2rem;
  background: var(--hero-btn-bg);
  border: var(--hero-btn-border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: var(--hero-btn-font-size, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--hero-btn-color);
  transition: background var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
}
.slide-btn:hover {
  background: var(--hero-btn-hover-bg);
  color: var(--hero-btn-hover-color);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────
   HERO BOOKING FORM — right column
   Vertical rhythm: 8 / 12 / 16 / 24 / 32 / 48 px
───────────────────────────────────────── */
.hero-booking {
  position: absolute;
  top: 50%;
  right: max(2.5rem, calc((100vw - 1200px) / 2 + 4.5rem));
  transform: translateY(-50%);
  z-index: 4;
  width: min(400px, 36vw);
  pointer-events: auto;
}
.hero-booking-inner {
  background: rgba(24, 18, 14, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 28px 24px; /* top / sides / bottom */
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
  color: #fff;
}
.hero-booking-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-weight: 400;
  font-size: 1.875rem; /* 30px */
  line-height: 1.1;
  color: #fff;
  margin: 0 0 8px;
}
.hero-booking-subtitle {
  font-size: 0.8125rem; /* 13px */
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 24px;
}

/* ── Contact Form 7 styling INSIDE hero booking ── */
.hero-booking-form .wpcf7 { margin: 0; padding: 0; }
.hero-booking-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-booking-form p,
.hero-booking-form .hb-field { margin: 0; padding: 0; }
.hero-booking-form p:empty,
.hero-booking-form br { display: none !important; }

.hero-booking-form .hb-field {
  position: relative;
  display: block;
}
/* Hide any stray inline SVG icons — we use background-image on inputs instead */
.hero-booking-form .hb-field > svg,
.hero-booking-form > p > svg,
.hero-booking-form svg:not(.no-hide) { display: none; }
.hero-booking-form .hb-field .wpcf7-form-control-wrap { display: block; width: 100%; }

/* Icon inside the input itself (SVG as background-image) */
.hero-booking-form input[type="text"] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.72' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/><circle cx='12' cy='7' r='4'/></svg>") !important;
}
.hero-booking-form input[type="tel"] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.72' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") !important;
}
.hero-booking-form input[type="email"] {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.72' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/><polyline points='22,6 12,13 2,6'/></svg>") !important;
}
.hero-booking-form input[type="text"],
.hero-booking-form input[type="tel"],
.hero-booking-form input[type="email"],
.hero-booking-form input.hb-date,
.hero-booking-form input.hb-time {
  background-repeat: no-repeat !important;
  background-position: 18px center !important;
  background-size: 18px 18px !important;
}
/* Date / Time icons (Flatpickr inputs) */
.hero-booking-form input.hb-date {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.72' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") !important;
}
.hero-booking-form input.hb-time {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.72' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12,6 12,12 16,14'/></svg>") !important;
}

.hero-booking-form input[type="text"],
.hero-booking-form input[type="tel"],
.hero-booking-form input[type="email"],
.hero-booking-form select,
.hero-booking-form textarea,
.hero-booking-form .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not(.wpcf7-list-item-label) {
  width: 100%;
  height: 56px;
  padding: 0 16px 0 48px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.9375rem; /* 15px */
  line-height: 56px;     /* vertical centering for single-line */
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.hero-booking-form textarea {
  height: auto;
  min-height: 96px;
  line-height: 1.5;
  padding-top: 16px;
  padding-bottom: 16px;
}
.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.hero-booking-form input:hover,
.hero-booking-form select:hover,
.hero-booking-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.32);
}
.hero-booking-form input:focus,
.hero-booking-form select:focus,
.hero-booking-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

/* Select dropdown arrow */
.hero-booking-form select {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.72' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12,6 12,12 16,14'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-opacity='0.6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat, no-repeat;
  background-position: 18px center, right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.hero-booking-form select option {
  background: #1a1413;
  color: #fff;
}

/* Acceptance checkbox row */
.hero-booking-form .wpcf7-acceptance {
  display: block;
  margin: 4px 0 0;
}
.hero-booking-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.hero-booking-form .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.8125rem; /* 13px */
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.70);
  cursor: pointer;
}
.hero-booking-form .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 1px 0 0; /* align with first text line */
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-booking-form .wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--gold, #b98b5a);
  border-color: var(--gold, #b98b5a);
}
.hero-booking-form .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.hero-booking-form .wpcf7-acceptance a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}
.hero-booking-form .wpcf7-acceptance a:hover {
  color: var(--gold, #d5a46a);
}

/* Submit button */
.hero-booking-form .wpcf7-submit,
.hero-booking-form input[type="submit"] {
  width: 100%;
  height: 56px;
  padding: 0 24px;
  margin-top: 16px;
  background: #fff;
  color: #0f0a06;
  border: none;
  border-radius: 12px;
  font-family: var(--font-sans, 'Inter', sans-serif);
  font-size: 0.8125rem; /* 13px */
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hero-booking-form .wpcf7-submit:hover,
.hero-booking-form input[type="submit"]:hover {
  background: var(--gold, #b98b5a);
  color: #fff;
  transform: translateY(-1px);
}
.hero-booking-form .wpcf7-spinner { display: none; }

/* CF7 validation messages */
.hero-booking-form .wpcf7-not-valid-tip {
  font-size: 0.7rem;
  margin-top: 4px;
  color: #ff8b8b;
}
.hero-booking-form .wpcf7-response-output {
  margin: 12px 0 0 !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 8px;
  font-size: 0.75rem;
  color: #fff;
}
.hero-booking-form .wpcf7-not-valid {
  border-color: rgba(255, 139, 139, 0.6) !important;
}

/* ─────────────────────────────────────────
   FLATPICKR — dark theme matching the hero booking card
───────────────────────────────────────── */
.flatpickr-calendar {
  background: rgba(24, 18, 14, 0.96) !important;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45) !important;
  color: #fff !important;
  font-family: var(--font-sans, 'Inter', sans-serif) !important;
  padding: 8px !important;
}
.flatpickr-calendar.arrowTop::before,
.flatpickr-calendar.arrowBottom::before { border-bottom-color: rgba(255, 255, 255, 0.12) !important; }
.flatpickr-calendar.arrowTop::after  { border-bottom-color: rgba(24, 18, 14, 0.96) !important; }
.flatpickr-calendar.arrowBottom::after { border-top-color: rgba(24, 18, 14, 0.96) !important; }

/* Month / Year header */
.flatpickr-months { padding: 6px 4px 2px; }
.flatpickr-months .flatpickr-month {
  color: #fff !important;
  fill: #fff !important;
  height: 34px;
}
.flatpickr-current-month {
  font-size: 0.875rem !important;
  padding: 2px 0 0 !important;
  color: #fff !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: #fff !important;
  font-weight: 600 !important;
  background: transparent !important;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month input.cur-year:hover { background: rgba(255, 255, 255, 0.06) !important; }
.flatpickr-monthDropdown-month { background: #1a1413 !important; color: #fff !important; }

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  color: rgba(255, 255, 255, 0.72) !important;
  fill: rgba(255, 255, 255, 0.72) !important;
  padding: 6px 10px !important;
  top: 4px !important;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  fill: #fff !important;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg { fill: currentColor !important; }

/* Weekday labels */
.flatpickr-weekdays { background: transparent !important; }
.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 500 !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Day cells */
.flatpickr-days { padding: 4px 0 !important; }
.dayContainer { padding: 0 !important; }
.flatpickr-day {
  color: rgba(255, 255, 255, 0.88) !important;
  border: none !important;
  border-radius: 10px !important;
  max-width: 38px;
  height: 38px;
  line-height: 38px !important;
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 1px;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
}
.flatpickr-day.today {
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #fff !important;
}
.flatpickr-day.today:hover { background: rgba(255, 255, 255, 0.10) !important; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #fff !important;
  color: #1a0a00 !important;
  border-color: #fff !important;
  font-weight: 700;
}
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: rgba(255, 255, 255, 0.22) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255, 255, 255, 0.16) !important;
  background: transparent !important;
  cursor: not-allowed;
}

/* Time picker */
.flatpickr-time {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
  height: 44px !important;
  padding: 4px 6px !important;
}
.flatpickr-time input {
  background: transparent !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
}
.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: rgba(255, 255, 255, 0.06) !important;
}
.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm { color: rgba(255, 255, 255, 0.72) !important; }
.flatpickr-time .numInputWrapper:hover { background: rgba(255, 255, 255, 0.04) !important; }
.flatpickr-time .numInputWrapper span.arrowUp::after { border-bottom-color: rgba(255, 255, 255, 0.6) !important; }
.flatpickr-time .numInputWrapper span.arrowDown::after { border-top-color: rgba(255, 255, 255, 0.6) !important; }

/* Footer row — 3-part layout */
.hero-booking-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.625rem; /* 10px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.hbf-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-booking { right: 2.5rem; width: min(380px, 34vw); }
}
@media (max-width: 1024px) {
  .hero-booking { width: min(340px, 38vw); right: 2rem; }
  .hero-booking-inner { padding: 24px 20px 20px; }
  .hero-booking-title { font-size: 1.625rem; }
}
@media (max-width: 900px) {
  /* Let the form flow below the slide — allow the hero to grow */
  .hero-slider {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 0;
  }
  /* Slide area becomes content-sized — no huge empty black gap */
  .slider-track {
    position: relative;
    height: auto;
    min-height: 0;
  }
  .slide {
    position: relative;
    inset: auto;
    min-height: 70svh;
  }
  .slide:not(.is-active) { display: none; }
  .slide.is-active { opacity: 1; }
  /* Hide CTA button on mobile — the form takes its place */
  .slide-btn { display: none !important; }
  .slide-desc { margin-bottom: 0; }
  /* Form sits directly under description */
  .hero-booking {
    position: static;
    transform: none;
    width: calc(100% - 2rem);
    max-width: 480px;
    margin: 1.5rem auto 0;
    right: auto;
  }
  /* Hide slider UI on mobile — users swipe */
  .slider-pagination,
  .slider-arrows { display: none !important; }
}

/* ── Pagination — bottom left ── */
.slider-pagination {
  position: absolute;
  bottom: 2.5rem;
  left: max(2.5rem, calc((100vw - 1200px) / 2 + 4.5rem));
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .slider-pagination { left: 1.5rem; bottom: 2rem; }
}

.pag-dot {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.30);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.35s ease, width 0.35s ease;
}
.pag-dot.is-active {
  width: 40px;
  background: #fff;
}
.pag-dot:hover:not(.is-active) { background: rgba(255, 255, 255, 0.55); }

/* ── Arrows — bottom right ── */
.slider-arrows {
  position: absolute;
  bottom: 2.5rem;
  right: max(2.5rem, calc((100vw - 1200px) / 2 + 4.5rem));
  z-index: 10;
  display: flex;
  gap: 10px;
}
@media (max-width: 900px) {
  .slider-arrows { right: 2rem; bottom: 2rem; }
}
@media (max-width: 767px) {
  .slider-arrows { right: 1.5rem; bottom: 1.75rem; }
}

.slider-prev,
.slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.slider-prev:hover,
.slider-next:hover {
  background: #fff;
  border-color: #fff;
  color: #1c1309;
}

/* ─────────────────────────────────────────
   PHILOSOPHY
───────────────────────────────────────── */
.philosophy {
  padding: var(--py) 0;
  border-top: 1px solid var(--border);
}
.philosophy-header {
  margin-bottom: 4rem;
  max-width: 680px;
}
.philosophy-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.12;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}
.philosophy-desc { color: var(--text-2); line-height: 1.85; }
.philosophy-desc.wysiwyg-content p { color: var(--text-2); }

.philosophy-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}
@media (min-width: 480px) {
  .philosophy-features { grid-template-columns: 1fr 1fr; }
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--ease), background var(--ease);
}
.feature-item:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}
.feature-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.feature-text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-2);
}

/* ─────────────────────────────────────────
   PRICES
───────────────────────────────────────── */
.prices {
  padding: var(--py) 0;
  border-top: 1px solid var(--border);
}
.prices-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) {
  .prices-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.prices-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.05;
}

/* Price grid: 2 columns on desktop */
.prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 820px) {
  .prices-grid { grid-template-columns: 1fr 1fr; }
}

/* Price category block */
.price-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.price-category-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 0.75rem 1.5rem;
}
.price-items-list { flex: 1; }

/* Price item row */
.price-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.price-item:last-child { border-bottom: none; }
.price-item:hover { background: var(--bg-card-h); }

.price-info {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  min-width: 0;
}
.price-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-time {
  font-size: 0.6875rem;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
}
/* Dotted leader */
.price-dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted rgba(200, 146, 74, 0.22);
  margin-bottom: 3px;
  align-self: flex-end;
}
.price-value {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-desc {
  font-size: 0.75rem;
  color: var(--text-3);
  padding: 0 1.5rem 0.625rem;
  line-height: 1.4;
  margin-top: -0.25rem;
}
.prices-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
/* Legacy single-column compat */
.prices-column { display: flex; flex-direction: column; }
.prices-footer { margin-top: 2.5rem; text-align: center; }
.prices-scroll { display: inline-flex; align-items: center; gap: 1rem; color: var(--text-3); font-size: 0.8125rem; letter-spacing: 0.08em; }
.prices-scroll-line { width: 60px; height: 1px; background: var(--border-h); }

/* ─────────────────────────────────────────
   MASTER
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   MASTER SECTION — light card layout
───────────────────────────────────────── */
.master {
  padding: var(--py) 0;
  background: #f3ede5;
}
.master-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .master-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* ── Image column ── */
.master-image-wrap {
  order: -1;
  position: relative;
  padding-bottom: 5.5rem;
}
@media (min-width: 900px) { .master-image-wrap { order: 0; } }

.master-image {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  background: #e4ddd2;
}
.master-image img { width: 100%; height: 100%; object-fit: cover; }
.master-image::after { display: none; }

/* Floating quote card */
.master-quote-card {
  position: absolute;
  bottom: 0;
  left: -0.75rem;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.375rem;
  max-width: 76%;
  box-shadow: 0 8px 32px rgba(60, 40, 10, 0.10);
  z-index: 2;
}
.master-quote-icon {
  width: 30px;
  height: 30px;
  border: 1.5px solid #ddd5c5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #b8a88a;
}
.master-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #5a4e3c;
  border: none;
  padding: 0;
  margin: 0;
}
.master-quote p { color: #5a4e3c; margin: 0; font-style: italic; }

/* ── Content column ── */
.master-content .section-label { display: block; }

.master-name {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  color: #1c1309;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.master-subtitle {
  font-size: 0.875rem;
  color: #8a7a6a;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.master-bio {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #5a4e3c;
  margin-bottom: 2.25rem;
}
.master-bio p { color: #5a4e3c; margin-bottom: 0; }

/* Stats — 2×2 grid */
.master-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(180, 155, 110, 0.22);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.375rem 1.5rem;
  border-right: 1px solid rgba(180, 155, 110, 0.22);
  border-bottom: 1px solid rgba(180, 155, 110, 0.22);
}
.stat-item:nth-child(2n)        { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-value {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 400;
  color: #1c1309;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a7a6a;
}

/* ─────────────────────────────────────────
   FAQ & CONTACTS
───────────────────────────────────────── */
.faq-contacts {
  padding: var(--py) 0;
  border-top: 1px solid var(--border);
}
.faq-contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) {
  .faq-contacts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

/* FAQ */
.faq-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2.5rem;
}
.faq-list {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  transition: background var(--ease);
  user-select: none;
}
.faq-question:hover { background: var(--bg-card); }
.faq-question,
.faq-question h5 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-h);
  position: relative;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  border-radius: 2px;
  transition: opacity var(--ease);
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }
.faq-item.active .faq-icon {
  background: var(--gold-glow);
  border-color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer .wysiwyg-content {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-2);
}
.faq-answer .wysiwyg-content p { color: var(--text-2); }

/* Contact card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem;
}
.contact-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.contact-item:hover { background: rgba(200, 146, 74, 0.05); }
.contact-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background-color var(--ease);
}
.contact-item:hover .contact-icon { background: rgba(200, 146, 74, 0.2); }
.contact-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.2rem;
}
.contact-value { font-size: 0.9375rem; color: var(--text); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.footer-logo .logo-main { font-size: 1.375rem; }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 0.375rem;
}
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-start;
}
@media (min-width: 640px) { .footer-right { align-items: flex-end; } }
.footer-socials { display: flex; gap: 0.625rem; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────
   WYSIWYG CONTENT
───────────────────────────────────────── */
.wysiwyg-content p { margin-bottom: 1em; }
.wysiwyg-content p:last-child { margin-bottom: 0; }
.wysiwyg-content strong { font-weight: 600; color: var(--text); }
.wysiwyg-content em { font-style: italic; color: var(--gold-light); }
.wysiwyg-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.wysiwyg-content a:hover { color: var(--gold-light); }
.wysiwyg-content ul,
.wysiwyg-content ol { padding-left: 1.5rem; margin-bottom: 1em; }
.wysiwyg-content ul { list-style: disc; }
.wysiwyg-content ol { list-style: decimal; }
.wysiwyg-content li { margin-bottom: 0.4em; }
.wysiwyg-content h2 { font-size: 1.5rem;  font-family: var(--font-serif); margin: 1.5em 0 0.5em;  color: var(--text); }
.wysiwyg-content h3 { font-size: 1.25rem; font-family: var(--font-serif); margin: 1.25em 0 0.4em; color: var(--text); }
.wysiwyg-content h4 { font-size: 1.125rem; margin: 1em 0 0.3em; color: var(--text); }

/* ─────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────── */
.page-hero {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(200, 146, 74, 0.06) 0%, transparent 65%);
}
.page-hero-subtitle {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.75rem);
  font-weight: 300;
  line-height: 1.03;
  color: var(--text);
  max-width: 20ch;
}
.page-hero-image { position: absolute; inset: 0; z-index: -1; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-story {
  padding: var(--py) 0;
  border-bottom: 1px solid var(--border);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.about-story-image {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
}
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }
.about-story-label { display: block; }
.about-story-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-story-content { color: var(--text-2); line-height: 1.85; }
.about-story-content.wysiwyg-content p { color: var(--text-2); }

.about-values { padding: var(--py) 0; border-bottom: 1px solid var(--border); }
.about-values-header { margin-bottom: 3rem; }
.about-values-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--text); }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  transition: border-color var(--ease), background var(--ease);
}
.value-item:hover { border-color: var(--border-h); background: var(--bg-card-h); }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.value-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--text); margin-bottom: 0.625rem; line-height: 1.3; }
.value-text { font-size: 0.875rem; line-height: 1.7; color: var(--text-2); }
.value-text.wysiwyg-content p { color: var(--text-2); font-size: 0.875rem; }

.page-cta { padding: var(--py) 0; text-align: center; }
.page-cta-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.page-cta-text { font-size: 1rem; line-height: 1.8; color: var(--text-2); max-width: 52ch; margin: 0 auto 2.5rem; }
.page-cta-text.wysiwyg-content p { color: var(--text-2); }

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.services-intro { padding: var(--py) 0; border-bottom: 1px solid var(--border); }
.services-intro-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) {
  .services-intro-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 4rem; }
}
.services-intro-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.15; }
.services-intro-content { color: var(--text-2); line-height: 1.85; padding-top: 0.5rem; }
.services-intro-content.wysiwyg-content p { color: var(--text-2); }

.services-categories { padding: var(--py) 0; }
.services-categories-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.15; margin-bottom: 3rem; }
.categories-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  transition: border-color var(--ease), background var(--ease);
}
.category-card:hover { border-color: var(--border-h); background: var(--bg-card-h); }
.category-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.category-name { font-family: var(--font-serif); font-size: 1.375rem; font-weight: 400; color: var(--text); margin-bottom: 0.75rem; line-height: 1.3; }
.category-desc { font-size: 0.875rem; line-height: 1.7; color: var(--text-2); }
.category-desc.wysiwyg-content p { color: var(--text-2); font-size: 0.875rem; }

/* ─────────────────────────────────────────
   CONTACTS PAGE
───────────────────────────────────────── */
.contacts-full { padding: var(--py) 0; }
.contacts-full-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 900px) {
  .contacts-full-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
}
.contacts-info-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--text); line-height: 1.15; margin-bottom: 1.5rem; }
.contacts-intro-text { color: var(--text-2); line-height: 1.85; margin-bottom: 2.5rem; }
.contacts-intro-text.wysiwyg-content p { color: var(--text-2); }
.contacts-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }

.contacts-hours {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.contacts-hours-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contacts-hours-list { display: flex; flex-direction: column; gap: 0.5rem; }
.contacts-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.contacts-hours-item:last-child { border-bottom: none; }
.hours-day  { font-size: 0.875rem; color: var(--text-2); }
.hours-time { font-size: 0.875rem; color: var(--text); font-weight: 500; }

.contacts-map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 480px;
  background: var(--bg-card);
}
.contacts-map iframe { display: block; width: 100%; height: 100%; min-height: 480px; }

/* ─────────────────────────────────────────
   PAGE HERO — subtitle after title
───────────────────────────────────────── */
.page-hero-inner { position: relative; }
.page-hero-subtitle {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--text-2);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   SERVICES PAGE — new class names
───────────────────────────────────────── */
.services-content { }
.services-intro-inner { max-width: 680px; }

.services-categories-header { margin-bottom: 3rem; }

.services-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .services-categories-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), background var(--ease);
}
.service-card:hover { border-color: var(--border-h); background: var(--bg-card-h); }

.service-card-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--gold-glow);
  border: 1px solid var(--border-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.service-card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-2);
  flex: 1;
  margin-bottom: 1.25rem;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: color var(--ease), gap var(--ease);
}
.service-card-link:hover { color: var(--gold-light); gap: 0.625rem; }

/* ─────────────────────────────────────────
   ABOUT PAGE — new class names
───────────────────────────────────────── */
.about-content { }
.about-story-text { }

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  transition: border-color var(--ease), background var(--ease);
}
.value-card:hover { border-color: var(--border-h); background: var(--bg-card-h); }

.about-cta { padding: var(--py) 0; text-align: center; }
.about-cta-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.about-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-cta-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}
.about-cta-desc.wysiwyg-content p { color: var(--text-2); }

/* ─────────────────────────────────────────
   PRICES — ul/li structure
───────────────────────────────────────── */
.price-list { flex: 1; }

.price-duration {
  font-size: 0.6875rem;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Contacts page wrapper */
.contacts-content { }

/* ─────────────────────────────────────────
   MOBILE TWEAKS
───────────────────────────────────────── */
@media (max-width: 639px) {
  .price-dots { display: none; }
  .contact-card { padding: 1.75rem 1.25rem; }
  .faq-question { padding: 1rem 1.25rem; }
  .faq-answer .wysiwyg-content { padding: 0 1.25rem 1.25rem; }
  .master-quote-card { left: 0; max-width: 90%; }
}

/* ─────────────────────────────────────────
   FOOTER — Pre-footer CTA + 4-column grid
───────────────────────────────────────── */

/* Обёртка: тёмный фон с закруглёнными верхними углами */
.footer-wrap {
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  margin-top: 0;
}


/* ── Сетка футера ── */
.site-footer {
  padding: 60px 60px 52px;
  max-width: var(--wrap);
  margin: 0 auto;
  background: transparent; /* сбрасываем старый bg-2 из предыдущей версии футера */
  border-top: none;         /* убираем старый border-top — divider уже есть выше */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 0 56px;
}

/* ── Логотип ── */
.footer-logo {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 24px;
  text-decoration: none;
}
.footer-logo-main {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.footer-logo-sub {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.01em;
}

/* ── Контакты ── */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.5;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 1px; }
.footer-contact a {
  color: var(--text-3);
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: var(--text-2); }

/* ── Заголовок колонки ── */
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Ссылки ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li { margin-top: 0; }
.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 2.15;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links a:hover {
  color: var(--text);
  padding-left: 4px;
}

/* ── Часы работы ── */
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(200, 146, 74, 0.09);
}
.footer-hours li:first-child { border-top: 1px solid rgba(200, 146, 74, 0.09); }
/* Используем родительский селектор .footer-hours, чтобы не перебивать
   стили .hours-day / .hours-time на странице контактов */
.footer-hours .hours-day {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--gold);
}
.footer-hours .hours-time {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.footer-hours .hours-time--closed {
  font-style: italic;
  font-weight: 300;
  color: var(--text-3);
}

/* ── Соцсети ── */
.footer-social.footer-social {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: none;
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Копирайт ── */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 56px;
}
.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ── Адаптив ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
  .site-footer { padding: 48px 40px 40px; }
}
@media (max-width: 640px) {
  .footer-grid            { grid-template-columns: 1fr; gap: 36px; }
  .site-footer            { padding: 40px 24px 36px; }
}

/* ─────────────────────────────────────────
   SERVICES MENU (заменяет Prices на главной)
───────────────────────────────────────── */
.svc-menu {
  padding: var(--py) 0;
  background: var(--bg-2);
}

/* ── Шапка секции ── */
.svc-menu-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .svc-menu-header { display: none; }
  .svc-menu-divider { display: none; }
}

.svc-menu-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.svc-menu-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.svc-menu-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text);
  margin: 0;
}
.svc-menu-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
}

.svc-menu-header-right {
  text-align: right;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .svc-menu-header-right { text-align: left; }
}

.svc-menu-desc {
  font-size: 0.9375rem;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 380px;
  margin-left: auto;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .svc-menu-desc { margin-left: 0; }
}

.svc-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  border-bottom: 1px solid var(--text-3);
  padding-bottom: 2px;
  transition: color var(--ease), border-color var(--ease);
}
.svc-menu-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Разделитель ── */
.svc-menu-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 4.5rem;
}

/* ── Список категорий ── */
.svc-menu-categories {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

/* ── Категорный блок — чередование фото лево/право ── */
.svc-cat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .svc-cat { grid-template-columns: 1fr; gap: 2.5rem; }
}
.svc-cat--img-left  .svc-cat-photo   { order: 1; }
.svc-cat--img-left  .svc-cat-content { order: 2; }
.svc-cat--img-right .svc-cat-photo   { order: 2; }
.svc-cat--img-right .svc-cat-content { order: 1; }
@media (max-width: 900px) {
  .svc-cat--img-left .svc-cat-photo,
  .svc-cat--img-right .svc-cat-photo  { order: 1; }
  .svc-cat--img-left .svc-cat-content,
  .svc-cat--img-right .svc-cat-content { order: 2; }
}

/* ── Фото + бейдж ── */
.svc-cat-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--bg-card);
}
@media (min-width: 901px) {
  .svc-cat-photo {
    position: sticky;
    top: 6rem;
  }
}
.svc-cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.svc-cat:hover .svc-cat-photo img { transform: scale(1.03); }
.svc-cat-photo--empty {
  background: var(--bg-card);
  border: 1px dashed var(--border);
}

/* Круговой бейдж «AUTHENTIC CARE SINCE 2024» */
.svc-cat-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 86px;
  height: 86px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-2);
  line-height: 1.55;
  padding: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  pointer-events: none;
}

/* ── Название категории ── */
.svc-cat-name {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin: 0 0 0.875rem;
}

/* ── Описание категории (курсив) ── */
.svc-cat-desc {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-3);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 400px;
}

/* ── Список услуг — 2 колонки ── */
.svc-cat-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-bottom: 2rem;
}
.svc-cat-col {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-cat-col li {
  font-size: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  transition: color var(--ease);
}
/* Левая колонка — тёплый тёмный */
.svc-cat-col--left li  { color: var(--text-2); }
/* Правая колонка — золотой акцент */
.svc-cat-col--right li { color: var(--gold); }
.svc-cat-col li:last-child { border-bottom: none; }
.svc-cat-col li:hover { color: var(--text); }

/* Особая позиция (пакет/комплекс) — жирный курсив */
.svc-item--special { font-weight: 700; font-style: italic; }

/* ── Список услуг — новый формат (вертикальный с описанием) ── */
.svc-cat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
}
.svc-cat-list-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-cat-list-item:first-child { padding-top: 0; }
.svc-cat-list-item:last-child  { border-bottom: none; padding-bottom: 0; }

.svc-cat-list-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.svc-cat-list-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.svc-cat-list-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.svc-cat-list-desc {
  display: block;
  font-size: 0.8125rem;
  font-style: italic;
  color: var(--text-3, rgba(60, 50, 30, 0.55));
  line-height: 1.55;
}

/* ── Кнопка «Записаться на процедуру» ── */
.svc-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border: 1.5px solid var(--text);
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.svc-cat-btn:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ── Группа кнопок категории ── */
.svc-cat-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 2rem;
}

/* ── Кнопка «Our Work» ── */
.svc-work-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.svc-work-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* ══════════════════════════════════════════════
   OUR WORK — Modal overlay + box
   ══════════════════════════════════════════════ */

.works-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 5, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}
.works-modal-overlay[hidden] { display: none; }

.works-modal {
  background: var(--bg);
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.works-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.works-modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
}

.works-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-muted, #888);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--ease), color var(--ease);
  flex-shrink: 0;
}
.works-modal-close:hover {
  background: var(--border);
  color: var(--text);
}

/* ── Works grid — Desktop 3 columns ── */
.works-grid {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;   /* fixed row height — simple & reliable */
  gap: 0.75rem;
  overflow-y: auto;
  height: calc(88vh - 80px);
}

.works-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card, var(--bg-2));
  /* fixed 400px height comes from grid-auto-rows — no aspect-ratio needed */
  cursor: pointer;
}

/* ── Play-button overlay on video thumbnails ── */
.works-item[data-type="video"]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
  z-index: 2;
  transition: background 0.2s;
}
.works-item[data-type="video"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #fff;
  pointer-events: none;
  z-index: 3;
}
.works-item[data-type="video"]:hover::before {
  background: rgba(0, 0, 0, 0.65);
}

.works-item img,
.works-item video {
  /* position:absolute removes img/video from layout flow so they
     cannot affect the container's height — only aspect-ratio defines it */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.works-item:hover img   { transform: scale(1.04); }
.works-item:hover video { transform: scale(1.04); }

.works-item-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.62));
}

/* ── Works grid — Tablet (768–900px): 2 columns ── */
@media (min-width: 768px) and (max-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Works grid — Mobile carousel (scroll-snap) ── */
@media (max-width: 767px) {
  .works-grid {
    /* override desktop explicit height for horizontal carousel */
    height: auto;
    min-height: 220px;
    max-height: calc(88vh - 80px);
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding: 1.25rem;
    scrollbar-width: none;
    align-items: stretch;
  }
  .works-grid::-webkit-scrollbar { display: none; }
  .works-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
    width: 75%;
    height: 360px;   /* fixed height on mobile too */
  }
}

/* ══════════════════════════════════════════════
   OUR WORK — Lightbox
   ══════════════════════════════════════════════ */

.works-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
}
.works-lb[hidden] { display: none; }

.works-lb-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.works-lb-close:hover { background: rgba(255, 255, 255, 0.22); }

.works-lb-prev,
.works-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.works-lb-prev:hover,
.works-lb-next:hover  { background: rgba(255, 255, 255, 0.22); }
.works-lb-prev { left:  1rem; }
.works-lb-next { right: 1rem; }

.works-lb-media {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 92vh;
}
.works-lb-media img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.works-lb-media video {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 6px;
  display: block;
  outline: none;
  background: #000;
}

/* ── Lightbox item counter (1 / 5) ── */
.works-lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  pointer-events: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   HOME PRICES — Минималистичный блок цен (главная)
   ═══════════════════════════════════════════════ */

/* ── Секция ── */
.home-prices {
  background: var(--bg);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

/* ── Заголовок ── */
.home-prices__header {
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 3rem) clamp(3rem, 5vw, 5rem);
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-prices__label {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.home-prices__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--text);
  margin: 0 0 2rem;
}
.home-prices__title em {
  font-style: italic;
  color: var(--text-3);
}
.home-prices__desc {
  color: var(--text-3);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 28rem;
  text-align: center;
}
.home-prices__empty {
  color: var(--text-3);
  font-style: italic;
  text-align: center;
  padding: 2rem 0;
}

/* ── Обёртка категорий ── */
.home-prices__wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ── Категория: сетка sidebar + list ── */
.hp-cat {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
@media (max-width: 768px) {
  .hp-cat {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hp-cat__sidebar {
    position: static; /* отключаем sticky — на мобильном однострочный грид, sticky перекрывает список */
  }
}

/* ── Боковая колонка ── */
/* sticky должен быть на самой grid-ячейке, не на вложенном div */
.hp-cat__sidebar {
  align-self: start;
  position: sticky;
  top: 5.5rem;
}
.hp-cat__name {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 3.5vw, 3.25rem);
  font-weight: 400;
  color: var(--text);
  margin: 0 0 0.875rem;
  line-height: 1.1;
}
.hp-cat__desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 20rem;
}

/* ── Строка услуги ── */
.hp-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: border-color var(--ease);
}
.hp-row:hover {
  border-bottom-color: var(--text-2);
}
.hp-row:hover .hp-row__name {
  color: var(--gold);
}
.hp-row__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hp-row__name {
  font-family: var(--font-sans);
  font-size: clamp(0.875rem, 1.1vw, 1rem);
  font-weight: 500;
  color: var(--text);
  transition: color var(--ease);
}
.hp-row__time {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.hp-row__price {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.4vw, 1.375rem);
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.hp-row--gold .hp-row__price {
  color: var(--gold);
}

/* ── Sub-category gold label ── */
.hp-sublabel {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 2rem 0 1.25rem;
}

/* ── Dark banner (Complex Package и т.п.) ── */
.hp-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--text);
  color: #fff;
  padding: 1.375rem 1.5rem;
  border-radius: 3px;
  margin-top: 0.75rem;
}
.hp-dark__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hp-dark__name {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
}
.hp-dark__sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}
.hp-dark__price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  white-space: nowrap;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
  padding: var(--py) 0;
  background: var(--bg-2);
}

.reviews-header {
  text-align: left;
  margin-bottom: 3rem;
}

.reviews-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.reviews-label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}
.reviews-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--text-2);
}

/* Виджет на полную ширину — вне .container — чтобы Trustindex показал 3 карточки */
.reviews-widget {
  width: 100%;
  padding: 0 max(2rem, calc((100vw - 1180px) / 2 + 2rem));
  box-sizing: border-box;
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .faq-answer { transition: none; }
}

/* ==========================================================================
   Floating Buttons — WhatsApp (pulse) + Scroll-to-top
   ========================================================================== */
.float-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}

/* ── WhatsApp button ── */
.float-phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .35);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}
.float-phone:hover {
    transform: scale(1.08);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
}

/* Pulsing ring */
.float-phone-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: fp-pulse 2.2s ease-out infinite;
    z-index: -1;
}
@keyframes fp-pulse {
    0%   { transform: scale(1);    opacity: .65; }
    70%  { transform: scale(1.75); opacity: 0;   }
    100% { transform: scale(1.75); opacity: 0;   }
}

/* ── Scroll-to-top button ── */
.scroll-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .10);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease,
                background .2s ease, color .2s ease;
}
.scroll-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--text);
    color: var(--bg);
}

/* ── Mobile sizing ── */
@media (max-width: 640px) {
    .float-wrap   { bottom: 16px; right: 16px; }
    .float-phone  { width: 50px; height: 50px; }
    .scroll-top   { width: 40px; height: 40px; }
}
