/*
Theme Name: Syabryna Theme
Theme URI: https://example.com/syabryna-theme
Description: Тема для сайта посуточной аренды загородного дома в пригороде Минска. Специализация: семейный отдых.
Version: 2.1
Author: Viktar
Author URI: https://example.com
Text Domain: syabryna-theme
*/

/* ==========================================================================
   1. ДИЗАЙН-ТОКЕНЫ (CSS-ПЕРЕМЕННЫЕ)
   Все цвета, шрифты, отступы и переходы задаём здесь — один раз.
   Изменить внешний вид сайта можно, просто скорректировав эти значения.
   ========================================================================== */

:root {
	/* --- Цвета --- */
	--color-primary:        #2C5F2D; /* Тёмно-зелёный: заголовки, акценты, шапка */
	--color-primary-dark:   #1e4520; /* Более тёмный зелёный для hover-состояний */
	--color-accent:         #FF6B35; /* Оранжевый: кнопки, важные призывы к действию */
	--color-accent-dark:    #e55a26; /* Тёмный оранжевый для hover кнопок */
	--color-bg:             #FFFFFF; /* Основной белый фон */
	--color-bg-secondary:   #F5F5F5; /* Светло-серый фон для выделенных секций */
	--color-text:           #333333; /* Основной тёмно-серый текст */
	--color-text-muted:     #6B7280; /* Второстепенный текст: дата, мета, подписи */
	--color-border:         #E5E7EB; /* Разделительные линии и бордюры */

	/* --- Типографика --- */
	--font-heading: "Montserrat", system-ui, sans-serif; /* Заголовки: строго Montserrat */
	--font-body:    "Open Sans", system-ui, sans-serif;  /* Тело: Open Sans */

	/* --- Размеры шрифта (mobile-first) --- */
	--text-xs:   0.75rem;  /*  12px */
	--text-sm:   0.875rem; /*  14px */
	--text-base: 1rem;     /*  16px */
	--text-lg:   1.125rem; /*  18px */
	--text-xl:   1.25rem;  /*  20px */
	--text-2xl:  1.5rem;   /*  24px */
	--text-3xl:  1.875rem; /*  30px */
	--text-4xl:  2.25rem;  /*  36px */
	--text-5xl:  3rem;     /*  48px */

	/* --- Отступы (шаг 8px) --- */
	--space-1:  0.25rem;  /*  4px */
	--space-2:  0.5rem;   /*  8px */
	--space-3:  0.75rem;  /* 12px */
	--space-4:  1rem;     /* 16px */
	--space-6:  1.5rem;   /* 24px */
	--space-8:  2rem;     /* 32px */
	--space-12: 3rem;     /* 48px */
	--space-16: 4rem;     /* 64px */
	--space-24: 6rem;     /* 96px */

	/* --- Контейнер --- */
	--container-max: 1200px;
	--container-pad: var(--space-4); /* Горизонтальные поля на мобильном */

	/* --- Прочее --- */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.10);
	--transition: 0.2s ease;
}

/* ==========================================================================
   2. СБРОС И БАЗОВАЯ КОРОБОЧНАЯ МОДЕЛЬ
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	font-family: var(--font-body);
	font-size: var(--text-lg); /* 18px — базовый размер по ТЗ */
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-bg);
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ==========================================================================
   3. ТИПОГРАФИКА
   ========================================================================== */

/* Все заголовки — Montserrat, жирные, цвет primary */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.2;
	color: var(--color-primary);
	margin-top: 0;
	margin-bottom: var(--space-4);
}

/* Mobile: минимальные размеры */
h1 { font-size: var(--text-3xl); } /* 30px */
h2 { font-size: var(--text-2xl); } /* 24px */
h3 { font-size: var(--text-xl);  } /* 20px */
h4 { font-size: var(--text-lg);  } /* 18px */
h5 { font-size: var(--text-base);} /* 16px */
h6 { font-size: var(--text-sm);  } /* 14px */

/* Tablet (≥ 768px): чуть крупнее */
@media (min-width: 768px) {
	h1 { font-size: var(--text-4xl); } /* 36px */
	h2 { font-size: var(--text-3xl); } /* 30px */
	h3 { font-size: var(--text-2xl); } /* 24px */
	h4 { font-size: var(--text-xl);  } /* 20px */
}

/* Desktop (≥ 1024px): полноразмерная типографика */
@media (min-width: 1024px) {
	h1 { font-size: var(--text-5xl); } /* 48px */
	h2 { font-size: var(--text-4xl); } /* 36px */
	h3 { font-size: var(--text-3xl); } /* 30px */
}

p {
	margin-top: 0;
	margin-bottom: var(--space-4);
}

/* ==========================================================================
   4. ССЫЛКИ
   ========================================================================== */

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover,
a:focus-visible {
	color: var(--color-accent);
	text-decoration: underline;
}

a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

/* ==========================================================================
   5. УТИЛИТАРНЫЕ КЛАССЫ
   ========================================================================== */

/* Основной контейнер — центрирует и ограничивает ширину */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

@media (min-width: 768px) {
	.container {
		padding-inline: var(--space-8); /* 32px на планшете */
	}
}

/* Пространство между крупными секциями страницы */
.section {
	padding-block: var(--space-16); /* 64px мобильный */
}

@media (min-width: 768px) {
	.section {
		padding-block: var(--space-24); /* 96px на широких экранах */
	}
}

/* Секция на вторичном фоне */
.section--alt {
	background-color: var(--color-bg-secondary);
}

/* Скрытие элементов для screen readers / визуально */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

/*
 * Утилита .hidden — полное скрытие элемента.
 *
 * !important гарантирует, что элемент скрыт независимо от других стилей.
 * Используется для .header-top-bar: убери класс «hidden» из HTML,
 * чтобы сделать верхнюю строку видимой без изменения CSS.
 */
.hidden {
	display: none !important;
}

/* ==========================================================================
   6. КНОПКИ
   ========================================================================== */

.btn {
	display: inline-block;
	padding: var(--space-3) var(--space-8);
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

/* Основная кнопка — оранжевая (акцентный цвет) */
.btn--primary {
	background-color: var(--color-accent);
	color: #ffffff;
	border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #ffffff;
	text-decoration: none;
	box-shadow: var(--shadow-md);
}

/* Вторичная кнопка — контурная зелёная */
.btn--secondary {
	background-color: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
	background-color: var(--color-primary);
	color: #ffffff;
	text-decoration: none;
}

/* ==========================================================================
   7. ШАПКА САЙТА
   ========================================================================== */

/* ----------------------------------------------------------------
   7a. Корневая обёртка шапки
   .site-header — sticky-контейнер для обеих строк (топ-бар + основная).
   z-index: 200 — выше любого контента страницы.
   ---------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background-color: var(--color-bg);
}

/* ----------------------------------------------------------------
   7b. Верхняя информационная строка (.header-top-bar)
   По умолчанию скрыта классом .hidden (см. секцию 5).
   Удали «hidden» из HTML, чтобы включить.
   ---------------------------------------------------------------- */
.header-top-bar {
	background-color: var(--color-bg-secondary);
	border-bottom: 1px solid var(--color-border);
	height: 45px;
}

.header-top-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: var(--space-4);
}

