/* =========================================================
   CORALI STUDIOS & PORTOBELLO APARTMENTS
   GLOBAL STYLES
========================================================= */


/* =========================================================
   CSS VARIABLES
========================================================= */

:root {
    --color-white: #ffffff;
    --color-cream: #f7f2e9;
    --color-sand: #e7dccb;

    --color-petrol: #0b5967;
    --color-petrol-dark: #063e49;
    --color-petrol-deep: #032e37;

    --color-terracotta: #c87550;
    --color-terracotta-dark: #ac5d3d;

    --color-text: #26383e;
    --color-muted: #657278;
    --color-border: rgba(6, 62, 73, 0.16);

    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;

    --container-width: 1240px;

    --header-height: 92px;

    --border-radius-small: 4px;
    --border-radius-medium: 10px;
    --border-radius-large: 24px;

    --shadow-small:
        0 8px 24px rgba(3, 46, 55, 0.1);

    --shadow-medium:
        0 16px 45px rgba(3, 46, 55, 0.16);

    --transition-fast: 160ms ease;
    --transition-normal: 260ms ease;
    --transition-slow: 600ms ease;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    width: 100%;

    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    margin: 0;

    overflow-x: hidden;

    background: var(--color-white);
    color: var(--color-text);

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}


/* =========================================================
   TYPOGRAPHY RESET
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-petrol-dark);

    font-family: var(--font-heading);
    font-weight: 500;

    line-height: 1.1;
}

p {
    margin-bottom: 0;
}

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

ul,
ol {
    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   MEDIA
========================================================= */

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}


/* =========================================================
   FORM ELEMENTS
========================================================= */

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

button {
    padding: 0;

    border: 0;

    background: none;
    color: inherit;

    cursor: pointer;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

:focus-visible {
    outline: 3px solid rgba(200, 117, 80, 0.45);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}


/* =========================================================
   GLOBAL LAYOUT
========================================================= */

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

    margin-inline: auto;
}

.section {
    position: relative;

    width: 100%;
}


/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 13px 24px;

    border: 1px solid transparent;
    border-radius: var(--border-radius-small);

    font-size: 13px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;

    transition:
        transform var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.button--primary {
    background: var(--color-terracotta);
    color: var(--color-white);

    box-shadow:
        0 8px 20px
        rgba(200, 117, 80, 0.22);
}

.button--secondary {
    background: transparent;
    border-color: currentColor;

    color: var(--color-white);
}

@media (hover: hover) {

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

    .button--primary:hover {
        background: var(--color-terracotta-dark);

        box-shadow:
            0 12px 26px
            rgba(200, 117, 80, 0.28);
    }

    .button--secondary:hover {
        background: rgba(255, 255, 255, 0.12);
    }
}

.button:active {
    transform: translateY(1px) scale(0.98);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    :root {
        --header-height: 84px;
    }

    .container {
        width: min(
            calc(100% - 36px),
            var(--container-width)
        );
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    :root {
        --header-height: 76px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: calc(100% - 28px);
    }

    .button {
        min-height: 46px;
        padding: 12px 20px;

        font-size: 12px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    color: var(--color-white);

    transition:
        background-color var(--transition-normal),
        box-shadow var(--transition-normal),
        backdrop-filter var(--transition-normal);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr) auto;
    align-items: center;

    min-height: var(--header-height);
    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.site-brand {
    display: flex;
    align-items: center;

    min-width: 0;
    gap: 12px;
}

.site-brand__symbol {
    display: grid;
    flex: 0 0 auto;
    place-items: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;

    color: var(--color-white);

    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1;
}

.site-brand__text {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.site-brand__text strong {
    color: var(--color-white);

    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: 0.06em;
}

.site-brand__text > span {
    margin-top: 5px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 9px;
    font-weight: 600;

    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-brand__text small {
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 8px;
    font-weight: 500;

    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(18px, 2.2vw, 34px);
}

.desktop-navigation__link {
    position: relative;

    padding: 34px 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 500;

    line-height: 1;
    white-space: nowrap;

    transition: color var(--transition-fast);
}

.desktop-navigation__link::after {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;

    width: 100%;
    height: 1px;

    background: var(--color-white);

    content: "";

    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-normal);
}

.desktop-navigation__link:hover,
.desktop-navigation__link:focus-visible,
.desktop-navigation__link.is-active {
    color: var(--color-white);
}

.desktop-navigation__link:hover::after,
.desktop-navigation__link:focus-visible::after,
.desktop-navigation__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 20px;
}

.language-switcher {
    display: flex;
    align-items: center;

    gap: 5px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 600;
}

.language-switcher__link {
    transition: color var(--transition-fast);
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible,
.language-switcher__link.is-active {
    color: var(--color-white);
}

.header-booking-button {
    min-width: 128px;
}


/* =========================================================
   MOBILE / TABLET HEADER ELEMENTS
========================================================= */

.mobile-header-actions,
.mobile-navigation,
.menu-backdrop {
    display: none;
}


/* =========================================================
   SCROLLED HEADER STATE
========================================================= */

.site-header.is-scrolled {
    position: fixed;

    background: rgba(3, 46, 55, 0.92);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.12);

    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}


/* =========================================================
   TABLET HEADER
========================================================= */

@media (max-width: 1050px) {

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;

        gap: 18px;
    }

    .desktop-navigation,
    .header-actions {
        display: none;
    }

    .mobile-header-actions {
        display: grid;
        grid-template-columns: auto 42px;
        align-items: center;
        justify-items: end;

        gap: 6px 12px;
    }

    .mobile-header-actions .language-switcher {
        grid-column: 1;
        grid-row: 1;
    }

    .mobile-menu-button {
        display: grid;
        grid-column: 2;
        grid-row: 1;
        place-items: center;

        width: 42px;
        height: 42px;

        -webkit-tap-highlight-color: transparent;

        position: relative;
        z-index: 1300;

        transition:
            background-color var(--transition-fast),
            transform var(--transition-fast);

     
    }

    .mobile-menu-button span {
        position: absolute;

        width: 19px;
        height: 1.5px;

        background: var(--color-white);

        transition:
            transform var(--transition-normal),
            opacity var(--transition-fast);
    }

    .mobile-menu-button span:nth-child(1) {
        transform: translateY(-6px);
    }

    .mobile-menu-button span:nth-child(3) {
        transform: translateY(6px);
    }

    .mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
    }

    .mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .mobile-menu-button:active {
        transform: scale(0.94);
    }

    .mobile-booking-button {
        grid-column: 1 / -1;
        grid-row: 2;

        min-width: 142px;
        min-height: 36px;

        padding: 9px 17px;

        font-size: 11px;
    }


    /* Mobile navigation overlay */

    .mobile-navigation {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1200;

        display: block;

        width: min(390px, 88vw);
        height: 100dvh;
        padding:
            calc(var(--header-height) + 28px)
            28px
            32px;

        overflow-y: auto;

        background: var(--color-petrol-deep);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateX(100%);

        transition:
            transform var(--transition-normal),
            opacity var(--transition-normal),
            visibility var(--transition-normal);
    }

    .mobile-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateX(0);
    }

    .mobile-navigation__inner {
        display: flex;
        flex-direction: column;

        gap: 0;
    }

    .mobile-navigation__link {
        padding: 17px 0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.12);

        color: rgba(255, 255, 255, 0.78);

        font-family: var(--font-heading);
        font-size: 25px;

        line-height: 1.15;

        opacity: 0;
        transform: translateX(18px);

        transition:
            color var(--transition-fast),
            opacity var(--transition-normal),
            transform var(--transition-normal);
    }

    .mobile-navigation.is-open
    .mobile-navigation__link {
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-navigation.is-open
    .mobile-navigation__link:nth-child(1) {
        transition-delay: 80ms;
    }

    .mobile-navigation.is-open
    .mobile-navigation__link:nth-child(2) {
        transition-delay: 120ms;
    }

    .mobile-navigation.is-open
    .mobile-navigation__link:nth-child(3) {
        transition-delay: 160ms;
    }

    .mobile-navigation.is-open
    .mobile-navigation__link:nth-child(4) {
        transition-delay: 200ms;
    }

    .mobile-navigation.is-open
    .mobile-navigation__link:nth-child(5) {
        transition-delay: 240ms;
    }

    .mobile-navigation.is-open
    .mobile-navigation__link:nth-child(6) {
        transition-delay: 280ms;
    }

    .mobile-navigation__link:hover,
    .mobile-navigation__link:focus-visible,
    .mobile-navigation__link.is-active {
        color: var(--color-white);
    }


    /* Dark page backdrop */

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 900;

        display: block;

        width: 100%;
        height: 100%;

        background: rgba(0, 17, 22, 0.62);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);

        transition:
            opacity var(--transition-normal),
            visibility var(--transition-normal);
    }

    body.menu-open .menu-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 760px) {

    .site-header__inner {
        gap: 10px;
    }

    .site-brand {
        gap: 8px;
    }

    .site-brand__symbol {
        width: 36px;
        height: 36px;

        font-size: 22px;
    }

    .site-brand__text strong {
        font-size: 21px;
    }

    .site-brand__text > span {
        max-width: 165px;

        font-size: 7px;
    }

    .site-brand__text small {
        font-size: 7px;
    }

    .mobile-header-actions {
        grid-template-columns: auto 40px;

        gap: 4px 8px;
    }

    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }

    .mobile-booking-button {
        min-width: 128px;
        min-height: 34px;

        padding: 8px 14px;

        font-size: 10px;
    }

    .mobile-navigation {
        width: 100%;

        padding:
            calc(var(--header-height) + 26px)
            22px
            28px;
    }

    .mobile-navigation__link {
        font-size: 23px;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    display: flex;
    align-items: flex-end;

    width: 100%;
    min-height: 100svh;

    overflow: hidden;

    background: var(--color-petrol-deep);
    color: var(--color-white);
}


/* =========================================================
   HERO IMAGE
========================================================= */

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

    overflow: hidden;
}

.hero__image,
.hero__video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.03);

    animation:
        hero-image-reveal
        1.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero__video {
    background: var(--color-petrol-deep);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(2, 25, 31, 0.76) 0%,
            rgba(2, 25, 31, 0.47) 43%,
            rgba(2, 25, 31, 0.12) 72%,
            rgba(2, 25, 31, 0.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2, 25, 31, 0.46) 0%,
            rgba(2, 25, 31, 0.05) 42%,
            rgba(2, 25, 31, 0.17) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero__inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;

    min-height: 100svh;
    padding-top: calc(var(--header-height) + 70px);
    padding-bottom: clamp(90px, 12vh, 140px);
}

.hero__content {
    width: min(720px, 100%);

    color: var(--color-white);
}

