/* ================================================================
   ARTERMISION — Premium Wellness Hotel
   Stylesheet
   Brand: Warm beige · ivory · stone · taupe · warm wood
   Fonts: Cormorant Garamond (headings) · Jost (body)
================================================================ */

/* ================================================================
   CUSTOM PROPERTIES
================================================================ */
:root {
    /* Colour Palette */
    --c-ivory:      #F6F1E9;
    --c-cream:      #EDE8DE;
    --c-beige:      #D9CDBB;
    --c-sand:       #C4B49A;
    --c-taupe:      #A8967E;
    --c-stone:      #8B7A66;
    --c-wood:       #6B5744;
    --c-dark:       #2A1F14;
    --c-warm-dark:  #3D3020;
    --c-white:      #FDFAF5;

    /* Typography */
    --f-heading:    'Cormorant Garamond', Georgia, serif;
    --f-body:       'Jost', system-ui, sans-serif;

    /* Layout */
    --nav-h:        80px;
    --max-w:        1280px;
    --pad-x:        clamp(1.5rem, 6vw, 6rem);

    /* Transitions */
    --ease:         0.4s ease;
    --ease-slow:    0.8s ease;
}

/* ================================================================
   RESET & BASE
================================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--f-body);
    font-weight: 300;
    color: var(--c-dark);
    background-color: var(--c-ivory);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--ease), opacity var(--ease);
}

ul {
    list-style: none;
}

/* ================================================================
   UTILITIES
================================================================ */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* Section Labels */
.section-label {
    display: block;
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 1.2rem;
}
.section-label--light {
    color: rgba(255, 255, 255, 0.55);
}

/* Section Titles */
.section-title {
    font-family: var(--f-heading);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.12;
    color: var(--c-dark);
    margin-bottom: 1.4rem;
}
.section-title em {
    font-style: italic;
    color: var(--c-stone);
}
.section-title--light {
    color: var(--c-white);
}
.section-title--light em {
    color: rgba(255, 255, 255, 0.65);
}

/* Section Desc */
.section-desc {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
    display: inline-block;
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1rem 2.6rem;
    transition: background var(--ease), color var(--ease),
                border-color var(--ease), opacity var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
}

/* Ghost — white outline (on dark/image backgrounds) */
.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--c-white);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--c-white);
}

/* Light — white fill (on dark/image backgrounds) */
.btn--light {
    background: var(--c-white);
    color: var(--c-dark);
    border-color: var(--c-white);
}
.btn--light:hover {
    background: var(--c-cream);
    border-color: var(--c-cream);
}

/* Light Small — card overlay CTA */
.btn--light-sm {
    background: rgba(253, 250, 245, 0.92);
    color: var(--c-dark);
    font-size: 0.63rem;
    padding: 0.7rem 1.6rem;
    letter-spacing: 0.18em;
}
.btn--light-sm:hover {
    background: var(--c-white);
}

/* Dark outline — on light backgrounds */
.btn--outline {
    background: transparent;
    border-color: var(--c-dark);
    color: var(--c-dark);
}
.btn--outline:hover {
    background: var(--c-dark);
    color: var(--c-ivory);
}

/* ================================================================
   SCROLL REVEAL ANIMATIONS
================================================================ */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.reveal {
    transform: translateY(32px);
}
.reveal-left {
    transform: translateX(-32px);
}
.reveal-right {
    transform: translateX(32px);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
.nav.scrolled {
    background-color: var(--c-ivory);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--pad-x);
    max-width: var(--max-w);
    margin: 0 auto;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    z-index: 2;
}
.nav__logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    /* PNG has transparent bg — white version on hero, dark on scroll */
    filter: brightness(0) invert(1);
    transition: filter 0.5s ease;
}
.nav.scrolled .nav__logo-img {
    filter: brightness(0);
}
.nav__logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0.5rem;
    line-height: 1.15;
}
.nav__logo-hotel {
    font-family: var(--f-heading);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #fff;
    transition: color 0.5s ease;
    text-transform: none;
}
.nav.scrolled .nav__logo-hotel {
    color: var(--c-dark);
}
.nav__logo-name {
    font-family: var(--f-heading);
    font-size: 1rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.04em;
    color: #fff;
    transition: color 0.5s ease;
}
.nav.scrolled .nav__logo-name {
    color: var(--c-dark);
}