.header-top-bar__location {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

.header-top-bar__icon {
	flex-shrink: 0;
	color: var(--color-primary);
}

.header-top-bar__contacts {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.header-top-bar__phone {
	display: flex;
	align-items: center;
	gap: var(--space-1);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
	transition: color var(--transition);
}

.header-top-bar__phone:hover {
	color: var(--color-accent);
	text-decoration: none;
}

.header-top-bar__divider {
	color: var(--color-border);
	user-select: none;
}

/* Блок иконок мессенджеров */
.header-top-bar__messengers {
	display: flex;
	align-items: center;
	gap: var(--space-2);
}

.header-top-bar__messenger-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	transition: transform 0.3s ease, opacity 0.3s ease;
	opacity: 0.85;
}

.header-top-bar__messenger-link:hover {
	transform: scale(1.15);
	opacity: 1;
	text-decoration: none;
}

/* Фирменные цвета иконок мессенджеров */
.header-top-bar__messenger-link--whatsapp { color: #25D366; }
.header-top-bar__messenger-link--telegram  { color: #229ED9; }
.header-top-bar__messenger-link--viber     { color: #7360F2; }

/* Скрываем топ-бар полностью ниже 1280px — он слишком плотный */
@media (max-width: 1279px) {
	.header-top-bar {
		display: none !important;
	}
}

/* ----------------------------------------------------------------
   7c. Основная навигационная шапка (.site-header__main)
   ---------------------------------------------------------------- */
.site-header__main {
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

/* Flex-строка: логотип | меню | кнопка + гамбургер */
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 0; /* Отступы задаём через margin на дочерних элементах */
	padding-block: var(--space-4);
}

/* ----------------------------------------------------------------
   7d. Логотип (.site-logo)
   ---------------------------------------------------------------- */
.site-logo {
	flex-shrink: 0;
}

/* Убираем margin у h1/p внутри логотипа */
.site-logo__text {
	margin: 0;
	font-size: 0; /* Убираем лишний пробел вокруг вложенного span */
}

.site-logo__name {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 800;
	color: var(--color-primary);
	line-height: 1;
	letter-spacing: -0.02em;
	transition: color var(--transition);
}

.site-logo__text a {
	text-decoration: none;
}

.site-logo__text a:hover .site-logo__name,
.site-logo__text a:focus-visible .site-logo__name {
	color: var(--color-accent);
}

/* Планшет и выше */
@media (min-width: 768px) {
	.site-logo__name {
		font-size: 40px;
	}
}

/* Широкий десктоп */
@media (min-width: 1200px) {
	.site-logo__name {
		font-size: 48px;
	}
}

/* ----------------------------------------------------------------
   7e. Priority Navigation (.priority-nav) — десктоп ≥ 768px
   Горизонтальный список пунктов; переполнение прячется в «Ещё ▾».
   На мобильных (< 768px) скрыт — там работает .nav-mobile.
   ---------------------------------------------------------------- */

/* Контейнер priority nav: занимает всё свободное место в шапке */
.priority-nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: var(--space-2);
	min-width: 0;
	position: relative;
	margin-left: var(--space-8); /* 32px — отступ от логотипа */
}

/* Скрыть на мобильных */
@media (max-width: 767px) {
	.priority-nav {
		display: none;
	}
	/* Гамбургер прижать вправо (нет flex gap, нет priority-nav) */
	.site-header__actions {
		margin-left: auto;
	}
}

/* Видимый список пунктов (заполняется priority-nav.js) */
.priority-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: nowrap;
}
@media (min-width: 768px) {
    .priority-nav {
        visibility: hidden;
    }
    .priority-nav.is-ready {
        visibility: visible;
    }
}
/* Ссылки в priority nav */
.priority-nav__list a {
	display: block;
	padding: 10px 18px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius-sm);
	white-space: nowrap;
	transition: color 0.25s ease, background-color 0.25s ease;
}

.priority-nav__list a:hover,
.priority-nav__list .current-menu-item > a,
.priority-nav__list .current-page-ancestor > a {
	color: var(--color-accent);
	background-color: rgba(255, 107, 53, 0.07);
	text-decoration: none;
}

/* ── Кнопка «Ещё ▾» ── */
.priority-nav__more {
	position: relative;
	flex-shrink: 0;
	margin-left: auto; /* Кнопка «Ещё ▾» всегда у правого края nav */
}

.priority-nav__more-btn {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 10px 18px;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.25s ease, border-color 0.25s ease,
	            background-color 0.25s ease;
}

.priority-nav__more-btn:hover,
.priority-nav__more-btn[aria-expanded="true"] {
	color: var(--color-accent);
	border-color: var(--color-accent);
	background-color: rgba(255, 107, 53, 0.05);
}

.priority-nav__more-arrow {
	font-size: 10px;
	transition: transform 0.2s ease;
}

.priority-nav__more-btn[aria-expanded="true"] .priority-nav__more-arrow {
	transform: rotate(180deg);
}

/* ── Выпадающий список ── */
.priority-nav__dropdown {
	list-style: none;
	margin: 0;
	padding: var(--space-2) 0;
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 200px;
	background-color: var(--color-bg);
	border-radius: var(--radius-md);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
	border: 1px solid var(--color-border);
	z-index: 300;
	/* Скрытое состояние */
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.priority-nav__dropdown.is-open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.priority-nav__dropdown a {
	display: block;
	padding: 10px var(--space-4);
	font-family: var(--font-heading);
	font-size: var(--text-sm);
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.priority-nav__dropdown a:hover,
.priority-nav__dropdown .current-menu-item > a {
	color: var(--color-accent);
	background-color: rgba(255, 107, 53, 0.05);
	text-decoration: none;
}

/* ----------------------------------------------------------------
   7f. Правый блок: кнопка + гамбургер (.site-header__actions)
   ---------------------------------------------------------------- */
.site-header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	flex-shrink: 0;
	/* Скрытый блок не добавляет отступ к priority-nav */
	margin-left: 0;
}

/*
 * Кнопка «Забронировать» в шапке (.header-scroll-btn).
 *
 * По умолчанию скрыта: opacity: 0 + translateX(16px) + pointer-events: none.
 * Когда scroll-effects.js добавляет класс .is-scrolled на <header>,
 * CSS плавно (0.4s) показывает кнопку.
 *
 * pointer-events: none гарантирует, что невидимая кнопка не перехватывает клики.
 * tabindex="-1" и aria-hidden="true" заданы в HTML и управляются JS.
 */
.header-scroll-btn {
	padding-block: 7px;
	padding-inline: 0;   /* скрыта — схлопывается до нулевой ширины */
	max-width: 0;
	overflow: hidden;
	font-size: 14px;
	white-space: nowrap;
	/* Начальное скрытое состояние */
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
transition: opacity 0.4s ease, max-width 0.4s ease, visibility 0.4s ease,
	            padding-inline 0.4s ease,
	            background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Видимое состояние — когда .is-scrolled на <header> */
.site-header.is-scrolled .header-scroll-btn {
	opacity: 1;
	max-width: 180px;         /* больше реальной ширины кнопки */
	padding-inline: 18px;
	pointer-events: auto;
visibility: visible;
}

.header-scroll-btn:hover,
.header-scroll-btn:focus-visible {
	background-color: var(--color-accent-dark);
	box-shadow: 0 4px 14px rgba(255, 107, 53, 0.40);
	text-decoration: none;
}

/* ----------------------------------------------------------------
   7g. Кнопка-гамбургер (.nav-toggle) — только на мобильных < 768px
   ---------------------------------------------------------------- */
.nav-toggle {
	display: none; /* Скрыта на десктопе ≥ 768px */
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.nav-toggle:hover {
	border-color: var(--color-primary);
}

/* Три полоски гамбургера */
.nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--color-text);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* Анимация в крест при открытом меню (.is-open) */
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
	background-color: var(--color-primary);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
	background-color: var(--color-primary);
}

/* ----------------------------------------------------------------
   7h. Мобильный режим (< 768px): гамбургер + .nav-mobile overlay
   ---------------------------------------------------------------- */
@media (max-width: 767px) {

	/* Показываем гамбургер */
	.nav-toggle {
		display: flex;
	}
}

/* ── Мобильное меню-оверлей (.nav-mobile) ── */
.nav-mobile {
	/* Скрыто по умолчанию — выезжает снизу/сверху при .is-open */
	display: block;
	position: fixed;
	top: var(--header-height, 65px);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 199;
	background-color: var(--color-bg);
	overflow-y: auto;
	padding-block: var(--space-4);

	/* Начальное состояние: скрыто за левым краем */
	transform: translateX(-100%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Открытое состояние — добавляется priority-nav.js */
.nav-mobile.is-open {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}

/* Скрывать nav-mobile на широких экранах */
@media (min-width: 768px) {
	.nav-mobile {
		display: none !important;
	}
}

/* Список пунктов мобильного меню */
.nav-mobile__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-mobile__list li {
	border-bottom: 1px solid var(--color-border);
}

/* Крупные touch-цели: min 48px высота (padding 15px + font 16px + line-height) */
.nav-mobile__list a {
	display: block;
	padding: 15px var(--space-4);
	font-family: var(--font-heading);
	font-size: var(--text-base); /* 16px */
	font-weight: 700;
	color: var(--color-text);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s ease, padding-left 0.2s ease,
	            background-color 0.2s ease;
}

.nav-mobile__list a:hover,
.nav-mobile__list .current-menu-item > a {
	color: var(--color-accent);
	padding-left: var(--space-8);
	background-color: rgba(44, 95, 45, 0.03);
	text-decoration: none;
}

/* Блокировка прокрутки страницы при открытом мобильном меню */
body.menu-is-open {
	overflow: hidden;
}

/* ==========================================================================
   13. КНОПКА «НАВЕРХ» (.scroll-to-top)
   Фиксированная, правый нижний угол. Появляется после 400px прокрутки.
   ========================================================================== */

.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;

	/* Размер и форма */
	width: 48px;
	height: 48px;
	border-radius: 50%;
	padding: 0;
	border: none;
	cursor: pointer;

	/* Цвета */
	background-color: var(--color-primary); /* #2C5F2D */
	color: #ffffff;

	/* Центрирование иконки */
	display: flex;
	align-items: center;
	justify-content: center;

	/* Начальное скрытое состояние */
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 0.3s ease, transform 0.3s ease,
	            background-color 0.3s ease;
}

/* Видимое состояние — добавляется классом .is-visible через JS */
.scroll-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
	background-color: var(--color-primary-dark);
	transform: scale(1.1);
	outline: none;
}

/* На очень маленьких экранах чуть сдвигаем, чтобы не перекрывал контент */
@media (max-width: 480px) {
	.scroll-to-top {
		bottom: 20px;
		right: 16px;
		width: 44px;
		height: 44px;
	}
}

/* ==========================================================================
   8. ОСНОВНОЙ КОНТЕНТ (.site-main)
   ========================================================================== */

.site-main {
	padding-block: var(--space-12);
}

/* ==========================================================================
   9. КАРТОЧКИ ЗАПИСЕЙ (.entry)
   ========================================================================== */

.entry {
	background-color: var(--color-bg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: var(--space-8);
	margin-bottom: var(--space-8);
	transition: box-shadow var(--transition);
}

.entry:hover {
	box-shadow: var(--shadow-md);
}

.entry__title {
	margin-top: 0;
	margin-bottom: var(--space-2);
}

.entry__title a {
	color: var(--color-primary);
}

.entry__title a:hover {
	color: var(--color-accent);
	text-decoration: none;
}

.entry__meta {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-bottom: var(--space-4);
}

.entry__content {
	font-size: var(--text-lg);
	line-height: 1.7;
}

/* ==========================================================================
   10. ПОДВАЛ САЙТА (.site-footer)
   ========================================================================== */

.site-footer {
	background-color: #2C3E2D;
	color: rgba(255, 255, 255, 0.9);
	padding-top: 40px;
	padding-bottom: 30px;
	font-size: var(--text-base);
	line-height: 1.7;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color var(--transition);
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--color-accent);
	text-decoration: none;
}

/* ----------------------------------------------------------------
   10a. Сетка футера — 2 колонки, при наличии соцсетей — 3
   ---------------------------------------------------------------- */
.footer-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
	margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
	.footer-main {
		grid-template-columns: 1fr 2fr;
		gap: 60px;
	}

	/* Три колонки когда есть блок соцсетей */
	.footer-main:has(.footer-col--socials) {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 40px;
	}

	/* Левая колонка не растягивается шире 350px при двух колонках */
	.footer-main:not(:has(.footer-col--socials)) .footer-col--about {
		max-width: 350px;
	}
}

/* Мобильный: контент по центру */
@media (max-width: 767px) {
	.footer-col {
		text-align: center;
	}
}

/* ----------------------------------------------------------------
   10b. Заголовки колонок
   ---------------------------------------------------------------- */
.footer-col__title {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.6;
	margin-top: 0;
	margin-bottom: 20px;
}

/* ----------------------------------------------------------------
   10c. Колонка «О Сябрыне»
   ---------------------------------------------------------------- */
.footer-logo {
	display: inline-block;
	margin-bottom: var(--space-4);
	text-decoration: none;
}

.footer-logo__name {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.02em;
	line-height: 1;
	transition: color var(--transition);
}

.footer-logo:hover .footer-logo__name,
.footer-logo:focus-visible .footer-logo__name {
	color: var(--color-accent);
}

.footer-about__text {
	color: rgba(255, 255, 255, 0.75);
	font-size: var(--text-sm);
	line-height: 1.7;
	margin-top: 0;
	margin-bottom: var(--space-4);
}

.footer-about__address {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.footer-about__address-pin {
	font-size: 16px;
	line-height: 1;
}

@media (max-width: 767px) {
	.footer-about__address {
		justify-content: center;
	}
}

/* ----------------------------------------------------------------
   10d. Колонка «Связаться с нами»: контакты
   ---------------------------------------------------------------- */
.footer-contacts {
	list-style: none;
	margin: 0 0 var(--space-4) 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.footer-contacts__item {
	display: flex;
	align-items: flex-start;
	gap: var(--space-2);
	color: rgba(255, 255, 255, 0.85);
	font-size: var(--text-sm);
}

@media (max-width: 767px) {
	.footer-contacts__item {
		justify-content: center;
	}
}

.footer-contacts__icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.45);
}

.footer-contacts__item--hours {
	color: rgba(255, 255, 255, 0.55);
	font-size: var(--text-sm);
	font-style: italic;
}

.footer-contacts__item a {
	color: rgba(255, 255, 255, 0.9);
	transition: color var(--transition);
}

.footer-contacts__item a:hover {
	color: var(--color-accent);
}

/* ── Разделитель ── */
.footer-divider {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin-block: var(--space-4);
}

/* ── Подзаголовок «Мессенджеры» / «Мы в соцсетях» ── */
.footer-messengers__title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0;
	margin-bottom: var(--space-3);
}