.hero__eyebrow {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0;
    transform: translateY(22px);

    animation:
        hero-content-reveal
        800ms
        300ms
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero__title {
    max-width: 690px;
    margin-bottom: 24px;

    color: var(--color-white);

    font-size: clamp(54px, 6.5vw, 94px);
    font-weight: 500;

    line-height: 0.98;
    letter-spacing: -0.035em;

    text-wrap: balance;

    opacity: 0;
    transform: translateY(30px);

    animation:
        hero-content-reveal
        900ms
        420ms
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero__description {
    max-width: 610px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 18px;
    font-weight: 400;

    line-height: 1.7;

    opacity: 0;
    transform: translateY(24px);

    animation:
        hero-content-reveal
        850ms
        560ms
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 14px;

    opacity: 0;
    transform: translateY(22px);

    animation:
        hero-content-reveal
        850ms
        700ms
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


/* =========================================================
   HERO SCROLL INDICATOR
========================================================= */

.hero__scroll {
    position: absolute;
    right: clamp(28px, 5vw, 78px);
    bottom: 42px;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 11px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    writing-mode: vertical-rl;

    opacity: 0;

    animation:
        hero-scroll-reveal
        700ms
        1s
        ease
        forwards;
}

.hero__scroll-line {
    position: relative;

    width: 1px;
    height: 54px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.32);
}

.hero__scroll-line::after {
    position: absolute;
    top: -100%;
    left: 0;

    width: 100%;
    height: 100%;

    background: var(--color-white);

    content: "";

    animation:
        hero-scroll-line
        2s
        1.2s
        ease-in-out
        infinite;
}


/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes hero-image-reveal {

    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes hero-content-reveal {

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-scroll-reveal {

    to {
        opacity: 1;
    }
}

@keyframes hero-scroll-line {

    0% {
        transform: translateY(0);
    }

    55%,
    100% {
        transform: translateY(200%);
    }
}


/* =========================================================
   HERO — TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero__inner {
        padding-bottom: 105px;
    }

    .hero__content {
        width: min(650px, 82%);
    }

    .hero__title {
        font-size: clamp(52px, 8vw, 76px);
    }

    .hero__description {
        max-width: 560px;

        font-size: 17px;
    }

    .hero__scroll {
        right: 28px;
    }
}


/* =========================================================
   HERO — MOBILE
========================================================= */

@media (max-width: 760px) {

    .hero {
        min-height: 100svh;
    }

    .hero__image {
        object-position: 58% center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(2, 25, 31, 0.82) 0%,
                rgba(2, 25, 31, 0.48) 52%,
                rgba(2, 25, 31, 0.24) 100%
            );
    }

    .hero__inner {
        align-items: flex-end;

        min-height: 100svh;
        padding-top: calc(var(--header-height) + 80px);
        padding-bottom: 64px;
    }

    .hero__content {
        width: 100%;
    }

    .hero__eyebrow {
        margin-bottom: 16px;

        font-size: 12px;
    }

    .hero__title {
        max-width: 520px;
        margin-bottom: 20px;

        font-size: clamp(45px, 14vw, 64px);

        line-height: 1;
    }

    .hero__description {
        max-width: 480px;
        margin-bottom: 28px;

        font-size: 16px;
        line-height: 1.6;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;

        width: min(100%, 340px);
        gap: 11px;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }

    .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;

    text-align: center;
}

.hero__eyebrow,
.hero__title,
.hero__description {
    margin-right: auto;
    margin-left: auto;
}

.hero__actions {
    align-items: center;

    margin-right: auto;
    margin-left: auto;
}

.hero__actions .button {
    justify-content: center;

    text-align: center;
}
}


/* =========================================================
   HERO — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero__title {
        font-size: clamp(41px, 13vw, 54px);
    }

    .hero__description {
        font-size: 15px;
    }
}

/* =========================================================
   WELCOME SECTION
========================================================= */

.welcome-section {
    padding: clamp(90px, 10vw, 150px) 0;

    background: var(--color-cream);
}

.welcome-section__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);
    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}


/* =========================================================
   WELCOME IMAGE
========================================================= */

.welcome-section__media {
    position: relative;

    width: 100%;
    max-width: 620px;
}

.welcome-section__image {
    position: relative;
    z-index: 2;

    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;

    box-shadow: var(--shadow-medium);
}

.welcome-section__image-accent {
    position: absolute;
    right: -34px;
    bottom: -34px;
    z-index: 1;

    width: 72%;
    height: 72%;

    border: 1px solid rgba(11, 89, 103, 0.28);
}


/* =========================================================
   WELCOME CONTENT
========================================================= */

.welcome-section__content {
    max-width: 560px;
}

.welcome-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.welcome-section__title {
    max-width: 520px;
    margin-bottom: 28px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.welcome-section__lead {
    max-width: 530px;
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 19px;
    line-height: 1.7;
}

.welcome-section__text {
    max-width: 520px;
    margin-bottom: 34px;

    color: var(--color-muted);

    font-size: 16px;
    line-height: 1.8;
}

.welcome-section__link {
    display: inline-flex;
    align-items: center;

    gap: 12px;
    padding-bottom: 7px;

    border-bottom: 1px solid var(--color-petrol);

    color: var(--color-petrol);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        gap var(--transition-fast);
}

.welcome-section__link span {
    font-size: 18px;
    line-height: 1;
}

@media (hover: hover) {

    .welcome-section__link:hover {
        gap: 18px;

        color: var(--color-terracotta);
        border-color: var(--color-terracotta);
    }
}


/* =========================================================
   WELCOME SECTION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .welcome-section__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(340px, 0.9fr);

        gap: 58px;
    }

    .welcome-section__image-accent {
        right: -24px;
        bottom: -24px;
    }

    .welcome-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .welcome-section__lead {
        font-size: 18px;
    }
}


/* =========================================================
   WELCOME SECTION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .welcome-section {
        padding: 78px 0 88px;
    }

    .welcome-section__grid {
        grid-template-columns: 1fr;

        gap: 64px;
    }

    .welcome-section__media {
        max-width: 520px;
        margin-inline: auto;
    }

    .welcome-section__image-accent {
        right: -12px;
        bottom: -18px;

        width: 78%;
        height: 76%;
    }

    .welcome-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;

        text-align: center;
    }

    .welcome-section__eyebrow,
    .welcome-section__title,
    .welcome-section__lead,
    .welcome-section__text {
        margin-right: auto;
        margin-left: auto;
    }

    .welcome-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .welcome-section__lead {
        margin-bottom: 20px;

        font-size: 17px;
    }

    .welcome-section__text {
        margin-bottom: 30px;

        font-size: 16px;
        line-height: 1.75;
    }
}


/* =========================================================
   WELCOME SECTION — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .welcome-section {
        padding: 68px 0 78px;
    }

    .welcome-section__grid {
        gap: 54px;
    }

    .welcome-section__title {
        font-size: 40px;
    }

    .welcome-section__lead {
        font-size: 16px;
    }
}

/* =========================================================
   ACCOMMODATION SECTION
========================================================= */

.accommodation-section {
    padding: clamp(95px, 10vw, 150px) 0;

    overflow: hidden;

    background: var(--color-white);
}

.accommodation-section__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);
    align-items: end;

    gap: clamp(50px, 8vw, 110px);
    margin-bottom: 58px;
}

