/* =========================================================
   AURUM Wellness & Club — общие стили
   Шрифты: TT Norms Pro (Light / Regular / Medium / Italic)
           TT Norms Pro Serif Italic — только акценты
   ========================================================= */

/* ---------- FONTS ---------- */
@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT_Norms_Pro_Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Акцентный серифный курсив — цитаты, цены, отдельные слова */
@font-face {
    font-family: 'TT Norms Pro Serif';
    src: url('../fonts/TT_Norms_Pro_Serif_Normal_Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
    --bg-dark: #e8e6df;
    --bg-dark-soft: #ddd7cd;
    --bg-light: #EAE6DC;
    --accent: #C4A661;
    --accent-dim: #8A7542;
    --text-dark: #1A1C1A;
    --text-light: #55524e;
    --text-soft: #C9C6BC;
    --text-muted: #7A7A75;
    --line: rgba(196, 166, 97, 0.22);
    --line-soft: rgba(243, 240, 231, 0.10);

    --font-sans: 'TT Norms Pro', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'TT Norms Pro Serif', Georgia, serif;

    --shell: 1280px;
    --gutter: clamp(20px, 5vw, 64px);
    --section-y: clamp(72px, 10vw, 140px);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.6s var(--ease);
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body2 {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    background: var(--text-light); 
    color: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

[id] {
    scroll-margin-top: 110px;
}

a {
    color: inherit;
}

button {
    font: inherit;
    color: inherit;
}

:focus-visible {
    outline: 1px solid var(--accent);
    outline-offset: 4px;
}

/* ---------- TYPE ---------- */
h1, h2, h3, h4, h5 {
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.t-display {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    letter-spacing: 0.02em;
}

.t-h2 {
    font-size: clamp(1.9rem, 3.6vw, 3.1rem);
    letter-spacing: 0.02em;
}

.t-h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.t-lead {
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    color: var(--text-soft);
}

.t-body {
    color: var(--text-soft);
}

.t-small {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Надписи-метки: единственная гарнитура с трекингом */
.eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
}

.accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0;
}

/* ---------- LAYOUT ---------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.shell--narrow {
    max-width: 780px;
}

.section {
    padding-block: var(--section-y);
}

.section--light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.section--soft {
    background: var(--bg-dark-soft);
}

.section-head {
    max-width: 720px;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.section-head .eyebrow {
    margin-bottom: 18px;
}

.section-head p {
    margin-top: 22px;
}

.section--light .t-body,
.section--light .t-lead {
    color: #55584F;
}

.section--light .eyebrow {
    color: var(--accent-dim);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 16px 38px;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--text-light);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn--filled {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn--filled:hover {
    background: transparent;
    color: var(--accent);
}

.btn--sm {
    padding: 11px 24px;
    font-size: 0.62rem;
}

.section--light .btn {
    border-color: var(--accent-dim);
    color: var(--text-dark);
}

.section--light .btn:hover {
    background: var(--accent-dim);
    color: var(--bg-light);
}

/* Текстовая ссылка со стрелкой */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    text-decoration: none;
}

.link-arrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: width var(--transition);
}

.link-arrow:hover::after {
    width: 48px;
}

/* ---------- PRELOADER ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.no-intro #preloader {
    display: none;
}

#preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader__logo {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 300;
    letter-spacing: 0.55em;
    text-indent: 0.55em;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 1.2s var(--ease) forwards;
}

.preloader__line {
    width: 0;
    height: 1px;
    background: var(--accent);
    animation: lineGrow 1.4s var(--ease) forwards 0.3s;
}

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

@keyframes lineGrow {
    to { width: 160px; }
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px var(--gutter);
    transition: padding var(--transition), background var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.header.is-scrolled {
    padding-block: 14px;
    background: rgba(18, 22, 19, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
}

.header__logo {
    position: relative;
    z-index: 2;
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    text-decoration: none;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: clamp(18px, 2.4vw, 36px);
    list-style: none;
}

.nav a {
    position: relative;
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--transition);
}

.nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition);
}

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

.nav a:hover::after,
.nav a[aria-current="page"]::after {
    width: 100%;
}

.nav a[aria-current="page"] {
    color: var(--accent);
}

.header__side {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
}

.lang {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.lang button {
    border: none;
    background: none;
    cursor: pointer;
    letter-spacing: inherit;
    font-size: inherit;
    color: var(--text-light);
    opacity: 0.5;
    transition: opacity 0.3s, color 0.3s;
}

.lang button.is-active {
    opacity: 1;
    color: var(--accent);
}

/* Бургер */
.burger {
    display: none;
    width: 34px;
    height: 22px;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-light);
    transition: transform 0.4s var(--ease), opacity 0.3s;
}

