/*
Theme Name: Sofia Park Opening
Theme URI: http://localhost:8080
Author: Codex
Description: Minimal landing page for a new swimming pool opening in Pyatigorsk.
Version: 1.0.4
Text Domain: sofiapark-opening
*/

@font-face {
    font-family: "Leotaro";
    src:
        url("assets/fonts/Leotaro-Regular.woff2") format("woff2"),
        url("assets/fonts/Leotaro-Regular.woff") format("woff"),
        url("assets/fonts/Leotaro-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --max: 1320px;
    --site-header-bg: #0e0c08;
    --gold: #c9a84c;
    --page-bg-soft: #f6f2eb;
    --page-bg-muted: #fafaf8;
    --page-bg-plain: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        "Leotaro", "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.landing-page {
    min-height: 100vh;
}

/* ─── Hero Section ────────────────────────────────────── */

.hero-section {
    position: relative;
    min-height: 100vh;
    color: #fff;
    background: url("./assets/hero-bg.jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 8, 5, 0.6) 0%,
        rgba(10, 8, 5, 0.2) 30%,
        rgba(10, 8, 5, 0.35) 60%,
        rgba(10, 8, 5, 0.75) 100%
    );
    pointer-events: none;
}

.hero-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

/* ─── Header ──────────────────────────────────────────── */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 80px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.site-header--solid {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: 189px;
    height: auto;
}

.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.site-nav a {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3a3530;
    white-space: nowrap;
}

.nav-hotel-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-hotel-link {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: rgba(58, 53, 48, 0.45) !important;
}

.nav-hotel-badge {
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #c9a84c, #e0c97a);
    border-radius: 100px;
    padding: 3px 8px;
}

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

.header-phone {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #3a3530;
    white-space: nowrap;
}

.header-cta {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0e0c08;
    padding: 11px 24px;
    border-radius: 4px;
    background: #c9a84c;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.header-cta:hover {
    opacity: 0.88;
}

/* ─── Burger button ──────────────────────────────────── */

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #1a1918;
    transition:
        transform 0.28s,
        opacity 0.2s,
        width 0.2s;
}

.burger span:nth-child(3) {
    width: 65%;
}

.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) {
    width: 100%;
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-footer {
    display: none;
}

/* ─── Hero Content ────────────────────────────────────── */

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 0 20px;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
}

.hero-kicker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
}

.hero-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: clamp(48px, 5.5vw, 86px);
    font-style: normal;
    font-weight: 400;
    line-height: 1.08;
    color: #fff;
    letter-spacing: 0.01em;
}

.hero-rule {
    width: 48px;
    height: 1px;
    background: rgba(201, 168, 76, 0.7);
}

.hero-subtitle {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border-radius: 4px;
    background: #c9a84c;
    color: #0e0c08;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.2s;
    margin-top: 8px;
}

.hero-cta:hover {
    opacity: 0.88;
}

/* ─── Hero Stat Bar ───────────────────────────────────── */

.hero-stat-bar {
    display: flex;
    align-items: center;
    padding: 0 60px;
    height: 84px;
    background: rgba(14, 12, 8, 0.68);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(201, 168, 76, 0.22);
}

.hero-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.stat-label {
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

.stat-value {
    font-family: "Leotaro", serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

.hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
}

/* ─── Info Cards (legacy, hidden) ────────────────────── */

.hero-cards {
    display: none;
}

.info-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 72px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.87);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.info-card-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #1a1918;
}

.info-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.info-card-title {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1918;
    line-height: 1.3;
}

.info-card-sub {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #6d6c6a;
    line-height: 1.3;
}

/* ─── Zones Section ───────────────────────────────────── */

.zones-section {
    background: #f6f2eb;
}

.zones-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.section-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
}

.section-kicker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
}

.section-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    color: #1a1918;
    letter-spacing: 0.01em;
}

.section-subtitle {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #9a9188;
    max-width: 480px;
}

.zones-row {
    display: flex;
    gap: 16px;
}

.zone-card {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.zone-card-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zone-card:hover .zone-card-img {
    transform: scale(1.05);
}

.zone-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(10, 8, 5, 0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    gap: 10px;
}

.zone-card-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

.zone-card-desc {
    display: none;
}

.zone-card-link {
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}

.zone-card:hover .zone-card-link {
    opacity: 1;
    transform: translateY(0);
}

.zones-cta-row {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.zones-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 4px;
    border: 1px solid rgba(26, 25, 24, 0.3);
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1918;
    transition: border-color 0.2s, background 0.2s;
}

.zones-cta-btn:hover {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.06);
}

.zones-cta-icon {
    width: 16px;
    height: 16px;
}

/* ─── How To Section ──────────────────────────────────── */

.howto-section {
    background: #fafaf8;
}

.howto-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.howto-steps {
    display: flex;
    gap: 0;
    width: 100%;
}

.howto-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    text-align: center;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100px;
    background: linear-gradient(135deg, #c9a84c, #e0c97a);
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.step-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1918;
}

.step-desc {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #6d6c6a;
    line-height: 1.5;
}

