:root {
    --bg: #f4efe6;
    --surface: rgba(255, 255, 255, 0.78);
    --line: rgba(18, 54, 69, 0.12);
    --text: #183442;
    --muted: #5f7480;
    --deep: #103240;
    --teal: #1d6d73;
    --nav-dark: #174f59;
    --nav-teal: #55a4b5;
    --button-teal: #55a4b5;
    --button-teal-hover: #4a96a6;
    --button-teal-dark: #2f8397;
    --gold: #b9904c;
    --shadow: 0 22px 60px rgba(16, 50, 64, 0.12);
    --shadow-soft: 0 10px 30px rgba(16, 50, 64, 0.08);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1240px;
}

.legal-section {
    padding-top: 58px;
}

.legal-document {
    padding: clamp(28px, 4vw, 58px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at right top, rgba(85, 164, 181, 0.12), transparent 24%),
        rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.legal-document .section__title {
    max-width: 920px;
}

.legal-document .section__lead {
    max-width: 840px;
}

.legal-document__body {
    display: grid;
    gap: 12px;
    margin-top: 30px;
    color: #314f5e;
    font-size: 15px;
    line-height: 1.75;
}

.legal-document__body p,
.legal-document__body h3 {
    margin: 0;
}

.legal-document__heading {
    padding-top: 18px;
    color: var(--deep);
    font-family: var(--font-body);
    font-size: clamp(20px, 2.1vw, 28px);
    line-height: 1.25;
}

.legal-document__numbered {
    color: #365866;
}

.legal-document__bullet {
    position: relative;
    padding-left: 22px;
}

.legal-document__bullet::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 0.8em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.legal-document__row {
    display: grid;
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(85, 164, 181, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(85, 164, 181, 0.08);
}

.legal-document__row strong {
    color: var(--deep);
}

@media (max-width: 700px) {
    .legal-section {
        padding-top: 34px;
    }

    .legal-document {
        border-radius: 22px;
    }

    .legal-document__body {
        font-size: 14px;
        line-height: 1.68;
    }

    .legal-document__row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(32, 126, 135, 0.12), transparent 26%),
        radial-gradient(circle at right 10% top 20%, rgba(185, 144, 76, 0.14), transparent 20%),
        linear-gradient(180deg, #f6f1e8 0%, #faf8f3 100%);
}

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

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.site-topchrome {
    position: fixed;
    inset: 0 0 auto;
    z-index: 80;
}

.site-body:not(.page-index) main {
    padding-top: 92px;
}

.site-header {
    position: relative;
    z-index: 1;
    min-height: 90px;
    background: rgba(21, 44, 50, 0.46);
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: none;
    backdrop-filter: none;
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-body.page-index:not(.header-is-scrolled) .site-header {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-body:not(.page-index) .site-header,
.site-body.header-is-scrolled .site-header {
    background: #55a4b5;
    border-bottom-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px rgba(9, 32, 40, 0.16);
    backdrop-filter: blur(16px);
}

.site-body:not(.page-index) .brandmark,
.site-body.header-is-scrolled .brandmark {
    width: 190px;
    min-height: 70px;
    margin-bottom: 0;
    padding: 10px 14px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-body:not(.page-index) .brandmark__title,
.site-body.header-is-scrolled .brandmark__title {
    font-size: 34px;
}

.site-body:not(.page-index) .brandmark__subtitle,
.site-body.header-is-scrolled .brandmark__subtitle {
    font-size: 14px;
}

.site-body:not(.page-index) .brandmark__location,
.site-body.header-is-scrolled .brandmark__location {
    display: none;
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(410px, 1fr) 190px minmax(370px, 1fr) auto;
    grid-template-areas: "nav-left brand nav-right actions";
    align-items: center;
    gap: 18px;
    width: min(1420px, calc(100% - 70px));
    min-height: 90px;
    margin: 0 auto;
}

.brandmark {
    position: relative;
    z-index: 2;
    display: grid;
    grid-area: brand;
    place-items: center;
    align-self: stretch;
    width: 190px;
    min-height: 124px;
    margin: 0 auto -34px;
    padding: 14px 16px 13px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(8px);
}

.brandmark__title {
    font-family: 'Manrope', sans-serif;
    font-size: 35px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1em;
    color: #fff;
}

.brandmark--long .brandmark__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.03em;
}

.brandmark__subtitle {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.92);
}

.brandmark__location {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.28em;
}

.site-nav {
    display: contents;
}

.site-nav__cluster {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.site-nav__cluster--left {
    grid-area: nav-left;
    justify-content: flex-start;
}

.site-nav__cluster--right {
    grid-area: nav-right;
    justify-content: flex-end;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 0 13px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 0;
    height: 3px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link--active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link--active::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    grid-area: actions;
    align-items: center;
    justify-content: flex-end;
}

.site-header__cta.button--primary {
    min-width: 180px;
    min-height: 42px;
    padding-inline: 24px 18px;
    gap: 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.96);
    color: var(--button-teal-dark);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: none;
}

.site-header__cta.button--primary:hover,
.site-header__cta.button--primary:focus-visible {
    background: #fff;
    border-color: #fff;
    color: var(--button-teal-hover);
}

.site-header__cta-dots {
    position: relative;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
}

.site-header__cta-dots::before,
.site-header__cta-dots::after {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: inherit;
    background: inherit;
}

.site-header__cta-dots::before {
    top: -7px;
}

.site-header__cta-dots::after {
    top: 7px;
}

.site-header__toggle {
    display: none;
    grid-area: toggle;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header__toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__toggle--open span:nth-child(2) {
    opacity: 0;
}

.site-header__toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 30px;
    border-radius: 5px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    background: var(--button-teal);
    color: #fff;
    border-color: var(--button-teal);
    box-shadow: none;
}

.button--primary:hover,
.button--primary:focus-visible {
    background: var(--button-teal-hover);
    border-color: var(--button-teal-hover);
}

.button--ghost,
.button--secondary {
    border-color: var(--button-teal);
    background: rgba(255, 255, 255, 0.78);
    color: var(--button-teal-dark);
    box-shadow: none;
}

.button--ghost[href]::after,
.button--secondary[href]::after {
    content: "\2197";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    color: currentColor;
    font-size: 1.05em;
    line-height: 1;
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--secondary:hover,
.button--secondary:focus-visible {
    background: rgba(85, 164, 181, 0.08);
    border-color: var(--button-teal-hover);
    color: var(--button-teal-hover);
}

.button--compact {
    min-height: 44px;
    padding-inline: 24px;
    font-size: 14px;
}

.page-hero {
    padding: 72px 0 28px;
}

.breadcrumbs-section {
    padding: 82px 0 0;
}

.breadcrumbs {
    display: flex;
}

.breadcrumbs__list {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
    max-width: 100%;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(85, 164, 181, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(16, 50, 64, 0.08);
    list-style: none;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    display: inline-flex;
    margin: 0 10px;
    color: var(--gold);
    opacity: 0.7;
}

.breadcrumbs__link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: #55717e;
    font-weight: 700;
    transition: color 0.2s ease;
}

.breadcrumbs__link:hover,
.breadcrumbs__link:focus-visible {
    color: var(--button-teal);
}

.breadcrumbs__current {
    display: inline-flex;
    min-width: 0;
    color: var(--deep);
    font-weight: 800;
}

.page-contacts .breadcrumbs-section,
.page-privacy .breadcrumbs-section {
    padding: clamp(36px, 4.4vw, 56px) 0 clamp(22px, 3vw, 34px);
}

.page-contacts .contacts-page-section {
    padding-top: clamp(30px, 3vw, 38px);
}

.page-privacy .legal-section {
    padding-top: clamp(34px, 4.2vw, 50px);
}

.page-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 440px);
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 42px;
    height: 1px;
    background: rgba(185, 144, 76, 0.48);
}

.eyebrow--section {
    margin-bottom: 12px;
}

.page-hero__title,
.section__title,
.site-footer h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--deep);
}

.page-hero__title {
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.02;
    max-width: none;
    text-wrap: balance;
}

.page-hero__lead,
.section__lead,
.story-grid p,
.content-card__text,
.compare-card__lead,
.journey-card__text,
.testimonial-card__quote,
.cta-panel p,
.site-footer p {
    color: var(--muted);
    line-height: 1.8;
}

.page-hero__lead {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: 18px;
}

.section__lead-link {
    color: var(--teal);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(85, 164, 181, 0.42);
}

.section__lead-link:hover,
.section__lead-link:focus-visible {
    color: var(--button-teal-dark);
    border-bottom-color: currentColor;
}

.page-hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.page-hero__actions .button,
.cta-panel__actions .button {
    min-width: 220px;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(24, 52, 66, 0.08);
    box-shadow: var(--shadow-soft);
    color: var(--deep);
    font-size: 13px;
}

.media-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 32px;
    border-radius: var(--radius-lg);
    color: #fff;
    box-shadow: var(--shadow);
    background: linear-gradient(160deg, rgba(18, 73, 82, 0.92), rgba(12, 32, 41, 0.92));
}

.media-card--zoomable,
.visual-tile--zoomable,
.gallery-tile--zoomable {
    cursor: zoom-in;
}

.media-card--zoomable:focus-visible,
.visual-tile--zoomable:focus-visible,
.gallery-tile--zoomable:focus-visible {
    outline: 2px solid rgba(185, 144, 76, 0.9);
    outline-offset: 4px;
}

.media-card__image,
.media-card__overlay {
    position: absolute;
    inset: 0;
}

.media-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: scale(1.02);
}

.media-card__overlay {
    background: transparent;
}

.media-card::before,
.media-card::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    opacity: 0.55;
}

.media-card::before {
    width: 280px;
    height: 280px;
    right: -40px;
    top: -30px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 68%);
}

.media-card::after {
    width: 420px;
    height: 420px;
    left: -90px;
    bottom: -110px;
    background: radial-gradient(circle, rgba(255, 214, 145, 0.4), transparent 70%);
}

.media-card--textless::before,
.media-card--textless::after {
    display: none;
}

.media-card--lagoon {
    background: linear-gradient(150deg, rgba(31, 120, 128, 0.95), rgba(9, 50, 63, 0.95));
}

.media-card--sunset {
    background: linear-gradient(150deg, rgba(180, 109, 59, 0.95), rgba(68, 42, 33, 0.95));
}

.media-card--reef {
    background: linear-gradient(150deg, rgba(19, 101, 113, 0.95), rgba(13, 48, 60, 0.95));
}

.media-card--villa {
    background: linear-gradient(150deg, rgba(140, 98, 57, 0.95), rgba(52, 34, 28, 0.95));
}

.media-card__eyebrow,
.content-card__eyebrow {
    display: inline-flex;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.media-card__eyebrow {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
}

.media-card__title {
    position: relative;
    z-index: 2;
    display: block;
    max-width: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    line-height: 0.96;
    text-wrap: balance;
}

.media-card__caption {
    position: absolute;
    right: 32px;
    bottom: 32px;
    z-index: 2;
    max-width: 220px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    text-align: right;
    line-height: 1.6;
}

.visual-tile,
.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 260px;
    background: linear-gradient(160deg, rgba(18, 73, 82, 0.92), rgba(12, 32, 41, 0.92));
    box-shadow: var(--shadow-soft);
}

.visual-tile__image,
.visual-tile__overlay,
.gallery-tile__image,
.gallery-tile__overlay {
    position: absolute;
    inset: 0;
}

.visual-tile__image,
.gallery-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transform: scale(1.04);
}

.visual-tile--zoomable:hover .visual-tile__image,
.gallery-tile--zoomable:hover .gallery-tile__image,
.media-card--zoomable:hover .media-card__image {
    transform: scale(1.08);
}

.visual-tile__overlay,
.gallery-tile__overlay {
    background: transparent;
}

.visual-tile__content,
.gallery-tile__content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 20px 20px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-tile__eyebrow,
.gallery-tile__eyebrow {
    display: inline-flex;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(6, 18, 23, 0.3);
}

.visual-tile__title,
.gallery-tile__title {
    display: block;
    max-width: 92%;
    font-size: 21px;
    line-height: 1.12;
    font-weight: 700;
    text-shadow: 0 2px 14px rgba(6, 18, 23, 0.34);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.visual-tile__caption,
.gallery-tile__caption {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.45;
    max-width: 94%;
    text-shadow: 0 1px 8px rgba(6, 18, 23, 0.28);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.visual-tile--sunset,
.gallery-tile--sunset {
    background: linear-gradient(150deg, rgba(180, 109, 59, 0.95), rgba(68, 42, 33, 0.95));
}

.visual-tile--reef,
.gallery-tile--reef {
    background: linear-gradient(150deg, rgba(19, 101, 113, 0.95), rgba(13, 48, 60, 0.95));
}

.visual-tile--villa,
.gallery-tile--villa {
    background: linear-gradient(150deg, rgba(140, 98, 57, 0.95), rgba(52, 34, 28, 0.95));
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.fact-card,
.content-card,
.compare-card,
.metric-card,
.journey-card,
.testimonial-card,
.contact-stack__item,
.lead-form,
.cta-panel,
.table-shell {
    background: var(--surface);
    border: 1px solid rgba(24, 52, 66, 0.08);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.fact-card {
    padding: 24px;
    border-radius: var(--radius-md);
}

.fact-card__label,
.metric-card__label {
    display: block;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.fact-card__value,
.metric-card__value {
    display: block;
    margin-top: 10px;
    font-size: 26px;
    font-weight: 800;
    color: var(--deep);
}

.fact-card__note,
.metric-card__note {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section {
    padding: 88px 0;
}

.section--surface,
.section--metrics {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
}

.section__title {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 0.98;
}

.section__lead {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: 17px;
}

.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 34px;
    align-items: start;
}

.story-grid__content p + p {
    margin-top: 16px;
}

.feature-list,
.mini-list,
.footer-list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.feature-list li,
.mini-list li {
    position: relative;
    padding-left: 24px;
    margin-top: 14px;
    color: var(--text);
    line-height: 1.7;
}

.feature-list li::before,
.mini-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e2c58a);
}

.card-grid,
.metrics-grid,
.journey-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.quiz-promo {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: 30px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 237, 0.96));
    border: 1px solid rgba(24, 52, 66, 0.08);
    box-shadow: 0 28px 68px rgba(16, 50, 64, 0.1);
}

.quiz-promo__expert {
    display: grid;
    gap: 14px;
    align-content: start;
}

.quiz-promo__portrait {
    position: relative;
    min-height: 318px;
    overflow: hidden;
    border-radius: 28px;
    background: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.quiz-promo__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quiz-promo__portrait::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: transparent;
}

.quiz-promo__portrait-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 68px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
}

.quiz-promo__expert-name {
    font-size: 26px;
    color: var(--deep);
}

.quiz-promo__expert-role {
    color: var(--muted);
}

.quiz-promo__content {
    display: grid;
    gap: 18px;
}

.quiz-promo__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.96;
}

.quiz-promo__lead {
    margin: 0;
    max-width: 880px;
    font-size: 20px;
    line-height: 1.55;
    color: var(--deep);
}

.quiz-promo__note {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.cta-expert {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.cta-expert__profile {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 18px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 245, 238, 0.96));
    border: 1px solid rgba(24, 52, 66, 0.08);
    box-shadow: 0 24px 56px rgba(16, 50, 64, 0.1);
}

.cta-expert__portrait {
    overflow: hidden;
    border-radius: 28px;
    min-height: 360px;
    background: rgba(24, 52, 66, 0.06);
}

.cta-expert__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-expert__portrait-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 360px;
    font-size: 68px;
    font-weight: 800;
    color: rgba(24, 52, 66, 0.4);
}

.cta-expert__name {
    font-size: 24px;
    color: var(--deep);
}

.cta-expert__role {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.cta-expert__panel {
    display: grid;
    gap: 20px;
    align-content: start;
    padding: 30px 36px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 237, 0.96));
    border: 1px solid rgba(24, 52, 66, 0.08);
    box-shadow: 0 28px 68px rgba(16, 50, 64, 0.1);
}

.cta-expert__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 60px);
    line-height: 0.98;
}

.cta-expert__lead,
.cta-expert__body p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--deep);
}

.cta-expert__body {
    display: grid;
    gap: 20px;
}

.cta-expert__actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.cta-expert__actions .button {
    min-width: 260px;
}

.button--quiz-open {
    min-width: 260px;
}

.villa-explorer-section {
    padding-top: clamp(1.5rem, 3vw, 2.75rem);
}

.villa-explorer {
    display: grid;
    gap: 1.75rem;
}

.villa-explorer__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
}

.villa-explorer__title {
    margin: 0.5rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.villa-explorer__lead {
    margin: 0.9rem 0 0;
    max-width: 42rem;
    color: var(--muted);
}

.villa-explorer__view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.villa-explorer__grid {
    display: grid;
    grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.villa-explorer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.25rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(231, 241, 244, 0.9), rgba(237, 245, 247, 0.82));
    box-shadow: 0 28px 60px rgba(12, 50, 56, 0.08);
}