/* ----------------------------------------------------------------
   10e. Иконки мессенджеров / соцсетей
   ---------------------------------------------------------------- */
.footer-messengers {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: var(--space-4);
}

@media (max-width: 767px) {
	.footer-messengers {
		justify-content: center;
	}
}

/* Базовый стиль кнопки-иконки */
.footer-messenger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
}

.footer-messenger svg {
	width: 22px;
	height: 22px;
}

.footer-messenger:hover,
.footer-messenger:focus-visible {
	transform: scale(1.15);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	text-decoration: none;
}

/* Фирменные цвета */
.footer-messenger--telegram  { background-color: #2AABEE; }
.footer-messenger--whatsapp  { background-color: #25D366; }
.footer-messenger--viber     { background-color: #7360F2; }

/* Instagram: градиент */
.footer-messenger--instagram {
	background: linear-gradient(135deg, #E1306C 0%, #F77737 100%);
}

/* VK */
.footer-messenger--vk { background-color: #0077FF; }

/* YouTube */
.footer-messenger--youtube { background-color: #FF0000; }

/* ── Текстовые ссылки соцсетей (.footer-socials) ── */
.footer-socials__links {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

@media (max-width: 767px) {
	.footer-socials__links {
		justify-content: center;
	}
}

.footer-socials__link {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-socials__link:hover,
.footer-socials__link:focus-visible {
	color: var(--color-accent);
	opacity: 1;
	text-decoration: underline;
}

/* ----------------------------------------------------------------
   10f. Нижняя строка
   ---------------------------------------------------------------- */
.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-3);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: var(--space-6);
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.45);
}

.site-footer__copy {
	margin: 0;
}

.site-footer__policy {
	color: rgba(255, 255, 255, 0.45);
	text-underline-offset: 3px;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
	transition: color var(--transition);
}

.site-footer__policy:hover,
.site-footer__policy:focus-visible {
	color: var(--color-accent);
	text-decoration-color: var(--color-accent);
}

@media (max-width: 599px) {
	.site-footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

/* ----------------------------------------------------------------
   10g. Legacy: область виджетов (если будут)
   ---------------------------------------------------------------- */
.footer-widgets {
	margin-bottom: var(--space-8);
}

.widget__title {
	font-size: 13px;
	font-weight: 700;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.6;
	margin-bottom: 20px;
}

/* ==========================================================================
   11. ГЕРОЙ-СЕКЦИЯ (.hero-section) — front-page.php
   ========================================================================== */

/* ── Анимация появления контента ── */
@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroScrollBounce {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(7px); }
}

/* ── Обёртка секции ── */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* ── Фоновое изображение ── */
.hero-section__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* ── Контент (поверх фона) ── */
.hero-section__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 820px;
	margin-inline: auto;
	padding-inline: var(--space-6);    /* 24px боковые отступы */
	text-align: center;
	color: #ffffff;
	/* Общая анимация появления */
	animation: heroFadeUp 0.9s ease both;
}

/* ── Заголовок H1 ── */
.hero-section__title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.75rem); /* 32px → 60px плавно */
	font-weight: 800;
	line-height: 1.15;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: var(--space-4);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
	animation: heroFadeUp 0.9s 0.1s ease both;
}

/* ── Подзаголовок (факты) ── */
.hero-section__subtitle {
	font-family: var(--font-body);
	font-size: clamp(var(--text-base), 2.2vw, var(--text-lg)); /* 16px → 20px */
	font-weight: 600;
color: rgba(255, 255, 255, 1);
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
	margin-top: 0;
	margin-bottom: var(--space-4);
	letter-spacing: 0.02em;
	animation: heroFadeUp 0.9s 0.22s ease both;
}

/* ── Описание ── */
.hero-section__desc {
	font-family: var(--font-body);
	font-size: var(--text-base);
color: rgba(255, 255, 255, 1);
text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
	max-width: 560px;
	margin-inline: auto;
	margin-bottom: var(--space-8);
	line-height: 1.65;
	animation: heroFadeUp 0.9s 0.34s ease both;
}

/* ── Группа кнопок ── */
.hero-section__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--space-4);              /* 16px между кнопками */
	animation: heroFadeUp 0.9s 0.46s ease both;
}

/* ── Основная кнопка (оранжевая) ── */
.btn--hero-primary {
	display: inline-block;
	padding: 15px 44px;
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: #ffffff;
	background-color: var(--color-accent);
	border: 2px solid var(--color-accent);
	border-radius: 30px;
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.02em;
	transition: transform 0.25s ease, box-shadow 0.25s ease,
	            background-color 0.25s ease;
	box-shadow: 0 4px 20px rgba(255, 107, 53, 0.40);
}

.btn--hero-primary:hover,
.btn--hero-primary:focus-visible {
	transform: scale(1.06);
	box-shadow: 0 6px 28px rgba(255, 107, 53, 0.55);
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #ffffff;
	text-decoration: none;
}

/* ── Вторичная кнопка (прозрачная с белой обводкой) ── */
.btn--hero-outline {
	display: inline-block;
	padding: 15px 44px;
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: #ffffff;
	background-color: transparent;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 30px;
	text-decoration: none;
	white-space: nowrap;
	letter-spacing: 0.02em;
	transition: background-color 0.25s ease, color 0.25s ease,
	            border-color 0.25s ease, transform 0.25s ease;
}

.btn--hero-outline:hover,
.btn--hero-outline:focus-visible {
	background-color: #ffffff;
	color: var(--color-text);
	border-color: #ffffff;
	transform: scale(1.04);
	text-decoration: none;
}

/* ── Стрелка «прокрути вниз» ── */
.hero-section__scroll-hint {
	position: absolute;
	bottom: var(--space-6);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: rgba(255, 255, 255, 0.65);
	animation: heroScrollBounce 2s 1.2s ease-in-out infinite,
	           heroFadeUp 0.9s 0.7s ease both;
	cursor: pointer;
	line-height: 1;
}

/* ── Адаптивность ── */

/* Планшет */
@media (min-width: 600px) and (max-width: 899px) {
	.hero-section__title {
		font-size: 48px;
	}
}

/* Мобильный — стек кнопок */
@media (max-width: 599px) {
	.hero-section__title {
		font-size: 36px;
	}

	.hero-section__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn--hero-primary,
	.btn--hero-outline {
		text-align: center;
		padding-inline: var(--space-6);
	}
}

/* ==========================================================================
   12. СЕКЦИЯ «ПОЧЕМУ ВЫБИРАЮТ НАС» (.features-section)
   ========================================================================== */

/* ── Общий заголовок секций ── */
.section-header {
	text-align: center;
	max-width: 620px;
	margin-inline: auto;
	margin-bottom: var(--space-12); /* 48px */
}

.section-header__title {
	font-family: var(--font-heading);
	font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl)); /* 24px → 36px */
	font-weight: 800;
	color: var(--color-primary);
	margin-top: 0;
	margin-bottom: var(--space-3);
}

.section-header__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.5;
}

/* ── Обёртка секции ── */
.features-section {
	background-color: var(--color-bg-secondary); /* #F5F5F5 */
	padding-block: var(--space-16);              /* 64px */
}

/* ── CSS Grid: auto-fit, минимум 280px на ячейку ── */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--space-6); /* 24px */
}

/* ── Карточка преимущества ── */
.feature-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin: 0 0 6px;
}

.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

/* ── Иконка (эмодзи) ── */
.feature-card__icon {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 12px;
}

/* ── Заголовок карточки ── */
.feature-card__title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);       /* 20px */
	font-weight: 700;
	color: var(--color-text);
	margin-top: 0;
	margin-bottom: var(--space-3);
}

/* ── Описание карточки ── */
.feature-card__text {
	font-size: var(--text-base);     /* 16px */
	color: var(--color-text-muted);
	line-height: 1.65;
	margin: 0;
}

/* ── Адаптивность ── */

