:root {
    --ink: #18343d;
    --muted: #667b80;
    --sea: #0e5966;
    --sea-dark: #073b47;
    --aqua: #70c9c3;
    --coral: #ef765d;
    --coral-dark: #d95e48;
    --sand: #f3eee5;
    --cream: #fffdf8;
    --white: #fff;
    --line: #d9e4e2;
    --shadow: 0 24px 70px rgba(17, 59, 68, .14);
    --radius: 28px;
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.announcement {
    padding: 7px 24px;
    color: #ddf4f1;
    background: var(--sea-dark);
    font-size: 13px;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(14, 89, 102, .08);
    background: rgba(255, 253, 248, .94);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(17, 59, 68, .1);
}

.header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 32px;
}

.brand {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--sea);
    font-family: Georgia, serif;
    font-size: 22px;
    font-style: italic;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 650;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--coral);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-phone {
    display: grid;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: right;
}

.header-phone small {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.menu-toggle {
    position: relative;
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
    transition: background .2s ease, transform .2s ease;
}

.menu-toggle__icon::before {
    transform: translate(-50%, -7px);
}

.menu-toggle__icon::after {
    transform: translate(-50%, 5px);
}

.menu-open .menu-toggle__icon {
    background: transparent;
}

.menu-open .menu-toggle__icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-open .menu-toggle__icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 13px 24px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--coral);
    box-shadow: 0 12px 28px rgba(239, 118, 93, .24);
    cursor: pointer;
    font-weight: 750;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover {
    background: var(--coral-dark);
    box-shadow: 0 15px 35px rgba(239, 118, 93, .3);
    transform: translateY(-2px);
}