.villa-explorer__nav-item {
    appearance: none;
    width: 100%;
    padding: 1.1rem 1.2rem;
    border-radius: 1.15rem;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(16, 49, 54, 0.88);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.villa-explorer__nav-item:hover,
.villa-explorer__nav-item:focus-visible {
    transform: translateX(4px);
    border-color: rgba(67, 156, 178, 0.18);
    background: rgba(255, 255, 255, 0.76);
}

.villa-explorer__nav-item--active {
    background: linear-gradient(135deg, #61acc0, #4d97ac);
    color: #fff;
    box-shadow: 0 18px 32px rgba(58, 133, 154, 0.24);
}

.villa-explorer__panels {
    min-width: 0;
}

.villa-explorer__panel {
    display: none;
    grid-template-columns: minmax(300px, 0.94fr) minmax(0, 1.2fr);
    gap: 1rem;
    align-items: stretch;
}

.villa-explorer__panel.villa-explorer__panel--active {
    display: grid;
}

.villa-explorer__copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(1.45rem, 2.4vw, 2rem);
    border: 1px solid rgba(18, 54, 59, 0.08);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 56px rgba(12, 50, 56, 0.08);
}

.villa-explorer__subtitle {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: #5ba5ba;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;
}

.villa-explorer__villa-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.96;
}

.villa-explorer__description {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.villa-explorer__features {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.villa-explorer__feature {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(18, 54, 59, 0.08);
}

.villa-explorer__feature:last-child {
    padding-bottom: 0;
}

.villa-explorer__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(91, 165, 186, 0.12);
    color: #274048;
    flex: 0 0 auto;
}

.villa-explorer__feature-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.villa-explorer__feature-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.villa-explorer__feature-copy strong {
    font-size: 1rem;
    color: var(--deep);
}

.villa-explorer__feature-copy span {
    color: var(--muted);
    font-size: 0.92rem;
}

.villa-explorer__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.6rem;
}

.villa-explorer__visual {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
}

.villa-explorer__main-image {
    position: relative;
    min-height: 27rem;
    border: 0;
    padding: 0;
    border-radius: 2rem;
    overflow: hidden;
    background: #d8ebe9;
    box-shadow: 0 30px 60px rgba(10, 40, 46, 0.12);
    cursor: zoom-in;
}

.villa-explorer__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.villa-explorer__main-badge {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(11, 22, 24, 0.34);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.villa-explorer__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 0.7rem;
}

.plan-explorer-section {
    padding-top: clamp(1.4rem, 3vw, 2.5rem);
}

.plan-explorer {
    display: grid;
    gap: 1.6rem;
}

.plan-explorer__header {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-end;
}

.plan-explorer__grid {
    display: grid;
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.plan-explorer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(242, 248, 249, 0.98), rgba(233, 243, 245, 0.92));
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 24px 56px rgba(12, 50, 56, 0.08);
}

.plan-explorer__nav-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    width: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 1.25rem;
    background: transparent;
    color: var(--deep);
    text-align: left;
    cursor: pointer;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.plan-explorer__nav-item:hover,
.plan-explorer__nav-item:focus-visible {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(68, 145, 166, 0.18);
}

.plan-explorer__nav-item--active {
    background: linear-gradient(135deg, #6aaec0, #4c95a8);
    color: #fff;
    box-shadow: 0 18px 34px rgba(61, 134, 152, 0.22);
}

.plan-explorer__nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 16px;
    background: rgba(92, 165, 186, 0.14);
    color: #1a4b54;
}

.plan-explorer__nav-item--active .plan-explorer__nav-icon {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.plan-explorer__nav-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.plan-explorer__nav-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.plan-explorer__nav-copy small {
    color: rgba(18, 54, 59, 0.56);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plan-explorer__nav-item--active .plan-explorer__nav-copy small {
    color: rgba(255, 255, 255, 0.72);
}

.plan-explorer__nav-copy strong {
    font-size: 1rem;
    line-height: 1.35;
}

.plan-explorer__panel {
    display: none;
}

.plan-explorer__panel.plan-explorer__panel--active {
    display: block;
}

.plan-explorer__panel-shell {
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 24px 56px rgba(12, 50, 56, 0.08);
}

.plan-explorer__panel-top {
    display: grid;
    gap: 0.9rem;
}

.plan-explorer__panel-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.plan-explorer__panel-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 56rem;
}

.plan-explorer__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.plan-explorer__group {
    padding: 1.2rem 1.2rem 1.1rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(248, 252, 252, 0.96), rgba(239, 247, 248, 0.92));
    border: 1px solid rgba(18, 54, 59, 0.07);
}

.plan-explorer__group-title {
    margin: 0 0 0.8rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--deep);
}

.plan-explorer__bullet-list {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.plan-explorer__group .plan-explorer__bullet-list {
    margin-top: 0;
}

.plan-explorer__bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--deep);
    line-height: 1.65;
}

.plan-explorer__bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #cfa85a, #e0c67c);
}

.plan-explorer__note {
    margin: 1rem 0 0;
    color: rgba(18, 54, 59, 0.74);
    font-size: 0.96rem;
    line-height: 1.6;
}

.plan-explorer__actions {
    margin-top: 1.5rem;
}

.knowledge-tabs-section {
    padding-top: clamp(1.6rem, 3vw, 2.6rem);
}

.knowledge-tabs {
    --knowledge-accent: #55A4B5;
    --knowledge-accent-hover: #4A96A6;
    --knowledge-accent-dark: #174F59;
    display: grid;
    gap: 1.4rem;
}

.knowledge-tabs__header .section__lead {
    max-width: 820px;
}

.knowledge-tabs__layout {
    display: grid;
    grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.knowledge-tabs__nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(242, 248, 249, 0.98), rgba(233, 243, 245, 0.92));
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 24px 56px rgba(12, 50, 56, 0.08);
}

.knowledge-tabs__nav-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    width: 100%;
    padding: 1rem 1.05rem;
    border: 1px solid transparent;
    border-radius: 1.25rem;
    background: transparent;
    color: var(--deep);
    text-align: left;
    cursor: pointer;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.knowledge-tabs__nav-item:hover,
.knowledge-tabs__nav-item:focus-visible {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(85, 164, 181, 0.24);
}

.knowledge-tabs__nav-item--active {
    background: var(--knowledge-accent);
    color: #fff;
    box-shadow: 0 18px 34px rgba(85, 164, 181, 0.22);
}

.knowledge-tabs__nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 16px;
    color: var(--knowledge-accent-dark);
    background: rgba(85, 164, 181, 0.14);
}

.knowledge-tabs__nav-item--active .knowledge-tabs__nav-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.knowledge-tabs__nav-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.knowledge-tabs__nav-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.knowledge-tabs__nav-copy small {
    color: rgba(18, 54, 59, 0.56);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.knowledge-tabs__nav-item--active .knowledge-tabs__nav-copy small {
    color: rgba(255, 255, 255, 0.72);
}

.knowledge-tabs__nav-label {
    min-width: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.knowledge-tabs__panels {
    min-width: 0;
}

.knowledge-tabs__panel {
    display: none;
}

.knowledge-tabs__panel--active {
    display: block;
}

.knowledge-tabs__panel-inner {
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 24px 56px rgba(12, 50, 56, 0.08);
}

.knowledge-tabs__panel-top {
    display: grid;
    gap: 0.9rem;
}

.knowledge-tabs__panel-title {
    margin: 0;
    color: var(--deep);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.knowledge-tabs__paragraphs {
    display: grid;
    gap: 0.9rem;
}

.knowledge-tabs__paragraphs p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 56rem;
}

.knowledge-tabs__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.knowledge-tabs__groups--single {
    grid-template-columns: 1fr;
}

.knowledge-tabs__group {
    padding: 1.2rem 1.2rem 1.1rem;
    border-radius: 1.45rem;
    background: linear-gradient(180deg, rgba(248, 252, 252, 0.96), rgba(239, 247, 248, 0.92));
    border: 1px solid rgba(18, 54, 59, 0.07);
}

.knowledge-tabs__groups--single .knowledge-tabs__group {
    width: 100%;
}

.knowledge-tabs__group-title {
    margin: 0 0 0.8rem;
    color: var(--deep);
    font-size: 1rem;
    font-weight: 800;
}

.knowledge-tabs__bullet-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.knowledge-tabs__groups--single .knowledge-tabs__bullet-list {
    max-width: 58rem;
}

.knowledge-tabs__bullet-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--deep);
    line-height: 1.65;
}

.knowledge-tabs__bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #cfa85a, #e0c67c);
}

.knowledge-tabs__note {
    margin: 1rem 0 0;
    color: rgba(18, 54, 59, 0.74);
    font-size: 0.96rem;
    line-height: 1.6;
}

.knowledge-tabs__cta {
    display: grid;
    gap: 1rem;
    justify-items: start;
    margin-top: 1.6rem;
}

.knowledge-tabs__cta-note {
    margin: 0;
    color: #526d7a;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
}

.knowledge-tabs__cta-button {
    min-width: 190px;
    min-height: 50px;
    padding-inline: 1.75rem;
    border: 1px solid var(--button-teal);
    border-radius: 5px;
    background: var(--button-teal);
    color: #fff;
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.knowledge-tabs__cta-button:hover,
.knowledge-tabs__cta-button:focus-visible {
    background: var(--button-teal-hover);
    border-color: var(--button-teal-hover);
    box-shadow: none;
}

.booking-benefits-section {
    padding-top: clamp(1.3rem, 2.4vw, 2.2rem);
}

.booking-benefits {
    display: grid;
    gap: clamp(1.25rem, 2.4vw, 1.8rem);
}

.booking-benefits__header {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(280px, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: end;
}

.booking-benefits__header .section__lead {
    max-width: 720px;
}

.booking-benefits__note {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.booking-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.booking-benefit-card {
    position: relative;
    isolation: isolate;
    min-width: 0;
    padding: clamp(1.15rem, 2.2vw, 1.55rem);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 250, 0.94));
    border: 1px solid rgba(18, 54, 69, 0.09);
    box-shadow: 0 18px 42px rgba(16, 50, 64, 0.08);
    overflow: hidden;
}

.booking-benefit-card__number {
    position: absolute;
    top: 0.75rem;
    right: clamp(1rem, 2vw, 1.35rem);
    color: #C6954C;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.2vw, 4.4rem);
    font-weight: 400;
    line-height: 0.9;
    pointer-events: none;
    z-index: 0;
}

.booking-benefit-card__head {
    display: grid;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}

.booking-benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--teal);
    background: rgba(29, 109, 115, 0.1);
}

.booking-benefit-card__icon svg {
    width: 24px;
    height: 24px;
}

.booking-benefit-card__title {
    margin: 0;
    color: var(--deep);
    font-family: var(--font-display);
    font-size: clamp(1.28rem, 1.8vw, 1.55rem);
    line-height: 1.16;
}

.booking-benefit-card__text {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.72;
}

.booking-benefit-card__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.booking-benefit-card__list li {
    position: relative;
    min-width: 0;
    padding-left: 1.25rem;
    color: var(--deep);
    font-weight: 700;
    line-height: 1.55;
}

.booking-benefit-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.63rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--gold);
}

.booking-benefit-card--payment {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    padding-bottom: clamp(3.25rem, 4.5vw, 4rem);
    background:
        linear-gradient(135deg, rgba(38, 118, 132, 0.98), rgba(85, 164, 181, 0.94));
}

.booking-benefit-card--payment .booking-benefit-card__number {
    top: auto;
    right: clamp(0.75rem, 1.7vw, 1.2rem);
    bottom: clamp(0.35rem, 0.8vw, 0.65rem);
    color: rgba(255, 255, 255, 0.18);
    font-weight: 700;
}

.booking-benefit-card--payment .booking-benefit-card__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.booking-benefit-card--payment .booking-benefit-card__title,
.booking-benefit-card--payment .booking-benefit-card__text,
.booking-benefit-card--payment .booking-benefit-card__list li {
    color: #fff;
}

.booking-benefit-card--payment .booking-benefit-card__text {
    color: rgba(255, 255, 255, 0.82);
}

.booking-benefit-card--payment .booking-benefit-card__list li::before {
    background: #e0c67c;
}

.price-range-section {
    padding-top: clamp(1.4rem, 2.4vw, 2.2rem);
    padding-bottom: clamp(1.2rem, 2vw, 1.8rem);
}

.price-range-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: clamp(1.1rem, 3vw, 2rem);
    align-items: center;
    padding: clamp(1.35rem, 3vw, 2rem);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 249, 0.94)),
        radial-gradient(circle at 92% 12%, rgba(185, 144, 76, 0.16), transparent 34%);
    border: 1px solid rgba(18, 54, 69, 0.08);
    box-shadow: 0 22px 54px rgba(16, 50, 64, 0.09);
}

.price-range-card__copy {
    min-width: 0;
}

.price-range-card__title {
    margin: 0.45rem 0 0;
    max-width: 720px;
    color: #55a4b5;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.08;
}

.price-range-card__note {
    margin: 0.9rem 0 0;
    max-width: 660px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.55;
}

.price-range-card__panel {
    display: grid;
    gap: 0.85rem;
    justify-items: start;
    padding: clamp(1rem, 2vw, 1.35rem);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(185, 144, 76, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.price-range-card__value {
    color: #55a4b5;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1.05;
}

.price-range-card__season {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.5;
}

.price-range-card__action {
    margin-top: 0.25rem;
}

.popular-amenities-section {
    padding-top: clamp(1.4rem, 2.4vw, 2.2rem);
}

.popular-amenities {
    display: grid;
    gap: 1.25rem;
}

.popular-amenities__head .section__lead {
    max-width: 760px;
}

.popular-amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.popular-amenities__category {
    min-width: 0;
    padding: 1.35rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 54, 69, 0.08);
    box-shadow: 0 18px 42px rgba(16, 50, 64, 0.08);
}

.popular-amenities__category-title {
    margin: 0 0 1rem;
    color: var(--deep);
    font-size: 1.08rem;
    line-height: 1.25;
}

.popular-amenities__list,
.amenities-modal__list {
    display: grid;
    gap: 0.78rem 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.popular-amenities__list li,
.amenities-modal__list li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 0.6rem;
    align-items: start;
    min-width: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.45;
}

.amenities-line-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: rgba(16, 50, 64, 0.78);
}

.amenities-line-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.popular-amenities__more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--deep);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(185, 144, 76, 0.65);
    text-underline-offset: 3px;
    cursor: pointer;
}

.popular-amenities__more svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.popular-amenities__more:hover svg,
.popular-amenities__more:focus-visible svg {
    transform: translateY(2px);
}

.restaurant-cards-section {
    padding-top: clamp(1.25rem, 2.2vw, 2rem);
}

.restaurant-cards {
    display: grid;
    gap: 1.25rem;
}

.restaurant-cards__head .section__lead {
    max-width: 840px;
}

.restaurant-cards__eyebrow-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.restaurant-cards__eyebrow-row .eyebrow--section {
    margin-bottom: 0;
}

.restaurant-cards__eyebrow-suffix {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.restaurant-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.restaurant-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 250, 0.94));
    border: 1px solid rgba(18, 54, 69, 0.08);
    box-shadow: 0 18px 42px rgba(16, 50, 64, 0.08);
}

.restaurant-card:first-child {
    grid-column: span 2;
}

.restaurant-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-card__number {
    color: #C6954C;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 0.9;
}

.restaurant-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--button-teal-dark);
    background: rgba(85, 164, 181, 0.12);
}

.restaurant-card__icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.restaurant-card__title {
    margin: 0;
    color: var(--deep);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.05;
}