/* Links */
.nav__links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav__link {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    transition: color 0.35s ease;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}
.nav__link:hover::after {
    width: 100%;
}
.nav.scrolled .nav__link {
    color: var(--c-stone);
}
.nav.scrolled .nav__link:hover {
    color: var(--c-dark);
}

/* CTA */
.nav__cta {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 0.58rem 1.5rem;
    transition: all 0.3s ease;
}
.nav__cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--c-white);
}
.nav.scrolled .nav__cta {
    color: var(--c-dark);
    border-color: var(--c-beige);
}
.nav.scrolled .nav__cta:hover {
    background: var(--c-dark);
    color: var(--c-ivory);
    border-color: var(--c-dark);
}

/* Hamburger Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 2;
}
.nav__toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--c-white);
    transition: background 0.4s ease;
}
.nav.scrolled .nav__toggle span {
    background: var(--c-dark);
}

/* ================================================================
   MOBILE NAV OVERLAY
================================================================ */
.nav-mobile {
    position: fixed;
    inset: 0;
    background: var(--c-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}
.nav-mobile.open {
    opacity: 1;
    pointer-events: all;
}

.nav-mobile__close {
    position: absolute;
    top: 1.8rem;
    right: var(--pad-x);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}
.nav-mobile__close:hover {
    color: var(--c-cream);
}

.nav-mobile ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 3rem;
}
.nav-mobile ul li a {
    font-family: var(--f-heading);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 300;
    color: rgba(237, 232, 222, 0.85);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.nav-mobile ul li a:hover {
    color: var(--c-sand);
}

.nav-mobile__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* ================================================================
   HERO
================================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    bottom: -15%;
}
.hero__img,
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--c-dark);
}

/* Hero slideshow */
.hero__slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero__slide.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 18, 10, 0.3) 0%,
        rgba(26, 18, 10, 0.45) 50%,
        rgba(26, 18, 10, 0.58) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--c-white);
    padding: 0 var(--pad-x);
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
}

.hero__hotel-name {
    display: block;
    font-family: var(--f-heading);
    font-weight: 300;
    font-size: clamp(3.6rem, 9vw, 7.5rem);
    line-height: 1.04;
    color: var(--c-white);
    margin-bottom: 0.6rem;
}
.hero__hotel-logo {
    display: block;
    height: 84px;
    width: auto;
    margin: 0 auto 0.8rem;
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

.hero__location {
    display: block;
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 1.6rem;
}

.hero__title {
    font-family: var(--f-heading);
    font-weight: 300;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    line-height: 1.04;
    margin-bottom: 1.6rem;
    color: var(--c-white);
}
.hero__title em {
    font-style: italic;
    font-weight: 300;
}

.hero__tagline {
    font-family: var(--f-body);
    font-weight: 300;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.85;
}
.hero__philosophy {
    max-width: 600px;
    margin: 0 auto;
}
.hero__philosophy p {
    font-family: var(--f-body);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.9rem;
}
.hero__philosophy p:last-child {
    margin-bottom: 0;
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
}
.hero__scroll-line {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.38);
    animation: scrollPulse 2.2s ease-in-out infinite;
    transform-origin: top;
}
.hero__scroll-label {
    font-size: 0.6rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

@keyframes scrollPulse {
    0%   { transform: scaleY(0.2); opacity: 0.3; }
    50%  { transform: scaleY(1);   opacity: 0.8; }
    100% { transform: scaleY(0.2); opacity: 0.3; }
}

/* ================================================================
   BRAND STATEMENT
================================================================ */
.statement {
    padding: 7rem 0 5rem;
    background: var(--c-ivory);
}
.statement__inner {
    max-width: 740px;
    margin: 0 auto;
    text-align: center;
}
.statement__label {
    display: block;
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.66rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 1.5rem;
}
.statement__title {
    font-family: var(--f-heading);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.18;
    color: var(--c-dark);
    margin-bottom: 2rem;
}
.statement__title em {
    font-style: italic;
    color: var(--c-stone);
}
.statement__text {
    font-size: 0.96rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.95;
    max-width: 580px;
    margin: 0 auto;
}
.statement__philosophy {
    max-width: 660px;
    margin: 2.5rem auto 0;
    border-top: 1px solid var(--c-beige);
    padding-top: 2.5rem;
    text-align: center;
}
.statement__philosophy p {
    font-family: var(--f-body);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--c-stone);
    margin-bottom: 1.1rem;
}
.statement__philosophy p:last-child {
    margin-bottom: 0;
}

