:root {
    --bg: #f4efe4;
    --surface: rgba(255, 251, 244, 0.78);
    --surface-strong: #fffbf4;
    --text: #1c2517;
    --muted: #566450;
    --accent: #bb5a2b;
    --accent-dark: #6d2f1f;
    --accent-soft: #f3c892;
    --line: rgba(28, 37, 23, 0.12);
    --shadow: 0 24px 60px rgba(51, 34, 12, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(244, 183, 120, 0.32), transparent 32%),
        linear-gradient(180deg, #f8f5ee 0%, #efe3cf 100%);
    scroll-behavior: smooth;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.narrow {
    width: min(780px, calc(100% - 32px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(248, 243, 233, 0.74);
    border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
}

.nav {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav a {
    color: var(--muted);
    font-weight: 700;
}

.nav a.is-active,
.nav a:hover {
    color: var(--accent-dark);
}

.audio-toggle {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 251, 244, 0.88);
    color: var(--accent-dark);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.audio-toggle:hover {
    background: rgba(243, 200, 146, 0.42);
    border-color: rgba(109, 47, 31, 0.24);
}

.audio-toggle[aria-pressed='true'] {
    background: var(--accent);
    border-color: var(--accent);
    color: #fffaf4;
}

.hero,
.page-section {
    padding: 80px 0;
}

.hero-home {
    position: relative;
    min-height: calc(100vh - 88px);
    padding: 0;
    display: grid;
    align-items: end;
    overflow: clip;
    background: #131910;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.1s ease, transform 6s ease;
}

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

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(9, 14, 10, 0.18) 0%, rgba(9, 14, 10, 0.58) 66%, rgba(9, 14, 10, 0.82) 100%),
        linear-gradient(90deg, rgba(9, 14, 10, 0.68) 0%, rgba(9, 14, 10, 0.18) 54%, rgba(9, 14, 10, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: end;
    padding: 130px 0 64px;
}

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

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead {
    color: #fff8ed;
}

.hero-copy .lead {
    color: rgba(255, 248, 237, 0.84);
}

.hero-panel {
    justify-self: end;
    max-width: 360px;
}

.hero-grid,
.feature-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 80px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2 {
    font-family: 'Prata', serif;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    margin-bottom: 18px;
}

.lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--muted);
}

.card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 800;
}

.button-primary {
    background: var(--accent);
    color: #fffaf4;
}

.button-secondary {
    background: transparent;
    border: 1px solid var(--line);
}

.text-link {
    color: var(--accent-dark);
    font-weight: 800;
}

.check-list {
    display: grid;
    gap: 14px;
    padding-left: 20px;
    margin: 0 0 20px;
    line-height: 1.7;
}

.section {
    padding: 88px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

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

.service-card {
    min-height: 260px;
}

.service-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(187, 90, 43, 0.12);
    color: var(--accent-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.location-card {
    margin-top: 28px;
    display: grid;
    gap: 8px;
}

.location-label {
    font-weight: 800;
    color: var(--accent-dark);
    margin-top: 10px;
}

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

.gallery-card {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    min-height: 220px;
    box-shadow: var(--shadow);
}

.gallery-card--large {
    grid-column: span 2;
    min-height: 360px;
}

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

.reserve-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 241, 219, 0.86), rgba(255, 251, 244, 0.92)),
        var(--surface-strong);
}

.reserve-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-gate {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
}

.language-gate.is-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.language-gate__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 8, 0.6);
    backdrop-filter: blur(10px);
}

.language-gate__dialog {
    position: relative;
    z-index: 1;
    width: min(520px, calc(100% - 32px));
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(248, 237, 219, 0.94));
}

.language-gate__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 28px 0 18px;
}

.gate-enter {
    border: 0;
    background: transparent;
    color: var(--accent-dark);
    font-weight: 800;
    cursor: pointer;
}

.contact-card p,
.site-footer p {
    margin: 0;
}

.contact-card {
    display: grid;
    gap: 14px;
    margin-top: 32px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(255, 249, 240, 0.7);
}

@media (max-width: 900px) {
    .hero-grid,
    .feature-grid,
    .service-grid,
    .about-grid,
    .hero-content,
    .reserve-banner {
        grid-template-columns: 1fr;
    }

    .hero-home {
        min-height: 90vh;
    }

    .hero-panel {
        justify-self: stretch;
        max-width: none;
    }

    .reserve-actions {
        justify-content: flex-start;
    }

    .gallery-card--large {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .header-inner,
    .footer-inner,
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .audio-toggle {
        width: 100%;
        justify-content: center;
    }

    .hero,
    .page-section {
        padding: 56px 0;
    }

    .hero-content {
        padding: 120px 0 42px;
    }

    .service-grid,
    .gallery-stack {
        grid-template-columns: 1fr;
    }

    .gallery-card--large {
        grid-column: auto;
    }
}

.listing-section {
    padding-top: 72px;
}

.listing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
}

.listing-main {
    min-width: 0;
}

.listing-gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    height: 460px;
}

.listing-gallery__primary {
    height: 460px;
    border-radius: 24px;
    overflow: hidden;
}

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

.listing-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 224px 224px;
    gap: 12px;
    height: 460px;
}

.listing-gallery__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.listing-header {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.listing-meta {
    color: var(--muted);
    font-weight: 600;
    line-height: 1.7;
}

.listing-block {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}

.listing-block h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
}

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

.space-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.space-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.space-card__body {
    padding: 18px;
}

.space-card__body h4 {
    margin: 0 0 10px;
}

.space-points {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--muted);
    line-height: 1.6;
}


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

.amenity-item {
    padding: 16px 18px;
    background: rgba(255, 251, 244, 0.92);
    border: 1px solid var(--line);
    border-radius: 18px;
    font-weight: 600;
}

.listing-list {
    display: grid;
    gap: 12px;
    padding-left: 20px;
    line-height: 1.8;
}

.listing-note {
    margin-top: 18px;
    color: var(--muted);
}

.listing-side {
    position: sticky;
    top: 110px;
}

.booking-card {
    background: #fffaf4;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.booking-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
}

.booking-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 980px) {
    .listing-layout {
        grid-template-columns: 1fr;
    }

    .listing-side {
        position: static;
    }

    .listing-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .listing-gallery__primary {
        height: 320px;
    }

    .listing-gallery__grid {
        grid-template-rows: 220px 220px;
        height: auto;
    }
}

@media (max-width: 700px) {
    .space-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .listing-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .listing-gallery__primary {
        height: 260px;
    }

    .listing-gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        height: auto;
    }

    .listing-gallery__grid img {
        height: 160px;
    }
}


.video-teaser {
    margin-top: 28px;
    background:
        linear-gradient(135deg, rgba(255, 244, 224, 0.95), rgba(255, 251, 244, 0.92));
}

.video-teaser__content h3 {
    margin-bottom: 10px;
}

.video-teaser__content p {
    color: var(--muted);
    line-height: 1.7;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.is-open {
    display: flex;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 8, 0.72);
    backdrop-filter: blur(8px);
}

.video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    background: #0f1410;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.video-modal__player {
    width: 100%;
    display: block;
    max-height: 80vh;
    background: #000;
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-size: 1.5rem;
    cursor: pointer;
}