.restaurant-card__description {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.restaurant-card__details {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.restaurant-card__detail {
    display: grid;
    gap: 0.2rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(18, 54, 69, 0.08);
}

.restaurant-card__detail:first-child {
    padding-top: 0;
    border-top: 0;
}

.restaurant-card__detail dt {
    color: rgba(18, 54, 69, 0.58);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.restaurant-card__detail dd {
    margin: 0;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.5;
}

.restaurant-cards__source {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.restaurant-cards__source span {
    font-weight: 700;
}

.restaurant-cards__source a {
    color: var(--button-teal-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.island-map-section {
    padding-top: clamp(2.5rem, 4vw, 4.5rem);
    background:
        linear-gradient(180deg, rgba(85, 164, 181, 0.08), rgba(255, 255, 255, 0) 44%);
}

.island-map {
    display: grid;
    gap: 1.4rem;
}

.island-map__head .section__lead {
    max-width: 860px;
}

.island-map__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    gap: 1.25rem;
    align-items: stretch;
}

.island-map__visual,
.island-map__content,
.island-map__group,
.island-map__legend-card {
    border: 1px solid rgba(18, 54, 69, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(16, 50, 64, 0.08);
}

.island-map__visual {
    position: relative;
    display: grid;
    gap: 0.9rem;
    min-height: 100%;
    margin: 0;
    padding: clamp(1rem, 2.4vw, 1.5rem);
}

.island-map__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 920px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
}

.island-map__lagoon {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, rgba(169, 229, 233, 0.82), rgba(85, 164, 181, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.island-map__island {
    position: absolute;
    left: 22%;
    top: 8%;
    width: 58%;
    height: 78%;
    border-radius: 48% 52% 54% 46% / 52% 44% 56% 48%;
    background:
        radial-gradient(circle at 46% 35%, rgba(246, 239, 215, 0.94) 0 17%, transparent 18%),
        radial-gradient(circle at 60% 54%, rgba(246, 239, 215, 0.9) 0 18%, transparent 19%),
        radial-gradient(circle at 48% 44%, rgba(28, 115, 91, 0.66), rgba(36, 136, 103, 0.82) 42%, rgba(231, 213, 172, 0.92) 43%, rgba(231, 213, 172, 0.92) 51%, transparent 52%);
    transform: rotate(-18deg);
    filter: drop-shadow(0 24px 32px rgba(10, 65, 70, 0.18));
}

.island-map__reef {
    position: absolute;
    border: 1px dashed rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    opacity: 0.78;
    pointer-events: none;
}

.island-map__reef--one {
    left: 15%;
    top: 5%;
    width: 70%;
    height: 88%;
    transform: rotate(-15deg);
}

.island-map__reef--two {
    left: 28%;
    top: 14%;
    width: 42%;
    height: 63%;
    transform: rotate(-16deg);
}

.island-map__marker,
.island-map__shuttle-marker {
    position: absolute;
    left: var(--x);
    top: var(--y);
    z-index: 2;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(7, 35, 44, 0.2);
    font-weight: 800;
    line-height: 1;
}

.island-map__marker {
    width: 29px;
    height: 29px;
    color: #ffffff;
    background: var(--button-teal-dark);
    font-size: 0.72rem;
}

.island-map__marker--dining {
    background: #C6954C;
}

.island-map__marker--activities {
    background: #1d6d73;
}

.island-map__marker--wellness {
    background: #8e6da8;
}

.island-map__marker--viewpoints {
    background: #174f59;
}

.island-map__marker--residence {
    background: #7a5233;
}

.island-map__shuttle-marker {
    width: 22px;
    height: 22px;
    color: var(--deep);
    background: #ffffff;
    font-size: 0.66rem;
}

.island-map__compass {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 18px);
    grid-template-rows: repeat(3, 18px);
    place-items: center;
    color: rgba(16, 50, 64, 0.7);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.island-map__compass span:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
}

.island-map__compass span:nth-child(2) {
    grid-column: 3;
    grid-row: 2;
}

.island-map__compass span:nth-child(3) {
    grid-column: 2;
    grid-row: 3;
}

.island-map__compass span:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.island-map__visual-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.island-map__content {
    display: grid;
    gap: 1rem;
    padding: clamp(1rem, 2.4vw, 1.25rem);
}

.island-map__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.island-map__group {
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 250, 0.9));
    box-shadow: none;
}

.island-map__group-title,
.island-map__legend-title {
    margin: 0;
    color: var(--deep);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
}

.island-map__point-list {
    display: grid;
    gap: 0.55rem;
    margin: 0.8rem 0 0;
    padding: 0;
    list-style: none;
}

.island-map__point-list li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.38;
}

.island-map__point-number {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--button-teal-dark);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.island-map__legend-card {
    padding: 1rem;
    background: rgba(244, 250, 250, 0.92);
    box-shadow: none;
}

.island-map__legend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.85rem;
}

.island-map__legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 32px;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-size: 0.82rem;
    line-height: 1.25;
}

.island-map__legend-dot {
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--button-teal-dark);
}

.island-map__legend-dot--beach {
    background: #e7c879;
}

.island-map__legend-dot--beach-pool {
    background: #d99c54;
}

.island-map__legend-dot--family {
    background: #74bd93;
}

.island-map__legend-dot--family-pool {
    background: #299b79;
}

.island-map__legend-dot--water {
    background: #55a4b5;
}

.island-map__legend-dot--water-pool {
    background: #2f8397;
}

.island-map__legend-dot--deluxe {
    background: #174f59;
}

.island-map__legend-dot--residence {
    background: #7a5233;
}

.island-map__legend-dot--shuttle {
    background: #ffffff;
    border: 2px solid var(--button-teal-dark);
}

@media (max-width: 1080px) {
    .island-map__layout {
        grid-template-columns: 1fr;
    }

    .island-map__lagoon {
        min-height: 520px;
    }
}

@media (max-width: 760px) {
    .island-map-section {
        padding-top: 3rem;
    }

    .island-map__visual,
    .island-map__content,
    .island-map__group,
    .island-map__legend-card {
        border-radius: 8px;
    }

    .island-map__lagoon {
        min-height: 430px;
    }

    .island-map__groups {
        grid-template-columns: 1fr;
    }

    .island-map__marker {
        width: 25px;
        height: 25px;
        font-size: 0.66rem;
    }

    .island-map__shuttle-marker {
        width: 19px;
        height: 19px;
        font-size: 0.58rem;
    }

    .island-map__compass {
        top: 14px;
        right: 14px;
    }
}

@media (max-width: 520px) {
    .island-map__lagoon {
        min-height: 380px;
    }

    .island-map__visual {
        padding: 0.8rem;
    }

    .island-map__legend-list {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.amenities-modal[hidden] {
    display: none;
}

.amenities-modal {
    position: fixed;
    inset: 0;
    z-index: 96;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.amenities-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 24, 0.72);
    backdrop-filter: blur(10px);
}

.amenities-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(720px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    overflow: hidden;
    padding: 2rem 2.15rem 0;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(18, 54, 69, 0.08);
    box-shadow: 0 30px 96px rgba(6, 18, 23, 0.28);
}

.amenities-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--deep);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.amenities-modal__close:hover,
.amenities-modal__close:focus-visible {
    background: rgba(16, 50, 64, 0.08);
}

.amenities-modal__title {
    margin: 0 2.5rem 0.75rem 0;
    color: var(--deep);
    font-size: clamp(1.9rem, 4vw, 2.45rem);
    line-height: 1.05;
}

.amenities-modal__tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.35rem;
    overflow-x: auto;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(16, 50, 64, 0.12);
}

.amenities-modal__tab {
    flex: 0 0 auto;
    padding: 0 0 0.55rem;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: var(--deep);
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.amenities-modal__tab--active {
    border-bottom-color: var(--deep);
}

.amenities-modal__scroll {
    min-height: 0;
    max-height: calc(100vh - 190px);
    overflow-y: auto;
    padding: 1.35rem 0 2rem;
    scrollbar-color: rgba(16, 50, 64, 0.45) transparent;
    scrollbar-width: thin;
}

.amenities-modal__scroll::-webkit-scrollbar {
    width: 10px;
}

.amenities-modal__scroll::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(16, 50, 64, 0.42);
}

.amenities-modal__panel {
    display: none;
}

.amenities-modal__panel--active {
    display: block;
}

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

.stay-conditions-section {
    padding-top: clamp(1.4rem, 2.4vw, 2.2rem);
}

.stay-conditions {
    display: grid;
    gap: 1.25rem;
}

.stay-conditions__head .section__lead {
    max-width: 920px;
}

.stay-conditions__card {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 69, 0.1);
    box-shadow: 0 22px 54px rgba(16, 50, 64, 0.08);
}

.stay-conditions__notes {
    margin-top: 0.35rem;
}

.stay-conditions-note {
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 69, 0.1);
    box-shadow: 0 18px 46px rgba(16, 50, 64, 0.07);
}

.stay-conditions-note__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 66px;
    padding: 1rem clamp(1.1rem, 2.8vw, 1.8rem);
    color: var(--deep);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.35;
    list-style: none;
}

.stay-conditions-note__summary::-webkit-details-marker {
    display: none;
}

.stay-conditions-note__toggle {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(87, 166, 181, 0.12);
    border: 1px solid rgba(87, 166, 181, 0.16);
    box-shadow: 0 10px 24px rgba(16, 50, 64, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.stay-conditions-note__toggle::before,
.stay-conditions-note__toggle::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--teal-dark);
    content: "";
    transform: translate(-50%, -50%);
}

.stay-conditions-note__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.stay-conditions-note[open] .stay-conditions-note__toggle {
    background: rgba(194, 142, 62, 0.16);
    border-color: rgba(194, 142, 62, 0.22);
    box-shadow: 0 12px 26px rgba(194, 142, 62, 0.12);
}

.stay-conditions-note[open] .stay-conditions-note__toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.stay-conditions-note__content {
    display: grid;
    gap: clamp(1.45rem, 3vw, 2.1rem);
    padding: clamp(1.05rem, 2.5vw, 1.55rem) clamp(1.1rem, 2.8vw, 1.8rem) clamp(1.2rem, 2.8vw, 1.8rem);
    border-top: 1px solid rgba(18, 54, 69, 0.1);
}

.stay-conditions-note__intro,
.stay-conditions-note__section {
    display: grid;
    gap: 0.82rem;
    max-width: 980px;
}

.stay-conditions-note__section + .stay-conditions-note__section {
    margin-top: 0.15rem;
}

.stay-conditions-note__section h3 {
    margin: 0;
    color: var(--deep);
    font-size: clamp(1.05rem, 1.9vw, 1.22rem);
    line-height: 1.3;
}

.stay-conditions-note__content p {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.62;
}

.stay-conditions-note__content p.stay-conditions-note__subhead {
    margin-top: clamp(1.15rem, 2.4vw, 1.75rem);
    color: var(--deep);
    font-weight: 700;
    line-height: 1.36;
}

.stay-conditions-note__section h3 + p.stay-conditions-note__subhead,
.stay-conditions-note__section > p.stay-conditions-note__subhead:first-of-type {
    margin-top: 0.25rem;
}

.stay-conditions-note__list {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.58;
}

.stay-condition {
    display: grid;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    gap: clamp(1rem, 3vw, 2.2rem);
    padding: clamp(1.1rem, 2.4vw, 1.55rem) clamp(1.1rem, 2.8vw, 1.8rem);
    border-top: 1px solid rgba(18, 54, 69, 0.1);
}

.stay-condition:first-child {
    border-top: 0;
}

.stay-condition__label {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    min-width: 0;
}

.stay-condition__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: var(--deep);
}

.stay-condition__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.stay-condition__label h3 {
    margin: 0;
    color: var(--deep);
    font-size: 1.02rem;
    line-height: 1.35;
}

.stay-condition__body {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
    color: var(--text);
}

.stay-condition__value {
    display: block;
    color: var(--deep);
    font-size: 1rem;
    line-height: 1.45;
}

.stay-condition__body p {
    margin: 0;
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.55;
}

.stay-condition__group {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.35rem;
}

.stay-condition__group h4 {
    margin: 0;
    color: var(--deep);
    font-size: 1.02rem;
    line-height: 1.35;
}

.guest-reviews-section {
    padding-top: clamp(1.4rem, 2.4vw, 2.2rem);
}

.guest-reviews {
    display: grid;
    gap: 1.2rem;
}

.guest-reviews__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.guest-reviews__title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 0.35rem;
}

.guest-reviews__title {
    margin: 0;
    color: var(--deep);
    font-size: clamp(1.75rem, 3.2vw, 2.6rem);
    line-height: 1.05;
}

.guest-reviews__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    min-height: 2.3rem;
    padding: 0.25rem 0.55rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(87, 166, 181, 0.98), rgba(66, 143, 157, 0.98));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(66, 143, 157, 0.22);
}

.guest-reviews__controls {
    display: inline-flex;
    gap: 0.55rem;
    padding-top: 0.4rem;
}

.guest-reviews__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(18, 54, 69, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--deep);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(16, 50, 64, 0.1);
}

.guest-reviews__categories-title,
.guest-reviews__subtitle {
    margin: 0;
    color: var(--deep);
    font-size: 1rem;
    font-weight: 900;
}

.guest-reviews__categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem 1.6rem;
}

.guest-reviews__category {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.guest-reviews__category-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    color: var(--deep);
    font-size: 0.95rem;
    font-weight: 800;
}

.guest-reviews__track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(16, 50, 64, 0.08);
}

.guest-reviews__track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(87, 166, 181, 0.95), rgba(185, 144, 76, 0.9));
}

.guest-reviews__carousel {
    position: relative;
    min-width: 0;
}

.guest-reviews__track-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 360px);
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.15rem 0.2rem 0.8rem;
    scroll-snap-type: x proximity;
    scrollbar-color: rgba(16, 50, 64, 0.28) transparent;
    scrollbar-width: thin;
}

.guest-review-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 1.05rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 69, 0.12);
    box-shadow: 0 16px 34px rgba(16, 50, 64, 0.08);
    scroll-snap-align: start;
}

.guest-review-card__person {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.9rem;
}

.guest-review-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(87, 166, 181, 0.96), rgba(185, 144, 76, 0.92));
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(66, 143, 157, 0.18);
}

.guest-review-card__person h3 {
    margin: 0;
    color: var(--deep);
    font-size: 1rem;
    line-height: 1.25;
}

.guest-review-card__person span:not(.guest-review-card__avatar) {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.guest-review-card__title {
    margin: 0 0 0.55rem;
    color: var(--deep);
    font-size: 1rem;
    line-height: 1.3;
}

.guest-review-card__quote {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guest-review-card--expanded .guest-review-card__quote {
    display: block;
    overflow: visible;
}

.guest-review-card__more {
    align-self: flex-start;
    margin-top: auto;
    padding: 0.9rem 0 0;
    border: 0;
    background: transparent;
    color: rgb(51, 123, 136);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(185, 144, 76, 0.72);
    text-underline-offset: 3px;
    cursor: pointer;
}

.team-experts-section {
    padding-top: clamp(1.5rem, 2.6vw, 2.4rem);
}

.team-experts {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
    gap: clamp(1.2rem, 3vw, 2.2rem);
    align-items: center;
}

.team-experts__photo {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #dfe8eb;
    border: 1px solid rgba(18, 54, 69, 0.1);
    box-shadow: 0 22px 54px rgba(16, 50, 64, 0.1);
}

.team-experts__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-experts__photo figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: rgba(16, 50, 64, 0.76);
    color: #fff;
    font-weight: 800;
    line-height: 1.35;
    backdrop-filter: blur(12px);
}

.team-experts__content {
    display: grid;
    gap: 1.25rem;
    min-width: 0;
}

.team-experts__head .section__lead {
    max-width: 700px;
}

.team-experts__list {
    display: grid;
    gap: 0.9rem;
}

.team-expert-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-width: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 69, 0.1);
    box-shadow: 0 16px 34px rgba(16, 50, 64, 0.08);
}

.team-expert-card__name {
    margin: 0;
    color: var(--deep);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.2;
}

.team-expert-card__role {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.team-expert-card__experience {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    background: rgba(29, 109, 115, 0.1);
    color: var(--deep);
    font-weight: 900;
    white-space: nowrap;
}

.team-contact-card {
    display: grid;
    gap: 0.95rem;
    padding: clamp(1rem, 2vw, 1.25rem);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 247, 245, 0.82));
    border: 1px solid rgba(18, 54, 69, 0.1);
    box-shadow: 0 18px 38px rgba(16, 50, 64, 0.09);
}

.team-contact-card__headline {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem 0.55rem;
    align-items: baseline;
    margin: 0;
    color: var(--deep);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.22;
    font-weight: 900;
    white-space: nowrap;
}

.team-contact-card__phone {
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
}

.team-contact-card__phone:hover,
.team-contact-card__phone:focus-visible {
    color: var(--deep);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.team-contact-card__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 0.9rem;
    align-items: center;
}

.team-contact-card__messenger-label {
    color: var(--deep);
    font-weight: 800;
}

.team-contact-card__messenger-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.team-contact-card__messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(16, 50, 64, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-contact-card__messenger:hover,
.team-contact-card__messenger:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(16, 50, 64, 0.2);
}

.team-contact-card__messenger--telegram {
    background: #2ba7df;
}

.team-contact-card__messenger--whatsapp {
    background: #1fc45a;
}

.team-contact-card__messenger--max {
    background: #4664f2;
}

.villa-details {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: start;
}

.villa-details__content {
    padding: 34px 36px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 24px 56px rgba(9, 32, 40, 0.08);
}

.villa-details__content p + p {
    margin-top: 16px;
}

.villa-details__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.villa-details__stat {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(245, 250, 250, 0.95), rgba(233, 244, 245, 0.88));
    border: 1px solid rgba(18, 54, 59, 0.08);
}

