:root {
    --black: #111111;
    --dark: #191919;
    --dark-2: #24211d;
    --gold: #c7a35a;
    --gold-light: #dfc386;
    --cream: #f8f5ef;
    --ivory: #fffdf8;
    --white: #ffffff;
    --gray: #777777;
    --line: rgba(17, 17, 17, .12);
    --dark-line: rgba(255, 255, 255, .14);
    --shadow: 0 24px 70px rgba(17, 17, 17, .16);
    --radius: 8px;
    --font-ui: 'Manrope', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-hero: 'Jost', var(--font-ui);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--black);
    background: var(--ivory);
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

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

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

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

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(199, 163, 90, .62);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: var(--radius);
    color: var(--black);
    background: var(--gold-light);
    transform: translateY(-140%);
    transition: transform .25s ease;
}

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

.ambient-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.ambient-shapes span {
    position: absolute;
    display: block;
    opacity: .44;
    will-change: transform;
}

.ambient-line {
    width: 360px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 163, 90, .48), transparent);
    transform-origin: center;
}

.ambient-line-one {
    top: 18%;
    right: -110px;
    animation: ambientDriftOne 18s ease-in-out infinite;
}

.ambient-line-two {
    left: -120px;
    bottom: 22%;
    animation: ambientDriftTwo 22s ease-in-out infinite;
}

.ambient-frame {
    width: 210px;
    height: 210px;
    border: 1px solid rgba(199, 163, 90, .18);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .045), transparent 62%);
}

.ambient-frame-one {
    top: 28%;
    left: 3%;
    animation: ambientFrameOne 26s ease-in-out infinite;
}

.ambient-frame-two {
    right: 5%;
    bottom: 12%;
    width: 160px;
    height: 160px;
    animation: ambientFrameTwo 24s ease-in-out infinite;
}

@keyframes ambientDriftOne {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-22deg);
    }
    50% {
        transform: translate3d(-48px, 28px, 0) rotate(-15deg);
    }
}

@keyframes ambientDriftTwo {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(18deg);
    }
    50% {
        transform: translate3d(58px, -22px, 0) rotate(26deg);
    }
}

@keyframes ambientFrameOne {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(14deg);
    }
    50% {
        transform: translate3d(20px, -34px, 0) rotate(20deg);
    }
}

@keyframes ambientFrameTwo {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-18deg);
    }
    50% {
        transform: translate3d(-26px, 30px, 0) rotate(-26deg);
    }
}

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

.section {
    padding: clamp(72px, 8vw, 124px) 0;
}

.soft-section {
    background: var(--cream);
}

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

.section-heading p,
.section-copy p,
.rich-content p,
.booking-cta p,
.site-footer p {
    color: #57524b;
}

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

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

h1,
h2,
h3 {
    margin: 0;
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
    font-size: clamp(2rem, 4.2vw, 4.05rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.7rem);
}

p {
    margin: 14px 0 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.1;
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, border-color .28s ease;
}

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

.btn-gold {
    color: #15120d;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 16px 34px rgba(199, 163, 90, .25);
}

.btn-gold:hover {
    box-shadow: 0 20px 44px rgba(199, 163, 90, .34);
}

.btn-outline,
.btn-outline-dark {
    border-color: rgba(199, 163, 90, .45);
    color: var(--gold-light);
    background: rgba(255, 255, 255, .06);
}

.btn-outline-dark {
    color: var(--black);
    background: transparent;
}

.btn-outline-dark:hover {
    color: var(--white);
    border-color: var(--black);
    background: var(--black);
}

.btn-dark {
    color: var(--white);
    background: var(--black);
}

.btn-glass {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
}

.btn-full {
    width: 100%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
    background: rgba(17, 17, 17, .86);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.top-header {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: rgba(17, 17, 17, .20);
    backdrop-filter: blur(12px);
}

.top-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1280px, calc(100% - 42px));
    min-height: 38px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: .84rem;
    font-weight: 800;
}

.top-header-link,
.top-header-address {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.top-header-link i,
.top-header-address i {
    color: var(--gold-light);
    font-size: .86rem;
}

.top-header-address {
    justify-content: flex-end;
    text-align: right;
}

.top-header-address span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-header-link:hover {
    color: var(--gold-light);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1280px, calc(100% - 42px));
    min-height: 88px;
    margin: 0 auto;
    transition: min-height .35s ease;
}

.site-header.scrolled .header-inner {
    min-height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 172px;
}