.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 11px; }
.burger span:nth-child(3) { top: 18px; }

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- CONCIERGE ---------- */
.concierge {
    position: fixed;
    right: clamp(16px, 3vw, 32px);
    bottom: clamp(16px, 3vw, 32px);
    z-index: 900;
    width: 76px;
    height: 76px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.58rem;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s var(--ease);
}

.concierge:hover {
    transform: scale(1.06);
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 92vh;
    min-height: 92svh;
    padding-bottom: clamp(56px, 9vw, 110px);
    overflow: hidden;
}

.hero--compact {
    min-height: 72vh;
    min-height: 72svh;
}

.hero--full {
    align-items: center;
    text-align: center;
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 0;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transform: scale(1.04);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(18, 22, 19, 0.55) 0%, rgba(18, 22, 19, 0.1) 40%, rgba(18, 22, 19, 0.85) 100%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding-inline: var(--gutter);
}

.hero--full .hero__inner {
    max-width: 900px;
}

.hero__title {
    margin-block: 20px 22px;
    max-width: 16ch;
}

.hero--full .hero__title {
    max-width: none;
    margin-inline: auto;
}

.hero__text {
    max-width: 46ch;
    color: var(--text-soft);
}

.hero--full .hero__text {
    margin-inline: auto;
}

.hero__actions {
    margin-top: 36px;
}

/* Скролл-подсказка */
.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 2;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.scroll-hint::after {
    content: '';
    display: block;
    width: 1px;
    height: 42px;
    margin: 12px auto 0;
    background: linear-gradient(var(--accent), transparent);
}

/* ---------- PAGE INTRO (внутренние страницы) ---------- */
.page-title {
    max-width: 20ch;
}

/* ---------- ZONES (главная) ---------- */
.zones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.zone {
    position: relative;
    display: block;
    min-height: 460px;
    overflow: hidden;
    text-decoration: none;
    background: var(--bg-dark-soft);
}

.zone img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.9);
    transition: transform 1.2s var(--ease), filter var(--transition);
}

.zone:hover img {
    transform: scale(1.06);
    filter: brightness(0.62) saturate(1);
}

.zone__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 460px;
    padding: 34px 30px;
}

.zone__index {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: auto;
}

.zone__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.zone__text {
    font-size: 0.85rem;
    color: var(--text-soft);
    max-width: 30ch;
    margin-bottom: 18px;
}

/* ---------- SPLIT (текст + изображение) ---------- */
.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.split--reverse .split__media {
    order: 2;
}

.split__media img {
    width: 100%;
    height: clamp(320px, 46vw, 560px);
    object-fit: cover;
}

.split__body p + p {
    margin-top: 18px;
}

.split__body .btn,
.split__body .link-arrow {
    margin-top: 32px;
}

/* ---------- ФИЛЬМ / ВИДЕО-БЛОК ---------- */
.film {
    position: relative;
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
}

.film img {
    width: 100%;
    height: clamp(300px, 52vw, 620px);
    object-fit: cover;
    filter: brightness(0.6);
    transition: transform 1.2s var(--ease);
}

.film:hover img {
    transform: scale(1.03);
}

.film__play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-light);
}

.film__circle {
    width: 84px;
    height: 84px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background var(--transition), color var(--transition);
}

.film:hover .film__circle {
    background: var(--accent);
    color: var(--bg-dark);
}

.film__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

/* ---------- SPA: список зон + превью ---------- */
.spa-explorer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.spa-explorer__figure {
    position: relative;
    overflow: hidden;
}

.spa-explorer__figure img {
    width: 100%;
    height: clamp(320px, 48vw, 560px);
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.spa-list {
    list-style: none;
}

.spa-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: none;
    text-align: left;
    cursor: pointer;
    transition: padding-left var(--transition), color var(--transition);
}

.spa-item:hover,
.spa-item.is-active {
    padding-left: 14px;
}

.spa-item__title {
    font-size: 1.45rem;
}

.spa-item:hover .spa-item__title,
.spa-item.is-active .spa-item__title {
    color: var(--accent);
}

.spa-item__text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.spa-item__temp {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--accent);
    white-space: nowrap;
}

/* ---------- ГАЛЕРЕЯ ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(12px, 2vw, 24px);
}

.gallery img {
    width: 100%;
    height: clamp(260px, 30vw, 420px);
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.gallery figure {
    overflow: hidden;
}

.gallery figure:hover img {
    transform: scale(1.05);
}

.gallery figcaption {
    margin-top: 14px;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---------- АККОРДЕОН ---------- */
.accordion {
    max-width: 820px;
    margin-inline: auto;
}

.acc-item {
    border-bottom: 1px solid var(--line);
}

.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: 300;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.acc-trigger:hover {
    color: var(--accent);
}

.acc-icon {
    flex: none;
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform 0.4s var(--ease);
}

.acc-item.is-open .acc-icon {
    transform: rotate(45deg);
}

.acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.acc-panel p {
    padding-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* ---------- РИТУАЛЫ (Day Spa) ---------- */
.rituals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 36px);
}

.ritual {
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
    background: rgba(243, 240, 231, 0.03);
    border: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.ritual:hover {
    border-color: var(--line);
    background: rgba(196, 166, 97, 0.05);
    transform: translateY(-6px);
}

.ritual__tag {
    margin-bottom: 16px;
}

.ritual__title {
    font-size: 1.65rem;
    margin-bottom: 22px;
}

.ritual__list {
    list-style: none;
    margin-bottom: auto;
}

.ritual__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.ritual__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.ritual__footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--line-soft);
}

.ritual__duration {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.price {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.45rem;
    color: var(--text-light);
}

.ritual .btn {
    margin-top: 22px;
    text-align: center;
}

/* ---------- ТРЕНЕРЫ ---------- */
.trainers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 3vw, 34px);
}

.trainer img {
    width: 100%;
    height: clamp(300px, 34vw, 400px);
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s ease;
    margin-bottom: 18px;
}

.trainer:hover img {
    filter: grayscale(0%);
}

.trainer h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.trainer span {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
}

/* ---------- ЦИТАТА ---------- */
.quote {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    line-height: 1.5;
}

.quote__author {
    display: block;
    margin-top: 26px;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ---------- РЕСТОРАНЫ ---------- */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 3vw, 40px);
    margin-bottom: clamp(36px, 5vw, 64px);
}

.tab {
    border: none;
    background: none;
    padding: 10px 4px;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.tab:hover {
    color: var(--text-light);
}

.tab.is-active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
    animation: panelIn 0.6s var(--ease);
}

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

.chef-note {
    margin-block: 28px;
    padding-left: 22px;
    border-left: 1px solid var(--accent);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.chef-note span {
    display: block;
    margin-top: 12px;
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.menu {
    list-style: none;
    margin-top: 26px;
}

.menu li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line-soft);
}

.menu h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.menu p {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.menu__price {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--accent);
    white-space: nowrap;
}

/* ---------- KIDS CLUB ---------- */
.groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 3vw, 36px);
}

.group {
    background: rgba(26, 28, 26, 0.04);
    border: 1px solid rgba(26, 28, 26, 0.10);
    transition: background var(--transition), transform var(--transition);
}

.group:hover {
    background: #DDD8C8;
    transform: translateY(-6px);
}

.group img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.group__body {
    padding: 28px 26px 32px;
}

.group__age {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.7rem;
    color: var(--accent-dim);
    margin-bottom: 14px;
}

.group__body p {
    font-size: 0.85rem;
    color: #55584F;
}

/* ---------- КОНТАКТЫ ---------- */
.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.contact-item {
    padding-block: 22px;
    border-bottom: 1px solid var(--line-soft);
}

.contact-item .eyebrow {
    margin-bottom: 8px;
}

.contact-item a,
.contact-item p {
    font-size: 1.05rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent);
}

.map {
    width: 100%;
    height: clamp(320px, 46vw, 520px);
    border: none;
    filter: grayscale(100%) invert(88%) contrast(88%);
}

.form {
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
}

.form .eyebrow {
    margin-bottom: 28px;
}

.form input {
    width: 100%;
    padding: 14px 0;
    margin-bottom: 28px;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form input::placeholder {
    color: var(--text-muted);
}

.form input:focus {
    border-bottom-color: var(--accent);
}

.form__note {
    margin-top: 22px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---------- CTA ---------- */
.cta {
    text-align: center;
}

.cta .t-h2 {
    margin-bottom: 28px;
}

/* ---------- FOOTER ---------- */
.footer {
    padding-block: clamp(50px, 7vw, 84px) 34px;
    background: var(--bg-dark-soft);
    border-top: 1px solid var(--line-soft);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: clamp(28px, 4vw, 60px);
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line-soft);
}

.footer__logo {
    font-size: 1.4rem;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 18px;
}

.footer h4 {
    font-size: 0.68rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    margin-bottom: 18px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    font-size: 0.85rem;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding-top: 26px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- MOBILE ---------- */
@media (max-width: 1080px) {
    .nav {
        gap: 18px;
    }
    .nav a {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 900px) {
    .burger {
        display: block;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 26px;
        background: rgba(18, 22, 19, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.45s var(--ease), visibility 0.45s;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
    }

    .nav a {
        font-size: 0.95rem;
        letter-spacing: 0.24em;
    }

    .split,
    .spa-explorer,
    .contacts {
        grid-template-columns: 1fr;
    }

    .split--reverse .split__media {
        order: 0;
    }

    .zone,
    .zone__body {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 15px;
    }
    .concierge {
        width: 64px;
        height: 64px;
        font-size: 0.5rem;
    }
    .footer__top {
        grid-template-columns: 1fr;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