.villa-details__stat-icon,
.amenity-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
    background: rgba(93, 163, 184, 0.14);
    color: #16434a;
}

.villa-details__stat-icon svg,
.amenity-card__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.villa-details__stat-copy strong,
.amenity-card__copy strong {
    display: block;
    font-size: 16px;
    line-height: 1.25;
}

.villa-details__stat-copy span,
.amenity-card__copy span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    line-height: 1.6;
}

.villa-details__stat-copy small {
    display: block;
    margin-top: 6px;
    color: rgba(18, 54, 59, 0.72);
    line-height: 1.5;
    font-size: 13px;
}

.villa-details__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.villa-visual {
    min-height: 520px;
    border-radius: 30px;
    box-shadow: 0 28px 62px rgba(9, 32, 40, 0.16);
}

.villa-visual__content {
    padding: 18px 22px 22px;
}

.villa-visual__title {
    max-width: 320px;
}

.villa-details__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.villa-detail-thumb {
    min-height: 160px;
    border-radius: 22px;
}

.villa-detail-thumb__content {
    padding: 10px 14px 14px;
}

.villa-detail-thumb__title,
.villa-detail-thumb__caption {
    display: none;
}

.page-villa-detail .villa-detail-thumb__eyebrow {
    display: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.amenity-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 18px 42px rgba(9, 32, 40, 0.07);
}

.other-villas__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.other-villas__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #153d44;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
}

.other-villas-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 32px;
}

.other-villa-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 54, 59, 0.08);
    box-shadow: 0 24px 56px rgba(9, 32, 40, 0.08);
}

.other-villa-card__visual {
    margin: 0;
}

.other-villa-tile {
    min-height: 250px;
    border-radius: 28px 28px 0 0;
}

.other-villa-tile__caption {
    max-width: 220px;
}

.other-villa-card__body {
    padding: 22px 22px 24px;
}

.other-villa-card__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--deep);
}

.other-villa-card__text {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.other-villa-card__actions {
    margin-top: 18px;
}

.other-villas-section {
    overflow: hidden;
}

.other-villas {
    display: grid;
    gap: 34px;
}

.other-villas__header {
    align-items: center;
}

.other-villas__title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: none;
}

.other-villas__view-all {
    font-size: 15px;
    letter-spacing: 0.16em;
    color: #0f2735;
}

.other-villas__view-all::after {
    content: '>';
    font-size: 22px;
    transform: translateY(-1px);
}

.other-villas__carousel {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 18px;
    align-items: center;
}

.other-villas__viewport {
    overflow: hidden;
}

.other-villas__track {
    display: flex;
    gap: 34px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.other-villas__carousel--all {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 18px;
    align-items: center;
}

.other-villas__carousel--all .other-villas__arrow {
    display: grid;
}

.other-villas__carousel--all .other-villas__viewport {
    overflow: hidden;
}

.other-villas__track--all {
    display: flex;
    gap: 34px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.other-villas__track--all .other-villa-card {
    flex: 0 0 calc((100% - 68px) / 3);
}

.other-villas__arrow {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #58656d;
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.other-villas__arrow:hover,
.other-villas__arrow:focus-visible {
    color: #173845;
    transform: scale(1.04);
}

.other-villas__arrow[disabled] {
    opacity: 0.28;
    cursor: default;
    transform: none;
}

.other-villas__arrow span {
    display: block;
    transform: translateY(-2px);
}

.other-villa-card {
    flex: 0 0 calc((100% - 68px) / 3);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.other-villa-card__image-link {
    display: block;
    border-radius: 18px;
    overflow: hidden;
}

.other-villa-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 1.48 / 0.92;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.other-villa-card__image-link:hover .other-villa-card__image,
.other-villa-card__image-link:focus-visible .other-villa-card__image {
    transform: scale(1.03);
}

.other-villa-card__body {
    padding: 32px 0 0;
}

.other-villa-card__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--deep);
    text-transform: none;
}

.other-villa-card__actions {
    margin-top: 28px;
}

.other-villa-card__button {
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 30px;
    border-radius: 5px;
    border: 1px solid var(--button-teal);
    color: var(--button-teal-dark);
    background: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.other-villa-card__button::after {
    content: "\2197";
    font-size: 1.05em;
    line-height: 1;
}

.other-villa-card__button:hover,
.other-villa-card__button:focus-visible {
    color: var(--button-teal-hover);
    background: rgba(85, 164, 181, 0.08);
    border-color: var(--button-teal-hover);
    transform: translateY(-1px);
}

.page-villa-detail .page-hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.98fr);
    gap: 34px;
}

.page-villa-detail .page-hero {
    padding: 68px 0 42px;
}

.page-villa-detail .page-hero__content {
    padding: 34px 36px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 24px 54px rgba(11, 41, 51, 0.1);
    backdrop-filter: blur(18px);
}

.page-villa-detail .page-hero__lead {
    max-width: 58ch;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.75;
}

.page-villa-detail .page-hero .media-card {
    min-height: 520px;
    border-radius: 32px;
}

.page-villa-detail .page-hero__actions {
    margin-top: 24px;
}

.page-villa-detail .chip-row {
    margin-top: 22px;
}

.page-villa-detail .section {
    padding: 72px 0;
}

.page-villa-detail .page-hero + .section {
    padding-top: 54px;
}

.page-villa-detail .section__title {
    max-width: none;
    font-size: clamp(30px, 2.7vw, 42px);
    line-height: 1.05;
}

.page-villa-detail .section__lead {
    max-width: 70ch;
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.72;
}

.page-villa-detail .villa-details {
    gap: 34px;
    align-items: stretch;
}

.page-villa-detail .villa-details__content {
    padding: 36px;
    border-radius: 32px;
    box-shadow: 0 24px 56px rgba(11, 41, 51, 0.1);
}

.page-villa-detail .villa-details__stats {
    gap: 16px;
}

.page-villa-detail .villa-details__stat {
    min-height: 126px;
    border-radius: 24px;
}

.page-villa-detail .villa-details__visual {
    gap: 12px;
}

.page-villa-detail .villa-visual {
    min-height: 0;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 58px rgba(11, 41, 51, 0.12);
}

.page-villa-detail .villa-visual__image {
    display: block;
    width: 100%;
    height: clamp(280px, 24vw, 340px);
    object-fit: cover;
    transform: none;
    transition: transform 0.35s ease;
}

.page-villa-detail .villa-visual--zoomable:hover .villa-visual__image {
    transform: scale(1.025);
}

.page-villa-detail .villa-visual__overlay,
.page-villa-detail .villa-visual__content {
    display: none;
}

.page-villa-detail .villa-details__gallery {
    gap: 14px;
    margin-top: 0;
}

.page-villa-detail .villa-detail-thumb {
    min-height: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 16px 34px rgba(11, 41, 51, 0.08);
}

.page-villa-detail .villa-detail-thumb__image {
    display: block;
    width: 100%;
    height: clamp(98px, 8vw, 122px);
    object-fit: cover;
    transform: none;
    transition: transform 0.25s ease;
}

.page-villa-detail .villa-detail-thumb--zoomable:hover .villa-detail-thumb__image {
    transform: scale(1.04);
}

.page-villa-detail .villa-detail-thumb__overlay,
.page-villa-detail .villa-detail-thumb__content {
    display: none;
}

.page-villa-detail .amenities-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.page-villa-detail .amenity-card {
    min-height: 0;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(11, 41, 51, 0.06);
}

.page-villa-detail .amenity-card__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    border-radius: 10px;
}

.page-villa-detail .amenity-card__icon svg {
    width: 16px;
    height: 16px;
}

.page-villa-detail .amenity-card__copy strong {
    font-size: 14px;
    line-height: 1.2;
}

.page-villa-detail .amenity-card__copy span {
    display: none;
}

.page-villa-detail .card-grid {
    gap: 24px;
    align-items: stretch;
}

.page-villa-detail .content-card {
    padding: 26px;
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(11, 41, 51, 0.09);
}

.page-villa-detail .content-card__visual {
    margin: -26px -26px 18px;
}

.page-villa-detail .content-card__visual .visual-tile {
    min-height: 238px;
    border-radius: 28px 28px 18px 18px;
}

.page-villa-detail .content-card__title {
    font-size: 22px;
    line-height: 1.18;
}

.page-villa-detail .content-card__text {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.page-villa-detail .mini-list {
    margin-top: 16px;
}

.page-villa-detail .mini-list li {
    font-size: 15px;
}

.page-villa-detail .other-villas {
    gap: 28px;
}

.page-villa-detail .other-villas__track--all {
    gap: 26px;
}

.page-villa-detail .other-villas__arrow {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 52, 66, 0.08);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(11, 41, 51, 0.08);
}

.page-villa-detail .other-villa-card {
    flex-basis: calc((100% - 52px) / 3);
}

.page-villa-detail .other-villa-card__image-link {
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(11, 41, 51, 0.12);
}

.page-villa-detail .other-villa-card__body {
    padding: 18px 10px 0;
}

.page-villa-detail .other-villa-card__title {
    font-size: 20px;
    line-height: 1.22;
}

.page-villa-detail .other-villa-card__actions {
    margin-top: 18px;
}

.page-villa-detail .other-villa-card__button {
    min-width: 164px;
    padding: 13px 22px;
    border-radius: 5px;
}

.page-villa-detail #villa-cta {
    padding-top: 78px;
    padding-bottom: 84px;
}

.page-villa-detail .cta-expert {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.page-villa-detail .cta-expert__profile,
.page-villa-detail .cta-expert__panel {
    border-radius: 32px;
    box-shadow: 0 24px 56px rgba(11, 41, 51, 0.1);
}

.page-villa-detail .cta-expert__profile {
    padding: 16px;
}

.page-villa-detail .cta-expert__portrait {
    min-height: 332px;
    border-radius: 24px;
}

.page-villa-detail .cta-expert__name {
    font-size: 20px;
}

.page-villa-detail .cta-expert__panel {
    padding: 34px 38px;
    gap: 18px;
}

.page-villa-detail .cta-expert__title {
    font-size: clamp(30px, 2.9vw, 48px);
    line-height: 1.03;
}

.page-villa-detail .cta-expert__lead,
.page-villa-detail .cta-expert__body p {
    font-size: 17px;
    line-height: 1.68;
}

.villa-explorer__thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 1.1rem;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1.15 / 0.78;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.villa-explorer__thumb:hover,
.villa-explorer__thumb:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(91, 165, 186, 0.34);
}

.villa-explorer__thumb--active {
    border-color: #5ba5ba;
    box-shadow: 0 18px 26px rgba(58, 133, 154, 0.16);
}

.villa-explorer__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1080px) {
    .villa-explorer__grid {
        grid-template-columns: 1fr;
    }

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

    .villa-explorer__panel {
        grid-template-columns: 1fr;
    }

    .villa-explorer__main-image {
        min-height: 24rem;
    }

    .villa-details {
        grid-template-columns: 1fr;
    }

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

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

    .other-villas__carousel {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 12px;
    }

    .other-villas__track {
        gap: 22px;
    }

    .other-villa-card {
        flex-basis: calc((100% - 22px) / 2);
    }
}

.quiz-modal[hidden] {
    display: none;
}

.quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.quiz-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(85, 164, 181, 0.28), transparent 28%),
        radial-gradient(circle at 78% 88%, rgba(185, 144, 76, 0.18), transparent 26%),
        rgba(7, 18, 24, 0.72);
    backdrop-filter: blur(14px);
}

.quiz-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    overflow: auto;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(85, 164, 181, 0.16), transparent 30%),
        radial-gradient(circle at 0% 100%, rgba(85, 164, 181, 0.09), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.98));
    border: 1px solid rgba(85, 164, 181, 0.2);
    box-shadow: 0 30px 96px rgba(6, 18, 23, 0.32);
    scrollbar-color: rgba(85, 164, 181, 0.55) rgba(85, 164, 181, 0.08);
}

.quiz-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(85, 164, 181, 0.12);
    color: var(--button-teal-dark);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quiz-modal__close:hover,
.quiz-modal__close:focus-visible {
    background: var(--button-teal);
    color: #fff;
    transform: rotate(90deg);
}

.quiz-modal__head {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
    padding-right: 48px;
}

.quiz-modal__title {
    margin: 0;
    color: var(--deep);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.04;
    letter-spacing: 0;
    white-space: nowrap;
}

.quiz-modal__lead {
    margin: 0;
    max-width: 820px;
    color: #5d7886;
    font-size: 17px;
    line-height: 1.6;
}

.quiz-progress {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 2px 0 34px;
}

.quiz-progress__item {
    position: relative;
    display: flex;
    justify-content: center;
}

.quiz-progress__item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(85, 164, 181, 0.16);
    transform: translateY(-50%);
}

.quiz-progress__item:first-child::before,
.quiz-progress__item:last-child::before {
    width: 50%;
}

.quiz-progress__item:first-child::before {
    left: auto;
}

.quiz-progress__item:last-child::before {
    right: auto;
}

.quiz-progress__dot {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(85, 164, 181, 0.18);
    color: var(--button-teal-dark);
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(16, 50, 64, 0.12);
}

.quiz-progress__item--active .quiz-progress__dot,
.quiz-progress__item--done .quiz-progress__dot {
    background: linear-gradient(135deg, #55a4b5, #37869a);
    border-color: rgba(85, 164, 181, 0.7);
    color: #fff;
    box-shadow: 0 18px 36px rgba(85, 164, 181, 0.34);
}

.quiz-progress__item--done::before,
.quiz-progress__item--active::before {
    background: rgba(85, 164, 181, 0.36);
}

.quiz-form {
    display: grid;
    gap: 28px;
}

.quiz-form__step {
    display: none;
    gap: 22px;
}

.quiz-form__step--active {
    display: grid;
}

.quiz-form__step-title {
    margin: 0;
    color: var(--deep);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.02;
}

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

.quiz-stepper {
    display: grid;
    gap: 10px;
}

.quiz-stepper__label {
    font-size: 22px;
    font-weight: 800;
    color: #234d5c;
}

.quiz-stepper__control {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    align-items: center;
    overflow: hidden;
    min-height: 62px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 252, 0.96));
    border: 1px solid rgba(85, 164, 181, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 12px 28px rgba(16, 50, 64, 0.06);
}

.quiz-stepper__control button {
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--button-teal-dark);
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.quiz-stepper__control button:hover,
.quiz-stepper__control button:focus-visible {
    background: rgba(85, 164, 181, 0.12);
    color: var(--deep);
}

.quiz-stepper__control input {
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: var(--deep);
}

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

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

.quiz-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.quiz-option__card {
    display: grid;
    gap: 8px;
    min-height: 140px;
    padding: 22px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 252, 0.9));
    border: 1px solid rgba(85, 164, 181, 0.14);
    box-shadow: 0 16px 34px rgba(16, 50, 64, 0.08);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    cursor: pointer;
}

.quiz-option__card:hover {
    border-color: rgba(85, 164, 181, 0.42);
    box-shadow: 0 18px 38px rgba(85, 164, 181, 0.14);
    transform: translateY(-2px);
}

.quiz-option__card strong {
    font-size: 22px;
    color: #173845;
}

.quiz-option__card small {
    color: #607985;
    font-size: 15px;
    line-height: 1.5;
}