.site-logo {
    width: auto;
    max-width: 220px;
    max-height: 68px;
    object-fit: contain;
}

.brand .site-logo {
    max-width: 210px;
    max-height: 62px;
}

.logo-upload-slot {
    display: block;
    width: 180px;
    height: 54px;
    border: 1px dashed rgba(223, 195, 134, .38);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(223, 195, 134, .12), rgba(255, 255, 255, .035)),
        rgba(17, 17, 17, .24);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(223, 195, 134, .66);
    border-radius: 50%;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.brand-text,
.footer-brand {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.brand-text strong {
    color: var(--gold-light);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.desktop-nav a {
    position: relative;
    padding: 12px 14px;
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    font-weight: 700;
    transition: color .25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav,
.mobile-nav-backdrop {
    display: none;
}

.hotel-hero,
.page-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 92vh;
    overflow: hidden;
    color: var(--white);
    background: var(--black);
}

.full-hero {
    min-height: 100vh;
    min-height: 100svh;
}

.hotel-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 49%, rgba(199, 163, 90, .18) 49.15%, transparent 49.7%),
        linear-gradient(155deg, transparent 0 63%, rgba(255, 255, 255, .08) 63.1%, transparent 63.5%);
    animation: heroLines 14s ease-in-out infinite;
}

.hotel-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 9%;
    z-index: 1;
    width: clamp(170px, 18vw, 320px);
    aspect-ratio: 1;
    border: 1px solid rgba(223, 195, 134, .16);
    border-radius: 8px;
    transform: rotate(18deg);
    animation: heroFrame 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroLines {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: .58;
    }
    50% {
        transform: translate3d(28px, -18px, 0);
        opacity: .88;
    }
}

@keyframes heroFrame {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(18deg);
    }
    50% {
        transform: translate3d(-24px, 18px, 0) rotate(24deg);
    }
}

.page-hero {
    min-height: 58vh;
    padding-top: 88px;
}

.compact-hero {
    min-height: 50vh;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.45s ease, transform 7s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-media img,
.hero-media .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-media .image-placeholder {
    border: 0;
    border-radius: 0;
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .0) 48%, rgba(0, 0, 0, .0)),
        linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .55));
}

.hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 126px;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: clamp(36px, 6vw, 92px);
    align-items: center;
    width: min(1280px, calc(100% - 42px));
}

.hero-text {
    max-width: 760px;
}

.hero-content h1,
.hero-content h2,
.page-hero h1,
.page-hero h2 {
    color: var(--white);
}

.hero-content h1 {
    font-family: var(--font-hero);
    font-size: clamp(3.35rem, 6.9vw, 6.9rem);
    font-weight: 800;
    letter-spacing: .08em;
    line-height: .92;
}

.hero-lead {
    color: var(--gold-light);
    font-size: clamp(1.35rem, 3vw, 2.3rem);
    font-weight: 800;
}

.hero-content p:not(.hero-lead),
.page-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions,
.cta-actions,
.contact-buttons,
.center-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 42px;
}

.hero-perks span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .84);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(12px);
}

.hero-perks i,
.icon-list i,
.feature-mini-grid i {
    color: var(--gold-light);
}

.hero-video-card {
    position: relative;
    justify-self: end;
    width: min(100%, 314px);
    aspect-ratio: 9 / 16;
    padding: 10px;
    border: 1px solid rgba(223, 195, 134, .34);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .025)),
        rgba(17, 17, 17, .52);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35), 0 0 48px rgba(199, 163, 90, .10);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.hero-video-card::before {
    content: "";
    position: absolute;
    inset: 22px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    pointer-events: none;
}

.hero-video-card::after {
    content: "";
    position: absolute;
    inset: -40% -65%;
    z-index: 3;
    background: linear-gradient(115deg, transparent 42%, rgba(223, 195, 134, .20) 50%, transparent 58%);
    transform: translateX(-28%) rotate(8deg);
    animation: videoSheen 7s ease-in-out infinite;
    pointer-events: none;
}

.hero-video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    background: linear-gradient(145deg, rgba(199, 163, 90, .18), rgba(17, 17, 17, .96));
}

.hero-video-fallback {
    position: absolute;
    inset: 10px;
    z-index: 0;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(199, 163, 90, .16), transparent 42%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 18px),
        rgba(17, 17, 17, .92);
}

@keyframes videoSheen {
    0%, 100% {
        transform: translateX(-35%) rotate(8deg);
        opacity: .18;
    }
    50% {
        transform: translateX(35%) rotate(8deg);
        opacity: .72;
    }
}

.breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.split-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
}

.split-layout.compact {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.1fr);
}

.stacked-media {
    position: relative;
}

.primary-photo,
.stacked-media > img,
.stacked-media > .image-placeholder {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    right: -22px;
    bottom: 32px;
    width: min(230px, 70%);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--radius);
    color: var(--white);
    background: rgba(17, 17, 17, .82);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
    backdrop-filter: blur(12px);
}

.experience-badge strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1;
}

.feature-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.feature-mini-grid span,
.icon-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .7);
}

.advantage-strip {
    color: var(--white);
    background: var(--black);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.advantage-grid > div {
    padding: 28px 24px;
    border-left: 1px solid var(--dark-line);
}

.advantage-grid > div:last-child {
    border-right: 1px solid var(--dark-line);
}

.advantage-grid strong {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.advantage-grid a,
.advantage-grid span {
    color: rgba(255, 255, 255, .86);
    font-weight: 700;
}

.welcome-section,
.rooms-section,
.why-section,
.reservation-section,
.showcase-section,
.mini-gallery {
    position: relative;
    overflow: hidden;
}

.welcome-section > .container,
.rooms-section > .container,
.why-section > .container,
.reservation-section > .container,
.showcase-section > .container,
.mini-gallery > .container {
    position: relative;
    z-index: 1;
}

.split-layout > *,
.room-grid > *,
.breakfast-panel > *,
.showcase-grid > *,
.why-grid > *,
.contact-preview-grid > *,
.contact-grid > *,
.content-grid > *,
.detail-layout > * {
    position: relative;
    z-index: 1;
}

.welcome-section::before,
.rooms-section::before,
.why-section::before,
.reservation-section::before,
.showcase-section::before,
.mini-gallery::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 230px;
    height: 230px;
    border: 1px solid rgba(199, 163, 90, .16);
    border-radius: 8px;
    transform: rotate(20deg);
    animation: sectionFloat 18s ease-in-out infinite;
    pointer-events: none;
}

.welcome-section::before {
    left: -82px;
    top: 92px;
}

.rooms-section::before {
    right: -96px;
    top: 118px;
    animation-delay: -4s;
}

.showcase-section::before {
    left: 7%;
    bottom: 54px;
    width: 150px;
    height: 150px;
    animation-delay: -6s;
}

.why-section::before {
    left: -110px;
    bottom: 80px;
    animation-delay: -8s;
}

.mini-gallery::before {
    right: 8%;
    top: 70px;
    width: 140px;
    height: 140px;
    animation-delay: -10s;
}

.reservation-section::before {
    right: 5%;
    bottom: 44px;
    width: 150px;
    height: 150px;
    animation-delay: -11s;
}

@keyframes sectionFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(20deg);
    }
    50% {
        transform: translate3d(20px, -24px, 0) rotate(28deg);
    }
}

.split-layout::before,
.content-grid::before,
.detail-layout::before,
.contact-preview-grid::before,
.contact-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: clamp(170px, 17vw, 285px);
    height: clamp(170px, 17vw, 285px);
    border: 1px solid rgba(199, 163, 90, .20);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(199, 163, 90, .035), rgba(255, 255, 255, .02));
    transform: rotate(18deg);
    animation: contentDiamond 19s ease-in-out infinite;
    pointer-events: none;
}

.split-layout::after,
.content-grid::after,
.detail-layout::after,
.contact-preview-grid::after,
.contact-grid::after,
.room-grid::before,
.why-grid::before,
.showcase-grid::after,
.breakfast-panel::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: clamp(190px, 24vw, 420px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(199, 163, 90, .34), transparent);
    transform: rotate(-16deg);
    animation: contentLine 16s ease-in-out infinite;
    pointer-events: none;
}

.split-layout::before {
    right: 3%;
    top: -46px;
}

.split-layout::after {
    left: 46%;
    bottom: -24px;
}

.content-grid::before {
    right: 12%;
    top: 38%;
    opacity: .86;
}

.content-grid::after {
    right: -4%;
    top: 26%;
    width: clamp(280px, 35vw, 560px);
    animation-delay: -4s;
}

.detail-layout::before {
    right: 20%;
    bottom: -62px;
    animation-delay: -7s;
}

.detail-layout::after {
    left: 30%;
    top: 10%;
    animation-delay: -3s;
}