/* Планшет: явно 2 колонки */
@media (min-width: 600px) and (max-width: 899px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Десктоп: явно 3 колонки */
@media (min-width: 900px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ==========================================================================
   13. СЕКЦИЯ «ПАКЕТЫ ЦЕН» (.pricing-section)
   ========================================================================== */

.pricing-section {
	background-color: var(--color-bg-secondary);
	padding-block: var(--space-16); /* 64px */
}

/* ── Сетка карточек ─────────────────────────────────────────── */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
	margin-bottom: var(--space-8);
	align-items: start;
}

/* Планшет: 3 + 2 */
@media (min-width: 600px) {
	.pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* Десктоп: все 5 в ряд */
@media (min-width: 1200px) {
	.pricing-grid {
		grid-template-columns: repeat(5, 1fr);
		gap: var(--space-3);
	}
}

/* ── Карточка ───────────────────────────────────────────────── */
.pricing-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border-radius: 16px;
	padding: 28px 24px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

/* Популярная карточка «С баней» */
.pricing-card--featured {
	border: 2px solid var(--color-accent);
	box-shadow: 0 8px 28px rgba(255, 107, 53, 0.18);
	transform: scale(1.03);
	z-index: 1;
}

.pricing-card--featured:hover {
	transform: scale(1.03) translateY(-4px);
	box-shadow: 0 16px 40px rgba(255, 107, 53, 0.25);
}

/* На мобильном — популярная карточка не масштабируется */
@media (max-width: 767px) {
	.pricing-card--featured {
		transform: none;
	}

	.pricing-card--featured:hover {
		transform: translateY(-4px);
	}
}

/* ── Бейджи ─────────────────────────────────────────────────── */
.pricing-card__season-badge,
.pricing-card__popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-family: var(--font-heading);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	border-radius: 20px;
	padding: 4px 12px;
}

.pricing-card__season-badge {
	background-color: var(--color-primary);
	color: #ffffff;
}

.pricing-card__popular-badge {
	background-color: var(--color-accent);
	color: #ffffff;
}

/* ── Заголовок карточки ─────────────────────────────────────── */
.pricing-card__header {
	margin-bottom: var(--space-4);
	padding-top: var(--space-2); /* отступ под бейдж */
}

.pricing-card__name {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 0;
	margin-bottom: var(--space-2);
}

.pricing-card__price-wrap {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 6px;
}

.pricing-card__price {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 800;
	color: var(--color-primary);
	line-height: 1;
}

.pricing-card__currency {
	font-size: var(--text-sm);
	color: #666666;
	white-space: nowrap;
}

.pricing-card__subtitle {
	font-size: 13px;
	color: #888888;
	margin: 0 0 12px 0;
}

/* Плашка вместимости */
.pricing-card__capacity {
	display: inline-block;
	background-color: #eaf2ea;
	color: var(--color-primary);
	font-size: 12px;
	line-height: 1.4;
	border-radius: 6px;
	padding: 4px 10px;
	margin: 0 0 12px 0;
}

/* ── Список включений ───────────────────────────────────────── */
.pricing-card__features {
	list-style: none;
	margin: 0 0 var(--space-4) 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1; /* растягивает список, кнопка прижимается к низу */
}

.pricing-card__features li {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-text);
	padding-left: 22px;
	position: relative;
}

.pricing-card__features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
}

.pricing-card__feature-note {
	display: block;
	font-size: 12px;
	color: var(--color-text-muted);
	padding-left: 0;
}

/* ── Кнопки карточки ────────────────────────────────────────── */
.pricing-card__btn {
	display: block;
	width: 100%;
	text-align: center;
	padding: 11px var(--space-4);
	border-radius: 25px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease,
	            border-color 0.25s ease, box-shadow 0.25s ease;
	margin-top: auto;
}

/* Контурная (белая с зелёной обводкой) */
.pricing-card__btn--outline {
	background-color: #ffffff;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
}

.pricing-card__btn--outline:hover,
.pricing-card__btn--outline:focus-visible {
	background-color: var(--color-primary);
	color: #ffffff;
	text-decoration: none;
}

/* Заполненная оранжевая (для «С баней») */
.pricing-card__btn--primary {
	background-color: var(--color-accent);
	color: #ffffff;
	border: 2px solid var(--color-accent);
	box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
}

.pricing-card__btn--primary:hover,
.pricing-card__btn--primary:focus-visible {
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

/* ── Плашка праздников ──────────────────────────────────────── */
.pricing-holiday-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-4);
	max-width: 800px;
	margin-inline: auto;
	margin-bottom: var(--space-8);
	padding: 16px 24px;
	background-color: #fff8ec;
	border: 1px solid #fbbf24;
	border-radius: 12px;
}

.pricing-holiday-notice__text {
	margin: 0;
	font-size: var(--text-sm);
	color: var(--color-text);
	flex: 1;
	line-height: 1.5;
}

.pricing-holiday-notice__btn {
	display: inline-block;
	flex-shrink: 0;
	padding: 8px 18px;
	background-color: var(--color-accent);
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	border-radius: 20px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.25s ease;
}

.pricing-holiday-notice__btn:hover,
.pricing-holiday-notice__btn:focus-visible {
	background-color: var(--color-accent-dark);
	color: #ffffff;
	text-decoration: none;
}

/* ── Условия бронирования ───────────────────────────────────── */
.pricing-conditions {
	background-color: #ffffff;
	border-radius: 16px;
	padding: var(--space-8) var(--space-6);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.pricing-conditions__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
	margin-bottom: var(--space-6);
}

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

.pricing-conditions__item {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.pricing-conditions__icon {
	font-size: 28px;
	line-height: 1;
}

.pricing-conditions__title {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-primary);
	margin: 0;
}

.pricing-conditions__text {
	font-size: var(--text-sm);
	color: var(--color-text);
	line-height: 1.65;
	margin: 0;
}

/* Сноска курсивом */
.pricing-conditions__footnote {
	font-size: 13px;
	font-style: italic;
	color: var(--color-text-muted);
	line-height: 1.6;
	border-top: 1px solid var(--color-border);
	padding-top: var(--space-4);
	margin-top: 0;
	margin-bottom: var(--space-4);
}

/* Доп. стоимость */
.pricing-conditions__extras {
	font-size: 13px;
	color: var(--color-text-muted);
	margin-bottom: var(--space-6);
}

/* Кнопка «Подробнее» */
.pricing-conditions__cta {
	text-align: center;
}

/* ==========================================================================
   14. СЕКЦИЯ «ГАЛЕРЕЯ» (.gallery-section) + ЛАЙТБОКС (.lightbox)
   ========================================================================== */

/* ── Секция ─────────────────────────────────────────────────── */
.gallery-section {
	background-color: #ffffff;
	padding-block: var(--space-16); /* 64px */
}

.gallery-section__cta {
	text-align: center;
	margin-top: var(--space-8);
}

/* ── Сетка фотографий ───────────────────────────────────────── */
.gallery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

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

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

/* ── Отдельная ячейка галереи ───────────────────────────────── */
.gallery-item {
	position: relative;
	display: block;
	width: 100%;
	height: 280px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	background: var(--color-bg-secondary);
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	outline: none;
}

.gallery-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

/* Подпись на карточке (CSS-оверлей, одинаковый размер для всех) */
.gallery-item__label {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

/* Оверлей с лупой */
.gallery-item__overlay {
	position: absolute;
	inset: 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}

.gallery-item__zoom {
	font-size: 32px;
	opacity: 0;
	transform: scale(0.7);
	transition: opacity 0.3s ease, transform 0.3s ease;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

/* Hover */
/* Фото не масштабируется отдельно — родитель .gallery-item уже поднимается */

.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay {
	background: rgba(0, 0, 0, 0.28);
}

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
	opacity: 1;
	transform: scale(1);
}

/* ── Лайтбокс ───────────────────────────────────────────────── */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	/* Начальное состояние — невидим и не перехватывает клики */
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

/* После добавления класса .lightbox--open — становится видимым и кликабельным */
.lightbox--open {
	opacity: 1;
	pointer-events: auto;
}

/* Тёмный фон */
.lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.92);
	cursor: pointer;
}

/* Внутренний блок (поверх фона) */
.lightbox__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 90vw;
	max-height: 90vh;
	pointer-events: none; /* клики проходят к фону — кроме дочерних элементов */
}

.lightbox__inner > * {
	pointer-events: auto;
}

/* Само фото */
.lightbox__img {
	display: block;
	max-width: 90vw;
	max-height: 75vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
	user-select: none;
}

/* Подпись */
.lightbox__caption {
	margin: var(--space-3) 0 0 0;
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
}

/* Счётчик */
.lightbox__counter {
	margin: var(--space-1) 0 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
}

/* Кнопка закрытия */
.lightbox__close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
	font-size: 0; /* скрываем любой текст */
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
	background: rgba(255, 255, 255, 0.25);
	transform: scale(1.1);
	outline: none;
}

/* Стрелки навигации */
.lightbox__arrow {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }

.lightbox__arrow:hover,
.lightbox__arrow:focus-visible {
	background: rgba(255, 255, 255, 0.25);
	outline: none;
}

.lightbox__arrow--prev:hover {
	transform: translateY(-50%) scale(1.1);
}

.lightbox__arrow--next:hover {
	transform: translateY(-50%) scale(1.1);
}

/* Мобильный: стрелки поменьше */
@media (max-width: 599px) {
	.lightbox__arrow {
		width: 40px;
		height: 40px;
	}

	.lightbox__arrow--prev { left: 8px; }
	.lightbox__arrow--next { right: 8px; }

	.lightbox__img {
		max-height: 65vh;
	}
}

/* ==========================================================================
   15. СТРАНИЦА 404
   ========================================================================== */

.entry--404 {
	text-align: center;
	padding-block: var(--space-24);
}

.entry--404 .entry__title {
	font-size: var(--text-5xl);
	color: var(--color-primary);
}

/* ==========================================================================
   15b. АРХИВ ДОСТОПРИМЕЧАТЕЛЬНОСТЕЙ (.attractions-archive)
   ========================================================================== */

.attractions-archive {
	padding: var(--space-16) 0;
}

.attractions-archive__title {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	color: var(--color-primary);
	margin-bottom: var(--space-2);
}

.attractions-archive__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-muted);
	margin-bottom: var(--space-12);
}

/* Сетка карточек */
.attractions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-8);
}

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

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

/* Карточка */
.attraction-card {
	background: #ffffff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
}

.attraction-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.attraction-card--top3 {
	border: 2px solid var(--color-accent);
}

/* Изображение */
.attraction-card__image-link {
	position: relative;
	display: block;
}

.attraction-card__image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.attraction-card__image-placeholder {
	width: 100%;
	height: 220px;
	background: var(--color-bg-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--text-4xl);
}