.quiz-option input:checked + .quiz-option__card {
    border-color: rgba(85, 164, 181, 0.74);
    background:
        radial-gradient(circle at right top, rgba(85, 164, 181, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(238, 250, 252, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow: 0 20px 42px rgba(85, 164, 181, 0.22);
    transform: translateY(-2px);
}

.quiz-option input:checked + .quiz-option__card strong {
    color: var(--button-teal-dark);
}

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

.quiz-form__field {
    display: grid;
    gap: 8px;
}

.quiz-form__field span {
    font-weight: 700;
    color: #234d5c;
}

.quiz-form__field input,
.quiz-form__field select,
.quiz-form__field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(85, 164, 181, 0.22);
    background: rgba(255, 255, 255, 0.94);
    color: var(--deep);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quiz-form__field input:focus,
.quiz-form__field select:focus,
.quiz-form__field textarea:focus {
    border-color: rgba(85, 164, 181, 0.72);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(85, 164, 181, 0.12);
}

.quiz-form__field--wide {
    grid-column: 1 / -1;
}

.quiz-form__actions {
    display: flex;
    gap: 14px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 4px;
}

.quiz-form__actions [hidden] {
    display: none !important;
}

.quiz-form__note {
    margin: 0;
    color: #6a828e;
    font-size: 14px;
}

.quiz-form__consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin: -4px 0 0;
    color: #607985;
    font-size: 14px;
    line-height: 1.45;
}

.quiz-form__consent[hidden] {
    display: none !important;
}

.quiz-form__consent input {
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    accent-color: var(--button-teal);
    cursor: pointer;
}

.quiz-form__consent a {
    color: var(--button-teal-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-summary {
    display: grid;
    gap: 34px;
}

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

.review-summary__tabs,
.review-summary__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.review-summary__tab {
    color: var(--deep);
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.review-summary__tab--active {
    text-decoration-thickness: 2px;
}

.button--review-primary,
.button--review-secondary {
    min-height: 50px;
    padding-inline: 26px;
    border-radius: 5px;
    font-weight: 600;
}

.button--review-primary {
    background: var(--button-teal);
    color: #fff;
    border-color: var(--button-teal);
    box-shadow: none;
}

.button--review-secondary {
    border: 1px solid var(--button-teal);
    background: rgba(255, 255, 255, 0.78);
    color: var(--button-teal-dark);
}

.review-summary__grid {
    display: grid;
    grid-template-columns: 220px minmax(260px, 1fr) minmax(340px, 1fr);
    gap: 42px;
    align-items: start;
}

.review-summary__overall {
    display: grid;
    gap: 10px;
    align-content: start;
}

.review-summary__rating {
    font-size: 76px;
    line-height: 0.92;
    font-weight: 800;
    color: #0f4f2e;
}

.review-summary__label {
    font-size: 28px;
    font-weight: 800;
    color: var(--deep);
}

.review-summary__dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.review-summary__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #08a045;
}

.review-summary__count {
    margin-left: 6px;
    color: var(--muted);
}

.review-summary__distribution {
    display: grid;
    gap: 14px;
    padding-right: 24px;
    border-right: 1px solid rgba(24, 52, 66, 0.1);
}

.review-summary__bar-row,
.review-summary__category {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 56px;
    gap: 12px;
    align-items: center;
}

.review-summary__bar-label,
.review-summary__category-title {
    font-size: 18px;
    color: var(--deep);
}

.review-summary__bar-track,
.review-summary__category-track {
    height: 12px;
    border-radius: 999px;
    background: rgba(24, 52, 66, 0.1);
    overflow: hidden;
}

.review-summary__bar-fill,
.review-summary__category-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #08a045, #0e7a3b);
}

.review-summary__bar-count,
.review-summary__category-score {
    font-size: 18px;
    color: var(--deep);
}

.review-summary__categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
}

.review-modal[hidden] {
    display: none;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.review-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 23, 0.78);
    backdrop-filter: blur(10px);
}

.review-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    overflow: auto;
    border-radius: 28px;
    padding: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.98));
    border: 1px solid rgba(24, 52, 66, 0.08);
    box-shadow: 0 24px 80px rgba(6, 18, 23, 0.24);
}

.review-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(24, 52, 66, 0.08);
    color: var(--deep);
    font-size: 26px;
    cursor: pointer;
}

.review-modal__head {
    margin-bottom: 24px;
}

.review-modal__title {
    margin: 8px 0 0;
    font-size: clamp(34px, 5vw, 48px);
    line-height: 0.98;
}

.review-modal__lead {
    margin-top: 14px;
    color: var(--muted);
}

.review-form {
    display: grid;
    gap: 26px;
}

.review-form__grid,
.review-form__ratings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.review-form__field {
    display: grid;
    gap: 8px;
}

.review-form__field span,
.review-form__ratings-title {
    color: var(--deep);
    font-weight: 700;
}

.review-form__field input,
.review-form__field textarea,
.review-form__field select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(24, 52, 66, 0.12);
    background: rgba(255, 255, 255, 0.82);
    padding: 14px 16px;
    color: var(--deep);
}

.review-form__field--wide {
    grid-column: 1 / -1;
}

.review-form__field--rating select {
    min-height: 50px;
}

.review-form__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.review-form__note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.content-card,
.metric-card,
.journey-card,
.testimonial-card {
    border-radius: var(--radius-md);
    padding: 28px;
}

.content-card,
.compare-card {
    overflow: hidden;
}

.content-card__visual,
.compare-card__visual {
    margin: -28px -28px 22px;
}

.content-card__visual .visual-tile,
.compare-card__visual .visual-tile {
    min-height: 240px;
    border-radius: 22px 22px 18px 18px;
    box-shadow: none;
}

.content-card__title,
.compare-card__title,
.journey-card__title,
.testimonial-card__title,
.site-footer h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--deep);
}

.content-card__text,
.compare-card__lead,
.journey-card__text,
.testimonial-card__quote {
    margin: 14px 0 0;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.compare-card {
    padding: 30px;
    border-radius: var(--radius-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.gallery-tile {
    grid-column: span 1;
    min-height: 280px;
}

.tabbed-gallery-section {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 252, 252, 0.76));
    border-top: 1px solid rgba(18, 54, 69, 0.06);
    border-bottom: 1px solid rgba(18, 54, 69, 0.06);
}

.tabbed-gallery__header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.tabbed-gallery__header .eyebrow--section {
    justify-content: center;
}

.tabbed-gallery__header .section__title {
    margin-right: auto;
    margin-left: auto;
}

.tabbed-gallery__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 34px;
    margin: 28px auto 30px;
}

.tabbed-gallery__tab {
    position: relative;
    border: 0;
    padding: 8px 0 10px;
    background: transparent;
    color: var(--deep);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
}

.tabbed-gallery__tab::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.tabbed-gallery__tab:hover::after,
.tabbed-gallery__tab--active::after {
    transform: scaleX(1);
}

.tabbed-gallery__tab--active {
    color: #55a4b5;
}

.tabbed-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.tabbed-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.54);
    box-shadow: 0 18px 42px rgba(16, 50, 64, 0.1);
    cursor: zoom-in;
}

.tabbed-gallery__item[hidden] {
    display: none;
}

.tabbed-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease, filter 220ms ease;
}

.tabbed-gallery__item:hover img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.tabbed-gallery__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.tabbed-gallery__actions[hidden] {
    display: none;
}

.tabbed-gallery__actions .button {
    min-width: 178px;
}

.site-lightbox[hidden] {
    display: none;
}

.lightbox-open {
    overflow: hidden;
}

.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.site-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 23, 0.82);
    backdrop-filter: blur(10px);
}

.site-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 56px));
    max-height: calc(100vh - 56px);
    display: grid;
    gap: 16px;
    justify-items: center;
}

.site-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 140px);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.site-lightbox__caption {
    margin: 0;
    padding: 10px 18px;
    max-width: min(760px, calc(100vw - 96px));
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.site-lightbox__close {
    position: absolute;
    top: -8px;
    right: 0;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.site-lightbox__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.site-lightbox__arrow[hidden] {
    display: none;
}

.site-lightbox__arrow--prev {
    left: -70px;
}

.site-lightbox__arrow--next {
    right: -70px;
}

@media (max-width: 980px) {
    .tabbed-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-lightbox__arrow--prev {
        left: 12px;
    }

    .site-lightbox__arrow--next {
        right: 12px;
    }
}

@media (max-width: 640px) {
    .tabbed-gallery__tabs {
        justify-content: flex-start;
        gap: 8px 20px;
        margin-top: 22px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .tabbed-gallery__tabs::-webkit-scrollbar {
        display: none;
    }

    .tabbed-gallery__tab {
        flex: 0 0 auto;
        font-size: 16px;
    }

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

    .site-lightbox {
        padding: 18px;
    }

    .site-lightbox__dialog {
        width: calc(100vw - 36px);
    }

    .site-lightbox__image {
        max-height: calc(100vh - 132px);
        border-radius: 16px;
    }

    .site-lightbox__arrow {
        width: 42px;
        height: 42px;
        font-size: 34px;
    }
}

.gallery-tile .gallery-tile__title {
    font-size: 19px;
    line-height: 1.1;
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.gallery-tile .gallery-tile__caption {
    font-size: 12px;
    line-height: 1.38;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.gallery-tile--wide {
    grid-column: span 2;
    min-height: 340px;
}

.gallery-tile--wide .gallery-tile__title {
    font-size: 22px;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.gallery-tile--wide .gallery-tile__caption {
    font-size: 13px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.gallery-tile--tall {
    min-height: 360px;
}

.journey-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 109, 115, 0.18), rgba(185, 144, 76, 0.18));
    color: var(--deep);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.journey-card__title {
    margin-top: 20px;
}

.testimonial-card__score {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(29, 109, 115, 0.12);
    color: var(--teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
    color: var(--muted);
}

.table-shell {
    margin-top: 34px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.data-table th,
.data-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(24, 52, 66, 0.08);
    vertical-align: top;
}

.data-table thead th {
    background: rgba(16, 50, 64, 0.95);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.faq-list {
    margin-top: 34px;
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(24, 52, 66, 0.08);
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 26px;
    border: 0;
    background: transparent;
    color: var(--deep);
    font-size: 17px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-item__icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.25s ease;
}

.faq-item--open .faq-item__answer {
    padding-bottom: 22px;
}

.faq-item__answer p + p {
    margin-top: 12px;
}

.cta-panel {
    border-radius: var(--radius-lg);
    padding: 40px;
    background:
        radial-gradient(circle at right top, rgba(185, 144, 76, 0.18), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 242, 233, 0.9));
}

.cta-panel__actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.page-not-found .breadcrumbs-section {
    padding-top: 34px;
}

.page-not-found #not-found-hero {
    padding-top: 44px;
}

.page-not-found #not-found-hero .cta-panel {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: clamp(34px, 5vw, 72px);
    background:
        radial-gradient(circle at 86% 20%, rgba(85, 164, 181, 0.2), transparent 28%),
        radial-gradient(circle at 12% 82%, rgba(185, 144, 76, 0.18), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 241, 232, 0.92));
}

.page-not-found #not-found-hero .cta-panel::after {
    content: "404";
    position: absolute;
    right: clamp(18px, 5vw, 58px);
    bottom: clamp(-28px, -2vw, -12px);
    z-index: 0;
    color: rgba(85, 164, 181, 0.14);
    font-size: clamp(112px, 18vw, 250px);
    font-weight: 800;
    line-height: 0.8;
    pointer-events: none;
}

.page-not-found #not-found-hero .eyebrow,
.page-not-found #not-found-hero .section__title,
.page-not-found #not-found-hero .section__lead,
.page-not-found #not-found-hero .cta-panel p,
.page-not-found #not-found-hero .cta-panel__actions {
    position: relative;
    z-index: 1;
}

.page-not-found #not-found-hero .section__title {
    max-width: 760px;
    color: var(--deep);
    font-size: clamp(42px, 6vw, 82px);
}

.page-not-found #not-found-hero .section__lead,
.page-not-found #not-found-hero .cta-panel p {
    max-width: 720px;
    color: #496a78;
    font-size: 17px;
    line-height: 1.75;
}

.contact-stack {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-stack__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 22px;
    border-radius: var(--radius-sm);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-stack__item span {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.2s ease;
}

.contact-stack__item strong {
    color: var(--deep);
    font-size: 20px;
    transition: color 0.2s ease;
}

.contact-stack__item--messenger:hover,
.contact-stack__item--messenger:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(16, 50, 64, 0.16);
}