.contact-preview-grid::before,
.contact-grid::before {
    left: 48%;
    top: -58px;
    animation-delay: -9s;
}

.contact-preview-grid::after,
.contact-grid::after {
    right: 2%;
    bottom: 18%;
    animation-delay: -12s;
}

.room-grid::before {
    left: 38%;
    top: -34px;
    width: clamp(260px, 32vw, 520px);
    animation-delay: -5s;
}

.why-grid::before {
    right: 12%;
    top: 42%;
    width: clamp(260px, 30vw, 500px);
    animation-delay: -10s;
}

.showcase-grid::after {
    right: 18%;
    top: 22%;
    width: clamp(240px, 28vw, 480px);
    animation-delay: -2s;
}

.breakfast-panel::after {
    left: 34%;
    bottom: 12%;
    background: linear-gradient(90deg, transparent, rgba(223, 195, 134, .42), transparent);
    animation-delay: -6s;
}

@keyframes contentDiamond {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(18deg);
        opacity: .48;
    }
    50% {
        transform: translate3d(-22px, 18px, 0) rotate(27deg);
        opacity: .88;
    }
}

@keyframes contentLine {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-16deg);
        opacity: .42;
    }
    50% {
        transform: translate3d(34px, -18px, 0) rotate(-10deg);
        opacity: .86;
    }
}

.rooms-section {
    background: linear-gradient(180deg, var(--ivory), var(--cream));
}

.room-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.room-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 45px rgba(17, 17, 17, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

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

.room-image,
.gallery-item {
    display: block;
    overflow: hidden;
}

.room-image img,
.room-image .image-placeholder {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform .55s ease;
}

.room-card:hover .room-image img,
.room-card:hover .room-image .image-placeholder,
.gallery-item:hover img,
.gallery-item:hover .image-placeholder {
    transform: scale(1.055);
}

.room-body {
    padding: 26px;
}

.room-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.room-topline h2,
.room-topline h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.room-topline span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--black);
    background: var(--cream);
    font-size: .82rem;
    font-weight: 800;
}

.room-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 22px;
}

.room-tags span {
    padding: 7px 10px;
    border: 1px solid rgba(199, 163, 90, .32);
    border-radius: 999px;
    color: #5c4a24;
    background: rgba(223, 195, 134, .14);
    font-size: .82rem;
    font-weight: 800;
}

.room-icon-tags {
    gap: 10px;
}

.room-tags .room-icon-tag {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
    transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.room-card:hover .room-icon-tag {
    transform: translateY(-2px);
    border-color: rgba(199, 163, 90, .58);
    background: rgba(223, 195, 134, .2);
    color: #3a2b0c;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-weight: 900;
}

.text-link i {
    color: var(--gold);
    transition: transform .25s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.breakfast-section {
    background: var(--black);
}

.breakfast-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    color: var(--white);
}

.breakfast-panel h2,
.breakfast-panel h3 {
    color: var(--white);
}

.breakfast-panel h3 {
    margin-top: 14px;
    color: var(--gold-light);
    font-family: var(--font-ui);
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.breakfast-panel p {
    color: rgba(255, 255, 255, .74);
}

.breakfast-photo img,
.breakfast-photo .image-placeholder {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: var(--radius);
}

.icon-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0;
}

.breakfast-panel .icon-list span {
    border-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .06);
}

.icon-list.inline {
    margin-top: 26px;
}

.showcase-section {
    background: var(--ivory);
}

.showcase-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
    gap: 32px;
    align-items: end;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-strip img,
.gallery-strip .image-placeholder {
    width: 100%;
    height: clamp(320px, 34vw, 540px);
    object-fit: cover;
    border-radius: var(--radius);
}

.gallery-strip > *:nth-child(2) {
    margin-top: 54px;
}

.why-section {
    background: var(--cream);
}

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

.why-card,
.feature-card,
.contact-card,
.quote-panel,
.room-summary,
.form-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 38px rgba(17, 17, 17, .06);
}

.why-card {
    min-height: 220px;
    padding: 28px;
    transition: transform .28s ease, background .28s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    background: var(--white);
}

.why-card i,
.feature-card i,
.contact-card i {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: var(--black);
    background: rgba(199, 163, 90, .22);
}

.why-card h2,
.why-card h3 {
    font-family: var(--font-ui);
    font-size: 1.12rem;
    font-weight: 900;
}

.why-card p {
    color: #5c5750;
}

.mini-gallery-grid,
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    color: inherit;
    background: transparent;
    text-align: left;
}

