:root {
    --ink: #15201c;
    --muted: #69736f;
    --line: #dfe6e1;
    --paper: #fbfcf8;
    --soft: #eef4ee;
    --forest: #173f35;
    --gold: #c9974c;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(21, 32, 28, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(20px, 5vw, 72px);
    background: rgba(251, 252, 248, .9);
    border-bottom: 1px solid rgba(223, 230, 225, .78);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    background: rgba(251, 252, 248, .96);
    box-shadow: 0 12px 38px rgba(21, 32, 28, .08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: var(--forest);
    border-radius: 50%;
    font-size: 13px;
    box-shadow: 0 0 0 0 rgba(201, 151, 76, .44);
    animation: mark-pulse 3.8s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-weight: 600;
    font-size: 14px;
}

.nav-links a,
.site-footer a,
.room-body a {
    position: relative;
}

.nav-links a::after,
.site-footer a::after,
.room-body a::after {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease;
}

.nav-links a:hover::after,
.site-footer a:hover::after,
.room-body a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-action,
.btn,
.booking-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.header-action,
.btn-primary,
.booking-form button {
    color: var(--white);
    background: var(--forest);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 36px;
    padding: clamp(60px, 10vw, 130px) clamp(20px, 5vw, 72px) 54px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(10, 20, 16, .76), rgba(10, 20, 16, .18)),
        url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=85") center/cover;
    background-position: center var(--parallax-y, 0px);
    position: relative;
    isolation: isolate;
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: radial-gradient(circle at 72% 22%, rgba(201, 151, 76, .22), transparent 34%);
    pointer-events: none;
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(64px, 10vw, 132px);
    line-height: .88;
    letter-spacing: 0;
    text-shadow: 0 18px 52px rgba(0, 0, 0, .25);
}

.hero-lead {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .12);
}

.btn:hover,
.header-action:hover,
.booking-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15, 36, 31, .2);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .2);
}

.glow-button {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(201, 151, 76, .45), 0 16px 34px rgba(15, 36, 31, .24);
    animation: button-glow 2.8s ease-in-out infinite;
}

.glow-button::before {
    position: absolute;
    inset: -40% auto -40% -55%;
    width: 44%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: rotate(18deg);
    animation: button-shine 3.6s ease-in-out infinite;
}

.hero-panel {
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 8px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 52px rgba(0, 0, 0, .22);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.hero-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .18);
}

.hero-panel div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.hero-panel div:last-child {
    border-bottom: 0;
}

.hero-panel span {
    color: rgba(255, 255, 255, .78);
}

.hero-panel strong {
    text-align: right;
    font-size: 20px;
}

.lottie-row {
    align-items: center;
}

.lottie-badge {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
}

.lottie-badge:empty::before {
    width: 34px;
    height: 34px;
    content: "";
    border: 3px solid rgba(255, 255, 255, .28);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.quick-stats div {
    padding: 28px clamp(20px, 5vw, 72px);
    border-right: 1px solid var(--line);
    transition: transform .24s ease, background .24s ease;
}

.quick-stats div:hover {
    background: #f8fbf5;
    transform: translateY(-4px);
}

.quick-stats strong,
.quick-stats span {
    display: block;
}

.quick-stats strong {
    font-size: 30px;
}

.quick-stats span {
    margin-top: 6px;
    color: var(--muted);
}

.section {
    padding: 86px clamp(20px, 5vw, 72px);
}

.split {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 54px;
    align-items: start;
}

.section h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1;
    letter-spacing: 0;
}

.section-copy p:last-child,
.booking-copy p {
    color: var(--muted);
    line-height: 1.7;
}

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

.type-card,
.facility-grid div,
.contact-grid div,
.compact-room,
.cost-card,
.rules-panel,
.testimonial-card,
.nearby-list div,
.detail-trust-strip div {
    min-height: 150px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.type-card:hover,
.facility-grid div:hover,
.contact-grid div:hover,
.compact-room:hover,
.cost-card:hover,
.testimonial-card:hover,
.nearby-list div:hover,
.detail-trust-strip div:hover {
    transform: translateY(-7px);
    border-color: rgba(201, 151, 76, .56);
    box-shadow: var(--shadow);
}

.type-card span,
.room-body span,
.facility-grid span,
.contact-grid span {
    display: block;
    color: var(--muted);
}

.type-card strong {
    display: block;
    margin: 18px 0 8px;
    font-size: 28px;
}

.type-card p {
    margin: 0;
    color: var(--muted);
}

.room-carousel-section {
    padding: 0 clamp(20px, 5vw, 72px) 86px;
}

.room-browser {
    padding-top: 0;
}

.browser-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.browser-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
}