.button--outline {
    border: 1px solid rgba(255, 255, 255, .56);
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.button--outline:hover {
    background: rgba(255, 255, 255, .17);
}

.button--sea {
    background: var(--sea);
    box-shadow: 0 12px 28px rgba(14, 89, 102, .2);
}

.button--sea:hover {
    background: var(--sea-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sea);
    font-weight: 750;
}

.text-link::after {
    content: "→";
    transition: transform .2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    align-items: center;
    gap: 10px;
    color: var(--coral-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 32px;
    height: 1px;
    background: currentColor;
    content: "";
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
}

h1 {
    max-width: 820px;
    margin-bottom: 24px;
    font-size: clamp(49px, 6.4vw, 88px);
    letter-spacing: -.045em;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(38px, 4.1vw, 60px);
    letter-spacing: -.035em;
}

h3 {
    margin-bottom: 12px;
    font-size: 29px;
    letter-spacing: -.02em;
}

.lead {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
}

.hero {
    position: relative;
    display: flex;
    min-height: 720px;
    padding: 90px 0 150px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-image: linear-gradient(90deg, rgba(4, 43, 53, .84) 0%, rgba(4, 43, 53, .58) 48%, rgba(4, 43, 53, .12) 100%), var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    right: -80px;
    bottom: -175px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .045), 0 0 0 115px rgba(255, 255, 255, .035);
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero .eyebrow {
    color: #b6e9e4;
}

.hero-copy {
    max-width: 630px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .87);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-facts {
    display: flex;
    margin-top: 54px;
    flex-wrap: wrap;
    gap: 24px 45px;
}

.hero-fact {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2px 12px;
}

.hero-fact strong {
    grid-row: 1 / 3;
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 500;
}

.hero-fact span,
.hero-fact small {
    line-height: 1.25;
}

.hero-fact small {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.booking-wrap {
    position: relative;
    z-index: 4;
    margin-top: -77px;
}

.booking-panel {
    padding: 28px;
    border: 1px solid rgba(14, 89, 102, .08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-head {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.booking-head h2,
.booking-head h3 {
    margin: 0;
    font-size: 30px;
}

.booking-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.booking-form {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr .8fr .8fr auto;
    align-items: end;
    gap: 12px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.field input,
.field select {
    width: 100%;
    min-height: 54px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    color: var(--ink);
    background: #fbfcfa;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus {
    border-color: var(--aqua);
    box-shadow: 0 0 0 4px rgba(112, 201, 195, .16);
}

.form-status {
    display: none;
    grid-column: 1 / -1;
    margin: 6px 0 0;
    padding: 12px 15px;
    border-radius: 12px;
    color: var(--sea-dark);
    background: #e9f6f4;
    font-size: 14px;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-error {
    color: #853824;
    background: #fff0ec;
}

.section {
    padding: 112px 0;
}

.section--sand {
    background: var(--sand);
}

.section--sea {
    color: var(--white);
    background: var(--sea-dark);
}

.section-heading {
    display: flex;
    margin-bottom: 48px;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.section-heading > div {
    max-width: 780px;
}

.section-heading p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--muted);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.media-stack {
    position: relative;
    min-height: 590px;
}

.media-stack-main {
    width: 86%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius);
}

.media-stack-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 250px;
    border: 10px solid var(--cream);
    border-radius: 26px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    margin: 32px 0 36px;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-list li::before {
    display: grid;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin-top: 2px;
    place-items: center;
    border-radius: 50%;
    color: var(--sea);
    background: #dff2ef;
    content: "✓";
    font-size: 13px;
    font-weight: 900;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.benefit-card span {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 16px;
    color: var(--sea);
    background: #e6f4f2;
    font-size: 22px;
}

.benefit-card h3 {
    font-size: 24px;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.room-card {
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(17, 59, 68, .1);
    transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.room-card-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover .room-card-media img {
    transform: scale(1.045);
}

.room-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.room-card-body {
    padding: 27px;
}

.room-card-body p {
    color: var(--muted);
    font-size: 15px;
}

.room-features {
    display: flex;
    margin: 20px 0 24px;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.room-features li {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: #eaf5f3;
    font-size: 12px;
    font-weight: 650;
}

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

.story-grid .eyebrow {
    color: #aee5df;
}

.story-grid .lead {
    color: rgba(255, 255, 255, .72);
}

.story-photo {
    position: relative;
}

.story-photo img {
    width: 100%;
    height: 650px;
    border-radius: 180px 180px 28px 28px;
    object-fit: cover;
}

.story-note {
    position: absolute;
    right: -32px;
    bottom: 38px;
    max-width: 235px;
    padding: 24px;
    border-radius: 20px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.gallery-grid img:first-child {
    grid-row: 1 / 3;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    display: flex;
    min-height: 275px;
    padding: 31px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.review-card::before {
    margin-bottom: 12px;
    color: var(--coral);
    content: "“";
    font-family: Georgia, serif;
    font-size: 64px;
    line-height: .7;
}

.review-card p {
    flex: 1;
}

.review-card footer {
    color: var(--muted);
    font-size: 13px;
}

.cta {
    position: relative;
    padding: 70px;
    overflow: hidden;
    border-radius: 32px;
    color: var(--white);
    background: var(--sea);
}

.cta::after {
    position: absolute;
    top: -100px;
    right: -60px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .04), 0 0 0 110px rgba(255, 255, 255, .025);
    content: "";
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta h2 {
    max-width: 700px;
    margin-bottom: 12px;
}

.cta p {
    margin: 0;
    color: rgba(255, 255, 255, .74);
}

.page-hero {
    padding: 86px 0 120px;
    color: var(--white);
    background: var(--sea-dark);
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    font-size: clamp(48px, 6vw, 78px);
}

.page-hero p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 20px;
}

.page-hero + .booking-wrap {
    margin-top: -54px;
}

.placeholder {
    min-height: 520px;
}

.placeholder-card {
    display: grid;
    max-width: 880px;
    min-height: 340px;
    margin: 0 auto;
    padding: 60px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.placeholder-card p {
    max-width: 650px;
    color: var(--muted);
}

.site-footer {
    padding: 82px 0 28px;
    color: rgba(255, 255, 255, .72);
    background: #062f38;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr 1fr;
    gap: 50px;
}

.site-footer .brand {
    margin-bottom: 20px;
    color: var(--white);
}

.site-footer .brand-copy small {
    color: rgba(255, 255, 255, .54);
}

.footer-about p {
    max-width: 350px;
    font-size: 14px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: grid;
    gap: 10px;
    font-size: 14px;
}

.footer-contact a {
    color: var(--white);
    font-size: 18px;
    font-weight: 750;
}

.footer-bottom {
    display: flex;
    margin-top: 60px;
    padding-top: 22px;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .header-phone {
        display: none;
    }

    .main-nav {
        gap: 18px;
    }

    .booking-form {
        grid-template-columns: repeat(4, 1fr);
    }

    .booking-form .button {
        grid-column: 1 / -1;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, .8fr);
    }

    .footer-grid > :last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 74px;
    }

    .menu-toggle {
        z-index: 2;
        display: grid;
        margin-left: auto;
        place-items: center;
    }

    .main-nav {
        position: absolute;
        z-index: 1;
        top: 100%;
        right: 0;
        left: 0;
        display: grid;
        max-height: calc(100vh - 74px);
        max-height: calc(100dvh - 74px);
        align-content: start;
        padding: 42px 28px;
        overflow-y: auto;
        gap: 5px;
        background: var(--cream);
        box-shadow: 0 24px 45px rgba(17, 59, 68, .18);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        visibility: hidden;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }

    .main-nav a {
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        font-family: Georgia, serif;
        font-size: 25px;
        font-weight: 500;
    }

    .menu-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .hero {
        min-height: 680px;
        background-image: linear-gradient(90deg, rgba(4, 43, 53, .85), rgba(4, 43, 53, .36)), var(--hero-image);
    }

    .intro-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }

    .room-grid,
    .review-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-photo {
        max-width: 650px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 240px);
    }

    .gallery-grid img:first-child {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .cta {
        padding: 50px;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .announcement {
        padding-inline: 10px;
        font-size: 10px;
    }

    .brand-copy strong {
        font-size: 19px;
    }

    .brand-copy small {
        display: none;
    }

    h1 {
        font-size: 47px;
    }

    h2 {
        font-size: 38px;
    }

    .hero {
        min-height: 710px;
        padding: 72px 0 130px;
        background-position: 62% center;
    }

    .hero-facts {
        gap: 20px;
    }

    .hero-fact {
        width: calc(50% - 10px);
    }

    .hero-fact strong {
        font-size: 29px;
    }

    .booking-wrap {
        margin-top: -80px;
    }

    .booking-panel {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .booking-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .booking-form .field:nth-child(1),
    .booking-form .field:nth-child(2),
    .booking-form .button {
        grid-column: 1 / -1;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 34px;
        align-items: flex-start;
        flex-direction: column;
    }

    .media-stack {
        min-height: 440px;
    }

    .media-stack-main {
        height: 405px;
    }

    .media-stack-small {
        height: 180px;
        border-width: 6px;
    }

    .benefit-grid,
    .room-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .room-card-media {
        height: 255px;
    }

    .story-photo img {
        height: 490px;
        border-radius: 120px 120px 24px 24px;
    }

    .story-note {
        right: 12px;
        bottom: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 230px);
    }

    .gallery-grid img:first-child {
        grid-column: auto;
    }

    .cta {
        padding: 42px 25px;
        border-radius: 24px;
    }

    .page-hero {
        padding: 67px 0 105px;
    }

    .placeholder-card {
        padding: 40px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid > :last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

.page-hero--photo {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: end;
    overflow: hidden;
    background-image: linear-gradient(90deg, rgba(5, 47, 57, .88), rgba(5, 47, 57, .4)), var(--page-image);
    background-position: center;
    background-size: cover;
}

.page-hero--photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 47, 57, .42), transparent 52%);
    content: "";
}

.page-hero--photo .page-hero__inner {
    z-index: 1;
}

.content-card-grid {
    display: grid;
    gap: 22px;
}

.content-card-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.content-card-grid--two {
    grid-template-columns: repeat(2, 1fr);
}

.content-card {
    display: flex;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(17, 59, 68, .08);
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.content-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.content-card > img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.content-card > div {
    display: flex;
    padding: 28px;
    flex: 1;
    align-items: flex-start;
    flex-direction: column;
}

.content-card h3 {
    margin-bottom: 14px;
}

.content-card p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px;
}

.content-card .text-link {
    margin-top: auto;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.content-split--reverse .content-split__image {
    order: -1;
}

.content-split__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.content-split__image {
    width: 100%;
    height: 570px;
    border-radius: var(--radius);
    object-fit: cover;
}

.service-list {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.service-list p {
    color: rgba(255, 255, 255, .7);
}

.service-list > ul {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
}

.service-list > ul li {
    padding: 17px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
}

.notice-panel {
    display: flex;
    padding: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border-radius: var(--radius);
    background: var(--sand);
}

.notice-panel > div {
    max-width: 780px;
}

.notice-panel h2 {
    margin-bottom: 14px;
}

.notice-panel p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.feature-pills {
    display: flex;
    margin: 30px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.feature-pills li {
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: #e2f3f0;
    font-size: 13px;
    font-weight: 700;
}

.feature-images {
    position: relative;
    min-height: 580px;
}

.feature-images img:first-child {
    width: 87%;
    height: 530px;
    border-radius: var(--radius);
    object-fit: cover;
}

.feature-images img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 245px;
    border: 8px solid var(--cream);
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.photo-wall {
    display: grid;
    grid-auto-rows: 270px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.photo-wall__item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--sand);
}

.photo-wall__item--wide {
    grid-column: span 2;
}

.photo-wall__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.photo-wall__item:hover img {
    transform: scale(1.04);
}

.photo-wall__item span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 13px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(5, 47, 57, .72);
    backdrop-filter: blur(8px);
    font-size: 13px;
}

.review-grid--full {
    grid-template-columns: repeat(3, 1fr);
}

.review-grid--full .review-card {
    min-height: 320px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 40px;
}

.contact-details {
    padding: 45px;
    border-radius: var(--radius);
    background: var(--sand);
}

.contact-cards {
    display: grid;
    margin: 30px 0;
    gap: 15px;
}

.contact-cards > div {
    display: grid;
    padding-bottom: 15px;
    gap: 4px;
    border-bottom: 1px solid rgba(14, 89, 102, .14);
}

.contact-cards small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-cards strong,
.contact-cards a {
    font-size: 18px;
    font-weight: 750;
}

.contact-cards a {
    color: var(--sea);
}

.map-frame {
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--sand);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
}

.document-panel {
    max-width: 980px;
    padding: 55px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.content-note {
    margin: 25px 0 0;
    padding: 14px 16px;
    border-radius: 12px;
    color: var(--muted);
    background: var(--sand);
    font-size: 13px;
}

@media (max-width: 900px) {
    .content-card-grid--three,
    .review-grid--full {
        grid-template-columns: 1fr 1fr;
    }

    .content-split,
    .service-list,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .content-split--reverse .content-split__image {
        order: initial;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 480px;
    }
}

@media (max-width: 680px) {
    .page-hero--photo {
        min-height: 520px;
    }

    .content-card-grid--three,
    .content-card-grid--two,
    .review-grid--full {
        grid-template-columns: 1fr;
    }

    .content-card > img,
    .content-split__image {
        height: 390px;
    }

    .service-list > ul {
        grid-template-columns: 1fr;
    }

    .notice-panel {
        padding: 36px 22px;
        align-items: flex-start;
        flex-direction: column;
    }

    .feature-images {
        min-height: 440px;
    }

    .feature-images img:first-child {
        height: 400px;
    }

    .feature-images img:last-child {
        height: 180px;
    }

    .photo-wall {
        grid-auto-rows: 240px;
        grid-template-columns: 1fr;
    }

    .photo-wall__item--wide {
        grid-column: auto;
    }

    .contact-details,
    .document-panel {
        padding: 35px 22px;
    }

    .map-frame,
    .map-frame iframe {
        min-height: 420px;
    }
}

.child-ages {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
}

.child-ages[hidden],
.search-results[hidden] {
    display: none;
}

.search-results {
    margin-top: 34px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    box-shadow: var(--shadow);
    scroll-margin-top: 120px;
}

.search-results__heading {
    display: flex;
    margin-bottom: 28px;
    align-items: end;
    justify-content: space-between;
}

.search-results__heading h2 {
    margin-bottom: 10px;
    font-size: clamp(32px, 4vw, 48px);
}

.search-results__heading p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.rate-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
}

.rate-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.rate-table th {
    color: var(--muted);
    background: #f3f7f5;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.rate-table tbody tr:last-child td {
    border-bottom: 0;
}

.rate-table tbody tr:hover {
    background: #f8fbfa;
}

.rate-table__photo {
    width: 132px;
    padding: 10px 12px;
    vertical-align: top;
}

.rate-table__photo img {
    display: block;
    width: 120px;
    height: 84px;
    object-fit: cover;
    border-radius: 10px;
}

.rate-table tbody th {
    text-align: left;
    font-weight: 600;
    vertical-align: top;
}

.rate-table tbody th a,
.rate-card__content h3 a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(13, 83, 97, .35);
    text-underline-offset: 3px;
}

.rate-table tbody th a:hover,
.rate-card__content h3 a:hover {
    text-decoration-color: currentColor;
}

.rate-table__price {
    color: var(--sea);
    white-space: nowrap;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
}

.rate-card-grid {
    display: grid;
    gap: 24px;
}

.rate-card {
    display: grid;
    grid-template-columns: minmax(250px, .78fr) 1.22fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
}

.rate-card__image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.rate-card__content {
    padding: 34px;
}

.rate-card__period {
    margin-bottom: 9px;
    color: var(--muted);
    font-size: 13px;
}

.rate-card__content h3 {
    margin-bottom: 24px;
    font-size: 34px;
}

.rate-packages {
    display: grid;
    margin-bottom: 24px;
    gap: 10px;
}

.rate-package {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 16px;
    align-items: start;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease;
}

.rate-package:has(input:checked) {
    border-color: var(--aqua);
    background: #edf8f6;
}

.rate-package input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--sea);
}

.rate-package__copy {
    display: grid;
    gap: 8px;
}

.rate-package__copy strong {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.rate-package__copy b {
    color: var(--sea);
    font-family: Georgia, serif;
    font-size: 25px;
}

.rate-details {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

.rate-details summary {
    margin-bottom: 10px;
    color: var(--sea);
    cursor: pointer;
    font-weight: 750;
}

.rate-details ul {
    margin: 0;
    padding-left: 20px;
}

.search-empty {
    display: flex;
    padding: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: 20px;
    background: var(--sand);
}

.search-empty p {
    max-width: 680px;
    margin: 0;
}

.lead-dialog {
    width: min(calc(100% - 30px), 620px);
    max-height: calc(100vh - 30px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: 26px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 35px 100px rgba(0, 27, 33, .35);
}

.lead-dialog::backdrop {
    background: rgba(3, 32, 39, .7);
    backdrop-filter: blur(5px);
}

.lead-form {
    position: relative;
    display: grid;
    padding: 42px;
    gap: 16px;
}

.lead-form h2 {
    margin-bottom: 0;
    font-size: 40px;
}

.lead-selection {
    margin-bottom: 6px;
    padding: 12px 15px;
    border-radius: 12px;
    color: var(--sea-dark);
    background: #e9f6f4;
    font-weight: 750;
}

.dialog-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
    font-size: 27px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: var(--sea);
}

/* Поле-ловушка для ботов. display:none, иначе браузер автозаполняет его
   и настоящая заявка отбраковывается как спам. */
.hp-field {
    display: none;
}

.benefit-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .rate-card {
        grid-template-columns: 1fr;
    }

    .rate-card__image {
        height: 340px;
        min-height: 0;
    }

    .benefit-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .child-ages {
        grid-template-columns: 1fr 1fr;
    }

    .search-results {
        padding: 24px 16px;
    }

    .rate-card__image {
        height: 260px;
    }

    .rate-card__content {
        padding: 24px 18px;
    }

    .rate-card__content h3 {
        font-size: 29px;
    }

    .search-empty {
        align-items: flex-start;
        flex-direction: column;
    }

    .lead-form {
        padding: 35px 20px 24px;
    }

    .lead-form h2 {
        padding-right: 28px;
        font-size: 33px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Compatibility layer for the PHP component class names. */
.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--sea-dark);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.announcement__inner a {
    color: var(--white);
    font-weight: 800;
}

.site-header__inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    gap: 30px;
}

.brand__mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--sea);
    font-family: Georgia, serif;
    font-size: 16px;
    font-style: italic;
}

.brand__text {
    display: grid;
    line-height: 1.15;
}

.brand__text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
}

.brand__text small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.button--compact {
    min-height: 44px;
    padding: 10px 18px;
    font-size: 14px;
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
}

.button--light {
    color: var(--sea-dark);
    background: var(--white);
    box-shadow: none;
}

.button--light:hover {
    color: var(--white);
    background: var(--coral);
}

.eyebrow--light {
    color: #b6e9e4;
}

.hero__backdrop {
    position: absolute;
    inset: 0;
}

.hero__content,
.hero__copy {
    position: relative;
    z-index: 2;
}

.hero__copy {
    max-width: 900px;
}

.hero__lead {
    max-width: 630px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, .87);
    font-size: clamp(18px, 2vw, 22px);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero__facts {
    display: flex;
    margin: 54px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 24px 45px;
    list-style: none;
}

.hero__facts li {
    display: grid;
    gap: 2px;
}

.hero__facts strong {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}

.hero__facts span {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.booking-form {
    padding: 28px;
    border: 1px solid rgba(14, 89, 102, .08);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-form .booking-head {
    grid-column: 1 / -1;
}

.field > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.split__media {
    position: relative;
}

.split__media > img {
    width: 100%;
    height: 580px;
    border-radius: var(--radius);
    object-fit: cover;
}

.floating-note {
    position: absolute;
    right: -28px;
    bottom: 34px;
    display: grid;
    min-width: 205px;
    padding: 21px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.floating-note strong {
    font-family: Georgia, serif;
    font-size: 24px;
}

.floating-note span {
    color: var(--muted);
    font-size: 12px;
}

.section--tint {
    background: var(--sand);
}

.benefit-card a {
    display: inline-block;
    margin-top: 18px;
    color: var(--sea);
    font-size: 14px;
    font-weight: 750;
}

.benefit-card--photo {
    min-height: 330px;
    padding: 0;
    overflow: hidden;
}

.benefit-card--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-card__media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover .room-card__media img {
    transform: scale(1.045);
}

.room-card__media span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: rgba(255, 255, 255, .9);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.room-card__body {
    padding: 27px;
}

.room-card__body > p {
    color: var(--muted);
    font-size: 15px;
}

.room-card__features {
    display: flex;
    margin: 20px 0 24px;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.room-card__features li {
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--sea-dark);
    background: #eaf5f3;
    font-size: 12px;
    font-weight: 650;
}

.story {
    color: var(--white);
    background: var(--sea-dark);
}

.story__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

.story__copy > p:not(.eyebrow) {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .72);
    font-size: 20px;
}

.story__image img {
    width: 100%;
    height: 650px;
    border-radius: 180px 180px 28px 28px;
    object-fit: cover;
}

.gallery-grid__large {
    grid-row: 1 / 3;
}

.reviews__inner {
    display: grid;
    grid-template-columns: .8fr 1.35fr auto;
    align-items: center;
    gap: 50px;
}

.reviews blockquote {
    margin: 0;
    padding: 36px;
    border-left: 3px solid var(--coral);
    border-radius: 0 22px 22px 0;
    background: var(--sand);
    font-family: Georgia, serif;
    font-size: 22px;
}

.reviews blockquote p {
    margin-bottom: 18px;
}

.reviews blockquote footer {
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 13px;
}

.contact-strip {
    color: var(--white);
    background: var(--sea);
}

.contact-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.contact-strip__inner h2 {
    margin-bottom: 0;
}

.contact-strip__phone {
    display: grid;
    flex: 0 0 auto;
    font-size: 27px;
    font-weight: 800;
}

.contact-strip__phone small {
    color: rgba(255, 255, 255, .64);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.page-hero__inner {
    position: relative;
}

.info-panel {
    display: flex;
    padding: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border-radius: var(--radius);
    background: var(--white);
}

.info-panel p {
    max-width: 740px;
    margin-bottom: 0;
    color: var(--muted);
}

.narrow {
    max-width: 850px;
}

.placeholder {
    display: flex;
    min-height: 420px;
    padding: 55px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.placeholder > p:not(.eyebrow) {
    color: var(--muted);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .8fr 1fr;
    gap: 50px;
}

.site-footer__grid > div:not(:first-child) {
    display: grid;
    align-content: start;
    gap: 10px;
}

.brand--footer {
    margin-bottom: 20px;
    color: var(--white);
}

.brand--footer .brand__text small {
    color: rgba(255, 255, 255, .54);
}

.site-footer__note {
    max-width: 340px;
    font-size: 14px;
}

.site-footer__title {
    margin-bottom: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer__grid a:hover {
    color: var(--white);
}

.site-footer__bottom {
    display: flex;
    margin-top: 60px;
    padding-top: 22px;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

@media (max-width: 1120px) {
    .site-header__inner .header-phone {
        display: none;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .site-header__inner {
        min-height: 74px;
    }

    .header-actions .button {
        display: none;
    }

    .split,
    .story__grid {
        grid-template-columns: 1fr;
    }

    .reviews__inner {
        grid-template-columns: 1fr;
    }

    .contact-strip__inner,
    .info-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .announcement__inner a {
        display: none;
    }

    .brand__text strong {
        font-size: 19px;
    }

    .brand__text small {
        display: none;
    }

    .booking-form {
        padding: 22px 18px;
    }

    .split__media > img {
        height: 430px;
    }

    .floating-note {
        right: 12px;
        bottom: 14px;
    }

    .story__image img {
        height: 490px;
        border-radius: 120px 120px 24px 24px;
    }

    .gallery-grid__large {
        grid-row: auto;
    }

    .contact-strip__phone {
        font-size: 22px;
    }

    .info-panel,
    .placeholder {
        padding: 35px 22px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ── Слайдер фотографий ─────────────────────────────────────────── */
.slider {
    position: relative;
}

.slider__viewport {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: var(--radius);
    scrollbar-width: none;
}

.slider__viewport::-webkit-scrollbar {
    display: none;
}

.slider__slide {
    position: relative;
    flex: 0 0 100%;
    margin: 0;
    scroll-snap-align: start;
}

.slider__slide img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    background: var(--sand);
}

.slider--wide .slider__slide img {
    height: 460px;
}

.slider__slide figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(10, 40, 48, .72);
    color: var(--white);
    font-size: 13px;
    letter-spacing: .02em;
}

.slider__nav {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0 0 4px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    color: var(--sea-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.slider__nav:hover {
    background: var(--white);
}

.slider__nav:focus-visible {
    outline: var(--outline);
    outline-offset: 3px;
}

.slider__nav[disabled] {
    opacity: .35;
    cursor: default;
}

.slider__nav--prev { left: 12px; }
.slider__nav--next { right: 12px; }

.slider__counter {
    position: absolute;
    right: 14px;
    top: 14px;
    margin: 0;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(10, 40, 48, .72);
    color: var(--white);
    font-size: 12px;
    letter-spacing: .04em;
}

.room-card__media .slider__slide img {
    height: 240px;
    border-radius: 0;
}

.room-card__media .slider__viewport {
    border-radius: 0;
}

.room-card__media .slider__nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
}

@media (max-width: 700px) {
    .slider__slide img { height: 230px; }
    .slider--wide .slider__slide img { height: 280px; }
    .slider__nav { width: 38px; height: 38px; font-size: 25px; }
}

/* ── Плитка услуг ───────────────────────────────────────────────── */
.service-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.service-tile {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 26px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.service-tile h3 {
    margin: 0;
    font-size: 19px;
}

.service-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.service-tile__tag {
    align-self: flex-start;
    padding: 4px 11px;
    border-radius: 999px;
    background: var(--sand);
    color: var(--sea-dark);
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.service-tile--free .service-tile__tag {
    background: rgba(31, 143, 122, .14);
    color: var(--sea-dark);
}

.service-tile--paid .service-tile__tag {
    background: rgba(224, 122, 95, .16);
    color: var(--coral-dark);
}

/* ── Акции ──────────────────────────────────────────────────────── */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.promo-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.promo-card__badge {
    align-self: flex-start;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--coral);
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}

.promo-card h3 {
    margin: 0;
    font-size: 21px;
}

.promo-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.promo-card__note {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: var(--muted);
}

/* ── Навигационная цепочка ──────────────────────────────────────── */
.breadcrumbs {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.breadcrumbs__inner {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 0;
    font-size: 13px;
    color: var(--muted);
}

.breadcrumbs__inner a {
    color: var(--sea-dark);
    text-decoration: none;
}

.breadcrumbs__inner a:hover {
    text-decoration: underline;
}

.breadcrumbs__inner [aria-current="page"] {
    color: var(--muted);
}

/* Плитка услуги как ссылка */
a.service-tile {
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

a.service-tile:hover {
    transform: translateY(-3px);
    border-color: var(--sea);
    box-shadow: 0 14px 34px rgba(13, 83, 97, .13);
}

a.service-tile:focus-visible {
    outline: var(--outline);
    outline-offset: 3px;
}

.service-tile__more {
    margin-top: auto;
    padding-top: 12px;
    color: var(--sea-dark);
    font-size: 14px;
    font-weight: 600;
}

/* Карточка-ссылка в подборках */
a.content-card--link {
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}

a.content-card--link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(13, 83, 97, .13);
}

a.content-card--link:focus-visible {
    outline: var(--outline);
    outline-offset: 3px;
}

.content-card__more {
    display: inline-block;
    margin-top: 10px;
    color: var(--sea-dark);
    font-size: 14px;
    font-weight: 600;
}

/* Ключевые характеристики номера */
.room-facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.room-facts div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 22px;
    background: var(--white);
}

.room-facts small {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.room-facts strong {
    font-size: 24px;
    color: var(--sea-dark);
}

.check-list--compact li {
    font-size: 15px;
}

.room-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.room-card__body h3 a:hover {
    color: var(--sea-dark);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .rate-table__photo {
        width: 86px;
        padding: 8px;
    }

    .rate-table__photo img {
        width: 74px;
        height: 58px;
    }
}

.site-footer__disclaimer {
    margin-top: 14px;
    max-width: 900px;
    font-size: 12px;
    line-height: 1.6;
    opacity: .6;
}
