:root {
    --navy: #0b3456;
    --navy-dark: #062845;
    --navy-soft: #154a72;
    --gold: #c89a52;
    --gold-light: #e5c486;
    --ink: #162a3b;
    --muted: #617181;
    --paper: #fbfaf7;
    --white: #fff;
    --line: rgba(10, 52, 86, .14);
    --shadow: 0 18px 45px rgba(8, 37, 61, .13);
    --radius: 10px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
    top: 32px;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: #fff;
    background: #000;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    z-index: 130;
    top: 0;
    background: transparent;
}

@media (min-width: 781px) {
    .site-header {
        position: sticky;
        top: 0;
    }

    .admin-bar .site-header {
        top: 32px;
    }
}

.topbar {
    color: #fff;
    background: linear-gradient(90deg, #0b3456, #0e456f);
}

.topbar__inner {
    display: grid;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(270px, .86fr);
    align-items: stretch;
}

.topbar__item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 30px;
    border-left: 1px solid rgba(255, 255, 255, .18);
    font-size: .9rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.topbar__item strong {
    white-space: nowrap;
}

.topbar__icon,
.topbar__arrow {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
}

.topbar__icon {
    width: 30px;
    height: 30px;
}

.topbar__icon svg {
    width: 26px;
    height: 26px;
}

.topbar__copy {
    display: flex;
    flex-direction: column;
    font-size: .82rem;
    line-height: 1.15;
    text-align: left;
    white-space: nowrap;
}

.topbar__item small {
    margin-top: 3px;
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .04em;
    opacity: .82;
}

.topbar__item:hover,
.topbar__item:focus-visible {
    background: rgba(255, 255, 255, .08);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button--gold {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #d8ad68);
    box-shadow: 0 8px 20px rgba(148, 103, 38, .2);
}

.button--gold:hover,
.button--gold:focus-visible {
    background: linear-gradient(135deg, #b8873f, var(--gold));
}

.button--outline {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}

.button--light {
    color: #fff;
    border-color: rgba(255, 255, 255, .7);
}

.topbar__booking {
    min-width: 270px;
    gap: 15px;
    padding-inline: 26px;
    border-radius: 0;
    box-shadow: none;
}

.topbar__booking .topbar__arrow {
    margin-left: auto;
    font-size: 1.2rem;
}

.navshell {
    position: absolute;
    z-index: 110;
    top: 100%;
    right: 0;
    left: 0;
    color: #fff;
    background: linear-gradient(180deg, rgba(3, 30, 54, .34), rgba(3, 30, 54, .05));
    box-shadow: none;
    transition: background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.navshell.is-scrolled {
    position: fixed;
    top: 58px;
    color: var(--navy-dark);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 7px 24px rgba(6, 40, 69, .14);
    backdrop-filter: blur(14px);
}

.navshell.menu-is-open {
    color: var(--navy-dark);
    background: rgba(255, 255, 255, .99);
    box-shadow: 0 7px 24px rgba(6, 40, 69, .14);
}

.admin-bar .navshell.is-scrolled {
    top: 90px;
}

.navshell__inner {
    display: flex;
    min-height: 94px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    position: relative;
    display: inline-flex;
    width: 210px;
    height: 78px;
    align-items: center;
}

.brand img {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 184px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
    transform: translateY(-50%);
    transition: opacity .22s ease;
}

.brand__logo--light {
    opacity: 1;
}

.brand__logo--dark {
    opacity: 0;
}

.navshell.is-scrolled .brand__logo--light,
.navshell.menu-is-open .brand__logo--light {
    opacity: 0;
}

.navshell.is-scrolled .brand__logo--dark,
.navshell.menu-is-open .brand__logo--dark {
    opacity: 1;
}

.primary-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-menu a {
    position: relative;
    display: block;
    padding: 36px 0 31px;
    color: #fff;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
    text-shadow: 0 1px 14px rgba(3, 30, 54, .34);
}

.navshell.is-scrolled .primary-menu a,
.navshell.menu-is-open .primary-menu a {
    color: var(--navy-dark);
    text-shadow: none;
}

.primary-menu a::after {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
    transform: scaleX(1);
}

.language-switch a {
    display: inline-flex;
    padding: 6px 4px;
    color: rgba(255, 255, 255, .82);
}

.language-switch a::after {
    display: none;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
}

.language-switch a.is-current {
    color: #fff;
    font-weight: 800;
}

.navshell.is-scrolled .language-switch,
.navshell.menu-is-open .language-switch {
    color: var(--muted);
}

.navshell.is-scrolled .language-switch a,
.navshell.menu-is-open .language-switch a {
    color: var(--muted);
}

.navshell.is-scrolled .language-switch a.is-current,
.navshell.menu-is-open .language-switch a.is-current {
    color: var(--navy);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.navshell.is-scrolled .menu-toggle > span:not(.screen-reader-text),
.navshell.menu-is-open .menu-toggle > span:not(.screen-reader-text) {
    background: var(--navy);
}

.hero {
    position: relative;
    display: grid;
    min-height: 600px;
    align-items: center;
    color: #fff;
    background: #0b3456 center 55% / cover no-repeat;
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 25, 42, .78) 0%, rgba(3, 25, 42, .34) 50%, rgba(3, 25, 42, .08) 100%);
    content: "";
}

.hero__content {
    width: min(760px, 75%);
    padding: 170px 0 140px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    color: var(--gold-light);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 32px;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero h1,
.page-hero h1 {
    max-width: 850px;
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 6.2vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
    text-wrap: balance;
}

.hero__lead {
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.55;
}

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

.booking-panel {
    position: relative;
    z-index: 5;
    width: min(1060px, calc(100% - 40px));
    margin: -62px auto 0;
    padding: 20px 22px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    box-shadow: 0 24px 60px rgba(6, 40, 69, .28);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr .75fr auto;
    align-items: end;
    gap: 0;
}

.booking-field {
    display: grid;
    gap: 3px;
    padding: 3px 24px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.booking-field label {
    color: rgba(255, 255, 255, .75);
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 2px 0;
    border: 0;
    color: #fff;
    background: transparent;
    color-scheme: dark;
    outline: 0;
}

.booking-field select option {
    color: #111;
}

.booking-form .button {
    min-height: 58px;
    margin-left: 20px;
    padding-inline: 28px;
}

.section {
    padding: 92px 0;
}

.section--white {
    background: #fff;
}

.section--soft {
    background: linear-gradient(180deg, #f7f3ec, #fbfaf7);
}

.section--navy {
    color: #fff;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-soft));
}

.section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title .eyebrow {
    justify-content: center;
}

.section-title .eyebrow::after {
    width: 32px;
    height: 1px;
    background: currentColor;
    content: "";
}

.section-title h2,
.content-prose h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.12;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.section--navy .section-title h2,
.section--navy .section-title p {
    color: #fff;
}

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

.room-card {
    overflow: hidden;
    border: 1px solid rgba(10, 52, 86, .1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(8, 37, 61, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.room-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.room-card:hover img {
    transform: scale(1.035);
}

.room-card__body {
    padding: 22px 22px 24px;
}

.room-card__body h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
}

.room-card__body p {
    min-height: 52px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.5;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
}

.benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.benefit {
    display: grid;
    min-height: 76px;
    place-items: center;
    padding: 0 22px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.benefit:last-child {
    border-right: 0;
}

.benefit__icon {
    color: var(--gold);
    font-size: 1.55rem;
    line-height: 1;
}

.benefit strong {
    font-size: .77rem;
    letter-spacing: .045em;
    line-height: 1.35;
    text-transform: uppercase;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}

.split__image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.split__content h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
}

.split__content p {
    color: var(--muted);
}

.split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.reviews {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.reviews blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-style: italic;
    line-height: 1.45;
}

.reviews .stars {
    margin-top: 20px;
    color: var(--gold-light);
    font-size: 1.25rem;
    letter-spacing: .15em;
}

.reviews cite {
    display: block;
    margin-top: 7px;
    font-size: .86rem;
    font-style: normal;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 38px 48px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    box-shadow: var(--shadow);
}

.cta-band h2 {
    margin: 0 0 6px;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.cta-band__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 440px;
    align-items: end;
    color: #fff;
    background: var(--navy) center 52% / cover no-repeat;
    isolation: isolate;
}

.page-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 25, 42, .82), rgba(3, 25, 42, .18));
    content: "";
}

.page-hero__content {
    padding: 90px 0 78px;
}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(2.9rem, 6vw, 5rem);
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.14rem;
}

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

.page-hero__actions .button--outline {
    border-color: rgba(255, 255, 255, .76);
    color: #fff;
    background: rgba(5, 35, 63, .24);
}

.page-hero__actions .button--outline:hover {
    border-color: #fff;
    color: var(--navy-dark);
    background: #fff;
}

.en-home-callback {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.55fr);
    align-items: center;
    gap: clamp(30px, 5vw, 68px);
    padding: clamp(38px, 5vw, 64px);
    border-top: 3px solid var(--gold-light);
    color: #fff;
    background: var(--navy-dark);
    box-shadow: var(--shadow);
}

.en-home-callback__copy h2 {
    margin: 10px 0 18px;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2.15rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.05;
}

.en-home-callback__copy > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.en-home-callback__form {
    min-width: 0;
    padding: clamp(26px, 3.5vw, 40px);
    background: #fff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .14);
}

.en-home-callback__form .ls-callback-form {
    align-items: end;
}

.en-home-callback__form .ls-form-notice {
    margin-top: 0;
}

.breadcrumb {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: .8rem;
}

.breadcrumb a {
    color: var(--navy);
}

.content-prose {
    max-width: 800px;
    margin: 0 auto;
}

.content-prose > p {
    color: #445665;
    font-size: 1.05rem;
}

.content-prose h2 {
    margin-top: 52px;
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
}

.content-prose h3 {
    margin: 32px 0 10px;
    color: var(--navy);
    font-size: 1.2rem;
}

.content-prose ul {
    display: grid;
    gap: 10px;
    padding-left: 22px;
    color: #445665;
    line-height: 1.7;
}

.content-prose a {
    overflow-wrap: anywhere;
}

.ls-policy-table-wrap {
    max-width: 100%;
    margin: 26px 0;
    overflow-x: auto;
    border: 1px solid var(--line);
    background: #fff;
}

.ls-policy-table-wrap table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.ls-policy-table-wrap th,
.ls-policy-table-wrap td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    color: #445665;
    text-align: left;
    vertical-align: top;
}

.ls-policy-table-wrap th {
    background: var(--navy);
    color: #fff;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ls-policy-table-wrap tr:last-child td {
    border-bottom: 0;
}

.content-prose code {
    padding: 2px 5px;
    border-radius: 3px;
    background: #f1eee8;
    color: var(--navy);
}

.facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.facts li {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    font-size: .87rem;
    font-weight: 700;
    text-align: center;
}

.faq-list {
    display: grid;
    max-width: 820px;
    gap: 12px;
    margin: 0 auto;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
}

.faq-list summary {
    position: relative;
    padding: 20px 52px 20px 22px;
    color: var(--navy);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 18px;
    right: 22px;
    color: var(--gold);
    content: "+";
    font-size: 1.4rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 22px 22px;
    margin: 0;
    color: var(--muted);
}

.service-grid,
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card,
.experience-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.service-card span {
    color: var(--gold);
    font-size: 1.8rem;
}

.service-card h3,
.experience-card h3 {
    margin: 12px 0 8px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
}

.service-card p,
.experience-card p {
    margin: 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
}

.contact-details {
    padding: 38px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy);
}

.contact-details h2 {
    margin-top: 0;
    font-family: var(--serif);
    font-weight: 400;
}

.contact-details address {
    font-style: normal;
}

.contact-details a {
    display: block;
    margin-top: 12px;
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-size: .84rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    background: #fff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-consent {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 9px !important;
    font-weight: 400 !important;
}

.contact-consent input {
    width: 18px;
    min-width: 18px;
    margin-top: 4px;
}

.contact-consent a {
    color: var(--navy);
    text-decoration: underline;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
}

.contact-status {
    padding: 13px 16px;
    border-left: 3px solid var(--gold);
    background: #f5efe4;
}

.contact-status--error {
    border-color: #a13d32;
    background: #fff1ef;
}

.site-footer {
    padding-top: 70px;
    color: rgba(255, 255, 255, .78);
    background: #06243d;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .75fr .9fr 1fr 1.1fr;
    gap: 34px;
    padding-bottom: 60px;
}

.footer-brand img {
    width: 200px;
    height: auto;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-footer h2 {
    margin: 8px 0 18px;
    color: #fff;
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-footer address {
    font-style: normal;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-cta .button {
    margin-top: 10px;
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-legal {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-legal a {
    color: inherit;
}

.mobile-cta {
    display: none;
}

@media (max-width: 1080px) {
    .primary-menu ul {
        gap: 20px;
    }

    .primary-menu a {
        font-size: .78rem;
    }

    .brand {
        width: 170px;
    }

    .brand img {
        width: 160px;
    }

    .topbar__item {
        min-width: auto;
        padding-inline: 18px;
    }

    .topbar__inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 250px;
    }

    .topbar__booking {
        min-width: 250px;
    }

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

    .booking-form {
        grid-template-columns: 1fr 1fr;
        row-gap: 18px;
    }

    .booking-form .button {
        margin-left: 0;
    }

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

@media (max-width: 820px) {
    body.admin-bar .site-header {
        top: 46px;
    }

    .navshell.is-scrolled {
        top: 46px;
    }

    .admin-bar .navshell.is-scrolled {
        top: 92px;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .topbar__inner {
        width: 100%;
        min-height: 46px;
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    }

    .topbar__map {
        display: none;
    }

    .topbar__item {
        gap: 8px;
        padding: 0 10px;
        font-size: .76rem;
        overflow: hidden;
    }

    .topbar__booking {
        min-width: 0;
    }

    .topbar__arrow,
    .topbar__item small {
        display: none;
    }

    .topbar__booking .topbar__copy {
        display: grid;
        gap: 2px;
        line-height: 1.05;
    }

    .topbar__booking small {
        display: block;
        margin: 0;
        overflow: hidden;
        font-size: .53rem;
        font-weight: 600;
        letter-spacing: .025em;
        line-height: 1.05;
        text-overflow: clip;
        white-space: nowrap;
    }

    .topbar__copy {
        min-width: 0;
        overflow: hidden;
        font-size: .76rem;
        text-overflow: clip;
    }

    .topbar__item strong {
        display: block;
        max-width: 100%;
        overflow: hidden;
        font-size: .76rem;
        letter-spacing: .015em;
        text-overflow: clip;
    }

    .topbar__booking strong {
        font-size: .72rem;
    }

    .topbar__icon {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
    }

    .topbar__icon svg {
        width: 21px;
        height: 21px;
    }

    .navshell__inner {
        min-height: 76px;
    }

    .brand img {
        width: 150px;
        height: 64px;
    }

    .brand {
        height: 64px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-menu {
        position: absolute;
        top: 76px;
        right: 0;
        left: 0;
        display: none;
        padding: 8px 20px 22px;
        border-top: 1px solid var(--line);
        background: #fff;
        box-shadow: 0 22px 40px rgba(6, 40, 69, .16);
    }

    .primary-menu.is-open {
        display: block;
    }

    .primary-menu ul {
        display: grid;
        gap: 0;
    }

    .primary-menu a {
        padding: 13px 5px;
        border-bottom: 1px solid var(--line);
    }

    .primary-menu a::after {
        display: none;
    }

    .language-switch a {
        margin-top: 0;
        border-bottom: 0;
        text-align: center;
    }

    .language-switch {
        justify-content: center;
        padding-top: 10px;
    }

    .hero {
        min-height: 570px;
        background-position: 58% center;
    }

    .hero__content {
        width: 100%;
        padding: 80px 0 120px;
    }

    .hero h1 {
        font-size: clamp(3rem, 12vw, 4.6rem);
    }

    .booking-panel {
        margin-top: -48px;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .booking-field {
        padding: 5px 14px;
    }

    .booking-form .button {
        grid-column: 1 / -1;
    }

    .section {
        padding: 72px 0;
    }

    .split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .split__image {
        order: -1;
    }

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

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

    .benefit:nth-child(2n) {
        border-right: 0;
    }

    .benefit:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }

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

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

    .cta-band {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .cta-band__actions {
        justify-content: flex-start;
    }

    .en-home-callback {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 58px;
    }

    .topbar__arrow,
    .topbar__item small {
        display: none;
    }

    .topbar__icon {
        width: 23px;
        height: 23px;
    }

    .topbar__icon svg {
        width: 21px;
        height: 21px;
    }

    .topbar__copy {
        display: block;
        font-size: .72rem;
    }

    .topbar__item {
        letter-spacing: 0;
    }

    .hero {
        min-height: 540px;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(3, 25, 42, .78), rgba(3, 25, 42, .34));
    }

    .hero__content {
        padding: 68px 0 108px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.7rem, 14vw, 3.7rem);
    }

    .hero__actions .button {
        width: 100%;
    }

    .page-hero__actions .button {
        width: 100%;
    }

    .booking-panel {
        width: calc(100% - 20px);
        padding: 18px 14px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-field {
        padding: 8px 6px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
    }

    .cards,
    .service-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .en-home-callback {
        padding: 28px 18px;
    }

    .en-home-callback__form {
        padding: 24px 18px;
    }

    .room-card__body p {
        min-height: auto;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefit,
    .benefit:nth-child(2n),
    .benefit:last-child {
        grid-column: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .facts {
        grid-template-columns: 1fr;
    }

    .page-hero {
        min-height: 390px;
    }

    .page-hero__content {
        padding: 68px 0 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        display: grid;
    }

    .mobile-cta {
        position: fixed;
        z-index: 999;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: 4fr 1fr;
        min-height: 58px;
        color: #fff;
        background: var(--navy-dark);
        box-shadow: 0 -8px 25px rgba(6, 40, 69, .2);
    }

    .mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: .82rem;
        font-weight: 800;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .mobile-cta svg {
        width: 22px;
        height: 22px;
        color: var(--gold-light);
    }

    .mobile-cta .mobile-cta__whatsapp {
        min-width: 64px;
        border-left: 1px solid rgba(255,255,255,.22);
        color: #fff;
        background: #25d366;
    }

    .mobile-cta .mobile-cta__whatsapp svg {
        display: block;
        width: 32px;
        height: 32px;
        max-width: 32px;
        aspect-ratio: 1;
        flex: 0 0 32px;
        color: #fff;
        overflow: visible;
    }

    .mobile-cta .whatsapp-mark {
        fill: currentColor;
        stroke: none;
    }

    .mobile-cta .whatsapp-phone {
        fill: none;
        stroke: #25d366;
        stroke-width: 1.65;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
}

@media (max-width: 420px) {
    .topbar__inner {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .topbar__item {
        gap: 6px;
        padding-inline: 6px;
    }

    .topbar__item strong {
        font-size: .69rem;
    }

    .topbar__booking strong {
        font-size: .67rem;
    }

    .topbar__booking small {
        font-size: .48rem;
    }

    .topbar__icon {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .topbar__icon svg {
        width: 19px;
        height: 19px;
    }
}
.footer-cookie-settings {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ls-cookie-consent {
    position: fixed;
    z-index: 100000;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    max-width: 1120px;
    margin: auto;
    padding: 24px 26px;
    border-top: 2px solid #d9ad59;
    background: #0b3658;
    color: #fff;
    box-shadow: 0 18px 55px rgba(3, 23, 40, .28);
}

.ls-cookie-consent h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.ls-cookie-consent p {
    max-width: 760px;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, .88);
    font-size: .92rem;
    line-height: 1.55;
}

.ls-cookie-consent a {
    color: #efd08f;
    font-size: .85rem;
    text-underline-offset: 3px;
}

.ls-cookie-consent__actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ls-cookie-consent button {
    min-height: 46px;
    border: 1px solid #d9ad59;
    padding: 0 18px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
}

.ls-cookie-reject {
    background: transparent;
    color: #fff;
}

.ls-cookie-accept {
    background: #d9ad59;
    color: #082c49;
}

@media (max-width: 720px) {
    .ls-cookie-consent {
        right: 12px;
        bottom: 76px;
        left: 12px;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .ls-cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ls-cookie-consent button {
        width: 100%;
    }
}