.room-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.room-filter button {
    min-height: 38px;
    padding: 0 14px;
    color: var(--forest);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.room-filter button:hover,
.room-filter button.is-active {
    color: var(--white);
    background: var(--forest);
    border-color: var(--forest);
    transform: translateY(-2px);
}

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

.compact-room {
    min-height: 124px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.compact-room.is-hidden {
    display: none;
}

.compact-photo {
    width: 112px;
    height: 84px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}

.compact-room h3 {
    margin: 5px 0;
    font-size: 20px;
}

.compact-room p {
    margin: 0;
    color: var(--muted);
}

.compact-room span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.compact-actions {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.compact-actions a {
    color: var(--forest);
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.status-available {
    color: #155333;
    background: #dff4e7;
}

.status-occupied {
    color: #723017;
    background: #ffe1d5;
}

.status-maintenance,
.status-reserved {
    color: #5c430f;
    background: #fcecc6;
}

.carousel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.carousel-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    color: var(--forest);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.carousel-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 151, 76, .64);
    box-shadow: 0 12px 28px rgba(21, 32, 28, .14);
}

.room-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 36px) / 3);
    gap: 18px;
    overflow-x: auto;
    padding: 6px 0 26px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.room-carousel::-webkit-scrollbar {
    display: none;
}

.room-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.room-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(201, 151, 76, .58);
    box-shadow: 0 24px 64px rgba(21, 32, 28, .2);
}

.room-photo {
    min-height: 250px;
    background-size: cover;
    background-position: center var(--card-parallax-y, 0px);
    transform: scale(1.02);
    transition: transform .5s ease, filter .5s ease;
}

.room-card:hover .room-photo {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.photo-1 {
    background-image: url("https://images.unsplash.com/photo-1616594039964-ae9021a400a0?auto=format&fit=crop&w=900&q=82");
}

.photo-2 {
    background-image: url("https://images.unsplash.com/photo-1616046229478-9901c5536a45?auto=format&fit=crop&w=900&q=82");
}

.photo-3 {
    background-image: url("https://images.unsplash.com/photo-1598928506311-c55ded91a20c?auto=format&fit=crop&w=900&q=82");
}

.room-body {
    padding: 22px;
}

.room-body h3 {
    margin: 8px 0;
    font-size: 24px;
}

.room-body p {
    color: var(--muted);
    line-height: 1.6;
}

.room-body a {
    color: var(--forest);
    font-weight: 800;
}

.room-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    background: #cfd9d1;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width .22s ease, background .22s ease;
}

.carousel-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    background: var(--forest);
}

.facilities {
    background: var(--soft);
}

.visual-band {
    min-height: 540px;
    display: grid;
    align-items: end;
    padding: 72px clamp(20px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(15, 36, 31, .08), rgba(15, 36, 31, .8)),
        url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=86") center/cover;
    background-position: center var(--parallax-y, 0px);
}

.visual-copy {
    max-width: 780px;
}

.visual-copy h2 {
    margin: 0;
    font-size: clamp(40px, 7vw, 88px);
    line-height: .98;
}

.facility-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.facility-grid strong,
.contact-grid strong {
    display: block;
    margin-bottom: 12px;
    font-size: 18px;
}

.facility-grid span,
.contact-grid span {
    line-height: 1.65;
}

.booking-section {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 54px;
    background: var(--forest);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.costs-section {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 54px;
    align-items: start;
}

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

.cost-card {
    min-height: 132px;
}

.cost-card span {
    display: block;
    color: var(--muted);
}

.cost-card strong {
    display: block;
    margin-top: 16px;
    font-size: 26px;
}

.rules-panel {
    grid-column: 2;
    margin-top: 18px;
}

.rules-panel h3 {
    margin: 0 0 16px;
}

.rules-panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.65;
}

.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.testimonial-card {
    margin: 0;
    min-height: 240px;
}

.testimonial-card blockquote {
    margin: 0;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.65;
}

.testimonial-card figcaption {
    margin-top: 22px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 4px;
    color: var(--muted);
}

.location-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: stretch;
}

.location-map {
    min-height: 460px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(23, 63, 53, .08) 1px, transparent 1px),
        linear-gradient(rgba(23, 63, 53, .08) 1px, transparent 1px),
        radial-gradient(circle at 52% 46%, rgba(201, 151, 76, .5), transparent 8%),
        #e9f0ea;
    background-size: 42px 42px, 42px 42px, auto, auto;
}

.location-map::before,
.location-map::after {
    position: absolute;
    content: "";
    background: rgba(23, 63, 53, .18);
    border-radius: 999px;
    transform: rotate(-18deg);
}

.location-map::before {
    width: 130%;
    height: 34px;
    left: -15%;
    top: 42%;
}