/* ================================================================
   BRAND PILLARS
================================================================ */
.pillars {
    padding: 2.5rem 0 7rem;
    background: var(--c-ivory);
}
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--c-beige);
    border-left: 1px solid var(--c-beige);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.pillar {
    padding: 3rem 2.5rem;
    border-right: 1px solid var(--c-beige);
    border-bottom: 1px solid var(--c-beige);
    text-align: center;
}
.pillar__icon {
    font-size: 0.9rem;
    color: var(--c-taupe);
    margin-bottom: 1.4rem;
    letter-spacing: 0.15em;
}
.pillar__title {
    font-family: var(--f-heading);
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--c-dark);
    margin-bottom: 0.9rem;
    letter-spacing: 0.02em;
}
.pillar__text {
    font-size: 0.87rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.82;
}

/* ================================================================
   SUITES & RESIDENCES
================================================================ */
.suites {
    padding: 7rem 0;
    background: var(--c-cream);
}
.suites__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* Suite Card */
.suite-card {
    background: var(--c-ivory);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.suite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42, 31, 20, 0.08);
}

.suite-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.suite-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}
.suite-card:hover .suite-card__image img {
    transform: scale(1.05);
}

/* Placeholder state — shown until real photos are added */
.suite-card__image--placeholder {
    background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.suite-card__placeholder-label {
    font-family: var(--f-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-taupe);
    pointer-events: none;
    user-select: none;
}

.suite-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 18, 10, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.suite-card:hover .suite-card__overlay {
    opacity: 1;
}

.suite-card__body {
    padding: 1.8rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.suite-card__type {
    display: block;
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 0.55rem;
}
.suite-card__name {
    font-family: var(--f-heading);
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--c-dark);
    margin-bottom: 0.75rem;
}
.suite-card__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.82;
    margin-bottom: 1.25rem;
    flex: 1;
}
.suite-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.suite-card__features span {
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-taupe);
    border: 1px solid var(--c-beige);
    padding: 0.28rem 0.75rem;
}

/* ================================================================
   SPA SECTION — Full-bleed image with text overlay
================================================================ */
.spa-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
}
.spa-section__media {
    position: absolute;
    inset: 0;
}
.spa-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.spa-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 13, 7, 0.78) 0%,
        rgba(20, 13, 7, 0.42) 55%,
        rgba(20, 13, 7, 0.1) 100%
    );
}
.spa-section__content {
    position: relative;
    z-index: 2;
    padding: 5rem var(--pad-x);
    max-width: 600px;
    color: var(--c-white);
}
.spa-section__text {
    font-size: 0.94rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.92;
    margin-bottom: 2rem;
}
.spa-section__list {
    margin-bottom: 2.6rem;
}
.spa-section__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.spa-section__list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.spa-list__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 400;
    font-family: var(--f-body);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.65rem 0;
    text-align: left;
    transition: color 0.2s ease;
}
.spa-list__btn::after {
    content: '+';
    font-size: 1rem;
    opacity: 0.4;
    transition: opacity 0.2s ease;
}
.spa-list__btn:hover {
    color: rgba(255, 255, 255, 1);
}
.spa-list__btn:hover::after {
    opacity: 1;
}