/* Бейдж ТОП */
.attraction-card__badge {
	position: absolute;
	top: var(--space-3);
	right: var(--space-3);
	background: var(--color-accent);
	color: #ffffff;
	padding: var(--space-1) var(--space-3);
	border-radius: 20px;
	font-size: var(--text-sm);
	font-weight: 600;
}

/* Тело карточки */
.attraction-card__body {
	padding: var(--space-6);
}

.attraction-card__distance {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	display: block;
	margin-bottom: var(--space-2);
}

.attraction-card__title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	margin: 0 0 var(--space-3);
}

.attraction-card__title a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

.attraction-card__title a:hover {
	color: var(--color-accent);
}

.attraction-card__excerpt {
	color: var(--color-text);
	font-size: var(--text-base);
	line-height: 1.6;
	margin-bottom: var(--space-4);
}

/* Подвал карточки */
.attraction-card__footer {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

.attraction-card__map-link {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	text-decoration: none;
	transition: color var(--transition);
}

.attraction-card__map-link:hover {
	color: var(--color-primary);
}

/* ==========================================================================
   16. ПАГИНАЦИЯ
   ========================================================================== */

.nav-links {
	display: flex;
	justify-content: center;
	gap: var(--space-2);
	flex-wrap: wrap;
	margin-top: var(--space-12);
}

.nav-links a,
.nav-links span {
	display: inline-block;
	padding: var(--space-2) var(--space-4);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: var(--text-sm);
	transition: background-color var(--transition), color var(--transition);
}

.nav-links a:hover {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: #ffffff;
	text-decoration: none;
}

.nav-links .current {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: #ffffff;
}

/* ==========================================================================
   17. ОДИНОЧНАЯ СТРАНИЦА ДОСТОПРИМЕЧАТЕЛЬНОСТИ (.attraction-single)
   ========================================================================== */

.attraction-single {
	padding: var(--space-12) 0 var(--space-16);
}

/* Хлебные крошки */
.breadcrumbs {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-bottom: var(--space-8);
}

.breadcrumbs a {
	color: var(--color-primary);
	text-decoration: none;
	transition: text-decoration var(--transition);
}

.breadcrumbs a:hover {
	text-decoration: underline;
}

/* Главное фото */
.attraction-single__hero {
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-bottom: var(--space-8);
	max-height: 480px;
}

.attraction-single__hero-img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}

/* Заголовок + расстояние */
.attraction-single__header {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	flex-wrap: wrap;
	margin-bottom: var(--space-6);
}

.attraction-single__title {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	color: var(--color-primary);
	margin: 0;
}

.attraction-single__distance {
	background: var(--color-bg-secondary);
	color: var(--color-text);
	padding: var(--space-1) var(--space-4);
	border-radius: 20px;
	font-size: var(--text-sm);
	white-space: nowrap;
}

/* Основной текст */
.attraction-single__text {
	font-size: var(--text-lg);
	line-height: 1.8;
	color: var(--color-text);
	margin-bottom: var(--space-12);
}

/* Галерея */
.attraction-single__gallery-title {
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	color: var(--color-primary);
	margin-bottom: var(--space-4);
}

.attraction-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
	margin-bottom: var(--space-12);
}

@media (max-width: 600px) {
	.attraction-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.attraction-gallery-grid__item {
	display: block;
	border-radius: var(--radius-md);
	overflow: hidden;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}

.attraction-gallery-grid__img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	transition: transform var(--transition);
	cursor: pointer;
}

.attraction-gallery-grid__img:hover {
	transform: scale(1.03);
}

/* Кнопки внизу */
.attraction-single__actions {
	display: flex;
	gap: var(--space-4);
	flex-wrap: wrap;
}

/* ==========================================================================
   18. СЕКЦИЯ «ТОП-3 ДОСТОПРИМЕЧАТЕЛЬНОСТИ» НА ГЛАВНОЙ (.section-attractions)
   ========================================================================== */

.section-attractions {
	padding: var(--space-16) 0;
	background: var(--color-bg-secondary);
}

.section-attractions__footer {
	text-align: center;
	margin-top: var(--space-12);
}

/* ==========================================================================
   19. ФОРМА БРОНИРОВАНИЯ (.section-booking)
   ========================================================================== */

.section-booking {
	padding: var(--space-16) 0;
	background: #ffffff;
}

.booking-form-wrap {
	max-width: 760px;
	margin: 0 auto;
	background: var(--color-bg-secondary);
	border-radius: var(--radius-lg);
	padding: var(--space-12);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 600px) {
	.booking-form-wrap {
		padding: var(--space-6);
	}
}

/* Строка из двух полей */
.booking-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-6);
	margin-bottom: var(--space-6);
}

@media (max-width: 600px) {
	.booking-form__row {
		grid-template-columns: 1fr;
	}
}

/* Одиночное поле */
.booking-form__field {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.booking-form__field--full {
	margin-bottom: var(--space-6);
}

.booking-form__field label {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
}

.booking-form__required {
	color: var(--color-accent);
}

/* Поля ввода */
.booking-form__field input,
.booking-form__field select,
.booking-form__field textarea {
	padding: var(--space-3) var(--space-4);
	border: 2px solid var(--color-border);
	border-radius: var(--radius-md);
	font-size: var(--text-base);
	font-family: var(--font-body);
	color: var(--color-text);
	background: #ffffff;
	transition: border-color var(--transition);
	outline: none;
}

.booking-form__field input:focus,
.booking-form__field select:focus,
.booking-form__field textarea:focus {
	border-color: var(--color-primary);
}

.booking-form__field textarea {
	resize: vertical;
	min-height: 100px;
}

/* Строка с кнопкой */
.booking-form__submit {
	display: flex;
	align-items: center;
	gap: var(--space-6);
	flex-wrap: wrap;
}

/* Модификатор большой кнопки */
.btn--large {
	padding: var(--space-4) var(--space-12);
	font-size: var(--text-lg);
}

.booking-form__note {
	color: var(--color-text-muted);
	font-size: var(--text-sm);
	margin: 0;
}

/* Блок результата отправки */
.booking-form__result {
	margin-top: var(--space-4);
	padding: var(--space-3) var(--space-6);
	border-radius: var(--radius-md);
	font-size: var(--text-base);
}

.booking-form__result--success {
	background: #e8f5e9;
	color: var(--color-primary);
	border: 1px solid #a5d6a7;
}

.booking-form__result--error {
	background: #fdecea;
	color: #c62828;
	border: 1px solid #ef9a9a;
}

/* ==========================================================================
   20. СЕКЦИЯ ОТЗЫВОВ ГОСТЕЙ (.section-reviews)
   ========================================================================== */

.section-reviews {
	padding: var(--space-16) 0;
	background: var(--color-bg-secondary);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-6);
}

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

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

/* Карточка отзыва */
.review-card {
	background: #ffffff;
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.review-card__header {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

/* Аватар */
.review-card__avatar {
	flex-shrink: 0;
}

.review-card__avatar-img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
}

.review-card__avatar-placeholder {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-size: var(--text-2xl);
	font-weight: 700;
}

/* Имя и город */
.review-card__author {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-1);
}

.review-card__name {
	font-size: var(--text-base);
	color: var(--color-text);
}

.review-card__city {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

/* Звёздочки */
.review-card__rating {
	display: flex;
	gap: var(--space-1);
}

.star {
	font-size: var(--text-lg);
	color: var(--color-border);
}

.star--filled {
	color: var(--color-accent);
}

/* Текст и дата */
.review-card__text {
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--color-text);
	font-style: italic;
	margin: 0;
	flex: 1;
}

.review-card__date {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

/* === PAGE: О ДОМЕ === */

/* ── Мини-герой (.about-hero) ──────────────────────────────────────────── */

.about-hero {
	position: relative;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--color-primary); /* fallback если фото нет */
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.30);
}

.about-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #ffffff;
	padding-inline: var(--space-6);
	max-width: 740px;
	margin-inline: auto;
}

/* Хлебные крошки на тёмном фоне */
.about-hero__breadcrumbs {
	color: rgba(255, 255, 255, 0.70);
	margin-bottom: var(--space-4);
}

.about-hero__breadcrumbs a {
	color: rgba(255, 255, 255, 0.85);
}

.about-hero__breadcrumbs a:hover {
	color: var(--color-accent);
	text-decoration: underline;
}

.about-hero__title {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: var(--space-3);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.60), 0 4px 24px rgba(0, 0, 0, 0.45);
}

.about-hero__subtitle {
	font-size: clamp(var(--text-base), 2.2vw, var(--text-lg));
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
	line-height: 1.55;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

@media (max-width: 599px) {
	.about-hero {
		min-height: 300px;
	}

	.about-hero__title {
		font-size: var(--text-3xl);
	}
}

/* ── Характеристики (.about-specs) ─────────────────────────────────────── */

.about-specs {
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
}

.about-specs__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.about-spec {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: var(--space-8) var(--space-6);
	border-right: 1px solid var(--color-border);
	flex: 1;
	min-width: 130px;
}

.about-spec:last-child {
	border-right: none;
}

.about-spec__icon {
	font-size: 2rem;
	line-height: 1;
	margin-bottom: var(--space-2);
}

.about-spec__value {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 800;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: var(--space-1);
}

.about-spec__label {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.3;
}

/* Мобильный: сетка 2 × N */
@media (max-width: 599px) {
	.about-spec {
		flex-basis: 50%;
		border-right: none;
		border-bottom: 1px solid var(--color-border);
		padding: var(--space-6) var(--space-4);
	}

	.about-spec:nth-child(odd) {
		border-right: 1px solid var(--color-border);
	}

	.about-spec:last-child,
	.about-spec:nth-last-child(2):nth-child(odd) {
		border-bottom: none;
	}
}

/* ── О доме: текст + планировка (.about-description) ───────────────────── */

.about-description {
	background-color: var(--color-bg);
	padding-block: var(--space-16);
}

.about-description__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-12);
}

@media (min-width: 768px) {
	.about-description__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-16);
		align-items: start;
	}
}

.about-description__title {
	font-family: var(--font-heading);
	font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
	font-weight: 800;
	color: var(--color-primary);
	margin-top: 0;
	margin-bottom: var(--space-6);
}

.about-description__text p {
	color: var(--color-text);
	line-height: 1.75;
	margin-bottom: var(--space-4);
}