.accommodation-section__eyebrow {
    margin-bottom: 18px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.accommodation-section__title {
    max-width: 690px;
    margin-bottom: 0;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.accommodation-section__intro {
    max-width: 500px;
    padding-bottom: 7px;
}

.accommodation-section__intro p {
    margin-bottom: 26px;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}

.accommodation-section__view-all {
    display: inline-flex;
    align-items: center;

    gap: 12px;
    padding-bottom: 7px;

    border-bottom: 1px solid var(--color-petrol);

    color: var(--color-petrol);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.accommodation-section__view-all span {
    font-size: 18px;
    line-height: 1;
}

@media (hover: hover) {

    .accommodation-section__view-all:hover {
        gap: 18px;

        color: var(--color-terracotta);
        border-color: var(--color-terracotta);
    }
}


/* =========================================================
   ACCOMMODATION SLIDER
========================================================= */

.accommodation-slider__viewport {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin-inline: auto;

    overflow: hidden;
}

.accommodation-slider__track {
    display: flex;

    gap: 24px;
    padding: 0;

    transition:
        transform
        600ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   ROOM CARD
========================================================= */

.room-card {
    flex: 0 0 calc((100% - 48px) / 3);

    min-width: 0;
}

.room-card__link {
    display: block;
}

.room-card__media {
    position: relative;

    overflow: hidden;

    background: var(--color-sand);
}

.room-card__image {
    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;

    transition:
        transform
        900ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.room-card__number {
    position: absolute;
    top: 20px;
    right: 20px;

    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;

    background: rgba(3, 46, 55, 0.22);
    color: var(--color-white);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.08em;

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.room-card__content {
    padding: 25px 4px 0;
}

.room-card__type {
    margin-bottom: 11px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.room-card__title {
    margin-bottom: 15px;

    font-size: clamp(29px, 2.5vw, 38px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.room-card__description {
    max-width: 390px;
    margin-bottom: 21px;

    color: var(--color-muted);

    font-size: 15px;
    line-height: 1.75;
}

.room-card__cta {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--color-petrol);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast);
}

.room-card__cta > span {
    font-size: 17px;
    line-height: 1;
}

@media (hover: hover) {

    .room-card__link:hover .room-card__image {
        transform: scale(1.045);
    }

    .room-card__link:hover .room-card__cta {
        gap: 16px;

        color: var(--color-terracotta);
    }
}


/* =========================================================
   SLIDER CONTROLS
========================================================= */

.accommodation-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
    margin-top: 52px;
}

.accommodation-slider__progress {
    position: relative;

    flex: 1;

    max-width: 620px;
    height: 1px;

    overflow: hidden;

    background: rgba(6, 62, 73, 0.18);
}

.accommodation-slider__progress-bar {
    display: block;

    width: 20%;
    height: 100%;

    background: var(--color-petrol);

    transform-origin: left center;

    transition:
        width
        500ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.accommodation-slider__buttons {
    display: flex;

    gap: 10px;
}

.accommodation-slider__button {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-petrol);

    font-size: 21px;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.accommodation-slider__button:disabled {
    opacity: 0.32;
    cursor: default;
}

@media (hover: hover) {

    .accommodation-slider__button:not(:disabled):hover {
        border-color: var(--color-petrol);

        background: var(--color-petrol);
        color: var(--color-white);

        transform: translateY(-2px);
    }
}


/* =========================================================
   ACCOMMODATION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .accommodation-section__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.8fr);

        gap: 48px;
    }

    .accommodation-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

   .accommodation-slider__viewport {
    width: calc(100% - 36px);
    }

    .room-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .accommodation-slider__track {
        padding-left: 18px;
    }
}


/* =========================================================
   ACCOMMODATION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .accommodation-section {
        padding: 80px 0 88px;
    }

    .accommodation-section__header {
        grid-template-columns: 1fr;

        gap: 28px;
        margin-bottom: 46px;

        text-align: center;
    }

    .accommodation-section__heading,
    .accommodation-section__intro {
        max-width: 620px;
        margin-inline: auto;
    }

    .accommodation-section__title {
        margin-inline: auto;

        font-size: clamp(42px, 12vw, 58px);
    }

    .accommodation-section__intro {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .accommodation-section__intro p {
        margin-bottom: 24px;

        font-size: 16px;
        line-height: 1.75;
    }

   .accommodation-slider__viewport {
    width: 100%;
    margin-inline: 0;

    overflow-x: auto;
    }


    .accommodation-slider__viewport::-webkit-scrollbar {
        display: none;
    }

    .accommodation-slider__track {
        gap: 16px;
        padding-right: 14px;
        padding-left: 14px;

        transform: none !important;
    }

    .room-card {
        flex: 0 0 calc(100vw - 42px);

        min-width: 0;

        scroll-snap-align: center;
    }

    .room-card__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 24px 8px 0;

        text-align: center;
    }

    .room-card__description {
        margin-inline: auto;

        font-size: 15px;
    }

    .accommodation-slider__controls {
        justify-content: center;

        margin-top: 42px;
    }

    .accommodation-slider__progress {
        display: none;
    }
}


/* =========================================================
   ACCOMMODATION — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .accommodation-section {
        padding: 70px 0 78px;
    }

    .accommodation-section__title {
        font-size: 40px;
    }

    .room-card {
        flex-basis: calc(100vw - 34px);
    }

    .room-card__title {
        font-size: 30px;
    }
}

/* =========================================================
   EXPERIENCE FEATURE
========================================================= */

.experience-feature {
    padding: clamp(95px, 10vw, 150px) 0;

    background: var(--color-petrol-deep);
    color: var(--color-white);
}

.experience-feature__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);
    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}


/* =========================================================
   EXPERIENCE FEATURE IMAGE
========================================================= */

.experience-feature__media {
    position: relative;

    overflow: hidden;

    background: var(--color-petrol-dark);
}

.experience-feature__image {
    width: 100%;
    aspect-ratio: 7 / 5;

    object-fit: cover;

    transition:
        transform
        900ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {

    .experience-feature__media:hover
    .experience-feature__image {
        transform: scale(1.035);
    }
}


/* =========================================================
   EXPERIENCE FEATURE CONTENT
========================================================= */

.experience-feature__content {
    max-width: 560px;
}

.experience-feature__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.experience-feature__title {
    max-width: 540px;
    margin-bottom: 28px;

    color: var(--color-white);

    font-size: clamp(48px, 5vw, 76px);
    font-weight: 500;

    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.experience-feature__lead {
    max-width: 520px;
    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 19px;
    line-height: 1.7;
}

.experience-feature__text {
    max-width: 510px;
    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 16px;
    line-height: 1.8;
}

.experience-feature__link {
    display: inline-flex;
    align-items: center;

    gap: 12px;
    padding-bottom: 7px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.8);

    color: var(--color-white);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.experience-feature__link span {
    font-size: 18px;
    line-height: 1;
}

@media (hover: hover) {

    .experience-feature__link:hover {
        gap: 18px;

        color: var(--color-terracotta);
        border-color: var(--color-terracotta);
    }
}


/* =========================================================
   EXPERIENCE FEATURE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .experience-feature__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 0.85fr);

        gap: 52px;
    }

    .experience-feature__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .experience-feature__lead {
        font-size: 18px;
    }
}


/* =========================================================
   EXPERIENCE FEATURE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .experience-feature {
        padding: 78px 0 88px;
    }

    .experience-feature__grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .experience-feature__media {
        max-width: 620px;
        margin-inline: auto;
    }

    .experience-feature__image {
        aspect-ratio: 4 / 3;
    }

    .experience-feature__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;

        text-align: center;
    }

    .experience-feature__eyebrow,
    .experience-feature__title,
    .experience-feature__lead,
    .experience-feature__text {
        margin-right: auto;
        margin-left: auto;
    }

    .experience-feature__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .experience-feature__lead {
        margin-bottom: 20px;

        font-size: 17px;
    }

    .experience-feature__text {
        margin-bottom: 30px;

        font-size: 16px;
        line-height: 1.75;
    }
}


/* =========================================================
   EXPERIENCE FEATURE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .experience-feature {
        padding: 68px 0 78px;
    }

    .experience-feature__grid {
        gap: 42px;
    }

    .experience-feature__title {
        font-size: 40px;
    }

    .experience-feature__lead {
        font-size: 16px;
    }
}


/* =========================================================
   EXPERIENCE FEATURE — LIGHT VERSION
========================================================= */

.experience-feature--light {
    background: var(--color-cream);
    color: var(--color-text);
}

.experience-feature--light .experience-feature__title {
    color: var(--color-petrol-dark);
}

.experience-feature--light .experience-feature__lead {
    color: var(--color-text);
}

.experience-feature--light .experience-feature__text {
    color: var(--color-muted);
}

.experience-feature--light .experience-feature__link {
    border-color: var(--color-petrol);
    color: var(--color-petrol);
}


/* =========================================================
   EXPERIENCE FEATURE — REVERSED LAYOUT
========================================================= */

.experience-feature__grid--reverse {
    grid-template-columns:
        minmax(360px, 0.85fr)
        minmax(0, 1.15fr);
}

.experience-feature__grid--reverse
.experience-feature__content {
    justify-self: start;
}

.experience-feature__grid--reverse
.experience-feature__media {
    justify-self: end;
}


/* =========================================================
   LIGHT VERSION HOVER
========================================================= */

@media (hover: hover) {

    .experience-feature--light
    .experience-feature__link:hover {
        color: var(--color-terracotta);
        border-color: var(--color-terracotta);
    }
}


/* =========================================================
   LIGHT VERSION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .experience-feature__grid--reverse {
        grid-template-columns:
            minmax(320px, 0.85fr)
            minmax(0, 1fr);
    }
}


/* =========================================================
   LIGHT VERSION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .experience-feature__grid--reverse {
        display: flex;
        flex-direction: column;
    }

    .experience-feature__grid--reverse
    .experience-feature__content {
        order: 2;
    }

    .experience-feature__grid--reverse
    .experience-feature__media {
        order: 1;

        width: 100%;
    }
}

/* =========================================================
   HOSPITALITY SECTION
========================================================= */

.hospitality-section {
    padding: clamp(95px, 10vw, 155px) 0;

    overflow: hidden;

    background: var(--color-white);
}

.hospitality-section__grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.85fr)
        minmax(0, 1.15fr);
    align-items: center;

    gap: clamp(65px, 8vw, 125px);
}


/* =========================================================
   HOSPITALITY CONTENT
========================================================= */

.hospitality-section__content {
    max-width: 560px;
}

.hospitality-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hospitality-section__title {
    max-width: 540px;
    margin-bottom: 28px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.hospitality-section__lead {
    max-width: 520px;
    margin-bottom: 22px;

    color: var(--color-text);

    font-size: 19px;
    line-height: 1.7;
}

.hospitality-section__text {
    max-width: 510px;

    color: var(--color-muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   HOSPITALITY IMAGES
========================================================= */

.hospitality-section__media {
    position: relative;

    min-height: 650px;
}

.hospitality-section__image {
    position: absolute;

    object-fit: cover;

    box-shadow: var(--shadow-medium);
}

.hospitality-section__image--main {
    top: 0;
    right: 0;
    z-index: 2;

    width: min(470px, 68%);
    aspect-ratio: 4 / 5;
}

.hospitality-section__image--secondary {
    bottom: 0;
    left: 0;
    z-index: 1;

    width: min(330px, 48%);
    aspect-ratio: 4 / 5;
}

.hospitality-section__media::before {
    position: absolute;
    top: 72px;
    left: 54px;
    z-index: 0;

    width: 58%;
    height: 62%;

    border: 1px solid rgba(11, 89, 103, 0.22);

    content: "";
}


/* =========================================================
   HOSPITALITY — TABLET
========================================================= */

@media (max-width: 1050px) {

    .hospitality-section__grid {
        grid-template-columns:
            minmax(320px, 0.9fr)
            minmax(0, 1fr);

        gap: 54px;
    }

    .hospitality-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .hospitality-section__lead {
        font-size: 18px;
    }

    .hospitality-section__media {
        min-height: 560px;
    }

    .hospitality-section__image--main {
        width: min(400px, 72%);
    }

    .hospitality-section__image--secondary {
        width: min(280px, 50%);
    }
}


/* =========================================================
   HOSPITALITY — MOBILE
========================================================= */

@media (max-width: 760px) {

    .hospitality-section {
        padding: 78px 0 88px;
    }

    .hospitality-section__grid {
        display: flex;
        flex-direction: column;

        gap: 52px;
    }

    .hospitality-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;

        text-align: center;
    }

    .hospitality-section__eyebrow,
    .hospitality-section__title,
    .hospitality-section__lead,
    .hospitality-section__text {
        margin-right: auto;
        margin-left: auto;
    }

    .hospitality-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .hospitality-section__lead {
        margin-bottom: 20px;

        font-size: 17px;
    }

    .hospitality-section__text {
        font-size: 16px;
        line-height: 1.75;
    }

    .hospitality-section__media {
        width: 100%;
        max-width: 520px;
        min-height: auto;
        margin-inline: auto;
    }

    .hospitality-section__image {
        position: relative;
    }

    .hospitality-section__image--main {
        width: 78%;
        margin-left: auto;
    }

    .hospitality-section__image--secondary {
        width: 52%;
        margin-top: -34%;
        margin-left: 0;
    }

    .hospitality-section__media::before {
        top: 34px;
        left: 20px;

        width: 72%;
        height: 68%;
    }
}


/* =========================================================
   HOSPITALITY — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hospitality-section {
        padding: 68px 0 78px;
    }

    .hospitality-section__grid {
        gap: 44px;
    }

    .hospitality-section__title {
        font-size: 40px;
    }

    .hospitality-section__lead {
        font-size: 16px;
    }

    .hospitality-section__image--main {
        width: 82%;
    }

    .hospitality-section__image--secondary {
        width: 58%;
        margin-top: -38%;
    }
}

/* =========================================================
   DESTINATION SECTION
========================================================= */

.destination-section {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 86svh;

    overflow: hidden;

    background: var(--color-petrol-deep);
    color: var(--color-white);
}


/* =========================================================
   DESTINATION IMAGE
========================================================= */

.destination-section__media {
    position: absolute;
    inset: 0;
    z-index: 0;

    overflow: hidden;
}

.destination-section__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);
}


/* =========================================================
   DESTINATION OVERLAY
========================================================= */

.destination-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(2, 25, 31, 0.78) 0%,
            rgba(2, 25, 31, 0.56) 40%,
            rgba(2, 25, 31, 0.2) 72%,
            rgba(2, 25, 31, 0.1) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2, 25, 31, 0.42) 0%,
            rgba(2, 25, 31, 0.08) 48%,
            rgba(2, 25, 31, 0.28) 100%
        );
}


/* =========================================================
   DESTINATION CONTENT
========================================================= */

.destination-section__inner {
    position: relative;
    z-index: 2;

    padding: clamp(110px, 12vw, 170px) 0;
}

.destination-section__content {
    max-width: 670px;
}

.destination-section__eyebrow {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.destination-section__title {
    max-width: 680px;
    margin-bottom: 28px;

    color: var(--color-white);

    font-size: clamp(52px, 6vw, 88px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.destination-section__text {
    max-width: 610px;
    margin-bottom: 36px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   DESTINATION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .destination-section {
        min-height: 78svh;
    }

    .destination-section__title {
        font-size: clamp(48px, 7vw, 72px);
    }

    .destination-section__text {
        max-width: 560px;

        font-size: 17px;
    }
}


/* =========================================================
   DESTINATION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .destination-section {
        min-height: 76svh;

        text-align: center;
    }

    .destination-section__image {
        object-position: center;
    }

    .destination-section__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(2, 25, 31, 0.82) 0%,
                rgba(2, 25, 31, 0.56) 54%,
                rgba(2, 25, 31, 0.32) 100%
            );
    }

    .destination-section__inner {
        display: flex;
        justify-content: center;

        padding: 92px 0;
    }

    .destination-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;
    }

    .destination-section__eyebrow {
        margin-bottom: 18px;

        font-size: 12px;
    }

    .destination-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.02;
    }

    .destination-section__text {
        margin-bottom: 30px;

        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   DESTINATION — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .destination-section {
        min-height: 72svh;
    }

    .destination-section__inner {
        padding: 82px 0;
    }

    .destination-section__title {
        font-size: 40px;
    }

    .destination-section__text {
        font-size: 15px;
    }
}

/* =========================================================
   REVIEWS SECTION
========================================================= */

.reviews-section {
    padding: clamp(95px, 10vw, 150px) 0;

    overflow: hidden;

    background: var(--color-white);
}

.reviews-section__header {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 58px;

    text-align: center;
}

.reviews-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reviews-section__title {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 26px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.reviews-section__intro {
    max-width: 610px;
    margin-inline: auto;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   REVIEWS CAROUSEL
========================================================= */

.reviews-carousel__viewport {
    width: min(
        calc(100% - 48px),
        var(--container-width)
    );

    margin-inline: auto;

    overflow: hidden;
}

.reviews-carousel__track {
    display: flex;

    gap: 24px;

    transition:
        transform
        600ms
        cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
    display: flex;
    flex: 0 0 calc((100% - 48px) / 3);
    flex-direction: column;
    justify-content: space-between;

    min-width: 0;
    min-height: 390px;
    padding: clamp(30px, 4vw, 44px);

    border: 1px solid var(--color-border);

    background: var(--color-cream);
}

.review-card--featured {
    background: var(--color-petrol-deep);
    color: var(--color-white);
}

.review-card__rating {
    margin-bottom: 26px;

    color: var(--color-terracotta);

    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.12em;
}

.review-card__quote {
    margin: 0 0 34px;

    color: var(--color-text);

    font-family: var(--font-heading);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 500;

    line-height: 1.24;
    letter-spacing: -0.025em;
}

.review-card--featured .review-card__quote {
    color: var(--color-white);
}

.review-card__author {
    margin-top: auto;

    color: var(--color-muted);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-card--featured .review-card__author {
    color: rgba(255, 255, 255, 0.66);
}


/* =========================================================
   REVIEWS CONTROLS
========================================================= */

.reviews-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
    margin-top: 44px;
}

.reviews-carousel__progress {
    position: relative;

    flex: 1;

    max-width: 620px;
    height: 1px;

    overflow: hidden;

    background: rgba(6, 62, 73, 0.18);
}

.reviews-carousel__progress-bar {
    display: block;

    width: 20%;
    height: 100%;

    background: var(--color-petrol);

    transform-origin: left center;

    transition:
        width
        500ms
        cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-carousel__buttons {
    display: flex;

    gap: 10px;
}

.reviews-carousel__button {
    display: grid;
    place-items: center;

    width: 48px;
    height: 48px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-petrol);

    font-size: 21px;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.reviews-carousel__button:disabled {
    opacity: 0.32;
    cursor: default;
}

@media (hover: hover) {

    .reviews-carousel__button:not(:disabled):hover {
        border-color: var(--color-petrol);

        background: var(--color-petrol);
        color: var(--color-white);

        transform: translateY(-2px);
    }
}


/* =========================================================
   REVIEWS — TABLET
========================================================= */

@media (max-width: 1050px) {

    .reviews-carousel__viewport {
        width: calc(100% - 36px);
    }

    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);

        min-height: 360px;
    }

    .reviews-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .review-card__quote {
        font-size: clamp(26px, 3vw, 34px);
    }
}


/* =========================================================
   REVIEWS — MOBILE
========================================================= */

@media (max-width: 760px) {

    .reviews-section {
        padding: 78px 0 88px;
    }

    .reviews-section__header {
        margin-bottom: 44px;
    }

    .reviews-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .reviews-section__intro {
        font-size: 16px;
        line-height: 1.75;
    }

    .reviews-carousel__viewport {
        width: 100%;
        margin-inline: 0;

        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .reviews-carousel__viewport::-webkit-scrollbar {
        display: none;
    }

    .reviews-carousel__track {
        gap: 16px;
        padding-right: 14px;
        padding-left: 14px;

        transform: none !important;
    }

    .review-card {
        flex: 0 0 calc(100vw - 42px);

        min-height: 350px;

        scroll-snap-align: center;

        padding: 30px 24px;

        text-align: center;
    }

    .review-card__rating {
        margin-bottom: 22px;
    }

    .review-card__quote {
        margin-bottom: 28px;

        font-size: 28px;
        line-height: 1.26;
    }

    .reviews-carousel__controls {
        justify-content: center;

        margin-top: 36px;
    }

    .reviews-carousel__progress {
        display: none;
    }
}


/* =========================================================
   REVIEWS — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .reviews-section {
        padding: 68px 0 78px;
    }

    .reviews-section__title {
        font-size: 40px;
    }

    .review-card {
        flex-basis: calc(100vw - 34px);

        min-height: 340px;
        padding: 28px 20px;
    }

    .review-card__quote {
        font-size: 25px;
    }
}

/* =========================================================
   NEARBY SECTION
========================================================= */

.nearby-section {
    padding: clamp(95px, 10vw, 150px) 0;

    background: var(--color-white);
}

.nearby-section__header {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 64px;

    text-align: center;
}

.nearby-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nearby-section__title {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 26px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.nearby-section__intro {
    max-width: 620px;
    margin-inline: auto;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}

.nearby-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.nearby-card {
    display: flex;
    flex-direction: column;

    background: var(--color-cream);

    box-shadow: var(--shadow-small);
}

.nearby-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.nearby-card__content {
    padding: 30px 28px 34px;
}

.nearby-card__label {
    margin-bottom: 14px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nearby-card__title {
    margin-bottom: 16px;

    font-size: clamp(32px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.nearby-card__text {
    color: var(--color-muted);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   NEARBY SECTION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .nearby-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .nearby-section__grid {
        grid-template-columns: 1fr 1fr;
    }

    .nearby-card:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   NEARBY SECTION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .nearby-section {
        padding: 78px 0 88px;
    }

    .nearby-section__header {
        margin-bottom: 46px;
    }

    .nearby-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .nearby-section__intro {
        font-size: 16px;
        line-height: 1.75;
    }

    .nearby-section__grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .nearby-card:last-child {
        grid-column: auto;
    }

    .nearby-card__content {
        padding: 28px 24px 32px;

        text-align: center;
    }

    .nearby-card__title {
        font-size: 34px;
    }

    .nearby-card__text {
        font-size: 15px;
    }
}


/* =========================================================
   NEARBY SECTION — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .nearby-section {
        padding: 68px 0 78px;
    }

    .nearby-section__title {
        font-size: 40px;
    }

    .nearby-card__title {
        font-size: 31px;
    }
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: clamp(95px, 10vw, 150px) 0;

    background: var(--color-cream);
}

.contact-section__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(420px, 1.1fr);
    align-items: start;

    gap: clamp(60px, 8vw, 120px);
}

.contact-section__content {
    max-width: 560px;
}

.contact-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-section__title {
    max-width: 560px;
    margin-bottom: 28px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.contact-section__text {
    max-width: 520px;
    margin-bottom: 42px;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: grid;

    gap: 18px;
}

.contact-detail {
    padding: 24px 26px;

    border: 1px solid var(--color-border);

    background: var(--color-white);
}

.contact-detail__label {
    display: block;

    margin-bottom: 10px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-detail__value,
.contact-detail__links a {
    color: var(--color-petrol-dark);

    font-size: 17px;
    font-weight: 600;

    line-height: 1.5;
}

.contact-detail__links {
    display: flex;
    flex-wrap: wrap;

    gap: 10px 16px;
}

.contact-detail__links a {
    transition: color var(--transition-fast);
}

@media (hover: hover) {

    .contact-detail__value:hover,
    .contact-detail__links a:hover {
        color: var(--color-terracotta);
    }
}


/* =========================================================
   CONTACT FORM CARD
========================================================= */

.contact-form-card {
    padding: clamp(34px, 4vw, 48px);

    background: var(--color-white);

    box-shadow: var(--shadow-medium);
}

.contact-form-card__eyebrow {
    margin-bottom: 16px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-form-card__title {
    margin-bottom: 30px;

    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.contact-form {
    display: grid;

    gap: 18px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.contact-form__group {
    display: grid;

    gap: 8px;
}

.contact-form label {
    color: var(--color-petrol-dark);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    border: 1px solid var(--color-border);
    border-radius: 0;

    background: var(--color-cream);
    color: var(--color-text);

    font-size: 15px;
    line-height: 1.4;

    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.contact-form input,
.contact-form select {
    min-height: 52px;
    padding: 0 16px;
}

.contact-form textarea {
    resize: vertical;

    min-height: 150px;
    padding: 15px 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: var(--color-terracotta);

    background: var(--color-white);

    box-shadow:
        0 0 0 4px
        rgba(200, 117, 80, 0.14);
}

.contact-form__button {
    justify-self: start;

    margin-top: 8px;
}


/* =========================================================
   LOCATION SECTION
========================================================= */

.location-section {
    padding: clamp(95px, 10vw, 150px) 0;

    background: var(--color-white);
}

.location-section__grid {
    display: grid;
    grid-template-columns:
        minmax(320px, 0.85fr)
        minmax(0, 1.15fr);
    align-items: center;

    gap: clamp(60px, 8vw, 120px);
}

.location-section__content {
    max-width: 560px;
}

.location-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.location-section__title {
    max-width: 540px;
    margin-bottom: 26px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.location-section__text {
    max-width: 520px;
    margin-bottom: 34px;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}

.location-section__link {
    display: inline-flex;
    align-items: center;

    gap: 12px;
    padding-bottom: 7px;

    border-bottom: 1px solid var(--color-petrol);

    color: var(--color-petrol);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.location-section__link span {
    font-size: 18px;
    line-height: 1;
}

@media (hover: hover) {

    .location-section__link:hover {
        gap: 18px;

        color: var(--color-terracotta);
        border-color: var(--color-terracotta);
    }
}


/* =========================================================
   LOCATION MAP
========================================================= */

.location-map {
    min-height: 520px;

    background: var(--color-sand);

    box-shadow: var(--shadow-medium);
}

.location-map__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 520px;
    padding: 36px;

    text-align: center;
}

.location-map__placeholder span {
    margin-bottom: 14px;

    color: var(--color-petrol-dark);

    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.1;
}

.location-map__placeholder p {
    max-width: 360px;

    color: var(--color-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT / LOCATION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .contact-section__grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(360px, 1.1fr);

        gap: 48px;
    }

    .contact-section__title,
    .location-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .location-section__grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .location-section__content {
        max-width: 700px;
        margin-inline: auto;

        text-align: center;
    }

    .location-section__title,
    .location-section__text {
        margin-right: auto;
        margin-left: auto;
    }
}


/* =========================================================
   CONTACT / LOCATION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .contact-section,
    .location-section {
        padding: 78px 0 88px;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .contact-section__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;

        text-align: center;
    }

    .contact-section__title,
    .location-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .contact-section__text,
    .location-section__text {
        font-size: 16px;
        line-height: 1.75;
    }

    .contact-details {
        width: 100%;
    }

    .contact-detail {
        padding: 22px 20px;
    }

    .contact-detail__links {
        justify-content: center;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .contact-form-card__title {
        font-size: 38px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form__button {
        width: 100%;
    }

    .location-map,
    .location-map__placeholder {
        min-height: 390px;
    }

    .location-map__placeholder span {
        font-size: 34px;
    }
}


/* =========================================================
   CONTACT / LOCATION — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-section,
    .location-section {
        padding: 68px 0 78px;
    }

    .contact-section__title,
    .location-section__title {
        font-size: 40px;
    }

    .contact-form-card__title {
        font-size: 34px;
    }

    .location-map,
    .location-map__placeholder {
        min-height: 340px;
    }
}

/* =========================================================
   MENU SECTION
========================================================= */

.menu-section {
    padding: clamp(95px, 10vw, 150px) 0;

    background: var(--color-cream);
}

.menu-section__header {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 70px;

    text-align: center;
}

.menu-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.menu-section__title {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 26px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.menu-section__intro {
    max-width: 620px;
    margin-inline: auto;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   MENU LAYOUT
========================================================= */

.menu-section__layout {
    display: grid;
    grid-template-columns:
        minmax(210px, 250px)
        minmax(0, 1fr);
    align-items: start;

    gap: clamp(42px, 6vw, 82px);
}

.menu-navigation {
    position: sticky;
    top: calc(var(--header-height) + 34px);

    display: grid;

    gap: 10px;
}

.menu-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 48px;
    padding: 14px 18px;

    border: 1px solid var(--color-border);

    background: var(--color-white);
    color: var(--color-petrol-dark);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.menu-navigation a::after {
    content: "→";

    color: var(--color-terracotta);

    font-size: 15px;
    line-height: 1;
}

@media (hover: hover) {

    .menu-navigation a:hover {
        border-color: var(--color-petrol);

        background: var(--color-petrol);
        color: var(--color-white);

        transform: translateX(4px);
    }
}

.menu-groups {
    display: grid;

    gap: 34px;
}


/* =========================================================
   MENU GROUP
========================================================= */

.menu-group {
    padding: clamp(34px, 4vw, 48px);

    background: var(--color-white);

    box-shadow: var(--shadow-small);

    scroll-margin-top: calc(var(--header-height) + 26px);
}

.menu-group__header {
    margin-bottom: 30px;
    padding-bottom: 26px;

    border-bottom: 1px solid var(--color-border);
}

.menu-group__eyebrow {
    margin-bottom: 14px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-group__title {
    margin-bottom: 0;

    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}


/* =========================================================
   MENU LIST / ITEM
========================================================= */

.menu-list {
    display: grid;

    gap: 0;
}

.menu-item {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: start;

    gap: 24px;
    padding: 22px 0;

    border-bottom: 1px solid rgba(6, 62, 73, 0.12);
}

.menu-item:first-child {
    padding-top: 0;
}

.menu-item:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}

.menu-item h3 {
    margin-bottom: 7px;

    color: var(--color-petrol-dark);

    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;

    line-height: 1.25;
}

.menu-item p {
    max-width: 560px;

    color: var(--color-muted);

    font-size: 15px;
    line-height: 1.65;
}

.menu-item > span {
    color: var(--color-terracotta);

    font-size: 17px;
    font-weight: 700;

    line-height: 1.25;
    white-space: nowrap;
}


/* =========================================================
   MENU SECTION — TABLET
========================================================= */

@media (max-width: 1050px) {

    .menu-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .menu-section__layout {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .menu-navigation {
        position: static;

        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        gap: 10px;
    }

    .menu-navigation a {
        min-height: 44px;
        padding: 12px 16px;
    }
}


/* =========================================================
   MENU SECTION — MOBILE
========================================================= */

@media (max-width: 760px) {

    .menu-section {
        padding: 78px 0 88px;
    }

    .menu-section__header {
        margin-bottom: 46px;
    }

    .menu-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .menu-section__intro {
        font-size: 16px;
        line-height: 1.75;
    }


    .menu-navigation a {
        justify-content: center;

        min-height: 46px;
        padding: 12px 10px;

        font-size: 11px;
        text-align: center;
    }

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

    .menu-group {
        padding: 30px 22px;

        scroll-margin-top: calc(var(--header-height) + 18px);
    }

    .menu-group__header {
        margin-bottom: 26px;
        padding-bottom: 22px;

        text-align: center;
    }

    .menu-group__title {
        font-size: clamp(38px, 11vw, 52px);
    }

    .menu-item {
        gap: 18px;
        padding: 20px 0;
    }

    .menu-item h3 {
        font-size: 17px;
    }

    .menu-item p {
        font-size: 14px;
        line-height: 1.6;
    }

    .menu-item > span {
        font-size: 16px;
    }
}

/* =========================================================
   MOBILE STICKY MENU CATEGORIES
========================================================= */

@media (max-width: 760px) {

    .menu-navigation {
        position: sticky;
        top: var(--header-height);
        z-index: 20;

        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;

        width: 100%;
        margin-inline: auto;
        padding: 12px 14px;

        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;

        background: rgba(247, 242, 233, 0.96);

        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);

        border-top: 1px solid rgba(6, 62, 73, 0.1);
        border-bottom: 1px solid rgba(6, 62, 73, 0.12);
    }

    .menu-navigation::-webkit-scrollbar {
        display: none;
    }

    .menu-navigation a {
        flex: 0 0 auto;

        min-height: 38px;
        padding: 10px 14px;

        border: 1px solid rgba(6, 62, 73, 0.16);
        border-radius: 999px;

        background: var(--color-white);

        font-size: 11px;
        white-space: nowrap;
    }

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

    .menu-group {
        scroll-margin-top: calc(var(--header-height) + 76px);
    }
}


/* =========================================================
   MENU SECTION — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .menu-section {
        padding: 68px 0 78px;
    }

    .menu-section__title {
        font-size: 40px;
    }

    .menu-navigation {
        grid-template-columns: 1fr;
    }

    .menu-group {
        padding: 28px 20px;
    }

    .menu-group__title {
        font-size: 36px;
    }

    .menu-item {
        grid-template-columns: 1fr;
        gap: 8px;

        text-align: center;
    }

    .menu-item p {
        margin-inline: auto;
    }

    .menu-item > span {
        justify-self: center;
    }
}

/* =========================================================
   GALLERY SECTION
========================================================= */

.gallery-section {
    padding: clamp(95px, 10vw, 150px) 0;

    background: var(--color-cream);
}

.gallery-section__header {
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 70px;

    text-align: center;
}

.gallery-section__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-section__title {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 26px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.gallery-section__intro {
    max-width: 620px;
    margin-inline: auto;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;

    gap: 18px;
}

.gallery-item {
    position: relative;

    min-height: 280px;
    margin: 0;

    overflow: hidden;

    background: var(--color-sand);

    box-shadow: var(--shadow-small);
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;

    min-height: 580px;
}

.gallery-item--wide {
    grid-column: span 2;

    min-height: 330px;
}

.gallery-item--tall {
    grid-row: span 2;

    min-height: 580px;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   GALLERY — TABLET
========================================================= */

@media (max-width: 1050px) {

    .gallery-section__title {
        font-size: clamp(44px, 6vw, 62px);
    }

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

        gap: 16px;
    }

    .gallery-item {
        min-height: 250px;
    }

    .gallery-item--large,
    .gallery-item--tall {
        min-height: 520px;
    }

    .gallery-item--wide {
        min-height: 300px;
    }
}


/* =========================================================
   GALLERY — MOBILE
========================================================= */

@media (max-width: 760px) {

    .gallery-section {
        padding: 78px 0 88px;
    }

    .gallery-section__header {
        margin-bottom: 46px;
    }

    .gallery-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .gallery-section__intro {
        font-size: 16px;
        line-height: 1.75;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .gallery-item,
    .gallery-item--large,
    .gallery-item--wide,
    .gallery-item--tall {
        grid-column: auto;
        grid-row: auto;

        min-height: auto;
    }

    .gallery-item img {
        aspect-ratio: 4 / 3;
    }

    .gallery-item--large img,
    .gallery-item--tall img {
        aspect-ratio: 4 / 5;
    }
}


/* =========================================================
   GALLERY — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .gallery-section {
        padding: 68px 0 78px;
    }

    .gallery-section__title {
        font-size: 40px;
    }
}

/* =========================================================
   FINAL CTA SECTION
========================================================= */

.final-cta-section {
    position: relative;

    padding: clamp(95px, 10vw, 150px) 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--color-petrol-deep) 0%,
            var(--color-petrol-dark) 52%,
            var(--color-petrol) 100%
        );

    color: var(--color-white);
}

.final-cta-section::before {
    position: absolute;
    top: -160px;
    right: -160px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    content: "";
}

.final-cta-section::after {
    position: absolute;
    bottom: -220px;
    left: -180px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    content: "";
}

.final-cta-section__inner {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;

    text-align: center;
}

.final-cta-section__content {
    max-width: 820px;
}

.final-cta-section__eyebrow {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.final-cta-section__title {
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: 28px;

    color: var(--color-white);

    font-size: clamp(52px, 6vw, 88px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.final-cta-section__text {
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 38px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;
    line-height: 1.75;
}

.final-cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    gap: 14px;
}

.final-cta-section__secondary-button {
    color: var(--color-white);
}


/* =========================================================
   FINAL CTA — MOBILE
========================================================= */

@media (max-width: 760px) {

    .final-cta-section {
        padding: 82px 0 92px;
    }

    .final-cta-section::before {
        top: -120px;
        right: -190px;
    }

    .final-cta-section::after {
        bottom: -260px;
        left: -260px;
    }

    .final-cta-section__eyebrow {
        margin-bottom: 18px;

        font-size: 12px;
    }

    .final-cta-section__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.02;
    }

    .final-cta-section__text {
        margin-bottom: 32px;

        font-size: 16px;
        line-height: 1.7;
    }

    .final-cta-section__actions {
        flex-direction: column;

        width: min(100%, 340px);
        margin-inline: auto;
    }

    .final-cta-section__actions .button {
        width: 100%;
    }
}


/* =========================================================
   FINAL CTA — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .final-cta-section {
        padding: 72px 0 82px;
    }

    .final-cta-section__title {
        font-size: 40px;
    }

    .final-cta-section__text {
        font-size: 15px;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 78px 0 28px;

    background: var(--color-petrol-deep);
    color: var(--color-white);
}

.site-footer__inner {
    display: grid;
    grid-template-columns:
        minmax(280px, 1.3fr)
        minmax(150px, 0.7fr)
        minmax(190px, 0.8fr)
        minmax(180px, 0.8fr);

    gap: clamp(36px, 5vw, 72px);
    padding-bottom: 58px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.site-footer__brand {
    max-width: 390px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;

    gap: 13px;
    margin-bottom: 24px;
}

.site-footer__logo-mark {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    color: var(--color-white);

    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1;
}

.site-footer__logo-text {
    display: flex;
    flex-direction: column;
}

.site-footer__logo-text strong {
    color: var(--color-white);

    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: 0.06em;
}

.site-footer__logo-text span {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 600;

    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__description {
    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.site-footer__heading {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer__nav,
.site-footer__contact,
.site-footer__socials {
    display: flex;
    flex-direction: column;

    gap: 13px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span,
.site-footer__socials a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    font-style: normal;
    line-height: 1.5;

    transition: color var(--transition-fast);
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible,
.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    color: var(--color-white);
}

.site-footer__booking-button {
    margin-top: 28px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
    padding-top: 26px;
}

.site-footer__bottom p {
    color: rgba(255, 255, 255, 0.52);

    font-size: 13px;
    line-height: 1.6;
}

.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.78);

    transition: color var(--transition-fast);
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color: var(--color-white);
}


/* =========================================================
   FOOTER — TABLET
========================================================= */

@media (max-width: 1050px) {

    .site-footer__inner {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(0, 0.8fr);

        gap: 48px 56px;
    }
}


/* =========================================================
   FOOTER — MOBILE
========================================================= */

@media (max-width: 760px) {

    .site-footer {
        padding: 66px 0 26px;

        text-align: center;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;

        gap: 42px;
        padding-bottom: 46px;
    }

    .site-footer__brand {
        max-width: 420px;
        margin-inline: auto;
    }

    .site-footer__logo {
        justify-content: center;
    }

    .site-footer__description {
        font-size: 15px;
    }

    .site-footer__nav,
    .site-footer__contact,
    .site-footer__socials {
        align-items: center;
    }

    .site-footer__booking-button {
        margin-top: 24px;
    }

    .site-footer__bottom {
        flex-direction: column;

        gap: 10px;
        padding-top: 24px;
    }
}


/* =========================================================
   FOOTER — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .site-footer__logo {
        flex-direction: column;
    }

    .site-footer__logo-text strong {
        font-size: 25px;
    }

    .site-footer__logo-text span {
        font-size: 9px;
    }
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
    position: relative;

    display: flex;
    align-items: flex-end;

    width: 100%;
    min-height: 72svh;

    overflow: hidden;

    background: var(--color-petrol-deep);
    color: var(--color-white);
}


/* =========================================================
   PAGE HERO IMAGE
========================================================= */

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

    overflow: hidden;
}

.page-hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   PAGE HERO OVERLAY
========================================================= */

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(2, 25, 31, 0.78) 0%,
            rgba(2, 25, 31, 0.52) 45%,
            rgba(2, 25, 31, 0.16) 78%,
            rgba(2, 25, 31, 0.08) 100%
        ),
        linear-gradient(
            0deg,
            rgba(2, 25, 31, 0.44) 0%,
            rgba(2, 25, 31, 0.08) 48%,
            rgba(2, 25, 31, 0.24) 100%
        );
}


/* =========================================================
   PAGE HERO CONTENT
========================================================= */

.page-hero__inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: flex-end;

    min-height: 72svh;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: clamp(70px, 9vh, 110px);
}

.page-hero__content {
    width: min(760px, 100%);
}

.page-hero__eyebrow {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.page-hero__title {
    max-width: 760px;
    margin-bottom: 24px;

    color: var(--color-white);

    font-size: clamp(52px, 6vw, 86px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.page-hero__description {
    max-width: 620px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   PAGE HERO — TABLET
========================================================= */

@media (max-width: 1050px) {

    .page-hero {
        min-height: 66svh;
    }

    .page-hero__inner {
        min-height: 66svh;
        padding-bottom: 82px;
    }

    .page-hero__title {
        font-size: clamp(48px, 7vw, 72px);
    }

    .page-hero__description {
        max-width: 560px;

        font-size: 17px;
    }
}


/* =========================================================
   PAGE HERO — MOBILE
========================================================= */

@media (max-width: 760px) {

    .page-hero {
        min-height: 68svh;

        text-align: center;
    }

    .page-hero__overlay {
        background:
            linear-gradient(
                0deg,
                rgba(2, 25, 31, 0.82) 0%,
                rgba(2, 25, 31, 0.52) 55%,
                rgba(2, 25, 31, 0.28) 100%
            );
    }

    .page-hero__inner {
        justify-content: center;
        align-items: flex-end;

        min-height: 68svh;
        padding-top: calc(var(--header-height) + 72px);
        padding-bottom: 58px;
    }

    .page-hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;
        max-width: 620px;
        margin-inline: auto;
    }

    .page-hero__eyebrow {
        margin-bottom: 18px;

        font-size: 12px;
    }

    .page-hero__title {
        margin-bottom: 22px;

        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.02;
    }

    .page-hero__description {
        max-width: 500px;

        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   PAGE HERO — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .page-hero {
        min-height: 64svh;
    }

    .page-hero__inner {
        min-height: 64svh;
        padding-bottom: 50px;
    }

    .page-hero__title {
        font-size: 40px;
    }

    .page-hero__description {
        font-size: 15px;
    }
}

/* =========================================================
   ROOMS OVERVIEW SECTION
========================================================= */

.rooms-overview {
    padding: clamp(90px, 10vw, 150px) 0;

    background: var(--color-cream);
}


/* =========================================================
   ROOMS OVERVIEW HEADER
========================================================= */

.rooms-overview__header {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 72px;

    text-align: center;
}

.rooms-overview__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rooms-overview__title {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 26px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.rooms-overview__intro {
    max-width: 620px;
    margin-inline: auto;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   ROOMS OVERVIEW LIST
========================================================= */

.rooms-overview__list {
    display: flex;
    flex-direction: column;

    gap: clamp(70px, 8vw, 110px);
}


/* =========================================================
   ROOM OVERVIEW CARD
========================================================= */

.room-overview-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(360px, 0.92fr);
    align-items: center;

    gap: clamp(54px, 7vw, 100px);
}

.room-overview-card--reverse {
    grid-template-columns:
        minmax(360px, 0.92fr)
        minmax(0, 1.08fr);
}

.room-overview-card--reverse .room-overview-card__media {
    order: 2;
}

.room-overview-card--reverse .room-overview-card__content {
    order: 1;
}


/* =========================================================
   ROOM OVERVIEW MEDIA
========================================================= */

.room-overview-card__media {
    display: block;

    overflow: hidden;

    background: var(--color-sand);

    box-shadow: var(--shadow-medium);
}

.room-overview-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;

    object-fit: cover;
}


/* =========================================================
   ROOM OVERVIEW CONTENT
========================================================= */

.room-overview-card__content {
    max-width: 560px;
}

.room-overview-card__type {
    margin-bottom: 16px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.room-overview-card__title {
    max-width: 560px;
    margin-bottom: 22px;

    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.room-overview-card__description {
    max-width: 520px;
    margin-bottom: 28px;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   ROOM OVERVIEW FEATURES
========================================================= */

.room-overview-card__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px 22px;
    margin-bottom: 0;
}

.room-overview-card__features li {
    position: relative;

    padding-left: 20px;

    color: var(--color-text);

    font-size: 15px;
    font-weight: 500;

    line-height: 1.55;
}

.room-overview-card__features li::before {
    position: absolute;
    top: 10px;
    left: 0;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--color-terracotta);

    content: "";
}


/* =========================================================
   ROOM OVERVIEW ACTIONS
========================================================= */

.room-overview-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 18px;
}

.room-overview-card__text-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;
    padding-bottom: 6px;

    border-bottom: 1px solid var(--color-petrol);

    color: var(--color-petrol);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.room-overview-card__text-link span {
    font-size: 17px;
    line-height: 1;
}

@media (hover: hover) {

    .room-overview-card__text-link:hover {
        gap: 16px;

        color: var(--color-terracotta);
        border-color: var(--color-terracotta);
    }
}


/* =========================================================
   ROOMS OVERVIEW — TABLET
========================================================= */

@media (max-width: 1050px) {

    .rooms-overview__header {
        margin-bottom: 62px;
    }

    .rooms-overview__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .room-overview-card,
    .room-overview-card--reverse {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(310px, 0.9fr);

        gap: 48px;
    }

    .room-overview-card--reverse .room-overview-card__media {
        order: 2;
    }

    .room-overview-card--reverse .room-overview-card__content {
        order: 1;
    }

    .room-overview-card__title {
        font-size: clamp(38px, 5vw, 54px);
    }

    .room-overview-card__description {
        font-size: 16px;
    }

    .room-overview-card__features {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   ROOMS OVERVIEW — MOBILE
========================================================= */

@media (max-width: 760px) {

    .rooms-overview {
        padding: 78px 0 88px;
    }

    .rooms-overview__header {
        margin-bottom: 52px;
    }

    .rooms-overview__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .rooms-overview__intro {
        font-size: 16px;
        line-height: 1.75;
    }

    .rooms-overview__list {
        gap: 68px;
    }

    .room-overview-card,
    .room-overview-card--reverse {
        display: flex;
        flex-direction: column;

        gap: 32px;
    }

    .room-overview-card--reverse .room-overview-card__media,
    .room-overview-card--reverse .room-overview-card__content {
        order: initial;
    }

    .room-overview-card__media {
        width: 100%;
    }

    .room-overview-card__image {
        aspect-ratio: 4 / 3;
    }

    .room-overview-card__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;

        text-align: center;
    }

    .room-overview-card__title {
        margin-bottom: 20px;

        font-size: clamp(38px, 11vw, 52px);
    }

    .room-overview-card__description {
        margin-bottom: 26px;

        font-size: 16px;
        line-height: 1.75;
    }

    .room-overview-card__features {
        width: min(100%, 360px);

        grid-template-columns: 1fr;

        gap: 11px;
        text-align: left;
    }

    .room-overview-card__actions {
        justify-content: center;

        width: 100%;
    }
}


/* =========================================================
   ROOMS OVERVIEW — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .rooms-overview {
        padding: 68px 0 78px;
    }

    .rooms-overview__title {
        font-size: 40px;
    }

    .rooms-overview__list {
        gap: 58px;
    }

    .room-overview-card__title {
        font-size: 36px;
    }

    .room-overview-card__actions {
        flex-direction: column;

        gap: 16px;
    }

    .room-overview-card__actions .button {
        width: min(100%, 300px);
    }
}

/* =========================================================
   ROOM OVERVIEW PRICE
========================================================= */

.room-overview-card__price {
    display: flex;
    flex-direction: column;

    gap: 6px;
    margin: 26px 0 28px;
    padding: 18px 20px;

    border-left: 3px solid var(--color-terracotta);

    background: rgba(231, 220, 203, 0.38);
}

.room-overview-card__price span {
    color: var(--color-petrol-dark);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.2;
}

.room-overview-card__price small {
    color: var(--color-muted);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.5;
}


/* =========================================================
   ROOM OVERVIEW PRICE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .room-overview-card__price {
        align-items: center;

        width: 100%;
        max-width: 360px;
        margin: 24px auto 28px;
        padding: 17px 18px;

        border-left: 0;
        border-top: 3px solid var(--color-terracotta);

        text-align: center;
    }

    .room-overview-card__price span {
        font-size: 17px;
    }

    .room-overview-card__price small {
        font-size: 13px;
    }
}

/* =========================================================
   ACCOMMODATION CTA
========================================================= */

.accommodation-cta {
    position: relative;

    padding: clamp(90px, 10vw, 145px) 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--color-petrol-deep) 0%,
            var(--color-petrol-dark) 55%,
            var(--color-petrol) 100%
        );

    color: var(--color-white);
}

.accommodation-cta::before {
    position: absolute;
    top: -160px;
    right: -150px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    content: "";
}

.accommodation-cta::after {
    position: absolute;
    bottom: -220px;
    left: -180px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    content: "";
}

.accommodation-cta__inner {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;

    text-align: center;
}

.accommodation-cta__content {
    max-width: 800px;
}

.accommodation-cta__eyebrow {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.accommodation-cta__title {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 28px;

    color: var(--color-white);

    font-size: clamp(50px, 5.8vw, 82px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.accommodation-cta__text {
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 38px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;
    line-height: 1.75;
}

.accommodation-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    gap: 14px;
}

.accommodation-cta__secondary-button {
    color: var(--color-white);
}


/* =========================================================
   ACCOMMODATION CTA — MOBILE
========================================================= */

@media (max-width: 760px) {

    .accommodation-cta {
        padding: 82px 0 92px;
    }

    .accommodation-cta::before {
        top: -120px;
        right: -190px;
    }

    .accommodation-cta::after {
        bottom: -260px;
        left: -260px;
    }

    .accommodation-cta__eyebrow {
        margin-bottom: 18px;

        font-size: 12px;
    }

    .accommodation-cta__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
        line-height: 1.02;
    }

    .accommodation-cta__text {
        margin-bottom: 32px;

        font-size: 16px;
        line-height: 1.7;
    }

    .accommodation-cta__actions {
        flex-direction: column;

        width: min(100%, 340px);
        margin-inline: auto;
    }

    .accommodation-cta__actions .button {
        width: 100%;
    }
}


/* =========================================================
   ACCOMMODATION CTA — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .accommodation-cta {
        padding: 72px 0 82px;
    }

    .accommodation-cta__title {
        font-size: 40px;
    }

    .accommodation-cta__text {
        font-size: 15px;
    }
}

/* =========================================================
   ROOM DETAIL
========================================================= */

.room-detail {
    padding: clamp(90px, 10vw, 145px) 0;

    background: var(--color-white);
}

.room-detail__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 360px);
    align-items: start;

    gap: clamp(54px, 8vw, 110px);
}

.room-detail__content {
    max-width: 760px;
}

.room-detail__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.room-detail__title {
    max-width: 720px;
    margin-bottom: 28px;

    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.room-detail__lead {
    max-width: 680px;
    margin-bottom: 24px;

    color: var(--color-text);

    font-size: 20px;
    line-height: 1.75;
}

.room-detail__text {
    max-width: 650px;

    color: var(--color-muted);

    font-size: 17px;
    line-height: 1.85;
}


/* =========================================================
   ROOM BOOKING CARD
========================================================= */

.room-detail__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 34px);
}

.room-booking-card {
    padding: 32px;

    border: 1px solid var(--color-border);

    background: var(--color-cream);

    box-shadow: var(--shadow-small);
}

.room-booking-card__label {
    margin-bottom: 10px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.room-booking-card__price {
    margin-bottom: 12px;

    color: var(--color-petrol-dark);

    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.035em;
}

.room-booking-card__note {
    margin-bottom: 26px;

    color: var(--color-muted);

    font-size: 14px;
    line-height: 1.6;
}

.room-booking-card__button {
    width: 100%;
}


/* =========================================================
   ROOM FEATURES
========================================================= */

.room-features {
    padding: clamp(90px, 10vw, 145px) 0;

    background: var(--color-cream);
}

.room-features__inner {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.75fr)
        minmax(0, 1.25fr);
    align-items: start;

    gap: clamp(56px, 8vw, 115px);
}

.room-features__header {
    max-width: 520px;
}

.room-features__eyebrow {
    margin-bottom: 20px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.room-features__title {
    margin-bottom: 0;

    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.room-features__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.room-feature {
    padding: 32px;

    border: 1px solid var(--color-border);

    background: var(--color-white);
}

.room-feature__number {
    display: inline-block;

    margin-bottom: 24px;

    color: var(--color-terracotta);

    font-size: 12px;
    font-weight: 700;

    line-height: 1;
    letter-spacing: 0.16em;
}

.room-feature h3 {
    margin-bottom: 14px;

    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.room-feature p {
    color: var(--color-muted);

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   ROOM GALLERY PREVIEW
========================================================= */

.room-gallery-preview {
    padding: clamp(90px, 10vw, 145px) 0;

    background: var(--color-white);
}

.room-gallery-preview__header {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 56px;

    text-align: center;
}

.room-gallery-preview__eyebrow {
    margin-bottom: 18px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.room-gallery-preview__title {
    margin-bottom: 0;

    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -0.035em;

    text-wrap: balance;
}

.room-gallery-preview__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    gap: 24px;
}

.room-gallery-preview__side {
    display: grid;

    gap: 24px;
}

.room-gallery-preview__item {
    position: relative;

    margin: 0;

    overflow: hidden;

    background: var(--color-sand);

    box-shadow: var(--shadow-small);
}

.room-gallery-preview__item img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.room-gallery-preview__item--large {
    min-height: 720px;
}

.room-gallery-preview__item--large img {
    aspect-ratio: 4 / 5;
}

.room-gallery-preview__side .room-gallery-preview__item {
    min-height: 348px;
}

.room-gallery-preview__side .room-gallery-preview__item img {
    aspect-ratio: 5 / 3;
}


/* =========================================================
   ROOM GALLERY PREVIEW — TABLET
========================================================= */

@media (max-width: 1050px) {

    .room-gallery-preview__layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.85fr);
    }

    .room-gallery-preview__item--large {
        min-height: 620px;
    }

    .room-gallery-preview__side .room-gallery-preview__item {
        min-height: 298px;
    }
}


/* =========================================================
   ROOM GALLERY PREVIEW — MOBILE
========================================================= */

@media (max-width: 760px) {

    .room-gallery-preview__header {
        margin-bottom: 42px;
    }

    .room-gallery-preview__title {
        font-size: clamp(40px, 11vw, 56px);
    }

    .room-gallery-preview__layout {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .room-gallery-preview__side {
        gap: 16px;
    }

    .room-gallery-preview__item--large,
    .room-gallery-preview__side .room-gallery-preview__item {
        min-height: auto;
    }

    .room-gallery-preview__item--large img,
    .room-gallery-preview__side .room-gallery-preview__item img {
        aspect-ratio: 4 / 3;
    }
}


/* =========================================================
   ROOM GALLERY PREVIEW — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .room-gallery-preview__title {
        font-size: 38px;
    }
}

/* =========================================================
   ROOM NEXT
========================================================= */

.room-next {
    position: relative;

    padding: clamp(90px, 10vw, 145px) 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--color-petrol-deep) 0%,
            var(--color-petrol-dark) 56%,
            var(--color-petrol) 100%
        );

    color: var(--color-white);
}

.room-next::before {
    position: absolute;
    top: -160px;
    right: -150px;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    content: "";
}

.room-next::after {
    position: absolute;
    bottom: -220px;
    left: -180px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    content: "";
}

.room-next__inner {
    position: relative;
    z-index: 2;

    max-width: 780px;
    margin-inline: auto;

    text-align: center;
}

.room-next__eyebrow {
    margin-bottom: 22px;

    color: var(--color-terracotta);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.room-next__title {
    margin-bottom: 26px;

    color: var(--color-white);

    font-size: clamp(50px, 5.8vw, 82px);
    font-weight: 500;

    line-height: 1;
    letter-spacing: -0.04em;

    text-wrap: balance;
}

.room-next__text {
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 36px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   ROOM DETAIL — TABLET
========================================================= */

@media (max-width: 1050px) {

    .room-detail__grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 330px);

        gap: 48px;
    }

    .room-detail__title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .room-detail__lead {
        font-size: 18px;
    }

    .room-features__inner {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .room-features__header {
        max-width: 700px;
        margin-inline: auto;

        text-align: center;
    }

    .room-features__title {
        font-size: clamp(44px, 6vw, 62px);
    }
}


/* =========================================================
   ROOM DETAIL — MOBILE
========================================================= */

@media (max-width: 760px) {

    .room-detail,
    .room-features,
    .room-gallery-preview,
    .room-next {
        padding: 78px 0 88px;
    }

    .room-detail__grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .room-detail__content {
        display: flex;
        flex-direction: column;
        align-items: center;

        max-width: 620px;
        margin-inline: auto;

        text-align: center;
    }

    .room-detail__title {
        margin-bottom: 24px;

        font-size: clamp(42px, 12vw, 58px);
    }

    .room-detail__lead {
        margin-bottom: 20px;

        font-size: 17px;
        line-height: 1.7;
    }

    .room-detail__text {
        font-size: 16px;
        line-height: 1.75;
    }

    .room-detail__sidebar {
        position: static;

        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }

    .room-booking-card {
        padding: 28px 24px;

        text-align: center;
    }

    .room-booking-card__price {
        font-size: 40px;
    }

    .room-features__header {
        max-width: 620px;
    }

    .room-features__title {
        font-size: clamp(42px, 12vw, 58px);
    }

    .room-features__grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .room-feature {
        padding: 28px 24px;

        text-align: center;
    }

    .room-feature h3 {
        font-size: 28px;
    }

    .room-gallery-preview__grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .room-gallery-preview__grid img {
        aspect-ratio: 4 / 3;
    }

    .room-next__title {
        font-size: clamp(42px, 12vw, 58px);
    }

    .room-next__text {
        font-size: 16px;
        line-height: 1.7;
    }
}


/* =========================================================
   ROOM DETAIL — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .room-detail,
    .room-features,
    .room-gallery-preview,
    .room-next {
        padding: 68px 0 78px;
    }

    .room-detail__title,
    .room-features__title,
    .room-next__title {
        font-size: 40px;
    }

    .room-booking-card__price {
        font-size: 36px;
    }

    .room-feature {
        padding: 26px 20px;
    }

    .room-feature h3 {
        font-size: 26px;
    }
}

/* =========================================================
   FINAL CLEAN MOBILE MENU / HEADER FIX
========================================================= */

body.menu-open {
    overflow: hidden;
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;
}

@media (max-width: 1050px) {

    body.menu-open .site-header,
    body.menu-open .site-header.is-scrolled {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        z-index: 3000;
    }

    body.menu-open .mobile-navigation,
    .mobile-navigation.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateX(0);
    }

    body.menu-open .mobile-navigation {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;

        width: min(390px, 88vw);
        height: 100dvh;

        z-index: 2500;
    }

    body.menu-open .mobile-header-actions {
        position: fixed;
        top: 18px;
        right: 18px;

        display: flex;
        align-items: center;
        gap: 12px;

        z-index: 3200;
    }

    body.menu-open .mobile-booking-button {
        display: inline-flex;
        position: relative;

        z-index: 3300;
    }

    body.menu-open .mobile-menu-button,
    .mobile-menu-button.is-open {
        position: relative;

        width: 44px;
        height: 44px;

        flex: 0 0 44px;

        overflow: visible;

        z-index: 3400;
    }

    body.menu-open .mobile-menu-button span,
    .mobile-menu-button.is-open span {
        position: absolute;
        top: 50%;
        left: 50%;

        display: block;

        width: 24px;
        height: 2px;

        background: var(--color-white);

        transform-origin: center;

        transition:
            transform var(--transition-normal),
            opacity var(--transition-fast);
    }

    body.menu-open .mobile-menu-button span:nth-child(1),
    .mobile-menu-button.is-open span:nth-child(1) {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    body.menu-open .mobile-menu-button span:nth-child(2),
    .mobile-menu-button.is-open span:nth-child(2) {
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    body.menu-open .mobile-menu-button span:nth-child(3),
    .mobile-menu-button.is-open span:nth-child(3) {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    body.menu-open .menu-backdrop,
    .menu-backdrop.is-open {
        position: fixed;
        inset: 0;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        z-index: 2400;
    }
}

@media (max-width: 760px) {

    body.menu-open .mobile-navigation {
        width: 100%;
    }

    body.menu-open .mobile-header-actions {
        top: 16px;
        right: 14px;
    }
}


/* =========================================================
   REVIEW PAGE — PREMIUM VERSION
========================================================= */

.review-page .site-header,
.review-page .site-header.is-scrolled,
.review-page .site-header.site-header--solid {
    background: rgba(3, 46, 55, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.review-page .site-header .site-brand,
.review-page .site-header .site-brand strong,
.review-page .site-header .site-brand span,
.review-page .site-header .site-brand small,
.review-page .site-header .desktop-navigation__link,
.review-page .site-header .language-switcher,
.review-page .site-header .language-switcher__link {
    color: var(--color-white);
}

.review-page .site-header .desktop-navigation__link {
    opacity: 0.86;
}

.review-page .site-header .desktop-navigation__link:hover,
.review-page .site-header .desktop-navigation__link.is-active {
    opacity: 1;
    color: var(--color-white);
}

.review-page .site-header .site-brand__symbol {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--color-white);
}

.review-page .site-header .mobile-menu-button span {
    background: var(--color-white);
}


/* Premium review layout */

.review-page main {
    min-height: 100vh;
}

.review-page .review-hero,
.review-page .review-section {
    position: relative;
}

.review-page .review-card,
.review-panel,
.review-box {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.96),
            rgba(255, 255, 255, 0.88)
        );
    border: 1px solid rgba(255, 255, 255, 0.70);
    box-shadow:
        0 30px 80px rgba(3, 46, 55, 0.14),
        0 10px 28px rgba(3, 46, 55, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* Review buttons */

.review-actions {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.review-option {
    position: relative;

    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 16px;

    padding: 17px 18px;
    min-height: 76px;

    border-radius: 20px;
    border: 1px solid rgba(3, 46, 55, 0.10);
    background:
        linear-gradient(
            135deg,
            rgba(250, 247, 240, 0.96),
            rgba(255, 255, 255, 0.88)
        );

    color: var(--color-petrol-deep);
    text-decoration: none;

    overflow: hidden;

    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.review-option::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;

    width: 4px;
    background: var(--color-terracotta);

    opacity: 0;
    transform: scaleY(0.4);
    transform-origin: center;

    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.review-option:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 111, 73, 0.34);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.98),
            rgba(250, 246, 238, 0.96)
        );
    box-shadow:
        0 20px 46px rgba(3, 46, 55, 0.12),
        0 8px 20px rgba(3, 46, 55, 0.07);
}

.review-option:hover::before {
    opacity: 1;
    transform: scaleY(1);
}

.review-option__icon {
    position: relative;
    z-index: 1;

    width: 52px;
    height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;
    background: var(--color-white);

    box-shadow:
        inset 0 0 0 1px rgba(3, 46, 55, 0.08),
        0 10px 22px rgba(3, 46, 55, 0.07);
}

.review-option__icon svg {
    width: 27px;
    height: 27px;
    display: block;
}

.review-option--google .review-option__icon {
    background: #ffffff;
}

.review-option--tripadvisor .review-option__icon {
    background: #e9f6ef;
    color: #00af87;
}

.review-option--mail .review-option__icon {
    background: rgba(3, 46, 55, 0.08);
    color: rgb(3, 46, 55);
}

.review-option__content {
    position: relative;
    z-index: 1;

    display: grid;
    gap: 4px;

    min-width: 0;
}

.review-option__title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;

    color: var(--color-petrol-deep);
}

.review-option__text {
    font-size: 14px;
    line-height: 1.45;

    color: rgba(3, 46, 55, 0.68);
}

.review-option__arrow {
    position: relative;
    z-index: 1;

    font-size: 21px;
    line-height: 1;

    color: rgba(3, 46, 55, 0.46);

    transition:
        transform 0.28s ease,
        color 0.28s ease;
}

.review-option:hover .review-option__arrow {
    transform: translateX(5px);
    color: var(--color-terracotta);
}


/* Back link */

.review-page .review-back-link,
.review-page .back-to-site,
.review-page .review-card a[href="/"] {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;

    color: rgba(3, 46, 55, 0.82);
    text-decoration: none;
}

.review-page .review-back-link:hover,
.review-page .back-to-site:hover,
.review-page .review-card a[href="/"]:hover {
    color: var(--color-terracotta);
}


/* Mobile */

@media (max-width: 1050px) {
    .review-page .site-header .mobile-navigation .mobile-navigation__link {
        color: var(--color-white);
    }
}

@media (max-width: 768px) {
    .review-actions {
        gap: 12px;
        margin-top: 24px;
    }

    .review-option {
        grid-template-columns: 48px 1fr auto;
        gap: 14px;

        min-height: 72px;
        padding: 15px 16px;

        border-radius: 18px;
    }

    .review-option__icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .review-option__icon svg {
        width: 25px;
        height: 25px;
    }

    .review-option__title {
        font-size: 15px;
    }

    .review-option__text {
        font-size: 13px;
    }
}

/* =========================================================
   COOKIE CONSENT BANNER
========================================================= */

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    inset: auto 18px 18px 18px;

    z-index: 5000;

    display: flex;
    justify-content: center;

    pointer-events: none;
}

.cookie-consent__panel {
    width: min(100%, 760px);

    display: grid;
    gap: 18px;

    padding: 22px;

    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);

    background:
        linear-gradient(
            135deg,
            rgba(3, 46, 55, 0.96),
            rgba(6, 62, 73, 0.94)
        );

    color: var(--color-white);

    box-shadow:
        0 28px 80px rgba(3, 46, 55, 0.34),
        0 10px 28px rgba(3, 46, 55, 0.18);

    pointer-events: auto;
}

.cookie-consent__content {
    display: grid;
    gap: 8px;
}

.cookie-consent__eyebrow {
    margin: 0;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-terracotta);
}

.cookie-consent__title {
    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    font-weight: 600;

    color: var(--color-white);
}

.cookie-consent__text {
    max-width: 62ch;
    margin: 0;

    font-size: 14px;
    line-height: 1.65;

    color: rgba(255, 255, 255, 0.78);
}

.cookie-consent__link {
    width: fit-content;

    font-size: 13px;
    font-weight: 700;

    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-consent__preferences {
    display: grid;
    gap: 10px;

    padding-top: 4px;
}

.cookie-consent__preferences[hidden] {
    display: none !important;
}

.cookie-toggle {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: start;
    gap: 12px;

    padding: 13px 14px;

    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.06);

    cursor: pointer;
}

.cookie-toggle input {
    width: 18px;
    height: 18px;
    margin-top: 2px;

    accent-color: var(--color-terracotta);
}

.cookie-toggle strong {
    display: block;

    font-size: 14px;
    line-height: 1.3;

    color: var(--color-white);
}

.cookie-toggle small {
    display: block;
    margin-top: 3px;

    font-size: 12px;
    line-height: 1.45;

    color: rgba(255, 255, 255, 0.68);
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-consent__button {
    min-height: 42px;
    padding-inline: 18px;
    white-space: nowrap;
}

.cookie-consent .button--secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.34);
    background: transparent;
}

.cookie-consent .button--secondary:hover {
    color: var(--color-petrol-deep);
    background: var(--color-white);
    border-color: var(--color-white);
}

.cookie-consent .button--primary {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: var(--color-white);
}

.cookie-consent .button--primary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-petrol-deep);
}


/* Cookie settings footer link/button */

.cookie-settings-button {
    padding: 0;

    border: 0;
    background: transparent;

    font: inherit;
    color: inherit;
    text-align: left;

    cursor: pointer;
}

.cookie-settings-button:hover {
    color: var(--color-terracotta);
}


/* Mobile */

@media (max-width: 760px) {
    .cookie-consent {
        inset: auto 12px 12px 12px;
    }

    .cookie-consent__panel {
        gap: 16px;
        padding: 18px;
        border-radius: 20px;
    }

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

    .cookie-consent__button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   FOOTER LEGAL LINKS
========================================================= */

.site-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__legal {
    display: grid;
    gap: 10px;
}

.site-footer__legal p,
.site-footer__credit {
    margin: 0;
}

.site-footer__legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
}

.site-footer__legal-nav a,
.cookie-settings-button,
.site-footer__credit,
.site-footer__credit a {
    font-size: 12px;
    line-height: 1.4;
    color: inherit;
    text-decoration: none;
}

.site-footer__legal-nav a,
.cookie-settings-button,
.site-footer__credit {
    opacity: 0.72;
}

.site-footer__credit a {
    opacity: 1;
    font-weight: 600;
}

.site-footer__legal-nav a:hover,
.cookie-settings-button:hover,
.site-footer__credit a:hover {
    opacity: 1;
    color: var(--color-terracotta);
}

.cookie-settings-button {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

@media (max-width: 760px) {
    .site-footer__bottom {
        display: grid;
        gap: 18px;
    }

    .site-footer__legal-nav {
        gap: 8px 14px;
    }
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-section {
    background: var(--color-sand);
}

.legal-section__container {
    max-width: 920px;
}

.legal-content {
    padding: clamp(28px, 5vw, 56px);
    border-radius: 28px;

    background: var(--color-white);

    box-shadow:
        0 24px 70px rgba(3, 46, 55, 0.08),
        0 8px 24px rgba(3, 46, 55, 0.05);
}

.legal-content__updated {
    margin: 0 0 28px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-terracotta);
}

.legal-content h2 {
    margin: 34px 0 12px;

    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.14;
    font-weight: 600;

    color: var(--color-petrol-deep);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.75;

    color: rgba(3, 46, 55, 0.76);
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-content ul {
    display: grid;
    gap: 8px;

    margin: 0 0 18px;
    padding-left: 20px;
}

.legal-content a {
    color: var(--color-terracotta);
    font-weight: 600;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 760px) {
    .legal-content {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}

/* =========================================================
   LEGAL TABLES
========================================================= */

.legal-table-wrap {
    width: 100%;
    margin: 18px 0 26px;
    overflow-x: auto;

    border-radius: 18px;
    border: 1px solid rgba(3, 46, 55, 0.10);
}

.legal-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;

    background: rgba(247, 242, 233, 0.42);
}

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

    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;

    border-bottom: 1px solid rgba(3, 46, 55, 0.08);
}

.legal-table th {
    font-weight: 700;
    color: var(--color-petrol-deep);
    background: rgba(3, 46, 55, 0.06);
}

.legal-table td {
    color: rgba(3, 46, 55, 0.74);
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

/* =========================================================
   CONTACT FORM BACKEND STATUS
========================================================= */

.contact-form-card__notice[hidden],
.contact-form__honeypot {
    display: none !important;
}

.contact-form-card__notice {
    margin: 0 0 20px;
    padding: 14px 16px;

    border-radius: 16px;

    font-size: 14px;
    line-height: 1.55;
}

.contact-form-card__notice--success {
    color: #24543f;
    background: rgba(36, 84, 63, 0.10);
    border: 1px solid rgba(36, 84, 63, 0.18);
}

.contact-form-card__notice--error {
    color: #7a2e22;
    background: rgba(122, 46, 34, 0.10);
    border: 1px solid rgba(122, 46, 34, 0.18);
}

/* =========================================================
   CONTACT LOCATION — CLICK TO LOAD MAP
========================================================= */

.location-section__details {
    display: grid;
    gap: 12px;

    margin: 28px 0 30px;
}

.location-section__detail {
    display: grid;
    gap: 4px;

    padding: 16px 18px;

    border-radius: 18px;
    border: 1px solid rgba(3, 46, 55, 0.10);

    background: rgba(255, 255, 255, 0.62);
}

.location-section__detail span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-terracotta);
}

.location-section__detail strong {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;

    color: var(--color-petrol-deep);
}

.location-section__button {
    width: fit-content;
}

.location-map-card {
    overflow: hidden;

    min-height: 460px;

    border-radius: 30px;
    border: 1px solid rgba(3, 46, 55, 0.10);

    background: var(--color-white);

    box-shadow:
        0 30px 80px rgba(3, 46, 55, 0.12),
        0 10px 28px rgba(3, 46, 55, 0.06);
}

.location-map-card__map {
    position: relative;

    width: 100%;
    min-height: 460px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(235, 244, 242, 1),
            rgba(247, 242, 233, 1)
        );
}

.location-map-card__map::before {
    content: "";
    position: absolute;
    inset: -18% -18% auto auto;

    width: 72%;
    height: 72%;

    border-radius: 0 0 0 100%;

    background:
        linear-gradient(
            135deg,
            rgba(108, 166, 171, 0.62),
            rgba(3, 46, 55, 0.14)
        );
}

.location-map-card__map::after {
    content: "";
    position: absolute;
    left: -18%;
    bottom: -28%;

    width: 92%;
    height: 72%;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(221, 204, 168, 0.48),
            rgba(197, 111, 73, 0.10)
        );
}

.location-map-card__placeholder {
    position: relative;
    z-index: 1;

    min-height: 460px;
    padding: clamp(28px, 5vw, 48px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    color: var(--color-petrol-deep);
}

.location-map-card__eyebrow {
    margin: 0 0 12px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-terracotta);
}

.location-map-card__placeholder h3 {
    max-width: 420px;
    margin: 0 0 14px;

    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 600;

    color: var(--color-petrol-deep);
}

.location-map-card__placeholder p:not(.location-map-card__eyebrow) {
    max-width: 440px;
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(3, 46, 55, 0.72);
}

.location-map-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}

.location-map-card__actions .button--secondary {
    background: rgba(3, 46, 55, 0.72);
}

.location-map-card iframe {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.location-map-card.is-loaded .location-map-card__map::before,
.location-map-card.is-loaded .location-map-card__map::after {
    display: none;
}

@media (max-width: 900px) {
    .location-map-card,
    .location-map-card__map,
    .location-map-card__placeholder {
        min-height: 390px;
    }
}

@media (max-width: 760px) {
    .location-section__details {
        margin: 24px 0 26px;
    }

    .location-section__button {
        width: 100%;
        justify-content: center;
    }

    .location-map-card {
        border-radius: 24px;
    }

    .location-map-card,
    .location-map-card__map,
    .location-map-card__placeholder {
        min-height: 360px;
    }

    .location-map-card__placeholder {
        padding: 24px 20px;
    }

    .location-map-card__actions {
        display: grid;
        width: 100%;
    }

    .location-map-card__actions .button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   BRAND MARK — CORAL ICON WITHOUT CIRCLE
========================================================= */

.site-brand__symbol--image {
    border: 0;
    background: transparent;
}

.site-brand__symbol-image {
    display: block;

    width: 34px;
    height: 34px;

    object-fit: contain;
}


/* =========================================================
   BRAND MARK — CORAL ICON SIZE
========================================================= */

.site-brand__symbol--image {
    width: 52px;
    height: 52px;

    border: 0;
    background: transparent;
}

.site-brand__symbol-image {
    display: block;

    width: 52px;
    height: 52px;

    object-fit: contain;
}

@media (max-width: 760px) {
    .site-brand__symbol--image {
        width: 40px;
        height: 40px;
    }

    .site-brand__symbol-image {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
   ACCOMMODATION PAGE — DISTINCT ROOM TYPE SECTIONS
========================================================= */

.rooms-overview {
    background:
        linear-gradient(
            180deg,
            rgba(247, 242, 233, 1) 0%,
            rgba(255, 252, 245, 1) 42%,
            rgba(247, 242, 233, 1) 100%
        );
}

.rooms-overview__list {
    display: grid;
    gap: clamp(34px, 6vw, 72px);
}

.room-overview-card {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: stretch;
    gap: clamp(24px, 4vw, 52px);

    padding: clamp(18px, 3vw, 30px);

    border-radius: 34px;
    border: 1px solid rgba(3, 46, 55, 0.10);

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.96),
            rgba(250, 247, 240, 0.92)
        );

    box-shadow:
        0 28px 80px rgba(3, 46, 55, 0.10),
        0 10px 28px rgba(3, 46, 55, 0.05);

    overflow: hidden;
}

.room-overview-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;

    width: 7px;

    background:
        linear-gradient(
            180deg,
            var(--color-terracotta),
            rgba(103, 194, 198, 0.9)
        );

    opacity: 0.95;
}

.room-overview-card::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(103, 194, 198, 0.16),
            rgba(103, 194, 198, 0)
        );

    pointer-events: none;
}

.room-overview-card--reverse {
    grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.room-overview-card--reverse .room-overview-card__media {
    order: 2;
}

.room-overview-card--reverse .room-overview-card__content {
    order: 1;
}

.room-overview-card__media {
    position: relative;
    z-index: 1;

    min-height: 430px;

    border-radius: 26px;
    overflow: hidden;

    box-shadow:
        0 20px 48px rgba(3, 46, 55, 0.12),
        0 6px 18px rgba(3, 46, 55, 0.08);
}

.room-overview-card__image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.room-overview-card__media:hover .room-overview-card__image {
    transform: scale(1.035);
}

.room-overview-card__content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(10px, 2vw, 22px);
}

.room-overview-card__type {
    width: fit-content;

    margin: 0 0 14px;
    padding: 8px 13px;

    border-radius: 999px;
    border: 1px solid rgba(197, 111, 73, 0.24);

    background: rgba(197, 111, 73, 0.08);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-terracotta);
}

.room-overview-card__title {
    margin-bottom: 16px;
}

.room-overview-card__description {
    max-width: 56ch;
}

.room-overview-card__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;

    margin-top: 22px;
}

.room-overview-card__features li {
    position: relative;

    padding-left: 18px;
}

.room-overview-card__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;

    width: 7px;
    height: 7px;

    border-radius: 999px;

    background: var(--color-terracotta);

    transform: translateY(-50%);
}

.room-overview-card__price {
    margin-top: 24px;
    padding-top: 20px;

    border-top: 1px solid rgba(3, 46, 55, 0.10);
}

.room-overview-card__actions {
    margin-top: 24px;
}


/* Slight alternation so each block feels separate */

.room-overview-card:nth-child(even) {
    background:
        linear-gradient(
            135deg,
            rgba(246, 252, 252, 0.96),
            rgba(255, 255, 255, 0.92)
        );
}

.room-overview-card:nth-child(even)::before {
    background:
        linear-gradient(
            180deg,
            rgba(103, 194, 198, 1),
            var(--color-terracotta)
        );
}


/* Mobile */

@media (max-width: 980px) {
    .room-overview-card,
    .room-overview-card--reverse {
        grid-template-columns: 1fr;
        gap: 22px;

        padding: 16px;
        border-radius: 28px;
    }

    .room-overview-card--reverse .room-overview-card__media,
    .room-overview-card--reverse .room-overview-card__content {
        order: initial;
    }

    .room-overview-card__media {
        min-height: 320px;
        border-radius: 22px;
    }

    .room-overview-card__content {
        padding: 8px 6px 12px;
    }
}

@media (max-width: 760px) {
    .rooms-overview__list {
        gap: 34px;
    }

    .room-overview-card {
        border-radius: 24px;

        box-shadow:
            0 20px 54px rgba(3, 46, 55, 0.10),
            0 6px 18px rgba(3, 46, 55, 0.05);
    }

    .room-overview-card::before {
        width: 100%;
        height: 5px;
        inset: 0 0 auto 0;
    }

    .room-overview-card__media {
        min-height: 270px;
        border-radius: 20px;
    }

    .room-overview-card__features {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .room-overview-card__actions {
        display: grid;
        gap: 14px;
    }

    .room-overview-card__actions .button {
        width: 100%;
        justify-content: center;
    }

    .room-overview-card__text-link {
        justify-content: center;
        text-align: center;
    }
}