.gallery-item img,
.gallery-item .image-placeholder {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform .55s ease, filter .3s ease;
}

.gallery-page-grid {
    gap: 22px;
}

.gallery-page-grid .gallery-item {
    overflow: hidden;
}

.gallery-page-grid .gallery-item img,
.gallery-page-grid .gallery-item .image-placeholder,
.masonry-grid.gallery-page-grid .gallery-item:nth-child(3n + 2) img,
.masonry-grid.gallery-page-grid .gallery-item:nth-child(3n + 2) .image-placeholder {
    height: auto;
    aspect-ratio: 4 / 3;
}

.masonry-grid .gallery-item:nth-child(3n + 2) img,
.masonry-grid .gallery-item:nth-child(3n + 2) .image-placeholder {
    height: 380px;
}

.center-actions {
    justify-content: center;
}

.booking-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 8vw, 112px) 0;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(17, 17, 17, .96), rgba(25, 25, 25, .78)),
        radial-gradient(circle at 82% 30%, rgba(199, 163, 90, .24), transparent 30%);
}

.booking-cta h2 {
    color: var(--white);
}

.cta-inner {
    max-width: 820px;
    text-align: center;
}

.cta-inner .eyebrow {
    justify-content: center;
}

.cta-inner .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.cta-inner p {
    color: rgba(255, 255, 255, .78);
}

.cta-inner .cta-actions {
    justify-content: center;
}

.form-shell {
    padding: clamp(22px, 3vw, 34px);
}

.form-heading {
    margin-bottom: 24px;
}

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

.form-wide {
    grid-column: 1 / -1;
}

label span {
    display: block;
    margin-bottom: 7px;
    color: #49443e;
    font-size: .88rem;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, .14);
    border-radius: var(--radius);
    color: var(--black);
    background: var(--white);
}

input,
select {
    min-height: 50px;
    padding: 0 13px;
}

textarea {
    padding: 13px;
    resize: vertical;
}

.booking-form .btn {
    margin-top: 16px;
}

.contact-preview {
    background: var(--ivory);
}

.contact-preview-grid,
.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.map-placeholder {
    position: relative;
    display: block;
    min-height: 560px;
    padding: 10px;
    overflow: hidden;
    border: 1px solid rgba(199, 163, 90, .28);
    border-radius: var(--radius);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(17, 17, 17, .92), rgba(36, 33, 29, .86)),
        repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(199, 163, 90, .12) 18px, rgba(199, 163, 90, .12) 20px);
    box-shadow: var(--shadow);
}

.google-map {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 540px;
    border: 0;
    border-radius: calc(var(--radius) - 8px);
    filter: saturate(.92) contrast(.96);
}

.map-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 26px;
    max-width: 420px;
    padding: 18px 20px;
    border: 1px solid rgba(223, 195, 134, .24);
    border-radius: 14px;
    background: rgba(17, 17, 17, .78);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
    backdrop-filter: blur(14px);
}

.map-caption span {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2.2rem);
    line-height: 1.05;
}

.map-caption small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.5;
}

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

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 190px;
    padding: 24px;
    transition: transform .28s ease, box-shadow .28s ease;
}

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

.contact-card span {
    color: var(--gray);
    font-weight: 800;
}

.contact-card strong {
    margin-top: 7px;
    overflow-wrap: anywhere;
}

.address-panel {
    padding: clamp(28px, 4vw, 48px);
    border-radius: var(--radius);
    background: var(--cream);
}

.content-grid,
.detail-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.rich-content,
.quote-panel,
.room-summary {
    padding: clamp(26px, 4vw, 46px);
}

.rich-content {
    background: var(--white);
    border-radius: var(--radius);
}

.quote-panel {
    position: sticky;
    top: 104px;
    color: var(--white);
    background: var(--black);
}

.quote-panel strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1.15;
}

.quote-panel p {
    color: rgba(255, 255, 255, .75);
}

.room-slider {
    user-select: none;
}

.slider-main {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--black);
}

.slide {
    display: none;
}

.slide.active {
    display: block;
    animation: slideIn .42s ease both;
}