.about-description__text p:last-of-type {
	margin-bottom: var(--space-8);
}

.about-description__floors {
	display: flex;
	flex-direction: column;
	gap: var(--space-6);
}

/* Карточки этажей — shared между .about-description и другими секциями */
.about-floor {
	background-color: var(--color-bg-secondary);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	border-left: 4px solid var(--color-primary);
}

.about-floor__title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 0;
	margin-bottom: var(--space-3);
}

.about-floor__rooms {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.about-floor__rooms li {
	font-size: var(--text-base);
	color: var(--color-text);
	padding-left: var(--space-6);
	position: relative;
	line-height: 1.5;
}

.about-floor__rooms li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: 700;
}

/* ── Баня (.about-sauna) ────────────────────────────────────────────────── */

.about-sauna {
	background-color: #2C3E2D; /* тёмно-зелёный, как футер */
	padding-block: var(--space-16);
	color: rgba(255, 255, 255, 0.90);
}

.about-sauna__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-12);
	align-items: center;
}

@media (min-width: 768px) {
	.about-sauna__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-12);
	}
}

.about-sauna__title {
	font-family: var(--font-heading);
	font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
	font-weight: 800;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: var(--space-6);
}

.about-sauna__desc {
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.75;
	margin-bottom: var(--space-6);
}

.about-sauna__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.about-sauna__features li {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	font-size: var(--text-base);
	color: rgba(255, 255, 255, 0.88);
}

.about-sauna__features li span {
	font-size: 1.25rem;
	line-height: 1;
	flex-shrink: 0;
}

/* Фото */
.about-sauna__photo {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.about-sauna__img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
	background-color: rgba(255, 255, 255, 0.08);
	min-height: 280px;
	object-fit: cover;
}

/* ── Территория (.about-territory) ─────────────────────────────────────── */
/*
 * Переиспользует .features-section (серый фон, padding-block: 64px).
 * .about-territory__grid переопределяет колонки на 4 для десктопа.
 */

@media (min-width: 1024px) {
	.about-territory__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ── Удобства (.about-amenities) ────────────────────────────────────────── */

.about-amenities {
	background-color: var(--color-bg);
	padding-block: var(--space-16);
}

.about-amenities__groups {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
	max-width: 860px;
	margin-inline: auto;
	margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
	.about-amenities__groups {
		grid-template-columns: 3fr 2fr; /* техника шире кухни */
	}
}

.about-amenities__group-title {
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: 0;
	margin-bottom: var(--space-4);
}

.about-amenities__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
}

/* Каждый пункт — пилюля-бейдж */
.about-amenity {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	background-color: var(--color-bg-secondary);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	font-size: var(--text-sm);
	color: var(--color-text);
	white-space: nowrap;
}

.about-amenity span {
	font-size: 1rem;
	line-height: 1;
}

/* Блок-предупреждение */
.about-amenities__warning {
	max-width: 760px;
	margin-inline: auto;
	background-color: #f9f9f9;
	border-left: 4px solid #d1d5db;
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	padding: var(--space-4) var(--space-6);
}

.about-amenities__warning p {
	margin: 0;
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: 1.65;
}

/* ── Правила проживания (.about-rules) ──────────────────────────────────── */

.about-rules {
	background-color: var(--color-bg-secondary);
	padding-block: var(--space-16);
}

.about-rules__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-6);
	max-width: 860px;
	margin-inline: auto;
}

@media (min-width: 640px) {
	.about-rules__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.about-rules__col {
	border-radius: var(--radius-lg);
	padding: var(--space-8);
}

/* Зелёная колонка «Можно» */
.about-rules__col--yes {
	background-color: #f0f9f0;
	border: 1px solid #b7dbb8;
}

/* Красная колонка «Нельзя» */
.about-rules__col--no {
	background-color: #fff5f5;
	border: 1px solid #f5c2c2;
}

.about-rules__col-title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: 700;
	margin-top: 0;
	margin-bottom: var(--space-6);
}

.about-rules__col--yes .about-rules__col-title {
	color: #2a6b2b;
}

.about-rules__col--no .about-rules__col-title {
	color: #b91c1c;
}

.about-rules__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.about-rules__list li {
	font-size: var(--text-base);
	line-height: 1.5;
	padding-left: var(--space-6);
	position: relative;
}

.about-rules__col--yes .about-rules__list li {
	color: #1f4d20;
}

.about-rules__col--yes .about-rules__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #2a6b2b;
	font-weight: 700;
}

.about-rules__col--no .about-rules__list li {
	color: #7f1d1d;
}

.about-rules__col--no .about-rules__list li::before {
	content: '✕';
	position: absolute;
	left: 0;
	color: #b91c1c;
	font-weight: 700;
}

/* ── Призыв к действию (.about-cta) ────────────────────────────────────── */

.about-cta {
	background-color: var(--color-accent); /* #FF6B35 — оранжевый */
	padding-block: var(--space-16);
}

.about-cta__inner {
	text-align: center;
	max-width: 620px;
	margin-inline: auto;
}

.about-cta__title {
	font-family: var(--font-heading);
	font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
	font-weight: 800;
	color: #ffffff;
	margin-top: 0;
	margin-bottom: var(--space-3);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.about-cta__text {
	font-size: var(--text-lg);
	color: rgba(255, 255, 255, 0.90);
	line-height: 1.6;
	margin-bottom: var(--space-8);
}

.about-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--space-4);
}

@media (max-width: 599px) {
	.about-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.about-cta__actions .btn {
		text-align: center;
	}
}

/*
 * .btn--cta-primary — белая кнопка с оранжевым текстом.
 * Используется на оранжевом (.about-cta) фоне.
 */
.btn--cta-primary {
	background-color: #ffffff;
	color: var(--color-accent);
	border: 2px solid #ffffff;
	padding: 15px 44px;
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	border-radius: 30px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.25s ease, color 0.25s ease,
	            box-shadow 0.25s ease, transform 0.25s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn--cta-primary:hover,
.btn--cta-primary:focus-visible {
	background-color: var(--color-accent-dark);
	color: #ffffff;
	border-color: var(--color-accent-dark);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.20);
	transform: scale(1.04);
	text-decoration: none;
}

/* ── Убрать padding у пустого .site-main на странице «О доме» ──────────── */
/*
 * header.php открывает <main class="site-main"> с padding-block: 48px.
 * В page-about.php он сразу закрывается и открывается снова в конце —
 * оба раза пустой, создавая белые полосы над hero и под cta.
 * WordPress добавляет .page-template-page-about-php на <body>.
 */
.page-template-page-about-php .site-main,
.page-template-page-pricing-php .site-main {
	padding: 0 !important;
	margin: 0;
	min-height: 0;
}

/* === ABOUT GALLERY === */

/* ── Секция галереи ─────────────────────────────────────────────────────── */

.about-gallery {
	background-color: var(--color-bg);
	padding-block: var(--space-16);
}

/* ── Главные вкладки (строка 1: Территория / Интерьер) ─────────────────── */

.about-gallery__main-tabs {
	display: flex;
	gap: var(--space-2);
	margin-bottom: 0;
	border-bottom: 2px solid var(--color-border);
}

.about-gallery__main-tab {
	padding: var(--space-3) var(--space-8);
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 700;
	color: var(--color-text-muted);
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.about-gallery__main-tab:hover {
	color: var(--color-primary);
}

.about-gallery__main-tab.is-active {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

/* Гарантируем что HTML-атрибут hidden не перебивается display:flex/block */
.about-gallery__subtabs[hidden],
.about-gallery__panel[hidden] {
	display: none !important;
}

/* ── Подвкладки (строка 2: Бассейн / Баня / …) ─────────────────────────── */

.about-gallery__subtabs {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-1);
	margin-top: var(--space-3);
	margin-bottom: var(--space-6);
	padding-bottom: 0;
}

.about-gallery__subtab {
	padding: 6px 18px;
	font-family: var(--font-heading);
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text-muted);
	background: transparent;
	border: 1.5px solid var(--color-border);
	border-radius: 20px;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.about-gallery__subtab:hover {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.about-gallery__subtab.is-active {
	color: #fff;
	background: var(--color-primary);
	border-color: var(--color-primary);
}

/* ── Панели ─────────────────────────────────────────────────────────────── */

.about-gallery__panel {
	/* hidden управляется JS-атрибутом; CSS-переход для плавности */
	animation: galleryFadeIn 0.25s ease both;
}

@keyframes galleryFadeIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0);    }
}

/* ── Сетка фотографий ───────────────────────────────────────────────────── */

.about-gallery__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

@media (min-width: 600px) {
	.about-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

/* ── Карточка-кнопка ────────────────────────────────────────────────────── */

.about-gallery__item {
	position: relative;
	display: block;
	width: 100%;
	height: 280px;
	padding: 0;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	background-color: var(--color-bg-secondary);
	/* Сброс стилей <button> */
	-webkit-appearance: none;
	appearance: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery__item:hover,
.about-gallery__item:focus-visible {
	transform: translateY(-6px) scale(1.02);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
	outline: none;
}

/* ── Фото ───────────────────────────────────────────────────────────────── */

.about-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

/* ── Подпись снизу (всегда видна) ───────────────────────────────────────── */

.about-gallery__label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var(--space-6) var(--space-4) var(--space-3);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.60) 0%, transparent 100%);
	font-family: var(--font-heading);
	font-size: var(--text-base);
	font-weight: 600;
	color: #ffffff;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	pointer-events: none;
	border-radius: 0 0 12px 12px;
}

/* ── Оверлей с лупой при hover ──────────────────────────────────────────── */