.howto-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pcta-dark {
    color: #1a1918 !important;
    border-color: #1a1918 !important;
}

.pcta-dark .pcta-icon {
    color: #1a1918;
}

/* ─── Pricing Section ─────────────────────────────────── */

.pricing-section {
    background: #141413;
    color: #fff;
}

.pricing-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.pricing-sub {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.47);
}

.pricing-cards {
    display: flex;
    gap: 24px;
}

.pricing-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px 32px;
    border-radius: 20px;
    background: #1e1e1d;
}

.p-card-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.schedule-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.schedule-label {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.67);
}

.schedule-time {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.p-sep {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.p-note {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.p-note-label {
    font-weight: 600;
    color: #c9a84c;
}

.p-note-text {
    color: rgba(255, 255, 255, 0.53);
}

.p-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.p-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s;
}

.p-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.p-btn-icon {
    width: 14px;
    height: 14px;
}

/* Prices card */

.price-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-badge {
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.33);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
}

.price-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-table th {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.33);
    text-align: center;
}

.price-table th.pt-col-name {
    text-align: left;
}

.price-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table td {
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.87);
    text-align: center;
}

.price-table td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, 0.87);
}

.price-table td:not(:first-child) {
    font-weight: 600;
    color: #fff;
}

/* CTA Row */

.pricing-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pcta-main {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 100px;
    background: linear-gradient(135deg, #c9a84c, #e0c97a);
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.2s;
}

.pcta-main:hover {
    opacity: 0.9;
}

.pcta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 100px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s;
}

.pcta-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pcta-icon {
    width: 16px;
    height: 16px;
}

.pricing-footnote {
    margin: 0;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.27);
}

/* ─── Gallery Section ─────────────────────────────────── */

.gallery-section {
    background: #fafaf8;
}

.gallery-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gallery-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 4px;
}

.gallery-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(201, 168, 76, 0.13);
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c9a84c;
    width: fit-content;
}

.gallery-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
}

.gallery-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1918;
}

.gallery-sub {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #7a756e;
}

.gallery-row {
    display: flex;
    gap: 20px;
}

.gallery-row--3 .gallery-photo {
    height: 320px;
}

.gallery-row--2 .gallery-photo {
    height: 420px;
}

.gallery-photo--sm {
    height: 320px !important;
}

.gallery-photo--md {
    height: 360px !important;
}

.gallery-row--65-35 .gallery-photo:first-child {
    flex: 65;
}
.gallery-row--65-35 .gallery-photo:last-child {
    flex: 35;
}

.gallery-row--62-38 .gallery-photo:first-child {
    flex: 62;
}
.gallery-row--62-38 .gallery-photo:last-child {
    flex: 38;
}

.gallery-row--3 .gallery-photo {
    flex: 1;
}

.gallery-photo {
    position: relative;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(0, 0, 0, 0.73) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 0 20px 18px;
}

.gallery-label {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #f7f3ee;
}

/* ─── Responsive ──────────────────────────────────────── */