/* ================================================================
   SPA TREATMENT MODALS
================================================================ */
.spa-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.spa-modal.open {
    display: flex;
}
.spa-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 31, 20, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.spa-modal__panel {
    position: relative;
    background: var(--c-white);
    max-width: 560px;
    width: 100%;
    border-radius: 2px;
    z-index: 1;
    overflow: hidden;
}
.spa-modal__image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}
.spa-modal__body {
    padding: 2.5rem 3rem 2.5rem;
}
.spa-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: rgba(0,0,0,0.35);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #fff;
    line-height: 1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}
.spa-modal__close:hover {
    background: rgba(0,0,0,0.6);
}
.spa-modal__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 0.75rem;
}
.spa-modal__title {
    font-family: var(--f-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--c-dark);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.spa-modal__desc {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--c-stone);
}
.spa-modal__desc--note {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    color: var(--c-taupe);
}

/* Pricing modal */
.spa-modal__panel--pricing {
    max-width: 480px;
}
.spa-modal__close--dark {
    background: rgba(0,0,0,0.15);
    color: var(--c-dark);
}
.spa-modal__close--dark:hover {
    background: rgba(0,0,0,0.3);
}
.spa-list__btn--pricing {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 0.5rem;
    padding-top: 1rem;
    opacity: 0.75;
    font-style: italic;
    letter-spacing: 0.18em;
}
.spa-pricing__list {
    list-style: none;
    border-top: 1px solid var(--c-cream);
}
.spa-pricing__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--c-cream);
}
.spa-pricing__name {
    font-family: var(--f-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--c-dark);
}
.spa-pricing__price {
    font-family: var(--f-heading);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--c-taupe);
    white-space: nowrap;
    margin-left: 1rem;
}

@media (max-width: 480px) {
    .spa-modal__image {
        height: 240px;
    }
    .spa-modal__body {
        padding: 1.5rem 1.5rem 1.75rem;
    }
    .spa-modal__title {
        font-size: 1.6rem;
    }
}

/* ================================================================
   SPLIT SECTIONS — Pool & Wellness
================================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 62vh;
}
.split-section--reverse .split-section__media {
    order: 2;
}
.split-section--reverse .split-section__content {
    order: 1;
}

.split-section__media {
    overflow: hidden;
}
.split-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}
.split-section__media:hover img {
    transform: scale(1.04);
}

.split-section__content {
    background: var(--c-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem clamp(2rem, 5vw, 6rem);
}
.split-section--reverse .split-section__content {
    background: var(--c-ivory);
}

.split-section__text {
    font-size: 0.93rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.92;
    margin-bottom: 2.5rem;
}

/* Stats row (Pool section) */
.split-section__stats {
    display: flex;
    gap: 2.8rem;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.stat__value {
    font-family: var(--f-heading);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--c-dark);
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: lining-nums;
}
.stat__label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-taupe);
}

/* List (Wellness section) */
.split-section__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.split-section__list li {
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-stone);
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--c-beige);
}
#pool .split-section__list li {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.88rem;
}
.split-section__list li:first-child {
    border-top: 1px solid var(--c-beige);
}