.about-gallery__overlay {
	position: absolute;
	inset: 0;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	opacity: 0;
	pointer-events: none;
	transition: background 0.3s ease, opacity 0.3s ease;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.about-gallery__item:hover .about-gallery__overlay,
.about-gallery__item:focus-visible .about-gallery__overlay {
	background: rgba(0, 0, 0, 0.20);
	opacity: 1;
}


/* =====================================================
   СТРАНИЦА ЦЕНЫ И УСЛОВИЯ — page-pricing.php
   ===================================================== */

/* ----- HERO ----- */
.pricing-hero {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.pricing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.10)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.10)"/></svg>');
    pointer-events: none;
}
.pricing-hero .breadcrumbs { margin-bottom: 16px; }
.pricing-hero .breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.pricing-hero .breadcrumbs a:hover { color: #fff; }
.pricing-hero .breadcrumbs__sep { margin: 0 8px; color: rgba(255,255,255,0.5); }
.pricing-hero__title,
.pricing-hero .page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    text-shadow: none;
}
.pricing-hero__subtitle,
.pricing-hero .page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.pricing-hero .breadcrumbs,
.pricing-hero .breadcrumbs span {
    color: rgba(255, 255, 255, 0.75);
}

/* ----- ОБЩИЕ СЕКЦИИ ----- */
.section { padding: 70px 0; }
.section--gray { background: #f8f9f6; }
.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #2C5F2D;
    text-align: center;
    margin: 0 0 12px;
}
.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- ПАКЕТЫ ----- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.package-card {
    background: #fff;
    border: 2px solid #e8f0e8;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.package-card:hover {
    box-shadow: 0 8px 32px rgba(44,95,45,0.12);
    transform: translateY(-3px);
}
.package-card--popular {
    border-color: #FF6B35;
    box-shadow: 0 4px 20px rgba(255,107,53,0.15);
}
.package-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}
.package-card__header { text-align: center; }
.package-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}
.package-card__duration {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}
.package-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}
.package-card__amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2C5F2D;
    line-height: 1;
}
.package-card--popular .package-card__amount { color: #FF6B35; }
.package-card__currency {
    font-size: 1rem;
    color: #888;
    font-weight: 500;
}
.package-card__guests {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    padding: 6px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.package-card__includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.package-card__includes li {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.4;
}
.package-card__note {
    font-size: 0.8rem;
    color: #e07b2a;
    background: #fff8f3;
    border-radius: 8px;
    padding: 8px 10px;
    margin: 0;
}
.package-card__btn {
    display: block;
    text-align: center;
    margin-top: auto;
}
.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9f6;
    border-radius: 10px;
    padding: 14px 20px;
    max-width: 680px;
    margin: 0 auto;
}
.pricing-no-data {
    text-align: center;
    color: #888;
    padding: 40px 0;
}

/* ----- КАК ЗАБРОНИРОВАТЬ ----- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}
.step-card__number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: #2C5F2D;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card__icon { font-size: 2.2rem; margin: 8px 0 12px; }
.step-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}
.step-card__text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ----- УСЛОВИЯ АРЕНДЫ ----- */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.terms-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 4px solid #2C5F2D;
}
.terms-card__icon { font-size: 2rem; margin-bottom: 12px; }
.terms-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 0 16px;
}
.terms-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.terms-card__list li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}
.terms-card__list strong { color: #333; }

/* ----- УСЛОВИЯ ОТМЕНЫ ----- */
.cancellation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}
.cancellation-card {
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.cancellation-card--green {
    background: #f0f9f0;
    border: 2px solid #a8d5a8;
}
.cancellation-card--red {
    background: #fff5f5;
    border: 2px solid #f5a8a8;
}
.cancellation-card--orange {
    background: #fff9f0;
    border: 2px solid #f5d0a8;
}
.cancellation-card__icon { font-size: 2.2rem; margin-bottom: 12px; }
.cancellation-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}
.cancellation-card__text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.cancellation-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    background: #fff;
    border-radius: 10px;
    padding: 14px 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

/* ----- УТОЧНИТЬ ДАТЫ ----- */
.check-dates { background: #2C5F2D; }
.check-dates__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.check-dates__text { flex: 1; min-width: 240px; }
.check-dates__text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.check-dates__text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.check-dates__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn--telegram {
    background: #2AABEE;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.btn--whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.btn--phone {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s;
    white-space: nowrap;
}
.btn--telegram:hover,
.btn--whatsapp:hover { opacity: 0.88; }
.btn--phone:hover { background: rgba(255,255,255,0.25); }

/* ----- КАЛЕНДАРЬ ----- */
.calendar-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}
.calendar-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* ----- АДАПТИВ ----- */
@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .packages-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .terms-grid { grid-template-columns: 1fr; }
    .cancellation-grid { grid-template-columns: 1fr; }
    .check-dates__inner { flex-direction: column; text-align: center; }
    .check-dates__buttons { justify-content: center; }
}
@media (max-width: 480px) {
    .packages-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   СТРАНИЦА КАК ДОБРАТЬСЯ — page-directions.php
   ===================================================== */

/* ── Hero ──────────────────────────────────────────── */
.directions-hero {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.directions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.10)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.10)"/></svg>');
    pointer-events: none;
}
.directions-hero .breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.directions-hero .breadcrumbs a:hover { color: #fff; }
.directions-hero .breadcrumbs__sep { margin: 0 8px; color: rgba(255,255,255,0.5); }
.directions-hero .breadcrumbs,
.directions-hero .breadcrumbs span { color: rgba(255,255,255,0.75); }
.directions-hero .page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: none;
}
.directions-hero .page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.page-template-page-directions-php .site-main {
    padding: 0 !important;
    margin: 0;
    min-height: 0;
}

/* ── Карта + адрес ─────────────────────────────────── */
.directions-map__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.directions-map__iframe-wrap {
    position: relative;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.directions-map__iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.directions-map__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.directions-address {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.directions-address__icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.directions-address__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 0 6px;
}
.directions-address__text {
    font-size: 1.05rem;
    color: #333;
    margin: 0;
    line-height: 1.6;
}
.directions-warning {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff8e6;
    border: 2px solid #f0c040;
    border-radius: 12px;
    padding: 16px 18px;
}
.directions-warning__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1;
}
.directions-warning strong {
    display: block;
    color: #7a4a00;
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.directions-warning p {
    margin: 0;
    color: #7a4a00;
    font-size: 0.9rem;
}
.directions-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.directions-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.directions-nav-btn:hover { opacity: 0.87; transform: translateY(-1px); }
.directions-nav-btn--yandex {
    background: #ff3333;
    color: #fff;
}
.directions-nav-btn--google {
    background: #4285F4;
    color: #fff;
}

/* ── На автомобиле ─────────────────────────────────── */
.directions-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.route-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    position: relative;
    border-top: 4px solid transparent;
}
.route-card--recommended { border-top-color: #2C5F2D; }
.route-card--alt          { border-top-color: #2979FF; }
.route-card--warn         { border-top-color: #FF6B35; background: #fffaf7; }
.route-card__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    color: #555;
}
.route-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px;
}
.route-card__steps {
    margin: 0 0 14px;
    padding-left: 18px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
}
.route-card__path {
    margin: 0 0 14px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.75;
}
.route-card__arrow {
    display: inline-block;
    color: #2C5F2D;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 3px;
}
.route-card--warn .route-card__arrow {
    color: #b36000;
}
.route-card__note {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}
.directions-car-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f0f7f0;
    border-radius: 12px;
    padding: 16px 20px;
    color: #3a5a3a;
    font-size: 0.9rem;
    line-height: 1.6;
}
.directions-car-note__icon { font-size: 1.2rem; flex-shrink: 0; }
.directions-car-note p { margin: 0; }

/* ── Такси ─────────────────────────────────────────── */
.directions-taxi-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    max-width: 680px;
    margin: 0 auto;
}
.directions-taxi-box__icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}
.directions-taxi-box__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 1rem;
    color: #333;
}
.directions-taxi-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FF6B35;
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.directions-taxi-btn:hover { background: #e55a25; transform: translateY(-1px); }

/* ── Аэропорт / вокзал ─────────────────────────────── */
.directions-transfer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.transfer-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    text-align: center;
}
.transfer-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.transfer-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 0 12px;
}
.transfer-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}
.transfer-card__list li + li { margin-top: 4px; }

/* ── Общественный транспорт ────────────────────────── */
.directions-bus-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.directions-bus-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.9rem;
}
.directions-bus-table th {
    background: #2C5F2D;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
.directions-bus-table td {
    padding: 11px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: top;
}
.directions-bus-table tr:last-child td { border-bottom: none; }
.directions-bus-table tr:hover td { background: #f8fdf8; }
.directions-bus-table__note { color: #777; font-style: italic; font-size: 0.85rem; }
.directions-bus-placeholder {
    text-align: center;
    padding: 40px 24px;
    background: #f8fdf8;
    border-radius: 16px;
    border: 2px dashed #c2d8c2;
}
.directions-bus-placeholder__text {
    font-size: 1rem;
    color: #4a6a4a;
    margin: 0 0 20px;
}
.directions-bus-placeholder__btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Гости из других стран ─────────────────────────── */
.directions-intl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.intl-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.intl-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}
.intl-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 0 10px;
}
.intl-card__text {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}
.intl-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.intl-card__list li::before {
    content: '— ';
    color: #2C5F2D;
    font-weight: 600;
}
.intl-card__list-warn {
    color: #7a4a00;
    font-weight: 500;
}
.intl-card__list-warn::before { content: '' !important; }

/* ── Адаптив ───────────────────────────────────────── */
@media (max-width: 900px) {
    .directions-map__grid { grid-template-columns: 1fr; gap: 24px; }
    .directions-map__iframe-wrap { height: 320px; }
    .directions-nav-btns { flex-direction: row; }
    .directions-routes-grid { grid-template-columns: 1fr; }
    .directions-transfer-grid { grid-template-columns: 1fr; }
    .directions-intl-grid { grid-template-columns: 1fr; }
    .directions-taxi-box { max-width: 100%; }
}
@media (max-width: 600px) {
    .directions-hero { padding: 60px 0 40px; }
    .directions-map__iframe-wrap { height: 300px; }
    .directions-nav-btns { flex-direction: column; }
    .directions-taxi-box { flex-direction: column; align-items: center; text-align: center; }
    .directions-taxi-box__icon { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .directions-address { flex-direction: column; }
    .route-card { padding: 22px 18px; }
    .transfer-card { padding: 22px 18px; }
    .intl-card { padding: 22px 18px; }
}

/* =====================================================
   СТРАНИЦА FAQ — page-faq.php
   ===================================================== */

/* ── Hero ──────────────────────────────────────────── */
.faq-hero {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.faq-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.10)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.10)"/></svg>');
    pointer-events: none;
}
.faq-hero .breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.faq-hero .breadcrumbs a:hover { color: #fff; }
.faq-hero .breadcrumbs__sep { margin: 0 8px; color: rgba(255,255,255,0.5); }
.faq-hero .breadcrumbs,
.faq-hero .breadcrumbs span { color: rgba(255,255,255,0.75); }
.faq-hero .page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: none;
}
.faq-hero .page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.page-template-page-faq-php .site-main {
    padding: 0 !important;
    margin: 0;
    min-height: 0;
}