.contact-stack__item--max:hover,
.contact-stack__item--max:focus-visible {
    background: linear-gradient(135deg, #5d52ff, #1d7cff);
    border-color: rgba(29, 124, 255, 0.4);
}

.contact-stack__item--whatsapp:hover,
.contact-stack__item--whatsapp:focus-visible {
    background: linear-gradient(135deg, #30d86e, #1bab4b);
    border-color: rgba(27, 171, 75, 0.42);
}

.contact-stack__item--telegram:hover,
.contact-stack__item--telegram:focus-visible {
    background: linear-gradient(135deg, #39c0ff, #1d8fd2);
    border-color: rgba(29, 143, 210, 0.42);
}

.contact-stack__item--messenger:hover span,
.contact-stack__item--messenger:hover strong,
.contact-stack__item--messenger:focus-visible span,
.contact-stack__item--messenger:focus-visible strong {
    color: #ffffff;
}

.contact-stack__item--messenger:hover span,
.contact-stack__item--messenger:focus-visible span {
    color: rgba(255, 255, 255, 0.84);
}

.lead-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    border-radius: var(--radius-md);
}

.lead-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lead-form__field--wide {
    grid-column: 1 / -1;
}

.lead-form__field span {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(24, 52, 66, 0.12);
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--deep);
}

.lead-form__submit {
    grid-column: 1 / -1;
    width: 100%;
}

.lead-form__note {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.form-status {
    grid-column: 1 / -1;
    margin: 10px 0 0;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    background: rgba(18, 54, 59, 0.06);
    color: var(--text);
}

.form-status--modal {
    margin-top: 18px;
}

.form-status--pending {
    background: rgba(185, 144, 76, 0.12);
    color: #7a5a1d;
}

.form-status--success {
    background: rgba(25, 122, 102, 0.12);
    color: #155f52;
}

.form-status--error {
    background: rgba(178, 66, 58, 0.12);
    color: #8d3c32;
}

.site-footer {
    padding: 74px 0 38px;
    border-top: 1px solid rgba(24, 52, 66, 0.06);
    background:
        radial-gradient(circle at 35% 34%, rgba(185, 144, 76, 0.08), transparent 14%),
        radial-gradient(circle at 82% 18%, rgba(85, 164, 181, 0.08), transparent 18%),
        linear-gradient(180deg, #fbfaf6 0%, #f7f4ed 100%);
    color: var(--deep);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.06fr) minmax(360px, 1.12fr) minmax(320px, 0.96fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.site-footer__brand,
.site-footer__column {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    min-height: 0;
}

.site-footer__brand h2 {
    margin: 0;
    font-size: clamp(36px, 3.8vw, 50px);
    line-height: 0.95;
}

.site-footer__brand .eyebrow {
    margin-bottom: 20px;
}

.site-footer__summary {
    display: grid;
    gap: 4px;
    max-width: 390px;
    margin-top: 22px;
}

.site-footer__summary p {
    margin: 0;
    color: rgba(24, 52, 66, 0.58);
    font-size: 18px;
    line-height: 1.42;
}

.site-footer h3 {
    margin: 0 0 28px;
    font-family: var(--font-body);
    font-size: 28px;
    line-height: 1;
    color: var(--deep);
}

.site-footer__column--contacts {
    max-width: 360px;
}

.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 56px;
}

.footer-list--compact li + li,
.footer-list--contacts li + li {
    margin-top: 12px;
}

.footer-list li + li {
    margin-top: 12px;
}

.footer-list a {
    color: rgba(24, 52, 66, 0.56);
    font-size: 17px;
    line-height: 1.25;
    transition: color 0.2s ease;
}

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

.footer-list--contacts a,
.site-footer__email {
    color: var(--deep);
}

.footer-contact-row {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--deep);
    font-weight: 800;
}

.footer-contact-row--muted {
    font-weight: 600;
    color: var(--muted);
}

.footer-contact-row__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex: 0 0 auto;
    color: #fff;
    box-shadow: 0 10px 18px rgba(16, 50, 64, 0.12);
}

.footer-contact-row__icon--phone {
    background: linear-gradient(135deg, #1f8b94, #17616a);
}

.footer-contact-row__icon--address {
    background: linear-gradient(135deg, #c59a53, #a77832);
}

.footer-contact-row__icon--mail {
    background: linear-gradient(135deg, #4f72ff, #2c46d8);
}

.footer-contact-row__icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-contact-row__text {
    max-width: 300px;
    line-height: 1.45;
}

.footer-contact-row__copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.footer-contact-row__note {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 1px;
    padding: 5px 10px;
    border: 1px solid rgba(85, 164, 181, 0.22);
    border-radius: 999px;
    color: #2f8397;
    background: rgba(85, 164, 181, 0.08);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.site-footer__messenger-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    color: rgba(24, 52, 66, 0.56);
    font-size: 17px;
}

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

.footer-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    color: #fff;
    box-shadow: 0 14px 26px rgba(16, 50, 64, 0.16);
}

.footer-messenger__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-messenger__icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.footer-messenger__label {
    display: none;
}

.footer-messenger--telegram .footer-messenger__icon {
    background: linear-gradient(135deg, #39c0ff, #1d8fd2);
}

.footer-messenger--whatsapp .footer-messenger__icon {
    background: linear-gradient(135deg, #30d86e, #1bab4b);
}

.footer-messenger--max .footer-messenger__icon {
    background: linear-gradient(135deg, #5d52ff, #1d7cff);
}

.site-footer__availability {
    margin: 10px 0 0 42px;
    color: var(--deep);
    font-size: 16px;
    font-weight: 800;
    text-align: left;
}

.site-footer__company-text,
.site-footer__bank-details,
.site-footer__legal {
    margin: 24px 0 0;
    color: var(--deep);
}

.site-footer__badge-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
    padding: 16px 0;
    border-top: 1px solid rgba(24, 52, 66, 0.08);
    border-bottom: 1px solid rgba(24, 52, 66, 0.08);
}

.site-footer__registry-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(24, 52, 66, 0.55);
    font-size: 16px;
    font-weight: 700;
}

.site-footer__registry-image {
    display: block;
    width: 58px;
    height: auto;
}

.site-footer__registry-name {
    color: rgba(24, 52, 66, 0.5);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-footer__privacy-link {
    display: inline-flex;
    justify-content: center;
    color: rgba(24, 52, 66, 0.72);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.site-footer__privacy-link:hover,
.site-footer__privacy-link:focus-visible {
    color: var(--deep);
}

.site-footer__bank-details {
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
}

.site-footer__legal {
    margin-top: 22px;
    color: rgba(24, 52, 66, 0.52);
    font-size: 12px;
    line-height: 1.68;
    text-align: center;
}

.site-footer__bottom {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(24, 52, 66, 0.08);
    color: rgba(24, 52, 66, 0.52);
    font-size: 14px;
}

/* Footer redesign */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 82px 0 34px;
    border-top: 0;
    background:
        linear-gradient(180deg, rgba(85, 164, 181, 0.14) 0, rgba(85, 164, 181, 0) 160px),
        radial-gradient(circle at 10% 14%, rgba(255, 255, 255, 0.9), transparent 24%),
        radial-gradient(circle at 88% 8%, rgba(85, 164, 181, 0.22), transparent 24%),
        radial-gradient(circle at 72% 76%, rgba(198, 149, 76, 0.12), transparent 22%),
        linear-gradient(180deg, #fbfaf6 0%, #f4efe6 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #55a4b5, #6fb9c8 48%, #c6954c);
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 86px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(85, 164, 181, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.site-footer > .container {
    position: relative;
    z-index: 1;
}

.site-footer__grid {
    grid-template-columns: minmax(270px, 0.95fr) minmax(340px, 1.05fr) minmax(310px, 0.92fr);
    gap: 22px;
    align-items: stretch;
}

.site-footer__brand,
.site-footer__column {
    position: relative;
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(85, 164, 181, 0.14);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
        rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 48px rgba(16, 50, 64, 0.08);
}

.site-footer__brand {
    background:
        radial-gradient(circle at right 18%, rgba(85, 164, 181, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
}

.site-footer__brand h2 {
    max-width: 320px;
    font-size: clamp(38px, 4.1vw, 56px);
    color: var(--deep);
}

.site-footer__brand .eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    color: #c6954c;
}

.site-footer__summary {
    gap: 8px;
    margin-top: 26px;
}

.site-footer__summary p {
    color: rgba(24, 52, 66, 0.68);
    font-size: 16px;
    line-height: 1.55;
}

.site-footer h3 {
    margin-bottom: 22px;
    font-size: 25px;
}

.footer-nav-columns {
    gap: 10px;
}

.footer-list--compact {
    display: grid;
    gap: 8px;
}

.footer-list--compact li + li,
.footer-list li + li {
    margin-top: 0;
}

.footer-list--compact a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 11px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: rgba(24, 52, 66, 0.72);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
}

.footer-list--compact a:hover,
.footer-list--compact a:focus-visible {
    border-color: rgba(85, 164, 181, 0.2);
    color: var(--deep);
    background: rgba(85, 164, 181, 0.08);
}

.site-footer__column--contacts {
    max-width: none;
    background:
        radial-gradient(circle at 86% 12%, rgba(85, 164, 181, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.64));
}

.footer-list--contacts {
    display: grid;
    gap: 14px;
}

.footer-list--contacts li + li {
    margin-top: 0;
}

.footer-contact-row {
    width: 100%;
    gap: 13px;
    padding: 10px;
    border: 1px solid rgba(24, 52, 66, 0.07);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
}

.footer-contact-row:hover,
.footer-contact-row:focus-visible {
    border-color: rgba(85, 164, 181, 0.22);
    background: rgba(255, 255, 255, 0.78);
}

.footer-contact-row__icon {
    width: 34px;
    height: 34px;
}

.footer-contact-row__text {
    color: var(--deep);
    font-size: 15px;
    font-weight: 800;
}

.footer-contact-row--muted .footer-contact-row__text {
    color: rgba(24, 52, 66, 0.68);
    font-weight: 700;
}

.footer-contact-row__note {
    padding: 6px 11px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.site-footer__availability {
    width: fit-content;
    margin: 14px 0 0 54px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #c6954c;
    background: rgba(198, 149, 76, 0.1);
    font-size: 14px;
}

.site-footer__messenger-row {
    width: min(760px, 100%);
    margin: 28px auto 0;
    padding: 16px 20px;
    border: 1px solid rgba(85, 164, 181, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(16, 50, 64, 0.07);
}

.site-footer__messenger-row > span {
    color: rgba(24, 52, 66, 0.64);
    font-weight: 800;
}

.site-footer .contacts-messenger {
    width: 44px;
    height: 44px;
    font-size: 11px;
}

.site-footer__badge-row {
    width: min(900px, 100%);
    margin: 22px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(24, 52, 66, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.56);
}

.site-footer__registry-badge {
    gap: 10px;
    flex-wrap: wrap;
    row-gap: 4px;
    text-align: center;
}

.site-footer__registry-image {
    width: 50px;
}

.site-footer__registry-name {
    color: rgba(24, 52, 66, 0.66);
}

.site-footer__privacy-link {
    padding: 5px 10px;
    border-radius: 999px;
    color: #2f8397;
    background: rgba(85, 164, 181, 0.08);
    text-decoration: none;
}

.site-footer__privacy-link:hover,
.site-footer__privacy-link:focus-visible {
    color: #fff;
    background: #55a4b5;
}

.site-footer__legal {
    width: min(1040px, 100%);
    margin: 20px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(24, 52, 66, 0.06);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    color: rgba(24, 52, 66, 0.58);
}

.site-footer__bottom {
    width: min(1040px, calc(100% - 48px));
    margin-top: 20px;
    padding-top: 16px;
    color: rgba(24, 52, 66, 0.58);
}

@media (max-width: 1050px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

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

    .site-footer__brand h2 {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .site-footer {
        padding-top: 58px;
    }

    .site-footer__brand,
    .site-footer__column {
        padding: 22px;
        border-radius: 20px;
    }

    .footer-nav-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .site-footer__messenger-row {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 22px;
    }

    .site-footer__availability {
        margin-left: 0;
    }
}

@media (max-width: 360px) {
    .footer-nav-columns {
        grid-template-columns: 1fr;
    }
}

.page-index main {
    overflow: clip;
}

.home-intro-slider {
    position: relative;
    padding: 0;
}

.home-intro-slider > .container {
    width: 100%;
    max-width: none;
}

.home-intro-slider__shell {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    min-height: min(760px, calc(100vh - 138px));
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: #12363b;
}

.page-index .home-intro-slider__shell,
.page-index .home-intro-slider__content {
    min-height: 100vh;
}

.home-intro-slider__slide,
.home-intro-slider__image,
.home-intro-slider__overlay {
    position: absolute;
    inset: 0;
}

.home-intro-slider__slide {
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
}

.home-intro-slider__slide--active {
    opacity: 1;
}

.home-intro-slider__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.home-intro-slider__overlay {
    background: transparent;
}

.home-intro-slider__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 64px 52px;
    text-align: center;
    color: #fff;
}

.home-intro-slider__stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 18px;
    background: rgba(99, 111, 126, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(7, 26, 31, 0.1);
    backdrop-filter: blur(16px);
}

.home-intro-slider__star {
    color: #f3b24e;
    font-size: 24px;
    line-height: 1;
}

.home-intro-slider__title {
    max-width: none;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(54px, 5vw, 80px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #fff;
    white-space: nowrap;
    text-shadow: 0 10px 26px rgba(7, 26, 31, 0.34);
}

.home-intro-slider__lead {
    max-width: 52ch;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 6px 18px rgba(7, 26, 31, 0.28);
    text-wrap: balance;
}

.home-intro-slider__button {
    min-width: 0;
    min-height: 50px;
    padding-inline: 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    color: #fff;
    background: var(--button-teal);
    border-color: var(--button-teal);
    box-shadow: none;
}

.home-intro-slider__button:hover,
.home-intro-slider__button:focus-visible {
    background: var(--button-teal-hover);
    border-color: var(--button-teal-hover);
    color: #fff;
}

.home-intro-facts {
    padding: 26px 0 8px;
}

.home-welcome {
    padding: 52px 0 12px;
}

.home-welcome__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: center;
}

.home-welcome__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.home-welcome__icon img {
    width: 118px;
    height: auto;
}

.home-welcome__eyebrow {
    display: block;
    margin-bottom: 24px;
    color: #5da7be;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-welcome__title {
    margin: 0 0 24px;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(34px, 3.8vw, 60px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--deep);
    text-wrap: balance;
}

.home-welcome__text {
    max-width: 1280px;
    margin: 0 auto;
    color: #617686;
    font-size: 18px;
    line-height: 1.9;
    text-wrap: pretty;
}

.home-intro-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-intro-facts__card {
    min-height: 224px;
    padding: 26px 26px 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 251, 0.96));
    border: 1px solid rgba(24, 52, 66, 0.06);
    box-shadow: 0 26px 58px rgba(11, 41, 51, 0.1);
}

.home-intro-facts__label {
    display: block;
    margin-bottom: 14px;
    color: #55a4b5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-intro-facts__value {
    display: block;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1.12;
    font-weight: 800;
    color: var(--deep);
    text-wrap: balance;
}

.home-intro-facts__note {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.page-index .page-hero {
    position: relative;
    padding: 56px 0 74px;
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.82), transparent 34%),
        radial-gradient(circle at 82% 14%, rgba(61, 173, 190, 0.22), transparent 20%),
        linear-gradient(180deg, rgba(255, 249, 242, 0.94), rgba(237, 247, 248, 0.72) 56%, rgba(255, 255, 255, 0.36));
}

.page-index .page-hero::before,
.page-index .page-hero::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.page-index .page-hero::before {
    width: 520px;
    height: 520px;
    right: -140px;
    top: -110px;
    background: radial-gradient(circle, rgba(255, 214, 145, 0.22), transparent 68%);
}

.page-index .page-hero::after {
    width: 420px;
    height: 420px;
    left: -160px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(18, 124, 140, 0.14), transparent 70%);
}

.page-index .page-hero__inner {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 540px);
    gap: 58px;
    align-items: end;
}

.page-index .page-hero__content {
    padding: 38px 40px 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 34px 70px rgba(11, 41, 51, 0.12);
    backdrop-filter: blur(22px);
}

.page-index .page-hero__title {
    max-width: none;
    font-size: clamp(18px, 1.5vw, 26px);
    line-height: 1.08;
}

.page-index .page-hero__lead {
    max-width: 62ch;
    font-size: 18px;
}

.page-index .page-hero .chip-row {
    gap: 12px;
}

.page-index .page-hero .chip {
    min-height: 40px;
    padding-inline: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.page-index .page-hero__visual {
    position: relative;
    z-index: 2;
}

.page-index .page-hero .media-card {
    min-height: 660px;
    padding: 40px;
    border-radius: 36px;
    box-shadow: 0 42px 90px rgba(9, 32, 40, 0.2);
    transform: translateY(18px);
}

.page-index .page-hero .media-card__title {
    max-width: none;
    font-size: clamp(22px, 1.9vw, 32px);
    line-height: 1.08;
}

.page-index .page-hero .media-card__caption {
    max-width: 240px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.page-index .fact-grid {
    position: relative;
    z-index: 3;
    margin-top: -56px;
    gap: 20px;
}

.page-index .fact-card {
    min-height: 100%;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 46px rgba(11, 41, 51, 0.12);
}

.page-index .fact-card__value {
    font-size: 24px;
    line-height: 1.12;
}

.page-index .section:first-of-type {
    padding-top: 118px;
}

.page-index .story-grid {
    align-items: center;
    gap: 46px;
}

.page-index .story-grid__content {
    padding-right: 10px;
}

.page-index .story-grid__media .media-card {
    min-height: 580px;
    border-radius: 34px;
}

.page-index .story-grid__media .media-card:not(.media-card--textless) .media-card__overlay {
    background: linear-gradient(180deg, rgba(13, 46, 54, 0.16), rgba(13, 46, 54, 0.52));
}

.page-index .story-grid__media .media-card__title {
    max-width: 410px;
    text-shadow: 0 12px 34px rgba(8, 30, 36, 0.42);
}

.page-index .card-grid {
    gap: 28px;
    align-items: start;
}

.page-index .content-card {
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 244, 237, 0.9)),
        var(--surface);
    box-shadow: 0 22px 50px rgba(11, 41, 51, 0.1);
}

.page-index .content-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 96px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(17, 92, 97, 0.35));
}

.page-index .content-card:nth-child(2) {
    transform: translateY(28px);
}

.page-index .content-card:nth-child(3) {
    transform: translateY(12px);
}

.page-index .content-card__visual {
    margin: -34px -34px 24px;
}

.page-index .content-card__visual .visual-tile {
    min-height: 286px;
    border-radius: 30px 30px 22px 22px;
}

.page-index .content-card__title {
    font-size: 28px;
}

.page-index .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 24px;
}

.page-index .gallery-tile {
    grid-column: span 3;
    min-height: 310px;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(11, 41, 51, 0.12);
}

.page-index .gallery-tile--wide {
    grid-column: span 6;
    min-height: 390px;
}

.page-index .gallery-tile--tall {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 100%;
}

.page-index .gallery-tile__content {
    padding: 24px 24px 22px;
}

.page-index .gallery-tile__title {
    font-size: 24px;
}

.page-index .gallery-tile__caption {
    font-size: 13px;
}

.page-index .cta-panel {
    position: relative;
    overflow: hidden;
    padding: 48px;
    box-shadow: 0 26px 56px rgba(11, 41, 51, 0.12);
}

.page-index .cta-panel::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 124, 140, 0.12), transparent 70%);
    pointer-events: none;
}

.site-body:not(.page-index) .page-hero {
    position: relative;
    padding: 74px 0 34px;
    background:
        radial-gradient(circle at left top, rgba(255, 255, 255, 0.72), transparent 32%),
        linear-gradient(180deg, rgba(247, 242, 234, 0.92), rgba(242, 248, 248, 0.58));
}

.site-body:not(.page-index) .page-hero::after {
    content: '';
    position: absolute;
    right: -120px;
    top: -90px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 124, 140, 0.12), transparent 68%);
    pointer-events: none;
}

.site-body:not(.page-index) .page-hero__inner {
    align-items: center;
    gap: 46px;
}

.site-body:not(.page-index) .page-hero__title {
    max-width: none;
    font-size: clamp(20px, 1.65vw, 28px);
    line-height: 1.08;
}

.site-body:not(.page-index) .page-hero .media-card {
    min-height: 420px;
    border-radius: 30px;
    box-shadow: 0 28px 62px rgba(9, 32, 40, 0.16);
}

.site-body:not(.page-index) .gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 20px;
}

.site-body:not(.page-index) .gallery-tile {
    grid-column: span 3;
    min-height: 260px;
}

.site-body:not(.page-index) .gallery-tile--wide {
    grid-column: span 6;
    min-height: 340px;
}

.site-body:not(.page-index) .gallery-tile--tall {
    grid-column: span 3;
    grid-row: span 2;
    min-height: 100%;
}

.page-villas .card-grid,
.page-dining .card-grid,
.page-offers .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.page-villas .content-card:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 24px 28px;
    grid-column: 1 / -1;
    align-items: start;
    padding: 36px;
}

.page-villas .content-card:first-child > *:not(.content-card__visual) {
    grid-column: 1;
}

.page-villas .content-card:first-child .content-card__visual {
    grid-column: 2;
    grid-row: 1 / span 5;
    margin: 0;
}

.page-villas .content-card:first-child .content-card__visual .visual-tile {
    min-height: 100%;
    height: 100%;
    border-radius: 26px;
}

.page-villas .content-card:first-child .content-card__title {
    font-size: 32px;
}

.page-villas .table-shell {
    box-shadow: 0 22px 56px rgba(11, 41, 51, 0.12);
}

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

.page-transfer .metric-card {
    position: relative;
    min-height: 172px;
    padding-top: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 250, 0.9)),
        var(--surface);
}

.page-transfer .metric-card::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(17, 92, 97, 0.96), rgba(185, 144, 76, 0.7));
}

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

.page-transfer .journey-card:nth-child(odd) {
    transform: translateY(18px);
}

.page-contacts .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 30px;
    align-items: start;
}

.page-contacts .contact-grid__content {
    padding: 34px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: 0 26px 58px rgba(11, 41, 51, 0.1);
    backdrop-filter: blur(18px);
}