@keyframes slideIn {
    from {
        opacity: .5;
        transform: translateX(34px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide img,
.slide .image-placeholder {
    width: 100%;
    height: clamp(420px, 62vw, 720px);
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(17, 17, 17, .58);
    transform: translateY(-50%);
    transition: background .25s ease, transform .25s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(199, 163, 90, .84);
    transform: translateY(-50%) scale(1.06);
}

.slider-arrow.prev {
    left: 18px;
}

.slider-arrow.next {
    right: 18px;
}

.slider-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.slider-thumbs button {
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius);
    background: transparent;
    opacity: .66;
    transition: opacity .25s ease, border-color .25s ease;
}

.slider-thumbs button.active,
.slider-thumbs button:hover {
    border-color: var(--gold);
    opacity: 1;
}

.slider-thumbs img,
.slider-thumbs .image-placeholder {
    width: 100%;
    height: 112px;
    object-fit: cover;
    border-radius: 0;
}

.room-summary h2 {
    font-family: var(--font-ui);
    font-size: 1.2rem;
}

.room-summary dl {
    margin: 20px 0 0;
}

.room-summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.room-summary dt {
    color: var(--gray);
    font-weight: 800;
}

.room-summary dd {
    margin: 0;
    font-weight: 900;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 96px;
    padding: 18px;
    font-weight: 900;
}

.feature-card i {
    flex: 0 0 auto;
    margin: 0;
}

.image-placeholder {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(199, 163, 90, .22);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .82);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, .92), rgba(36, 33, 29, .88)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, .04) 0, rgba(255, 255, 255, .04) 1px, transparent 1px, transparent 14px);
}

.image-placeholder span {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.15;
}

.image-placeholder small {
    display: block;
    max-width: 100%;
    margin-top: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: .78rem;
    overflow-wrap: anywhere;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(0, 0, 0, .88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-inner {
    position: relative;
    width: min(1100px, 100%);
}

.lightbox img,
.lightbox .image-placeholder {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    color: var(--black);
    background: var(--gold-light);
}

.site-footer {
    padding-top: 70px;
    color: rgba(255, 255, 255, .8);
    background: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .82fr 1fr .92fr;
    gap: 34px;
    padding-bottom: 54px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 2rem;
}

.site-footer h2 {
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 1rem;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid var(--dark-line);
    color: rgba(255, 255, 255, .62);
    font-size: .9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    background: #25d366;
    box-shadow: 0 18px 45px rgba(37, 211, 102, .36);
    transition: transform .25s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.04);
}

.floating-whatsapp i {
    font-size: 1.75rem;
}

.mobile-cta {
    display: none;
}

.not-found {
    display: grid;
    align-items: center;
    min-height: 86vh;
    padding-top: 96px;
    text-align: center;
    background: var(--cream);
}

.not-found .container {
    max-width: 760px;
}

.not-found .cta-actions {
    justify-content: center;
}

.maintenance-body {
    min-height: 100vh;
    color: var(--white);
    background:
        linear-gradient(120deg, rgba(0, 0, 0, .92), rgba(17, 17, 17, .84)),
        radial-gradient(circle at 78% 24%, rgba(199, 163, 90, .18), transparent 34%),
        var(--black);
}

.maintenance-page {
    display: grid;
    align-items: center;
    min-height: 100vh;
    padding: clamp(32px, 6vw, 76px);
    overflow: hidden;
}

.maintenance-shell {
    position: relative;
    width: min(820px, 100%);
    margin-inline: auto;
    padding: clamp(32px, 6vw, 70px);
    border: 1px solid rgba(223, 195, 134, .22);
    border-radius: var(--radius);
    background: rgba(17, 17, 17, .66);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .36);
    text-align: center;
    backdrop-filter: blur(18px);
}

.maintenance-shell::before,
.maintenance-shell::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.maintenance-shell::before {
    inset: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
}

.maintenance-shell::after {
    top: 16%;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(199, 163, 90, .18);
    border-radius: var(--radius);
    transform: rotate(24deg);
    animation: heroFrame 18s ease-in-out infinite;
}

.maintenance-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
}

.maintenance-logo {
    max-width: 260px;
    max-height: 92px;
}

.maintenance-shell .eyebrow,
.maintenance-shell h1,
.maintenance-shell p,
.maintenance-actions,
.maintenance-contact {
    position: relative;
    z-index: 1;
}

.maintenance-shell .eyebrow {
    justify-content: center;
}

.maintenance-shell .eyebrow::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.maintenance-shell h1 {
    color: var(--white);
    font-size: clamp(3rem, 8vw, 6.4rem);
}

.maintenance-shell p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.maintenance-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .66);
    font-size: .94rem;
}

.maintenance-contact a:hover {
    color: var(--gold-light);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .72s ease, transform .72s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