.location-map::after {
    width: 34px;
    height: 130%;
    left: 54%;
    top: -15%;
}

.map-pin {
    position: absolute;
    left: 52%;
    top: 45%;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    color: var(--white);
    background: var(--forest);
    border: 4px solid var(--gold);
    border-radius: 50% 50% 50% 0;
    font-weight: 900;
    transform: translate(-50%, -50%) rotate(-45deg);
    box-shadow: 0 18px 36px rgba(23, 63, 53, .24);
    animation: map-pin 2.4s ease-in-out infinite;
}

.map-pin::before {
    content: "GH";
    transform: rotate(45deg);
}

.nearby-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.nearby-list strong,
.nearby-list span {
    display: block;
}

.nearby-list span {
    margin-top: 8px;
    color: var(--muted);
}

.booking-section::before {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid rgba(201, 151, 76, .38);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(201, 151, 76, .08);
    animation: slow-float 8s ease-in-out infinite;
}

.booking-copy p {
    color: rgba(255, 255, 255, .78);
}

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

.booking-form label {
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    font: inherit;
    outline: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 151, 76, .2);
}

.booking-form button {
    grid-column: 1 / -1;
    background: var(--gold);
    color: var(--ink);
    border: 0;
    cursor: pointer;
}

.alert {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.alert.success {
    color: #123426;
    background: #dff4e7;
}

.alert.warning {
    color: #4c2d0f;
    background: #ffe4ba;
}

.contact {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 54px;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 54px;
}

.accordion {
    display: grid;
    gap: 12px;
}

.accordion-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color .22s ease, box-shadow .22s ease;
}

.accordion-item.is-open {
    border-color: rgba(201, 151, 76, .6);
    box-shadow: var(--shadow);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 18px;
    padding: 22px;
    color: var(--ink);
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: left;
}

.accordion-trigger span {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.accordion-trigger span::before,
.accordion-trigger span::after {
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
    content: "";
    background: var(--forest);
    transition: transform .2s ease;
}

.accordion-trigger span::after {
    transform: rotate(90deg);
}

.accordion-item.is-open .accordion-trigger span::after {
    transform: rotate(0);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .34s ease;
}

.accordion-panel p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.7;
}

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

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

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 28px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: #0f241f;
}

.detail-page {
    background: #f7faf6;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: end;
    padding: 72px clamp(20px, 5vw, 72px) 34px;
    background:
        radial-gradient(circle at 82% 18%, rgba(201, 151, 76, .2), transparent 28%),
        linear-gradient(135deg, #f9fbf6, #edf4ed);
}

.back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--muted);
    font-weight: 800;
}

.detail-title h1 {
    margin: 0;
    font-size: clamp(48px, 8vw, 96px);
    line-height: .92;
    letter-spacing: 0;
}

.detail-title p:last-child {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.detail-booking-card {
    padding: 24px;
    color: var(--white);
    background: var(--forest);
    border: 1px solid rgba(201, 151, 76, .28);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.detail-booking-card span,
.detail-booking-card p {
    display: block;
    color: rgba(255, 255, 255, .72);
}

.detail-booking-card strong {
    display: block;
    margin: 12px 0 8px;
    font-size: 34px;
}

.detail-booking-card .btn {
    width: 100%;
    margin-top: 16px;
    background: var(--gold);
    color: var(--ink);
}

.detail-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 12px;
    padding: 0 clamp(20px, 5vw, 72px) 72px;
}

.gallery-main,
.gallery-side button {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #dbe5dd;
    cursor: pointer;
}

.gallery-main {
    min-height: 520px;
}

.gallery-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-main img,
.gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease, filter .45s ease;
}

.gallery-main:hover img,
.gallery-side button:hover img {
    transform: scale(1.05);
    filter: saturate(1.08) contrast(1.04);
}

.gallery-main span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 12px 16px;
    color: var(--white);
    background: rgba(15, 36, 31, .78);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 54px;
}

.detail-copy h2 {
    max-width: 760px;
}

.detail-copy > p:last-of-type {
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.detail-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.detail-points div,
.facility-list {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(21, 32, 28, .06);
}

.detail-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 0 clamp(20px, 5vw, 72px) 72px;
}

.detail-trust-strip strong,
.detail-trust-strip span {
    display: block;
}

.detail-trust-strip span {
    margin-top: 8px;
    color: var(--muted);
}

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

.detail-points strong,
.detail-points span {
    display: block;
}

.detail-points span {
    margin-top: 8px;
    color: var(--muted);
}

.facility-list h3 {
    margin: 0 0 18px;
    font-size: 22px;
}

.facility-list ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.facility-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}

.facility-list li::before {
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 12px;
    content: "";
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(201, 151, 76, .16);
}

.photo-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    color: var(--white);
}