.page-contacts .lead-form {
    align-content: start;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(circle at right top, rgba(185, 144, 76, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 237, 0.96));
    box-shadow: 0 28px 62px rgba(11, 41, 51, 0.12);
}

.page-contacts .contact-stack__item strong {
    font-size: 22px;
}

.contacts-page-section {
    padding: 82px 0 92px;
    background:
        radial-gradient(circle at 10% 16%, rgba(85, 164, 181, 0.12), transparent 24%),
        radial-gradient(circle at 90% 8%, rgba(198, 149, 76, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(250, 248, 243, 0.92), rgba(246, 241, 232, 0.92));
}

.contacts-page__intro {
    max-width: 760px;
    margin-bottom: 34px;
}

.contacts-page__title {
    margin: 12px 0 0;
    color: var(--deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 92px);
    font-weight: 700;
    line-height: 0.9;
}

.contacts-page__lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.contacts-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 34px;
    align-items: start;
}

.contacts-page__main {
    display: grid;
    align-content: start;
    gap: 20px;
}

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

.contacts-card {
    padding: 28px;
    border: 1px solid rgba(24, 52, 66, 0.08);
    border-radius: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 252, 0.86)),
        var(--surface);
    box-shadow: 0 22px 52px rgba(16, 50, 64, 0.09);
}

.contacts-card--hotel {
    display: grid;
    gap: 12px;
    padding: 32px;
    background:
        radial-gradient(circle at right top, rgba(85, 164, 181, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 246, 239, 0.92));
}

.contacts-card__label {
    color: #55a4b5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contacts-card__value {
    margin: 0;
    color: var(--deep);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.22;
}

.contacts-list {
    display: grid;
    gap: 16px;
    margin: 18px 0 0;
}

.contacts-list div {
    display: grid;
    gap: 5px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(24, 52, 66, 0.08);
}

.contacts-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contacts-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contacts-list dd {
    margin: 0;
    color: var(--deep);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contacts-list a {
    color: var(--deep);
    transition: color 0.2s ease;
}

.contacts-list a:hover {
    color: #55a4b5;
}

.contacts-messengers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid rgba(24, 52, 66, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 42px rgba(16, 50, 64, 0.08);
}

.contacts-messengers__label {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.contacts-messengers__items {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.contacts-messengers--office {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.contacts-messengers--office .contacts-messengers__items {
    flex-wrap: wrap;
}

.contacts-messenger {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    box-shadow: 0 12px 26px rgba(16, 50, 64, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contacts-messenger:hover,
.contacts-messenger:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(16, 50, 64, 0.18);
}

.contacts-messenger--telegram {
    background: #2da8e7;
}

.contacts-messenger--whatsapp {
    background: #22c75a;
}

.contacts-messenger--max {
    background: #4667f1;
}

.contacts-page__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.contacts-page__actions .button {
    min-width: 184px;
}

.contacts-map-card {
    position: relative;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(24, 52, 66, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 26px 64px rgba(16, 50, 64, 0.14);
}

.contacts-map {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background:
        radial-gradient(circle at 54% 55%, rgba(255, 255, 255, 0.44) 0 1.5%, transparent 2.6%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.34), transparent 13%),
        linear-gradient(180deg, #8ed7e5 0%, #78ccdf 100%);
}

.contacts-map--image {
    display: block;
    background: #e8f3f2;
}

.contacts-map__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.contacts-map::before,
.contacts-map::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    filter: blur(2px);
}

.contacts-map::before {
    width: 460px;
    height: 460px;
    right: -210px;
    top: -170px;
}

.contacts-map::after {
    width: 360px;
    height: 360px;
    left: -180px;
    bottom: -160px;
}

.contacts-map__watermark {
    position: absolute;
    right: 26px;
    top: 24px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.contacts-map__label {
    position: absolute;
    z-index: 4;
    color: rgba(16, 50, 64, 0.58);
    font-size: 13px;
    font-weight: 900;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.46);
}

.contacts-map__label--north {
    top: 82px;
    left: 44%;
}

.contacts-map__label--middle {
    top: 225px;
    left: 36%;
}

.contacts-map__label--south {
    left: 35%;
    bottom: 42px;
}

.contacts-map__island {
    position: absolute;
    z-index: 3;
    display: block;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(16, 50, 64, 0.08);
}

.contacts-map__island--north {
    width: 54px;
    height: 108px;
    top: 36px;
    left: 46%;
    border-radius: 58% 42% 52% 48%;
    transform: rotate(17deg);
}

.contacts-map__island--middle {
    width: 44px;
    height: 36px;
    top: 196px;
    left: 45%;
    border-radius: 58% 42% 52% 48%;
    transform: rotate(21deg);
}

.contacts-map__island--hotel {
    width: 48px;
    height: 58px;
    top: 312px;
    left: 46%;
    border-radius: 62% 38% 66% 34%;
    transform: rotate(-19deg);
}

.contacts-map__island--south {
    width: 46px;
    height: 34px;
    left: 43%;
    bottom: 24px;
    border-radius: 54% 46% 42% 58%;
    transform: rotate(8deg);
}

.contacts-map__pin {
    position: absolute;
    z-index: 6;
    top: 294px;
    left: calc(46% + 15px);
    width: 34px;
    height: 34px;
    border-radius: 50% 50% 50% 0;
    background: #126ce0;
    box-shadow: 0 12px 24px rgba(18, 108, 224, 0.28);
    transform: rotate(-45deg);
}

.contacts-map__pin span {
    position: absolute;
    inset: 9px;
    display: block;
    border-radius: 50%;
    background: #fff;
}

.contacts-map-card__caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 24px;
    background: #fff;
}

.contacts-map-card__caption span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contacts-map-card__caption strong {
    color: var(--deep);
    font-size: 17px;
    text-align: right;
}

.page-offers .cta-panel {
    box-shadow: 0 24px 56px rgba(11, 41, 51, 0.12);
}

.page-offers .content-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 24px 30px;
    align-items: start;
    padding: 36px;
}

.page-offers .content-card:first-child > *:not(.content-card__visual) {
    grid-column: 1;
}

.page-offers .content-card:first-child .content-card__visual {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin: 0;
}

.page-offers .content-card:first-child .content-card__visual .visual-tile {
    min-height: 100%;
    height: 100%;
    border-radius: 26px;
}

.page-dining .story-grid__content,
.page-reviews .story-grid__content {
    padding: 30px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.54);
    box-shadow: 0 22px 54px rgba(11, 41, 51, 0.1);
    backdrop-filter: blur(18px);
}

.page-dining .story-grid__media .media-card,
.page-reviews .story-grid__media .media-card {
    min-height: 500px;
}

.page-reviews .metrics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.page-reviews .metric-card {
    min-height: 170px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 243, 237, 0.92)),
        var(--surface);
    box-shadow: 0 20px 46px rgba(11, 41, 51, 0.1);
}

.page-reviews .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-reviews .testimonial-card:nth-child(2) {
    transform: translateY(22px);
}

.page-reviews .testimonial-card {
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.92)),
        var(--surface);
    box-shadow: 0 22px 52px rgba(11, 41, 51, 0.1);
}

.page-faq .faq-list {
    gap: 18px;
}

.page-faq .faq-item {
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 237, 0.9)),
        rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 40px rgba(11, 41, 51, 0.08);
}

.page-faq .faq-item__question {
    padding: 24px 28px;
    font-size: 18px;
}

.page-faq .faq-item__answer {
    padding-inline: 28px;
}