/* ================================================================
   EXPERIENCES / LIFESTYLE GRID
================================================================ */
.experiences {
    padding: 5rem 0 1rem;
    background: var(--c-ivory);
}
.retreat-intro {
    max-width: 820px;
    margin: 2rem auto 3.5rem;
    text-align: center;
}
.retreat-intro--below {
    margin: 3.5rem auto 0;
}
.retreat-intro p {
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--c-stone);
    margin-bottom: 1.2rem;
}
.retreat-intro p:last-child {
    margin-bottom: 0;
}
.experiences__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 330px 330px;
    gap: 1.2rem;
}
.exp-item {
    position: relative;
    overflow: hidden;
    background: var(--c-cream);
}
.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s ease;
}
.exp-item:hover img {
    transform: scale(1.04);
}
.exp-item--tall {
    grid-row: span 2;
}
.exp-item--wide {
    grid-column: span 2;
}
.exp-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.5rem 1.4rem;
    background: linear-gradient(to top, rgba(20, 13, 7, 0.58), transparent);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

/* ================================================================
   GUEST QUOTE
================================================================ */
.quote-section {
    padding: 4rem 0;
    background: var(--c-ivory);
}
.quote {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.quote__mark {
    font-family: var(--f-heading);
    font-size: 6rem;
    color: var(--c-beige);
    line-height: 0.55;
    margin-bottom: 1.8rem;
    display: block;
}
.quote__text {
    font-family: var(--f-heading);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--c-dark);
    line-height: 1.5;
    margin-bottom: 2rem;
}
.quote__author {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-taupe);
    font-style: normal;
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
    background: var(--c-white);
    padding: 5rem 0;
}
.contact-section__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-top: 4rem;
    align-items: start;
}
.contact-section__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.contact-info-item__label {
    font-family: var(--f-body);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-taupe);
}
.contact-info-item__value {
    font-family: var(--f-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--c-dark);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}