/* ── Разделы аккордеона ────────────────────────────── */
.faq-section {
    padding: 64px 0;
    background: #fff;
}
.faq-section--alt {
    background: #f8fdf8;
}
.faq-section__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}
.faq-section__icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.faq-section__title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #2C5F2D;
    margin: 0;
}

/* ── FAQ-список ────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* ── Один пункт ────────────────────────────────────── */
.faq-item {
    border-bottom: 1px solid #e8f0e8;
    background: #fff;
}
.faq-section--alt .faq-item {
    background: #fff;
}
.faq-item:last-child {
    border-bottom: none;
}

/* ── Кнопка-вопрос ─────────────────────────────────── */
.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}
.faq-item__btn:hover {
    background: #f3faf3;
}
.faq-item__btn[aria-expanded="true"] {
    background: #f0f8f0;
}
.faq-item__q {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #2C5F2D;
    line-height: 1.4;
}
.faq-item__btn:hover .faq-item__q,
.faq-item__btn[aria-expanded="true"] .faq-item__q {
    color: #1a3d1b;
}

/* ── Стрелка-шеврон ────────────────────────────────── */
.faq-item__arrow {
    display: inline-block;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2.5px solid #2C5F2D;
    border-bottom: 2.5px solid #2C5F2D;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: -3px;
}
.faq-item__btn[aria-expanded="true"] .faq-item__arrow {
    transform: rotate(-135deg);
    margin-top: 3px;
}

/* ── Тело ответа ───────────────────────────────────── */
.faq-item__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__inner {
    padding: 0 24px 22px 24px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.75;
}
.faq-item__inner p { margin: 0 0 10px; }
.faq-item__inner p:last-child { margin-bottom: 0; }
.faq-item__inner a { color: #2C5F2D; text-decoration: underline; }
.faq-item__inner a:hover { color: #1a3d1b; }
.faq-item__inner ul {
    margin: 8px 0 10px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.faq-item__inner ul li { padding-left: 0; }
.faq-item__inner strong { color: #222; }

/* ── Адаптив ───────────────────────────────────────── */
@media (max-width: 768px) {
    .faq-section { padding: 48px 0; }
    .faq-item__btn { padding: 16px 18px; gap: 12px; }
    .faq-item__inner { padding: 0 18px 18px; }
    .faq-item__q { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    .faq-hero { padding: 60px 0 40px; }
    .faq-section { padding: 36px 0; }
    .faq-section__header { gap: 10px; }
    .faq-section__icon { font-size: 1.5rem; }
    .faq-item__btn { padding: 14px 14px; }
    .faq-item__inner { padding: 0 14px 16px; }
}

/* =====================================================
   СТРАНИЦА КОНТАКТЫ — page-contacts.php
   ===================================================== */

/* ── Hero ──────────────────────────────────────────── */
.contacts-hero {
    background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
    padding: 80px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contacts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.10)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.10)"/></svg>');
    pointer-events: none;
}
.contacts-hero .breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.contacts-hero .breadcrumbs a:hover { color: #fff; }
.contacts-hero .breadcrumbs__sep { margin: 0 8px; color: rgba(255,255,255,0.5); }
.contacts-hero .breadcrumbs,
.contacts-hero .breadcrumbs span { color: rgba(255,255,255,0.75); }
.contacts-hero .page-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-shadow: none;
}
.contacts-hero .page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.page-template-page-contacts-php .site-main {
    padding: 0 !important;
    margin: 0;
    min-height: 0;
}

/* ── Способы связи ─────────────────────────────────── */
.contacts-methods__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    border-top: 4px solid transparent;
}
.contact-card--phone    { border-top-color: #2C5F2D; }
.contact-card--telegram { border-top-color: #2AABEE; }
.contact-card--whatsapp { border-top-color: #25D366; }
.contact-card__icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 4px;
}
.contact-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}
.contact-card__value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2C5F2D;
    margin: 0;
}
.contact-card__note {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}
.contact-card__btn {
    margin-top: auto;
    padding-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 12px;
}
.contact-card__btn:hover { opacity: 0.87; transform: translateY(-1px); }
.contact-card__btn--phone    { background: #2C5F2D; color: #fff; }
.contact-card__btn--telegram { background: #2AABEE; color: #fff; }
.contact-card__btn--whatsapp { background: #25D366; color: #fff; }

/* ── Адрес и режим работы ──────────────────────────── */
.contacts-details__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.contacts-details__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2C5F2D;
    margin: 0 0 20px;
}
.contacts-address-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.contacts-address-row__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.contacts-address-row__text {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}
.contacts-coords {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.contacts-coords__text {
    font-size: 1rem;
    color: #333;
    font-family: monospace;
    letter-spacing: 0.02em;
}
.contacts-coords__copy {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: #f0f8f0;
    border: 1px solid #2C5F2D;
    color: #2C5F2D;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.contacts-coords__copy:hover { background: #2C5F2D; color: #fff; }
.contacts-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.contacts-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}
.contacts-nav-btn:hover { opacity: 0.87; transform: translateY(-1px); }
.contacts-nav-btn--yandex { background: #ff3333; color: #fff; }
.contacts-nav-btn--google  { background: #4285F4; color: #fff; }
.contacts-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contacts-hours-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}
.contacts-hours-list__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 1px;
}
.contacts-email {
    color: #2C5F2D;
    text-decoration: underline;
    word-break: break-all;
}
.contacts-email:hover { color: #1a3d1b; }

/* ── Поле «Ник в Telegram» в форме бронирования ────── */
.booking-form__opt {
    font-size: 0.8rem;
    font-weight: 400;
    color: #999;
}
.booking-form__hint {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    color: #aaa;
    font-style: italic;
    line-height: 1.4;
}

/* ── Адаптив ───────────────────────────────────────── */
@media (max-width: 900px) {
    .contacts-methods__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .contacts-details__grid { grid-template-columns: 1fr; gap: 32px; }
    .contacts-nav-btns { flex-direction: row; }
}
@media (max-width: 600px) {
    .contacts-hero { padding: 60px 0 40px; }
    .contacts-nav-btns { flex-direction: column; }
    .contacts-methods__grid { max-width: 100%; }
}
@media (max-width: 480px) {
    .contact-card { padding: 24px 18px; }
    .contacts-coords { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   PAGE: ОТЗЫВЫ (.reviews-hero, .reviews-yandex, .reviews-all)
   ========================================================================== */

/* ── Hero ───────────────────────────────────────────────────────────────── */
.reviews-hero {
	background: linear-gradient(135deg, #2C5F2D 0%, #1a3d1b 100%);
	padding: 80px 0 60px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.reviews-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="40" fill="rgba(255,255,255,0.10)"/><circle cx="80" cy="80" r="60" fill="rgba(255,255,255,0.10)"/></svg>');
	pointer-events: none;
}
.reviews-hero .breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.reviews-hero .breadcrumbs a:hover { color: #fff; }
.reviews-hero .breadcrumbs__sep { margin: 0 8px; color: rgba(255,255,255,0.5); }
.reviews-hero .breadcrumbs,
.reviews-hero .breadcrumbs span { color: rgba(255,255,255,0.75); }
.reviews-hero .page-hero__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	text-shadow: none;
}
.reviews-hero .page-hero__subtitle {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.85);
	margin: 0;
}
.page-template-page-reviews-php .site-main {
	padding: 0 !important;
	margin: 0;
	min-height: 0;
}

/* ── Плашка Яндекс.Карты ────────────────────────────────────────────────── */
.reviews-yandex {
	padding: 32px 0;
	background: #f7f9f7;
}

.reviews-yandex__badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	padding: 24px 32px;
}

.reviews-yandex__info {
	display: flex;
	align-items: center;
	gap: 14px;
}

.reviews-yandex__stars {
	font-size: 1.4rem;
	line-height: 1;
	white-space: nowrap;
}

.reviews-yandex__text {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-text);
	line-height: 1.4;
}

.reviews-yandex__btn {
	white-space: nowrap;
	flex-shrink: 0;
}

/* ── Сетка всех отзывов ─────────────────────────────────────────────────── */
.reviews-all {
	padding: 56px 0 80px;
}

/* ── Адаптив ────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
	.reviews-yandex__badge {
		flex-direction: column;
		align-items: flex-start;
		padding: 20px 20px;
		gap: 16px;
	}
	.reviews-yandex__btn {
		align-self: stretch;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.reviews-hero { padding: 60px 0 40px; }
	.reviews-all  { padding: 40px 0 60px; }
}
.feature-card__more {
    display: block;
    margin-top: 12px;
   color: #f97316;
    font-weight: 900;
    font-size: 0.95rem;
}

.feature-card--linked:hover .feature-card__more {
    text-decoration: underline;
}
a.feature-card--linked {
    text-decoration: none;
    color: inherit;
}

a.feature-card--linked:hover {
    text-decoration: none;
}
/* ----------------------------------------------------------------
   Полоса с телефоном под меню
   ---------------------------------------------------------------- */
.header-phone-bar {
    background-color: #f0f7f0;
    border-bottom: 2px solid #c8dfc8;
    padding: 10px 0;
}
.header-phone-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.header-phone-bar__phone {
    font-size: 20px;
    font-weight: 700;
    color: #2d6a2d;
    text-decoration: none;
}
.header-phone-bar__phone:hover {
    color: #e8621a;
}
.header-phone-bar__messengers {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.header-phone-bar__messengers a {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}
@media (max-width: 767px) {
    .header-phone-bar__messengers a {
        border: 1px solid #2d6a2d;
        color: #2d6a2d;
    }
}
.header-phone-bar__messengers a:hover {
    background-color: #2d6a2d;
    color: #fff;
    border-color: #2d6a2d;
}