@media (max-width: 1180px) {
    .page-villa-detail .page-hero__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-villa-detail .page-hero .media-card {
        min-height: 420px;
    }

    .home-welcome {
        padding: 42px 0 10px;
    }

    .home-welcome__title {
        font-size: clamp(30px, 4vw, 48px);
    }

    .home-welcome__text {
        font-size: 17px;
    }

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

    .home-intro-slider__shell,
    .home-intro-slider__content {
        min-height: min(680px, calc(100vh - 138px));
    }

    .home-intro-slider__content {
        padding: 54px 34px;
    }

    .home-intro-slider__title {
        font-size: clamp(42px, 4vw, 64px);
    }

    .home-intro-slider__lead {
        font-size: 17px;
    }

    .page-hero__inner,
    .story-grid,
    .contact-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr 1fr;
    }

    .fact-grid,
    .card-grid,
    .metrics-grid,
    .journey-grid,
    .testimonial-grid,
    .compare-grid,
    .lead-form,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        grid-template-columns: minmax(340px, 1fr) 160px minmax(300px, 1fr) auto;
        gap: 12px;
        width: min(100% - 38px, 1180px);
    }

    .brandmark {
        width: 160px;
        min-height: 108px;
        margin-bottom: -28px;
    }

    .brandmark__title {
        font-size: 29px;
    }

    .brandmark--long .brandmark__title {
        font-size: 17px;
    }

    .brandmark__subtitle {
        font-size: 13px;
    }

    .brandmark__location {
        font-size: 9px;
    }

    .site-nav__cluster {
        gap: 4px;
    }

    .site-nav__link {
        padding-inline: 8px;
        font-size: 10px;
    }

    .site-nav__link::after {
        left: 8px;
        right: 8px;
    }

    .site-header__cta {
        min-width: 154px;
        padding-inline: 18px 14px;
        font-size: 12px;
    }

    .page-hero__title {
        font-size: clamp(44px, 8vw, 72px);
    }

    .media-card {
        min-height: 440px;
    }

    .page-index .page-hero {
        padding-bottom: 46px;
    }

    .page-index .page-hero__content {
        padding: 30px 28px;
    }

    .page-index .page-hero .media-card {
        min-height: 520px;
        transform: none;
    }

    .page-index .fact-grid {
        margin-top: 26px;
    }

    .page-index .content-card:nth-child(2),
    .page-index .content-card:nth-child(3) {
        transform: none;
    }

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

    .page-index .gallery-tile,
    .page-index .gallery-tile--wide,
    .page-index .gallery-tile--tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }

    .site-body:not(.page-index) .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-body:not(.page-index) .gallery-tile,
    .site-body:not(.page-index) .gallery-tile--wide,
    .site-body:not(.page-index) .gallery-tile--tall {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 300px;
    }

    .page-transfer .metrics-grid,
    .page-villas .card-grid,
    .page-dining .card-grid,
    .page-offers .card-grid,
    .page-transfer .journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-villas .content-card:first-child {
        grid-template-columns: 1fr;
    }

    .page-villas .content-card:first-child .content-card__visual {
        grid-column: 1;
        grid-row: auto;
    }

    .page-offers .content-card:first-child {
        grid-template-columns: 1fr;
    }

    .page-offers .content-card:first-child .content-card__visual {
        grid-column: 1;
        grid-row: auto;
    }

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

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

    .page-reviews .testimonial-card:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 980px) {
    .site-body:not(.page-index) main {
        padding-top: 78px;
    }

    .site-header {
        min-height: 78px;
        background: #55a4b5;
        backdrop-filter: blur(14px);
    }

    .site-body.page-index:not(.header-is-scrolled) .site-header {
        background: transparent;
        backdrop-filter: none;
    }

    .site-header__inner {
        grid-template-columns: minmax(104px, max-content) minmax(0, 1fr) 48px;
        grid-template-areas:
            "brand actions toggle"
            "nav nav nav";
        width: min(100% - 24px, 860px);
        min-height: 78px;
        gap: 10px 8px;
    }

    .brandmark {
        align-self: center;
        width: 116px;
        min-height: 66px;
        margin: 0;
        padding: 8px 10px;
    }

    .site-body:not(.page-index) .brandmark,
    .site-body.header-is-scrolled .brandmark {
        width: 116px;
        min-height: 54px;
        padding: 7px 9px;
    }

    .brandmark__title {
        font-size: 20px;
    }

    .brandmark--long .brandmark__title {
        font-size: 13px;
    }

    .brandmark__subtitle {
        margin-top: 3px;
        font-size: 8px;
    }

    .brandmark__location {
        margin-top: 6px;
        padding-top: 5px;
        font-size: 6px;
        letter-spacing: 0.22em;
    }

    .site-body:not(.page-index) .brandmark__title,
    .site-body.header-is-scrolled .brandmark__title {
        font-size: 19px;
    }

    .site-body:not(.page-index) .brandmark__subtitle,
    .site-body.header-is-scrolled .brandmark__subtitle {
        font-size: 8px;
    }

    .site-header__toggle {
        display: inline-block;
    }

    .site-nav {
        display: none;
        grid-area: nav;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
        background: rgba(19, 76, 86, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 4px;
        box-shadow: 0 18px 42px rgba(9, 32, 40, 0.22);
        backdrop-filter: blur(16px);
    }

    .site-nav--open {
        display: flex;
    }

    .site-nav__cluster {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .site-nav__link {
        min-height: 44px;
        width: 100%;
        justify-content: flex-start;
        padding: 0 18px;
        background: transparent;
        font-size: 12px;
    }

    .site-nav__link::after {
        display: none;
    }

    .site-header__actions {
        grid-area: actions;
        min-width: 0;
        justify-self: end;
    }

    .site-header__actions .button {
        width: min(170px, 100%);
        min-width: 0;
        min-height: 42px;
        padding-inline: 12px;
        font-size: 12px;
        overflow: hidden;
    }

    .site-header__actions .button > span:first-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 820px) {
    .page-villa-detail .page-hero__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-villa-detail .cta-expert {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-villa-detail .page-hero {
        padding: 50px 0 24px;
    }

    .page-villa-detail .page-hero__content,
    .page-villa-detail .villa-details__content,
    .page-villa-detail .cta-expert__panel,
    .page-villa-detail .cta-expert__profile {
        padding: 24px;
        border-radius: 24px;
    }

    .page-villa-detail .section {
        padding: 54px 0;
    }

    .page-villa-detail .page-hero + .section {
        padding-top: 36px;
    }

    .page-villa-detail .section__title,
    .page-villa-detail .cta-expert__title {
        max-width: none;
        font-size: clamp(28px, 8vw, 36px);
    }

    .page-villa-detail .villa-visual {
        min-height: 0;
        border-radius: 24px;
    }

    .page-villa-detail .other-villa-card__body {
        padding-inline: 0;
    }

    .page-villa-detail #villa-cta {
        padding-top: 58px;
        padding-bottom: 60px;
    }

    .home-welcome {
        padding: 34px 0 6px;
    }

    .home-welcome__icon {
        margin-bottom: 12px;
    }

    .home-welcome__icon img {
        width: 92px;
    }

    .home-welcome__eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 1.6;
    }

    .home-welcome__title {
        margin-bottom: 18px;
        font-size: clamp(24px, 8vw, 36px);
        line-height: 1.14;
    }

    .home-welcome__text {
        font-size: 16px;
        line-height: 1.75;
    }

    .home-intro-facts {
        padding: 18px 0 4px;
    }

    .home-intro-facts__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-intro-facts__card {
        min-height: 0;
        padding: 22px 20px;
        border-radius: 24px;
    }

    .home-intro-facts__label {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .home-intro-facts__value {
        font-size: 22px;
    }

    .home-intro-facts__note {
        font-size: 15px;
        line-height: 1.55;
    }

    .home-intro-slider {
        padding: 0;
    }

    .home-intro-slider__shell,
    .home-intro-slider__content {
        min-height: calc(100vh - 174px);
        border-radius: 0;
    }

    .home-intro-slider__content {
        gap: 16px;
        padding: 32px 22px;
    }

    .home-intro-slider__stars {
        min-height: 46px;
        gap: 8px;
        padding: 0 16px;
        border-radius: 14px;
    }

    .home-intro-slider__star {
        font-size: 18px;
    }

    .home-intro-slider__title {
        max-width: 11ch;
        font-size: clamp(28px, 9vw, 42px);
        line-height: 1.08;
        white-space: normal;
        text-wrap: balance;
    }

    .home-intro-slider__lead {
        max-width: 24ch;
        font-size: 17px;
        line-height: 1.4;
    }

    .home-intro-slider__button {
        min-width: 0;
        width: min(100%, 280px);
        min-height: 58px;
        font-size: 16px;
    }

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .site-footer__bottom,
    .page-hero__actions,
    .cta-panel__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-summary__grid,
    .review-form__grid,
    .review-form__ratings-grid,
    .cta-expert,
    .quiz-promo,
    .quiz-form__travelers,
    .quiz-form__contact-grid,
    .quiz-options,
    .quiz-options--check {
        grid-template-columns: 1fr;
    }

    .review-summary__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-summary__distribution {
        padding-right: 0;
        border-right: 0;
    }

    .review-summary__categories {
        grid-template-columns: 1fr;
    }

    .review-summary__bar-row,
    .review-summary__category {
        grid-template-columns: 1fr;
    }

    .review-modal__dialog {
        width: min(100vw - 24px, 980px);
        max-height: calc(100vh - 24px);
        padding: 22px;
    }

    .quiz-modal__dialog {
        width: min(100vw - 24px, 920px);
        max-height: calc(100vh - 24px);
        padding: 22px;
    }

    .review-summary__actions .button,
    .review-form__actions .button,
    .quiz-form__actions .button {
        width: 100%;
    }

    .quiz-promo__portrait {
        min-height: 280px;
    }

    .cta-expert__portrait,
    .cta-expert__portrait-fallback {
        min-height: 300px;
    }

    .quiz-progress {
        gap: 10px;
    }

    .quiz-progress__dot {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .quiz-stepper__label {
        font-size: 20px;
    }

    .quiz-option__card {
        min-height: auto;
    }

    .site-header__toggle {
        display: inline-block;
    }

    .site-header__inner {
        grid-template-columns: minmax(104px, max-content) minmax(0, 1fr) 48px;
        grid-template-areas:
            "brand actions toggle"
            "nav nav nav";
        width: min(100% - 24px, 760px);
        min-height: 78px;
        gap: 10px 8px;
    }

    .brandmark {
        align-self: center;
        width: 116px;
        min-height: 66px;
        margin: 0;
        padding: 8px 10px;
    }

    .brandmark__title {
        font-size: 20px;
    }

    .brandmark--long .brandmark__title {
        font-size: 13px;
    }

    .brandmark__subtitle {
        margin-top: 3px;
        font-size: 8px;
    }

    .brandmark__location {
        margin-top: 6px;
        padding-top: 5px;
        font-size: 6px;
        letter-spacing: 0.22em;
    }

    .site-nav {
        display: none;
        grid-column: 1 / -1;
        grid-area: nav;
        padding: 10px 0;
        background: rgba(19, 76, 86, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 4px;
        box-shadow: 0 18px 42px rgba(9, 32, 40, 0.22);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav--open {
        display: flex;
    }

    .site-nav__cluster {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .site-nav__link {
        min-height: 44px;
        padding: 0 18px;
        width: 100%;
        justify-content: flex-start;
        background: transparent;
        font-size: 12px;
    }

    .site-nav__link::after {
        display: none;
    }

    .site-header__actions {
        display: flex;
        grid-area: actions;
        justify-content: flex-end;
        justify-self: end;
        align-items: center;
        min-width: 0;
    }

    .site-header__actions .button {
        width: min(170px, 100%);
        min-width: 0;
        min-height: 42px;
        padding-inline: 12px;
        font-size: 12px;
        overflow: hidden;
    }

    .site-header__actions .button > span:first-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-header {
        min-height: 78px;
        background: rgba(21, 78, 89, 0.9);
        backdrop-filter: blur(14px);
    }

    body.mobile-menu-floating .site-header__toggle {
        position: static;
        z-index: auto;
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: none;
        backdrop-filter: none;
    }

    body.mobile-menu-floating .site-nav.site-nav--open {
        position: fixed;
        top: 78px;
        left: 14px;
        right: 14px;
        z-index: 65;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
    }

    .footer-nav-columns {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .footer-messengers {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .site-footer__registry-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .site-footer__messenger-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .page-hero {
        padding: 36px 0 22px;
    }

    .breadcrumbs-section {
        padding-top: 34px;
    }

    .breadcrumbs__list {
        width: 100%;
        border-radius: 18px;
        font-size: 12px;
    }

    .breadcrumbs__item + .breadcrumbs__item::before {
        margin: 0 8px;
    }

    .page-hero__title {
        font-size: clamp(36px, 11vw, 56px);
    }

    .page-hero__lead {
        margin-top: 18px;
        font-size: 16px;
    }

    .media-card {
        min-height: 320px;
        padding: 24px;
    }

    .media-card__title {
        max-width: 220px;
        font-size: 42px;
    }

    .media-card__caption {
        left: 24px;
        right: 24px;
        bottom: 24px;
        max-width: none;
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
    }

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

    .page-hero__actions .button,
    .cta-panel__actions .button {
        width: 100%;
        min-width: 0;
    }

    .section {
        padding: 64px 0;
    }

    .section__title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .section__lead,
    .story-grid p,
    .content-card__text,
    .compare-card__lead,
    .journey-card__text,
    .testimonial-card__quote,
    .cta-panel p {
        font-size: 15px;
        line-height: 1.7;
    }

    .cta-panel,
    .content-card,
    .metric-card,
    .journey-card,
    .testimonial-card,
    .lead-form {
        padding: 24px;
    }

    .content-card__visual,
    .compare-card__visual {
        margin: -24px -24px 18px;
    }

    .content-card__visual .visual-tile,
    .compare-card__visual .visual-tile,
    .gallery-tile {
        min-height: 220px;
    }

    .contact-stack__item strong {
        font-size: 18px;
    }

    .site-footer {
        padding: 56px 0 28px;
    }

    .site-footer__brand h2 {
        font-size: 36px;
    }

    .site-footer__summary p,
    .footer-list a {
        font-size: 15px;
    }

    .site-footer h3 {
        font-size: 24px;
    }

    .site-footer__messenger-row {
        margin-top: 34px;
    }

    .page-index .page-hero {
        padding-top: 72px;
    }

    .page-index .page-hero__content {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .page-index .page-hero__title {
        font-size: clamp(44px, 14vw, 66px);
    }

    .page-index .page-hero .media-card {
        min-height: 420px;
        padding: 28px;
        border-radius: 28px;
    }

    .page-index .page-hero .media-card__title {
        max-width: 220px;
        font-size: clamp(40px, 12vw, 56px);
    }

    .page-index .fact-grid {
        margin-top: 18px;
    }

    .page-index .section:first-of-type {
        padding-top: 86px;
    }

    .page-index .content-card,
    .page-index .cta-panel {
        padding: 28px;
    }

    .page-index .content-card__visual {
        margin: -28px -28px 22px;
    }

    .page-index .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .page-index .gallery-tile,
    .page-index .gallery-tile--wide,
    .page-index .gallery-tile--tall {
        min-height: 320px;
    }

    .site-body:not(.page-index) .gallery-grid,
    .page-transfer .metrics-grid,
    .page-villas .card-grid,
    .page-dining .card-grid,
    .page-offers .card-grid,
    .page-transfer .journey-grid {
        grid-template-columns: 1fr;
    }

    .page-transfer .journey-card:nth-child(odd) {
        transform: none;
    }

    .page-contacts .contact-grid__content,
    .page-contacts .lead-form,
    .page-villas .content-card:first-child,
    .page-offers .content-card:first-child,
    .page-dining .story-grid__content,
    .page-reviews .story-grid__content {
        padding: 28px;
    }

    .page-reviews .metrics-grid,
    .page-reviews .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .site-header__inner {
        grid-template-columns: 96px minmax(0, 1fr) 44px;
        width: calc(100% - 20px);
        gap: 8px;
    }

    .brandmark {
        width: 96px;
        min-height: 62px;
        padding: 8px;
    }

    .site-body:not(.page-index) .brandmark,
    .site-body.header-is-scrolled .brandmark {
        width: 96px;
    }

    .brandmark__title {
        font-size: 17px;
    }

    .brandmark--long .brandmark__title {
        font-size: 11px;
    }

    .brandmark__subtitle {
        font-size: 6.5px;
    }

    .brandmark__location {
        font-size: 5px;
    }

    .site-header__toggle,
    body.mobile-menu-floating .site-header__toggle {
        width: 44px;
        height: 44px;
    }

    .site-header__toggle span {
        width: 21px;
    }

    .site-header__actions .button {
        width: 100%;
        min-height: 42px;
        padding-inline: 9px;
        font-size: 11px;
    }

    .site-header__cta-dots {
        display: none;
    }

    .quiz-modal {
        padding: 12px;
    }

    .quiz-modal__title,
    .quiz-form__step-title,
    .quiz-promo__title,
    .cta-expert__title {
        font-size: clamp(28px, 9vw, 36px);
        white-space: normal;
    }

    .quiz-promo,
    .cta-expert__panel,
    .cta-expert__profile {
        padding: 22px;
    }

    .quiz-promo__lead,
    .cta-expert__lead,
    .cta-expert__body p {
        font-size: 16px;
    }

    .cta-expert__actions .button {
        width: 100%;
        min-width: 0;
    }

    .fact-grid {
        grid-template-columns: 1fr;
    }

    .lead-form {
        grid-template-columns: 1fr;
    }

    .lead-form__field--wide {
        grid-column: auto;
    }

    .villa-explorer__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .plan-explorer__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .villa-explorer__grid {
        grid-template-columns: 1fr;
    }

    .plan-explorer__grid {
        grid-template-columns: 1fr;
    }

    .villa-explorer__nav {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0.9rem;
    }

    .plan-explorer__nav {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0.9rem;
    }

    .villa-explorer__panel {
        grid-template-columns: 1fr;
    }

    .plan-explorer__groups {
        grid-template-columns: 1fr;
    }

    .villa-explorer__copy {
        padding: 1.3rem;
        border-radius: 1.45rem;
    }

    .plan-explorer__panel-shell {
        padding: 1.3rem;
        border-radius: 1.45rem;
    }

    .villa-explorer__villa-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .plan-explorer__panel-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .villa-explorer__main-image {
        min-height: 18rem;
        border-radius: 1.45rem;
    }

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

    .villa-explorer__thumb {
        border-radius: 0.9rem;
    }

    .villa-details__content {
        padding: 24px;
        border-radius: 24px;
    }

    .villa-details__stats,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .page-villa-detail .amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .page-villa-detail .amenity-card {
        padding: 9px 10px;
    }

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

    .villa-visual {
        min-height: 380px;
        border-radius: 24px;
    }

    .villa-detail-thumb {
        min-height: 130px;
        border-radius: 18px;
    }

    .other-villas__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .other-villas__title {
        font-size: clamp(28px, 8vw, 36px);
    }

    .other-villas__carousel {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .other-villas__track--all {
        gap: 18px;
    }

    .other-villas__arrow {
        position: absolute;
        top: 32%;
        z-index: 2;
        width: 42px;
        height: 42px;
        font-size: 34px;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 999px;
        box-shadow: 0 14px 26px rgba(9, 32, 40, 0.14);
    }

    .other-villas__arrow--prev {
        left: 8px;
    }

    .other-villas__arrow--next {
        right: 8px;
    }

    .other-villas__track {
        gap: 18px;
    }

    .other-villa-card {
        flex-basis: 100%;
    }

    .other-villa-card__title {
        font-size: 24px;
    }

    .data-table th,
    .data-table td {
        padding: 14px 14px;
        font-size: 14px;
    }
}

@media (max-width: 1080px) {
    .contacts-page__grid {
        grid-template-columns: 1fr;
    }

    .contacts-map-card {
        min-height: 460px;
    }

    .contacts-map {
        min-height: 400px;
    }

    .contacts-map__label--north {
        left: 46%;
    }

    .contacts-map__label--middle {
        left: 40%;
    }

    .contacts-map__label--south {
        left: 39%;
    }

    .knowledge-tabs__layout {
        grid-template-columns: 1fr;
    }

    .booking-benefits__header,
    .booking-benefit-card--payment {
        grid-template-columns: 1fr;
    }

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

    .popular-amenities__grid {
        grid-template-columns: 1fr;
    }

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

    .restaurant-card:first-child {
        grid-column: auto;
    }

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

    .team-experts {
        grid-template-columns: 1fr;
    }

    .team-experts__photo {
        min-height: 0;
        aspect-ratio: 4 / 5;
    }

    .price-range-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .contacts-page-section {
        padding: 56px 0 66px;
    }

    .contacts-page__intro {
        margin-bottom: 24px;
    }

    .contacts-page__lead {
        font-size: 16px;
    }

    .contacts-page__cards {
        grid-template-columns: 1fr;
    }

    .contacts-card,
    .contacts-card--hotel {
        padding: 22px;
        border-radius: 20px;
    }

    .contacts-messengers {
        align-items: flex-start;
        flex-direction: column;
    }

    .contacts-map-card__caption {
        align-items: flex-start;
        flex-direction: column;
    }

    .contacts-map-card__caption strong {
        text-align: left;
    }

    .knowledge-tabs__nav {
        flex-direction: row;
        gap: 0.6rem;
        overflow-x: auto;
        padding: 0.75rem;
        scroll-snap-type: x proximity;
    }

    .knowledge-tabs__nav-item {
        min-width: 220px;
        scroll-snap-align: start;
    }

    .knowledge-tabs__nav-item:hover,
    .knowledge-tabs__nav-item:focus-visible {
        transform: none;
    }

    .knowledge-tabs__panel-inner {
        padding: 1.25rem;
        border-radius: 1.35rem;
    }

    .knowledge-tabs__panel-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .knowledge-tabs__groups {
        grid-template-columns: 1fr;
    }

    .villa-explorer__nav {
        display: flex;
        flex-direction: row;
        gap: 0.65rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.75rem;
        border-radius: 1rem;
        scroll-snap-type: x proximity;
        scrollbar-color: rgba(16, 50, 64, 0.32) transparent;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .villa-explorer__nav-item {
        flex: 0 0 auto;
        width: auto;
        min-width: max-content;
        max-width: none;
        padding: 0.9rem 1rem;
        white-space: nowrap;
        text-align: center;
        scroll-snap-align: start;
    }

    .villa-explorer__nav-label {
        display: block;
        white-space: nowrap;
    }

    .villa-explorer__nav-item:hover,
    .villa-explorer__nav-item:focus-visible {
        transform: none;
    }

    .booking-benefits__grid,
    .restaurant-cards__grid,
    .booking-benefit-card__list {
        grid-template-columns: 1fr;
    }

    .booking-benefit-card {
        padding: 1.1rem;
    }

    .popular-amenities__category {
        padding: 1.15rem;
    }

    .stay-condition {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .guest-reviews__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .guest-reviews__controls {
        padding-top: 0;
    }

    .guest-reviews__categories {
        grid-template-columns: 1fr;
    }

    .guest-reviews__track-list {
        grid-auto-columns: minmax(280px, 86vw);
    }

    .team-expert-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .team-expert-card__experience {
        justify-self: start;
    }

    .team-contact-card__headline {
        font-size: 1.08rem;
        flex-wrap: wrap;
        white-space: normal;
    }

    .team-contact-card__messengers {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-contact-card__messenger {
        width: 44px;
        height: 44px;
    }

    .price-range-card {
        padding: 1.15rem;
    }

    .price-range-card__panel {
        padding: 1rem;
    }

    .popular-amenities__list,
    .amenities-modal__list {
        grid-template-columns: 1fr;
    }

    .amenities-modal {
        padding: 14px;
    }

    .amenities-modal__dialog {
        width: calc(100vw - 28px);
        max-height: calc(100vh - 28px);
        padding: 1.35rem 1.2rem 0;
        border-radius: 14px;
    }

    .amenities-modal__tabs {
        gap: 1rem;
    }

    .amenities-modal__scroll {
        max-height: calc(100vh - 178px);
    }
}

@media (max-width: 520px) {
    .contacts-page__title {
        font-size: clamp(46px, 14vw, 62px);
    }

    .contacts-page__actions .button {
        width: 100%;
    }

    .contacts-map,
    .contacts-map-card {
        min-height: 350px;
    }

    .contacts-map__watermark {
        right: 18px;
        top: 18px;
    }

    .contacts-map__label {
        font-size: 11px;
    }

    .contacts-map__label--north {
        top: 70px;
        left: 39%;
    }

    .contacts-map__label--middle {
        top: 170px;
        left: 30%;
    }

    .contacts-map__label--south {
        left: 29%;
        bottom: 34px;
    }

    .contacts-map__island--north {
        top: 34px;
        left: 48%;
        width: 42px;
        height: 86px;
    }

    .contacts-map__island--middle {
        top: 150px;
        left: 47%;
    }

    .contacts-map__island--hotel {
        top: 230px;
        left: 48%;
    }

    .contacts-map__pin {
        top: 214px;
        left: calc(48% + 14px);
    }

    .knowledge-tabs__layout {
        gap: 1rem;
    }

    .knowledge-tabs__nav {
        border-radius: 1.35rem;
    }

    .knowledge-tabs__nav-item {
        min-width: 205px;
        padding: 0.85rem;
    }

    .knowledge-tabs__nav-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 14px;
    }

    .popular-amenities__list li,
    .amenities-modal__list li {
        font-size: 0.92rem;
    }

    .amenities-modal__title {
        font-size: 1.8rem;
    }

    .price-range-card__action {
        width: 100%;
    }

    .stay-conditions__card {
        border-radius: 8px;
    }

    .stay-condition {
        padding: 1rem;
    }

    .guest-reviews__title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.65rem;
    }

    .guest-review-card {
        min-height: 300px;
    }
}

@media (max-width: 700px) {
    .site-footer .footer-nav-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .page-villa-detail .amenities-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-nav-columns {
        grid-template-columns: 1fr;
    }
}