.photo-modal.is-open {
    display: block;
}

.photo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 24, 22, .9);
    backdrop-filter: blur(10px);
}

.photo-modal-shell {
    position: relative;
    z-index: 1;
    width: min(1020px, calc(100vw - 40px));
    max-height: calc(100vh - 28px);
    margin: 14px auto;
    display: grid;
    grid-template-rows: auto minmax(260px, 1fr) auto auto;
    gap: 14px;
}

.photo-modal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2px;
}

.photo-modal-top strong {
    padding-bottom: 12px;
    border-bottom: 2px solid var(--white);
}

.photo-modal-top button {
    width: 42px;
    height: 42px;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
}

.photo-stage {
    position: relative;
    display: grid;
    align-items: center;
}

.photo-stage figure {
    margin: 0 auto;
    width: min(720px, 72vw);
}

.photo-stage img {
    width: 100%;
    max-height: 54vh;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    box-shadow: 0 24px 68px rgba(0, 0, 0, .34);
}

.photo-stage figcaption {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 12px;
    font-weight: 800;
}

.photo-nav {
    position: absolute;
    top: 45%;
    width: 46px;
    height: 46px;
    color: var(--white);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    cursor: pointer;
    font-size: 32px;
}

.photo-nav.prev {
    left: 0;
}

.photo-nav.next {
    right: 0;
}

.photo-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.photo-tabs button {
    flex: 0 0 auto;
    padding: 10px 16px;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

.photo-tabs button.is-active {
    color: var(--ink);
    background: var(--gold);
}

.photo-thumbs {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    overflow-y: auto;
    max-height: 190px;
    padding: 4px 0 10px;
}

.photo-thumbs button {
    min-height: 74px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    opacity: .72;
}

.photo-thumbs button.is-active {
    border-color: var(--gold);
    opacity: 1;
}

.photo-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sticky-cta {
    position: fixed;
    left: 50%;
    bottom: 18px;
    z-index: 30;
    display: none;
    width: min(420px, calc(100vw - 28px));
    padding: 8px;
    background: rgba(251, 252, 248, .92);
    border: 1px solid rgba(223, 230, 225, .9);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(21, 32, 28, .2);
    backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.sticky-cta a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: var(--forest);
    border-radius: 999px;
    font-weight: 900;
}

.sticky-cta a:last-child {
    color: var(--white);
    background: var(--forest);
}

@keyframes button-glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 151, 76, .38), 0 16px 34px rgba(15, 36, 31, .24);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(201, 151, 76, 0), 0 18px 42px rgba(201, 151, 76, .28);
    }
}

@keyframes button-shine {
    0%,
    52% {
        left: -55%;
    }

    78%,
    100% {
        left: 120%;
    }
}

@keyframes mark-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 151, 76, .44);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(201, 151, 76, 0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slow-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-24px, 18px, 0);
    }
}

@keyframes map-pin {
    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-45deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-45deg) translateY(-10px);
    }
}

@media (max-width: 980px) {
    .hero,
    .detail-hero,
    .detail-gallery,
    .detail-content,
    .split,
    .booking-section,
    .contact,
    .faq-section,
    .costs-section,
    .location-section {
        grid-template-columns: 1fr;
    }

    .room-carousel {
        grid-auto-columns: calc((100% - 18px) / 2);
    }

    .detail-points {
        grid-template-columns: 1fr;
    }

    .photo-thumbs {
        grid-template-columns: repeat(5, 1fr);
    }

    .room-list,
    .testimonial-grid,
    .detail-trust-strip,
    .detail-cost-grid {
        grid-template-columns: 1fr;
    }

    .rules-panel {
        grid-column: auto;
    }

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

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

@media (max-width: 680px) {
    .site-header {
        position: static;
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .header-action {
        width: 100%;
    }

    .hero {
        min-height: 760px;
        align-items: end;
    }

    .quick-stats,
    .type-grid,
    .room-carousel,
    .room-list,
    .cost-grid,
    .facility-grid,
    .gallery-side,
    .contact-grid,
    .nearby-list,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .browser-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .room-filter {
        justify-content: flex-start;
    }

    .compact-room {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .compact-photo {
        width: 92px;
        height: 78px;
    }

    .compact-actions {
        grid-column: 1 / -1;
        grid-template-columns: auto auto;
        justify-content: space-between;
        justify-items: start;
    }

    .room-carousel {
        grid-auto-columns: 86%;
    }

    .carousel-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-main {
        min-height: 360px;
    }

    .photo-stage figure {
        width: 100%;
    }

    .photo-nav {
        top: auto;
        bottom: 48px;
    }

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

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .sticky-cta {
        display: flex;
    }

    .site-footer {
        padding-bottom: 92px;
    }
}

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

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