a.contact-info-item__value:hover {
    color: var(--c-wood);
}
.contact-info-item__insta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}
.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-form__field label {
    font-family: var(--f-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-stone);
}
.contact-form__optional {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.65rem;
    color: var(--c-sand);
}
.contact-form__field input,
.contact-form__field textarea {
    font-family: var(--f-body);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--c-dark);
    background: var(--c-white);
    border: 1px solid var(--c-beige);
    border-radius: 2px;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    resize: vertical;
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--c-sand);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-color: var(--c-stone);
}
.btn--dark {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--c-dark);
    color: var(--c-white);
    border: 1px solid var(--c-dark);
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    align-self: flex-start;
}
.btn--dark:hover {
    background: var(--c-wood);
    border-color: var(--c-wood);
}
.contact-form__success {
    padding: 2.5rem 0;
    text-align: center;
}
.contact-form__success-title {
    font-family: var(--f-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--c-dark);
    margin-bottom: 0.75rem;
}
.contact-form__success-text {
    font-family: var(--f-body);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.8;
}
@media (max-width: 768px) {
    .contact-section__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   RESERVE / CTA
================================================================ */
.reserve {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--c-dark);
}
.reserve__media {
    position: absolute;
    inset: 0;
}
.reserve__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reserve__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 13, 7, 0.55);
}
.reserve__content {
    position: relative;
    z-index: 2;
    color: var(--c-white);
    padding: 4rem 2rem;
    max-width: 680px;
}
.reserve__text {
    font-size: 0.93rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.92;
    margin-bottom: 2.8rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.reserve__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: var(--c-dark);
    color: #ffffff;
    padding: 2.5rem 0 1.5rem;
}
.footer__top {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 1rem;
}
.footer__logo-img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.75;
    margin-bottom: 0.7rem;
}
.footer__tagline {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.3rem;
}
.footer__address {
    font-size: 0.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-top: 0.5rem;
}
.footer__eu-badge {
    display: block;
    height: 55px;
    width: auto;
    margin-top: 1rem;
    opacity: 1;
    background: var(--c-ivory);
    padding: 0.4rem 0.6rem;
    border-radius: 2px;
}
.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer__nav-col h4 {
    font-family: var(--f-body);
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.3rem;
}
.footer__nav-col ul li {
    margin-bottom: 0.65rem;
}
.footer__nav-col ul li,
.footer__nav-col ul li a {
    font-size: 0.84rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.5;
    transition: color 0.3s;
}
.footer__nav-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer__nav-col ul li a:hover {
    color: var(--c-cream);
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer__bottom p,
.footer__bottom a {
    font-size: 0.73rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
.footer__bottom a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   RESPONSIVE — TABLET (≤1024px)
================================================================ */
@media (max-width: 1024px) {
    .suites__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
        margin: 0;
    }
    .pillars__grid {
        grid-template-columns: 1fr;
    }
    .pillar {
        padding: 2.2rem 2rem;
    }
    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .split-section--reverse .split-section__media,
    .split-section--reverse .split-section__content {
        order: unset;
    }
    .split-section__media {
        height: 55vw;
        min-height: 280px;
    }
    .split-section__content {
        padding: 4rem var(--pad-x);
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer__nav {
        grid-template-columns: repeat(2, 1fr);
    }
    .experiences__grid {
        grid-template-rows: 280px 280px 320px;
    }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤768px)
================================================================ */
@media (max-width: 768px) {
    :root {
        --pad-x: 1.4rem;
    }

    /* Nav */
    .nav__links,
    .nav__cta {
        display: none;
    }
    .nav__toggle {
        display: flex;
        order: 2;
    }
    .nav__logo {
        order: 1;
    }

    /* Rooms grid */
    .suites__grid {
        grid-template-columns: 1fr;
    }

    /* Hero */
    .hero__hotel-name {
        font-size: clamp(3rem, 13vw, 5rem);
    }
    .hero__title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    /* Statement */
    .statement {
        padding: 5rem 0 3.5rem;
    }

    /* Spa */
    .spa-section {
        min-height: 100vh;
    }
    .spa-section__overlay {
        background: rgba(20, 13, 7, 0.62);
    }
    .spa-section__content {
        max-width: none;
    }

    /* Experiences Grid — single column on mobile */
    .experiences__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .exp-item--tall,
    .exp-item--wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    .exp-item {
        height: 260px;
    }

    /* Reserve */
    .reserve__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Footer */
    .footer__nav {
        grid-template-columns: 1fr;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Quote */
    .quote__text {
        font-size: 1.4rem;
    }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
================================================================ */
@media (max-width: 480px) {
    .hero__hotel-name {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
    }
    .split-section__stats {
        gap: 1.8rem;
    }
    .reserve {
        min-height: 80vh;
    }
    .spa-modal__panel--pricing .spa-modal__body {
        padding: 1.5rem 1.5rem 2rem;
    }
}

/* ================================================================
   ROOM CARDS — CURSOR
================================================================ */
.suite-card[data-modal] {
    cursor: pointer;
}
.suite-card[data-modal]:focus-visible {
    outline: 2px solid var(--c-taupe);
    outline-offset: 3px;
}

/* ================================================================
   ROOM MODALS
================================================================ */
.room-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.room-modal.open {
    opacity: 1;
    pointer-events: all;
}

/* Backdrop */
.room-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 13, 7, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Panel */
.room-modal__panel {
    position: relative;
    z-index: 1;
    background: var(--c-ivory);
    width: 100%;
    max-width: 980px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(24px);
    transition: transform 0.4s ease;
    scroll-behavior: smooth;
}
.room-modal.open .room-modal__panel {
    transform: translateY(0);
}

/* Scrollbar styling */
.room-modal__panel::-webkit-scrollbar { width: 4px; }
.room-modal__panel::-webkit-scrollbar-track { background: var(--c-cream); }
.room-modal__panel::-webkit-scrollbar-thumb { background: var(--c-beige); border-radius: 2px; }

/* Close Button */
.room-modal__close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 10;
    background: rgba(253, 250, 245, 0.88);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--c-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    line-height: 1;
}
.room-modal__close:hover {
    background: var(--c-dark);
    color: var(--c-white);
}

/* ---- GALLERY ---- */
.room-modal__gallery {
    position: relative;
    overflow: hidden;
    background: var(--c-cream);
    min-height: 380px;
}

.room-modal__slides {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.room-modal__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}
.room-modal__slide.active {
    opacity: 1;
    position: relative;
}

.room-modal__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder slide */
.room-modal__slide--placeholder {
    background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.room-modal__slide--placeholder span {
    font-family: var(--f-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-taupe);
}

/* Gallery Arrows */
.room-modal__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(253, 250, 245, 0.8);
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--c-dark);
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s;
}
.room-modal__arrow:hover {
    background: var(--c-white);
}
.room-modal__arrow--prev { left: 0.8rem; }
.room-modal__arrow--next { right: 0.8rem; }

/* Gallery Dots */
.room-modal__dots {
    position: absolute;
    bottom: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
    z-index: 5;
}
.room-modal__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.room-modal__dot.active {
    background: var(--c-white);
    transform: scale(1.3);
}

/* ---- CONTENT ---- */
.room-modal__content {
    padding: 2.8rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.room-modal__label {
    display: block;
    font-family: var(--f-body);
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 0.7rem;
}

/* ================================================================
   LEGAL MODALS — Privacy Policy & Terms of Service
================================================================ */
.legal-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.legal-modal.open {
    display: flex;
}
.legal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(42, 31, 20, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.legal-modal__panel {
    position: relative;
    background: var(--c-white);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    border-radius: 2px;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.legal-modal__body {
    padding: 3rem 3.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.legal-modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    background: rgba(0,0,0,0.12);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--c-dark);
    line-height: 1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}
.legal-modal__close:hover {
    background: rgba(0,0,0,0.22);
}
.legal-modal__label {
    display: block;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 0.75rem;
}
.legal-modal__title {
    font-family: var(--f-heading);
    font-size: 2rem;
    font-weight: 300;
    color: var(--c-dark);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.legal-modal__updated {
    font-size: 0.78rem;
    color: var(--c-taupe);
    margin-bottom: 2rem;
}
.legal-modal__body h3 {
    font-family: var(--f-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--c-dark);
    margin-top: 1.75rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.legal-modal__body p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--c-stone);
    margin-bottom: 0.5rem;
}
.legal-modal__body a {
    color: var(--c-dark);
    text-underline-offset: 3px;
}
.legal-modal__body a:hover {
    color: var(--c-taupe);
}
@media (max-width: 480px) {
    .legal-modal__body {
        padding: 2rem 1.5rem;
    }
    .legal-modal__title {
        font-size: 1.6rem;
    }
}

.room-modal__title {
    font-family: var(--f-heading);
    font-weight: 300;
    font-size: 2.2rem;
    color: var(--c-dark);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.room-modal__desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--c-stone);
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

/* Amenities */
.room-modal__amenities-title {
    font-family: var(--f-body);
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-taupe);
    margin-bottom: 0.9rem;
}

.room-modal__amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2rem;
}

.room-modal__amenities-grid li {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--c-dark);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--c-cream);
    padding-right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.room-modal__amenities-grid li::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--c-taupe);
    flex-shrink: 0;
}

/* CTA */
.room-modal__cta {
    margin-top: auto;
    padding-top: 0.5rem;
}
.room-modal__reserve {
    width: 100%;
    text-align: center;
    display: block;
}

/* ================================================================
   MODAL RESPONSIVE
================================================================ */
@media (max-width: 768px) {
    .room-modal {
        padding: 0;
        align-items: flex-end;
    }
    .room-modal__panel {
        grid-template-columns: 1fr;
        max-height: 92vh;
        border-radius: 0;
    }
    .room-modal__gallery {
        min-height: 260px;
    }
    .room-modal__slides,
    .room-modal__slide,
    .room-modal__slide--placeholder {
        min-height: 260px;
    }
    .room-modal__content {
        padding: 2rem 1.5rem 2.5rem;
    }
    .room-modal__amenities-grid {
        grid-template-columns: 1fr;
    }
}