@media (max-width: 1120px) {
    .gallery-inner {
        padding: 60px 40px;
    }

    .gallery-title {
        font-size: 36px;
    }

    .howto-inner {
        padding: 60px 40px;
        gap: 40px;
    }

    .howto-steps {
        flex-wrap: wrap;
    }

    .howto-step {
        flex: 1 1 calc(50% - 16px);
    }

    .pricing-inner {
        padding: 60px 40px;
    }

    .pricing-cards {
        flex-direction: column;
    }

    .zones-inner {
        padding: 60px 40px;
        gap: 32px;
    }

    .zones-row {
        flex-wrap: wrap;
    }

    .zone-card {
        flex: 1 1 calc(50% - 12px);
    }

    .zone-card-img {
        height: 300px;
    }

    .site-header {
        padding: 0 24px;
    }

    .site-nav {
        gap: 20px;
    }

    .site-nav a {
        font-size: 13px;
    }

    .hero-cards {
        padding: 0 24px 32px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .info-card {
        height: auto;
    }
}

@media (max-width: 760px) {
    .site-header {
        height: 60px;
        padding: 0 16px;
        background: #fff;
        border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 99;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 80px 32px 40px;
        background: #0e0c08;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav a {
        font-size: 22px;
        font-weight: 600;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        width: 100%;
    }

    .nav-hotel-wrap {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        width: 100%;
    }

    .nav-hotel-link {
        font-size: 22px !important;
        font-weight: 600;
    }

    .header-right {
        display: none;
    }

    .mobile-nav-footer {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
        width: 100%;
    }

    .mobile-nav-phone {
        font-family: "Raleway", sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
    }

    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 14px;
        border-radius: 10px;
        background: linear-gradient(135deg, #c9a84c, #e0c97a);
        font-family: "Raleway", sans-serif;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        text-align: center;
    }

    .burger {
        display: flex;
        z-index: 100;
        margin-left: auto;
    }

    .hero-body {
        padding-top: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .zones-inner {
        padding: 48px 20px;
    }

    .gallery-inner {
        padding: 48px 20px;
        gap: 16px;
    }

    .gallery-row {
        flex-direction: column;
    }

    .gallery-row--2 .gallery-photo,
    .gallery-photo--md {
        height: 260px !important;
        flex: none !important;
    }

    .gallery-photo--sm {
        height: 220px !important;
    }

    .howto-inner {
        padding: 48px 20px;
        gap: 32px;
    }

    .howto-step {
        flex: 1 1 100%;
    }

    .pricing-inner {
        padding: 48px 20px;
    }

    .pricing-title {
        font-size: 32px;
    }

    .zone-card {
        flex: 1 1 100%;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-cards {
        padding: 0 12px 20px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .info-card {
        height: auto;
    }

    .hero-stories {
        top: 68px;
        left: 12px;
        right: 12px;
    }

    .brand-logo {
        width: 150px;
    }
}

/* ─── Footer ──────────────────────────────────────────── */

.site-footer {
    background: #141413;
    color: #fff;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 80px 40px;
}

.footer-cols {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.footer-col--brand {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-name {
    font-family: "Leotaro", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.footer-tagline {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-cta {
    display: inline-block;
    align-self: flex-start;
    margin-top: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: linear-gradient(135deg, #c9a84c, #e0c97a);
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.2s;
}

.footer-cta:hover {
    opacity: 0.88;
}

.footer-col--nav,
.footer-col--contacts {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col-heading {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-phone {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.2s;
}

.footer-phone:hover {
    opacity: 0.8;
}

.footer-telegram {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: #e0c97a;
    transition: opacity 0.2s;
}

.footer-telegram:hover {
    opacity: 0.8;
}

.footer-tg-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-address {
    font-style: normal;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-hours {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-divider {
    margin-top: 48px;
    margin-bottom: 24px;
    height: 1px;
    background: rgba(255, 255, 255, 0.094);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-copy {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    transition:
        border-color 0.2s,
        color 0.2s;
}

.footer-social:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.footer-social-icon {
    width: 16px;
    height: 16px;
}

/* ─── Stories (inside hero) ──────────────────────────── */

.hero-stories {
    position: absolute;
    top: 88px;
    left: 60px;
    right: 60px;
    z-index: 3;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.hero-stories::-webkit-scrollbar {
    display: none;
}

.story-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.story-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a84c 0%, #e0c97a 50%, #c9a84c 100%);
    padding: 3px;
    transition: transform 0.2s;
}

.story-circle:hover .story-ring {
    transform: scale(1.06);
}

.story-white {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px;
}

.story-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.2);
}

.story-circle--viewed .story-ring {
    background: rgba(255, 255, 255, 0.3);
}

.story-label {
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    max-width: 80px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ─── Story Viewer (fullscreen) ──────────────────────── */

.story-viewer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}

.story-viewer.is-open {
    opacity: 1;
    pointer-events: all;
}

/* Mobile-format card */
.sv-card {
    position: relative;
    width: 390px;
    height: 693px;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

.sv-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sv-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        transparent 25%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.sv-progress {
    position: absolute;
    top: 14px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    gap: 4px;
}

.sv-progress-track {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.sv-progress-bar {
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px;
}

.sv-header {
    position: absolute;
    top: 26px;
    left: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sv-label {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sv-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    opacity: 0.85;
    transition: opacity 0.15s;
}

.sv-close:hover {
    opacity: 1;
}

.sv-tap-prev,
.sv-tap-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40%;
    z-index: 3;
    cursor: pointer;
}

.sv-tap-prev {
    left: 0;
}
.sv-tap-next {
    right: 0;
}

/* Click outside card to close */
.story-viewer::before {
    content: "";
    position: absolute;
    inset: 0;
}

/* ─── About Page ──────────────────────────────────────── */

.about-hero-section {
    position: relative;
    height: 810px;
    color: #fff;
    background: url("./assets/814A3153.jpg") center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-body {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-hero-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    max-width: 700px;
}

.about-hero-sub {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
}

/* ─── About Intro Section ─────────────────────────────── */

.about-intro-section {
    background: #fafaf8;
}

.about-intro-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-kicker {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #c9a84c;
}

.about-intro-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: #1a1918;
    line-height: 1.15;
}

.about-intro-body {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6d6c6a;
}

.about-intro-cta {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid #1a1918;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1918;
    transition:
        background 0.2s,
        color 0.2s;
}

.about-intro-cta:hover {
    background: #1a1918;
    color: #fff;
}

.about-intro-img {
    flex: 1;
    height: 460px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

/* ─── Stats Section ───────────────────────────────────── */

.about-stats-section {
    background: #fff;
    border-top: 1px solid rgba(26, 25, 24, 0.08);
    border-bottom: 1px solid rgba(26, 25, 24, 0.08);
}

.about-stats-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.about-stat-num {
    font-family: "Leotaro", serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #c9a84c, #e0c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-label {
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: #6d6c6a;
}

.about-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(26, 25, 24, 0.1);
    flex-shrink: 0;
}

/* ─── Principles Section ──────────────────────────────── */

.about-principles-section {
    background: #fafaf8;
}

.about-principles-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-principles-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.about-principles-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: #1a1918;
}

.about-principles-sub {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #6d6c6a;
}

.about-principles-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.principle-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.principle-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(46, 139, 75, 0.1),
        rgba(89, 195, 224, 0.1)
    );
}

.principle-icon {
    width: 22px;
    height: 22px;
    color: #c9a84c;
}

.principle-title {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1918;
}

.principle-desc {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6d6c6a;
}

/* ─── About CTA Section ───────────────────────────────── */

.about-cta-section {
    background: #141413;
    color: #fff;
}

.about-cta-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.about-cta-kicker {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #e0c97a;
}

.about-cta-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    max-width: 600px;
}

.about-cta-sub {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    line-height: 1.6;
}

.about-cta-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* ─── Pools Page ─────────────────────────────────────── */

.pools-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.pools-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 8, 5, 0.6) 0%,
        rgba(10, 8, 5, 0.2) 30%,
        rgba(10, 8, 5, 0.38) 60%,
        rgba(10, 8, 5, 0.78) 100%
    );
    pointer-events: none;
}

.pools-hero-body {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    color: #fff;
}

.pools-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    padding: 0 20px;
}

.pools-hero-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: clamp(64px, 10vw, 130px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
}

.pools-hero-lead {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
}

.pools-hero-ctas {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 8px;
}

.pools-hero-secondary-link {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.pools-hero-secondary-link:hover {
    color: #c9a84c;
}

/* ─── Pools Split Layout ──────────────────────────────── */

.pools-splits {
    background: #f6f2eb;
}

.pools-split {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    min-height: 580px;
}

.pools-split + .pools-split {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.pools-split--reverse {
    direction: rtl;
}

.pools-split--reverse > * {
    direction: ltr;
}

.pools-split-img {
    height: 460px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 60px 0;
}

.pools-split-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 60px 0;
}

.pools-split-num {
    font-family: "Leotaro", serif;
    font-size: 80px;
    font-weight: 400;
    color: rgba(201, 168, 76, 0.18);
    line-height: 1;
    margin-bottom: -16px;
}

.pools-split-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    color: #1a1918;
    letter-spacing: 0.01em;
}

.pools-split-text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #6d6c6a;
    max-width: 440px;
}

.pools-split-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pools-split-list li {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #4b4a48;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pools-split-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a84c;
    flex-shrink: 0;
    margin-top: 6px;
}

.pools-split-cta {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-top: 4px;
    transition: opacity 0.2s;
}

.pools-split-cta:hover {
    opacity: 0.75;
}

@media (max-width: 900px) {
    .pools-split {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 32px;
        min-height: auto;
    }

    .pools-split--reverse {
        direction: ltr;
    }

    .pools-split-img {
        height: 280px;
        margin: 32px 0 0;
    }

    .pools-split-copy {
        padding: 0 0 48px;
    }

    .pools-split-num {
        font-size: 56px;
    }

    .pools-hero-title {
        font-size: clamp(52px, 16vw, 80px);
    }
}

@media (max-width: 760px) {
    /* ── Hero (главная) ── */
    .hero-stat-bar {
        flex-direction: column;
        height: auto;
        padding: 20px 24px;
        gap: 0;
    }

    .hero-stat-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 12px 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.12);
        gap: 8px;
    }

    .hero-stat-item:last-child {
        border-bottom: none;
    }

    .hero-stat-sep {
        display: none;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-value {
        font-size: 14px;
    }

    /* ── Zones (главная) ── */
    .zones-inner {
        padding: 48px 20px;
    }

    .zones-row {
        flex-direction: column;
    }

    .zone-card-img {
        height: 260px;
    }

    /* ── Pools/Banya/Lounge/Cafe hero ── */
    .pools-hero-body {
        padding-top: 60px;
    }

    .pools-hero-content {
        padding: 0 20px;
        gap: 14px;
    }

    .pools-hero-title {
        font-size: clamp(40px, 14vw, 64px);
        letter-spacing: 0.03em;
    }

    .pools-hero-lead {
        font-size: 15px;
    }

    .pools-hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    /* ── Pools/Banya/Lounge/Cafe splits ── */
    .pools-split {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 20px;
        min-height: auto;
    }

    .pools-split--reverse {
        direction: ltr;
    }

    .pools-split-img {
        height: 240px;
        margin: 28px 0 0;
    }

    .pools-split-copy {
        padding: 0 0 40px;
        gap: 14px;
    }

    .pools-split-num {
        font-size: 48px;
        margin-bottom: -8px;
    }

    .pools-split-title {
        font-size: 28px;
    }

    .pools-split-text {
        font-size: 15px;
    }

    /* ── Inner pages (старые) ── */
    .inner-hero-inner {
        flex-direction: column;
        padding: 100px 20px 48px;
        gap: 32px;
    }

    .inner-hero-art {
        width: 100%;
        max-width: 360px;
    }

    .inner-title {
        font-size: clamp(32px, 10vw, 52px);
    }

    .inner-section-inner {
        padding: 48px 20px;
    }

    .page-grid--2,
    .page-grid--3,
    .page-grid--4 {
        grid-template-columns: 1fr;
    }

    .page-stat-grid {
        grid-template-columns: 1fr;
    }

    .page-stat-value {
        font-size: 40px;
    }

    /* ── About CTA ── */
    .about-cta-inner {
        padding: 60px 20px;
        text-align: center;
    }

    .about-cta-title {
        font-size: 28px;
    }

    .about-cta-btns {
        flex-direction: column;
        align-items: center;
    }
}

/* ─── Inner Pages ─────────────────────────────────────── */

.inner-hero {
    background: linear-gradient(135deg, #f1efe8, #dfece8);
    color: #1a1918;
}

.inner-hero--aqua {
    background: linear-gradient(135deg, #eff8f8 0%, #d9f0f3 55%, #edf7ec 100%);
}

.inner-hero--sand {
    background: linear-gradient(135deg, #f7f1e8 0%, #f3e5d7 55%, #efe9dd 100%);
}

.inner-hero--forest {
    background: linear-gradient(135deg, #edf5ef 0%, #dceadf 55%, #e9f3f5 100%);
}

.inner-hero--slate {
    background: linear-gradient(135deg, #e9ecef 0%, #dde4e8 55%, #eef2f4 100%);
}

.inner-hero--rose {
    background: linear-gradient(135deg, #f7ece9 0%, #f0dddb 55%, #f7f1ef 100%);
}

.inner-hero--cream {
    background: linear-gradient(135deg, #f9f4eb 0%, #f5ecdf 55%, #f8f6f0 100%);
}

.inner-hero--midnight {
    background: linear-gradient(135deg, #1d2428 0%, #263238 55%, #314247 100%);
    color: #fff;
}

.inner-hero--booking {
    background: linear-gradient(135deg, #f1f7ef 0%, #ddecdc 55%, #edf3e8 100%);
}

.inner-hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 160px 80px 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.inner-hero-copy {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inner-kicker {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #c9a84c;
}

.inner-hero--midnight .inner-kicker {
    color: #8dd4e7;
}

.inner-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: clamp(46px, 6vw, 72px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.04;
    color: inherit;
}

.inner-lead {
    margin: 0;
    max-width: 620px;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: rgba(26, 25, 24, 0.72);
}

.inner-hero--midnight .inner-lead {
    color: rgba(255, 255, 255, 0.74);
}

.inner-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.inner-hero-media {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero-art {
    width: min(420px, 38vw);
    height: auto;
}

.inner-section {
    background: #fafaf8;
}

.inner-section--alt {
    background: #fff;
}

.inner-section-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
}

.inner-section-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.page-grid {
    display: grid;
    gap: 24px;
}

.page-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.page-card--accent {
    background: linear-gradient(180deg, #ffffff 0%, #f5faf7 100%);
}

.page-card--wide {
    max-width: 920px;
    margin: 0 auto;
}

.page-card-tag {
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #c9a84c;
    text-transform: uppercase;
}

.page-card-title {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #1a1918;
}

.page-card-text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6d6c6a;
}

.page-list {
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4b4a48;
}

.page-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.page-stat-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 32px 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.page-stat-value {
    font-family: "Leotaro", serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    color: #1a1918;
}

.page-stat-label {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #6d6c6a;
    text-align: center;
}

.page-table-wrap {
    overflow-x: auto;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.page-table {
    width: 100%;
    border-collapse: collapse;
}

.page-table th,
.page-table td {
    padding: 18px 24px;
    text-align: left;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    border-bottom: 1px solid rgba(26, 25, 24, 0.08);
}

.page-table th {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1a1918;
    background: #f6f5f1;
}

.page-table td {
    color: #4b4a48;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    min-height: 220px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.timeline-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c9a84c, #e0c97a);
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-card {
    align-items: flex-start;
}

/* ─── Prices / Contacts / Booking ────────────────────── */

.pricing-hero {
    background:
        radial-gradient(
            circle at top right,
            rgba(88, 195, 224, 0.24),
            transparent 26%
        ),
        linear-gradient(135deg, #f7f1e8 0%, #efe4d7 52%, #f6f2eb 100%);
}

.pricing-hero-inner,
.pricing-strips-inner,
.pricing-board-inner,
.pricing-details-inner,
.contact-scene-inner,
.contact-layout-inner,
.contact-bottom-inner,
.booking-form-inner,
.booking-funnel-inner,
.booking-choices-inner,
.booking-process-inner,
.booking-support-inner,
.booking-final-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

.pricing-hero-inner {
    padding-top: 154px;
    padding-bottom: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 420px);
    gap: 32px;
    align-items: end;
}

.pricing-eyebrow,
.contact-scene-kicker,
.booking-kicker {
    display: inline-flex;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #c9a84c;
}

.pricing-hero-copy,
.contact-scene-copy,
.booking-funnel-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-hero-title,
.contact-scene-title,
.booking-funnel-title,
.pricing-board-title,
.booking-process-title,
.contact-bottom-title,
.booking-final-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.04;
    color: #1a1918;
}

.pricing-hero-text,
.contact-scene-text,
.booking-funnel-text,
.pricing-board-text,
.contact-bottom-text,
.booking-final-text {
    margin: 0;
    max-width: 720px;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 25, 24, 0.72);
}

.pricing-hero-actions,
.contact-scene-actions,
.contact-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.pricing-hero-panel,
.pricing-sidebox,
.contact-direct-box,
.booking-callout {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(26, 25, 24, 0.08);
    box-shadow: 0 24px 50px rgba(44, 39, 31, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.pricing-panel-chip,
.pricing-sidebox-kicker,
.contact-direct-label,
.booking-callout-label {
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(46, 139, 75, 0.1);
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
}

.pricing-panel-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(26, 25, 24, 0.08);
}

.pricing-panel-label {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: #6d6c6a;
}

.pricing-panel-value,
.contact-direct-phone,
.booking-callout-phone {
    font-family: "Raleway", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1918;
}

.pricing-panel-note,
.pricing-sidebox-text,
.contact-direct-text,
.booking-callout-text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #6d6c6a;
}

.contact-direct-link {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1918;
}

.pricing-strips {
    background: #f5f1ea;
}

.pricing-strips-inner {
    padding-top: 0;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-strip-card {
    margin-top: -34px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.pricing-strip-card--dark {
    background: #1f2320;
}

.pricing-strip-label {
    font-family: "Raleway", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a84c;
}

.pricing-strip-card--dark .pricing-strip-label {
    color: #9de0f1;
}

.pricing-strip-main {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1918;
}

.pricing-strip-text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #6d6c6a;
}

.pricing-strip-card--dark .pricing-strip-main,
.pricing-strip-card--dark .pricing-strip-text {
    color: #fff;
}

.pricing-board {
    background: #fafaf8;
}

.pricing-board-inner,
.booking-process-inner,
.booking-support-inner {
    padding-top: 72px;
    padding-bottom: 72px;
}

.pricing-board-head,
.booking-process-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-tier-grid,
.booking-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.booking-support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-tier,
.booking-support-card,
.contact-panel,
.contact-info-card,
.contact-bottom-card,
.booking-final-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.pricing-tier--featured {
    background: linear-gradient(180deg, #eff8f6 0%, #f7fcfb 100%);
    border-color: rgba(46, 139, 75, 0.18);
}

.pricing-tier-name {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1918;
}

.pricing-tier-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-tier-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(26, 25, 24, 0.08);
    font-family: "Raleway", sans-serif;
}

.pricing-tier-day {
    font-size: 13px;
    color: #6d6c6a;
}

.pricing-tier-price strong {
    font-size: 28px;
    line-height: 1;
    color: #1a1918;
}

.pricing-tier-text,
.contact-panel-text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6d6c6a;
}

.pricing-details {
    background: #fff;
}

.pricing-details-inner {
    padding-top: 0;
    padding-bottom: 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 420px);
    gap: 24px;
}

.pricing-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.pricing-note-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 28px;
    border-radius: 24px;
    background: #fafaf8;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.pricing-note-title,
.pricing-sidebox-title,
.contact-panel-title,
.contact-info-title {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1918;
}

.pricing-sidebox-actions,
.booking-callout-actions,
.booking-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-scene {
    background:
        radial-gradient(
            circle at top left,
            rgba(89, 195, 224, 0.18),
            transparent 24%
        ),
        linear-gradient(135deg, #f8f3ea 0%, #f3eadf 54%, #fbf8f2 100%);
}

.contact-scene-inner {
    padding-top: 154px;
    padding-bottom: 56px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 400px);
    gap: 28px;
    align-items: end;
}

.contact-layout {
    background: #fafaf8;
}

.contact-layout-inner {
    padding-top: 40px;
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 380px);
    gap: 24px;
}

.contact-primary,
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-panel-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-map-placeholder {
    position: relative;
    min-height: 340px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(26, 25, 24, 0.06) 1px, transparent 1px),
        linear-gradient(rgba(26, 25, 24, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, #f1ede5, #e4ece7);
    background-size:
        36px 36px,
        36px 36px,
        cover;
}

.contact-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
}

.contact-map-grid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 24%,
            rgba(46, 139, 75, 0.15),
            transparent 18%
        ),
        radial-gradient(
            circle at 72% 60%,
            rgba(89, 195, 224, 0.18),
            transparent 20%
        );
}

.contact-map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 18px;
    border-radius: 999px;
    background: #1a1918;
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.contact-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-action-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.contact-action-label {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c9a84c;
}

.contact-action-value {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1918;
}

.contact-action-note,
.contact-info-text {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #6d6c6a;
}

.contact-bottom {
    background: #fff;
}

.contact-bottom-inner {
    padding-top: 0;
    padding-bottom: 88px;
}

.booking-form-section {
    background: #fafaf8;
}

.booking-form-inner {
    padding-top: 154px;
    padding-bottom: 72px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 34px;
    align-items: center;
}

.booking-form-section--front .booking-form-inner {
    padding-top: 72px;
    padding-bottom: 72px;
    align-items: start;
}

.booking-form-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: clamp(42px, 5vw, 66px);
    font-style: normal;
    font-weight: 700;
    line-height: 1.04;
    color: #1a1918;
}

.booking-form-section--front .booking-form-title {
    font-size: clamp(34px, 4vw, 48px);
}

.booking-form-text {
    margin: 0;
    max-width: 620px;
    font-family: "Raleway", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(26, 25, 24, 0.72);
}

.booking-form-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-form-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.08);
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1918;
}

.booking-request-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.08);
    box-shadow: 0 24px 50px rgba(44, 39, 31, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.booking-field span {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6d6c6a;
}

.booking-field input,
.booking-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(26, 25, 24, 0.14);
    background: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: #1a1918;
    outline: none;
}

.booking-field input:focus,
.booking-field select:focus {
    border-color: #c9a84c;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

.booking-field--guests {
    max-width: 260px;
}

.booking-field-hint {
    min-height: 16px;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: #8a6d1f;
}

.booking-form-hp {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.booking-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #c9a84c, #e0c97a);
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0e0c08;
    cursor: pointer;
}

.booking-submit:hover {
    opacity: 0.9;
}

.booking-form-note {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #6d6c6a;
}

.booking-form-message {
    padding: 13px 14px;
    border-radius: 12px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

.booking-form-message--success {
    background: rgba(46, 139, 75, 0.12);
    color: #1f6d3b;
}

.booking-form-message--error {
    background: rgba(176, 63, 47, 0.12);
    color: #8e2f22;
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.booking-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.booking-modal-open {
    overflow: hidden;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(14, 12, 8, 0.68);
    cursor: pointer;
}

.booking-modal-dialog {
    position: relative;
    width: min(820px, 100%);
    max-height: calc(100dvh - 40px);
    overflow: auto;
    padding: 28px;
    border-radius: 18px;
    background: #fafaf8;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.booking-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(26, 25, 24, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #1a1918;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.booking-form-section--modal {
    background: transparent;
}

.booking-form-section--modal .booking-form-inner {
    max-width: none;
    padding: 0;
    display: block;
}

.booking-form-section--modal .booking-form-copy {
    gap: 8px;
    max-width: 620px;
    margin: 0 52px 20px 0;
}

.booking-form-section--modal .booking-form-title {
    font-size: clamp(32px, 4vw, 46px);
}

.booking-form-section--modal .booking-form-text {
    font-size: 15px;
}

.booking-form-section--modal .booking-form-contact {
    display: none;
}

.booking-form-section--modal .booking-request-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.booking-funnel {
    background:
        radial-gradient(
            circle at top right,
            rgba(46, 139, 75, 0.16),
            transparent 24%
        ),
        linear-gradient(135deg, #f0f6ee 0%, #ddecdc 52%, #f5f8f1 100%);
}

.booking-funnel-inner {
    padding-top: 154px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 400px);
    gap: 28px;
    align-items: end;
}

.booking-choices {
    background: #fafaf8;
}

.booking-choices-inner {
    padding-top: 0;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.booking-choice {
    margin-top: -24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(26, 25, 24, 0.07);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.booking-choice-step {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #c9a84c;
}

.booking-choice-title {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1918;
}

.booking-choice-text {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #6d6c6a;
}

.booking-process,
.booking-final {
    background: #fff;
}

.booking-lane {
    display: grid;
    gap: 18px;
}

.booking-lane-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px 28px;
    border-radius: 24px;
    background: #fafaf8;
    border: 1px solid rgba(26, 25, 24, 0.07);
}

.booking-lane-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-support {
    background: #fafaf8;
}

.booking-final-inner {
    padding-top: 0;
    padding-bottom: 88px;
}

.booking-final-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.booking-final-copy {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body:not(.home) .inner-hero,
body:not(.home) .pricing-hero,
body:not(.home) .contact-scene,
body:not(.home) .booking-form-section,
body:not(.home) .booking-funnel {
    background: var(--page-bg-soft);
}

body:not(.home) .inner-hero--aqua,
body:not(.home) .inner-hero--sand,
body:not(.home) .inner-hero--forest,
body:not(.home) .inner-hero--slate,
body:not(.home) .inner-hero--rose,
body:not(.home) .inner-hero--cream,
body:not(.home) .inner-hero--booking {
    background: var(--page-bg-soft);
}

body:not(.home) .inner-hero--midnight {
    background: var(--site-header-bg);
}

body:not(.home) .inner-section,
body:not(.home) .pricing-board,
body:not(.home) .pricing-strips,
body:not(.home) .contact-layout,
body:not(.home) .booking-choices,
body:not(.home) .booking-support {
    background: var(--page-bg-muted);
}

body:not(.home) .inner-section--alt,
body:not(.home) .pricing-details,
body:not(.home) .contact-bottom,
body:not(.home) .booking-process,
body:not(.home) .booking-final {
    background: var(--page-bg-plain);
}

body:not(.home) .pricing-tier--featured,
body:not(.home) .page-card--accent {
    background: var(--page-bg-plain);
}

@media (max-width: 1024px) {
    .pricing-hero-inner,
    .pricing-strips-inner,
    .pricing-board-inner,
    .pricing-details-inner,
    .contact-scene-inner,
    .contact-layout-inner,
    .contact-bottom-inner,
    .booking-form-inner,
    .booking-funnel-inner,
    .booking-choices-inner,
    .booking-process-inner,
    .booking-support-inner,
    .booking-final-inner,
    .inner-hero-inner,
    .inner-section-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

    .pricing-hero-inner,
    .contact-scene-inner,
    .booking-form-inner,
    .booking-funnel-inner,
    .pricing-details-inner,
    .contact-layout-inner {
        grid-template-columns: 1fr;
    }

    .pricing-tier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-strips-inner,
    .booking-choices-inner,
    .booking-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-notes,
    .contact-actions-grid {
        grid-template-columns: 1fr;
    }

    .inner-hero-inner {
        padding-top: 140px;
        padding-bottom: 72px;
    }

    .page-grid--3,
    .page-grid--4,
    .page-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pricing-hero-inner,
    .pricing-strips-inner,
    .pricing-board-inner,
    .pricing-details-inner,
    .contact-scene-inner,
    .contact-layout-inner,
    .contact-bottom-inner,
    .booking-form-inner,
    .booking-funnel-inner,
    .booking-choices-inner,
    .booking-process-inner,
    .booking-support-inner,
    .booking-final-inner,
    .inner-hero-inner,
    .inner-section-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pricing-hero-inner,
    .contact-scene-inner,
    .booking-form-inner,
    .booking-funnel-inner {
        padding-top: 124px;
        padding-bottom: 44px;
    }

    .pricing-tier-grid,
    .pricing-strips-inner,
    .booking-form-grid,
    .booking-choices-inner,
    .booking-support-grid,
    .pricing-notes {
        grid-template-columns: 1fr;
    }

    .pricing-strip-card,
    .booking-choice {
        margin-top: 0;
    }

    .inner-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 124px;
        padding-bottom: 56px;
    }

    .inner-title {
        font-size: 42px;
    }

    .inner-lead {
        font-size: 16px;
    }

    .inner-hero-art {
        width: min(320px, 70vw);
    }

    .page-grid--2,
    .page-grid--3,
    .page-grid--4,
    .page-stat-grid,
    .contact-grid,
    .contact-actions-grid {
        grid-template-columns: 1fr;
    }

    .page-card,
    .timeline-item,
    .pricing-hero-panel,
    .pricing-sidebox,
    .contact-direct-box,
    .booking-callout,
    .pricing-tier,
    .pricing-note-card,
    .pricing-strip-card,
    .contact-panel,
    .contact-info-card,
    .contact-bottom-card,
    .booking-request-form,
    .booking-choice,
    .booking-support-card,
    .booking-final-card,
    .booking-lane-card {
        padding: 22px;
    }

    .booking-final-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-field--guests {
        max-width: none;
    }

    .booking-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .booking-modal-dialog {
        max-height: calc(100dvh - 20px);
        padding: 22px;
        border-radius: 16px 16px 0 0;
    }

    .booking-form-section--modal .booking-form-copy {
        margin-right: 44px;
    }

    .page-table th,
    .page-table td {
        padding: 14px 16px;
    }
}

/* ─── Footer responsive ───────────────────────────────── */

@media (max-width: 1024px) {
    .footer-inner {
        padding: 60px 40px 32px;
    }

    .footer-cols {
        gap: 48px;
    }
}

@media (max-width: 760px) {
    .footer-inner {
        padding: 48px 20px 28px;
    }

    .footer-cols {
        flex-direction: column;
        gap: 36px;
    }

    .footer-col--brand {
        flex: none;
    }

    .footer-brand-name {
        font-size: 32px;
    }

    .footer-col--nav,
    .footer-col--contacts {
        flex: none;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

/* ─── How to get there (map block) ───────────────────── */

.howto-map-section {
    background: #fafaf8;
}

.howto-map-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.howto-map-info {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.howto-map-title {
    margin: 0;
    font-family: "Leotaro", serif;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    color: #1a1918;
    line-height: 1.15;
}

.howto-map-address {
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1918;
    line-height: 1.4;
}

.howto-map-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.howto-map-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    color: #6d6c6a;
}

.howto-map-details a {
    color: #6d6c6a;
    transition: color 0.2s;
}

.howto-map-details a:hover {
    color: #1a1918;
}

.howto-map-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #c9a84c;
}

.howto-map-frame-wrap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
}

.howto-map-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .howto-map-inner {
        padding: 60px 40px;
        gap: 40px;
    }

    .howto-map-info {
        flex: 0 0 300px;
    }
}

@media (max-width: 760px) {
    .howto-map-inner {
        padding: 48px 20px;
        flex-direction: column;
        gap: 32px;
    }

    .howto-map-info {
        flex: none;
    }

    .howto-map-title {
        font-size: 30px;
    }

    .howto-map-frame-wrap {
        min-height: 300px;
    }
}
