/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --color-gold: #D98B10;
    --color-gold-dark: #B96A0A;
    --color-sand: #F4E7D7;
    --color-sand-dark: #E8D4BC;
    --color-charcoal: #1A1A1A;
    --color-off-white: #FAF8F4;
    --color-palm: #2E4A3A;
    --color-text: #2A2A2A;
    --color-text-soft: #5C5C5C;
    --color-brand: var(--color-gold);
    --shadow-soft: 0 4px 24px rgba(26, 26, 26, 0.08);
    --shadow-gold: 0 8px 28px rgba(217, 139, 16, 0.25);
    --chrome-bg: rgba(250, 248, 244, 0.96);
    --chrome-blur: blur(12px);
    --section-pad-y: 5rem;
    --section-pad-y-tight: 3rem;
}

html {
    overflow-x: clip;
}

body {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-off-white);
    overflow-x: clip;
    max-width: 100%;
    padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 10000;
    padding: 0.7rem 1.1rem;
    background: var(--color-charcoal);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transform: translateY(-160%);
    transition: transform 0.15s ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

#main-content:focus {
    outline: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#main-content {
    overflow-x: clip;
    max-width: 100%;
}

/* Typography */
h1, h2, h3 {
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
}

h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-gold);
}

h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    color: var(--color-text-soft);
    margin-bottom: 1rem;
}

.section-heading {
    text-align: center;
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: var(--color-gold);
    color: #fff;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(217, 139, 16, 0.32);
}

.btn-secondary {
    background: var(--color-sand);
    color: var(--color-charcoal);
    border: 1px solid rgba(217, 139, 16, 0.15);
}

.btn-secondary:hover {
    background: var(--color-sand-dark);
    color: var(--color-charcoal);
    transform: translateY(-1px);
}

.btn-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 4.5rem;
    height: 2rem;
    padding: 0 0.55rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-text-soft);
    border: 1px solid rgba(26, 26, 26, 0.1);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(26, 26, 26, 0.04);
}

.btn-lang::before {
    content: "";
    width: 1.1rem;
    height: 0.78rem;
    flex-shrink: 0;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.btn-lang--en::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Cpath fill='%23012169' d='M0 0h60v30H0z'/%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0 0l60 30M60 0L0 30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E");
}

.btn-lang--pt::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 42'%3E%3Crect width='60' height='42' fill='%23009B3A'/%3E%3Cpath fill='%23FFDF00' d='M30 5L54 21L30 37L6 21Z'/%3E%3Ccircle cx='30' cy='21' r='9' fill='%23002776'/%3E%3C/svg%3E");
}

.btn-lang:hover {
    border-color: rgba(217, 139, 16, 0.45);
    color: var(--color-charcoal);
    background: #fff;
    transform: none;
}

.btn-lang.is-active {
    border-color: rgba(217, 139, 16, 0.55);
    color: var(--color-charcoal);
    background: #fff;
    box-shadow: 0 0 0 2px rgba(217, 139, 16, 0.18);
}

.btn-white {
    background: #fff;
    color: var(--color-charcoal);
    box-shadow: var(--shadow-soft);
}

.btn-white:hover {
    background: var(--color-off-white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-dark);
    border: 1px solid rgba(217, 139, 16, 0.45);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(217, 139, 16, 0.06);
    color: var(--color-gold-dark);
    border-color: var(--color-gold);
    transform: translateY(-1px);
}

/* Header */
:root {
    --header-height: 76px;
}

@media (min-width: 769px) {
    :root {
        --header-height: 80px;
    }
}

.header {
    background: var(--chrome-bg);
    backdrop-filter: var(--chrome-blur);
    -webkit-backdrop-filter: var(--chrome-blur);
    box-shadow: 0 1px 0 rgba(217, 139, 16, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    min-height: var(--header-height);
    padding: 0;
    gap: 1.5rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    height: 100%;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 1rem;
}

.brand-mark__img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
}

.header .logo {
    display: flex;
    align-items: stretch;
    height: 100%;
    flex-shrink: 0;
}

.header .brand-mark__img--horizontal {
    height: 100%;
    max-height: var(--header-height);
    width: auto;
    max-width: min(360px, 48vw);
}

.brand-mark--footer {
    margin: 0;
    display: inline-flex;
    justify-content: center;
    flex-shrink: 0;
}

.brand-mark--footer .brand-mark__img--square {
    max-height: 88px;
    max-width: 88px;
}

.footer-brand__inner {
    display: flex;
    align-items: center;
    gap: 1.15rem;
}

.footer-brand__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    min-width: 0;
}

.logo-img {
    display: block;
    width: auto;
    height: auto;
}

.logo-img--horizontal {
    display: none;
}

.logo-img--mark {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.25vw, 1.5rem);
    flex-shrink: 1;
    min-width: 0;
}

.nav-menu a:not(.btn) {
    text-decoration: none;
    color: var(--color-text-soft);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a:not(.btn):hover {
    color: var(--color-gold);
}

.nav-menu .nav-cta {
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: none;
    padding: 9px 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-lang {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

@media (min-width: 769px) and (max-width: 1180px) {
    .nav {
        gap: 1rem;
    }

    .brand-mark {
        margin-right: 0.5rem;
    }

    .header .brand-mark__img--horizontal {
        max-width: min(260px, 34vw);
    }

    .nav-menu {
        gap: 0.75rem;
    }

    .nav-menu a:not(.btn) {
        font-size: 0.74rem;
        letter-spacing: 0.06em;
    }

    .nav-menu .nav-cta {
        font-size: 0.76rem;
        padding: 8px 14px;
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-charcoal);
    font-size: 1.35rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    margin: 0;
    border: none;
    padding: 0;
    background: rgba(26, 26, 26, 0.45);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

body.nav-open .nav-backdrop {
    display: block;
}

body.nav-open {
    overflow: hidden;
}

@media (min-width: 769px) {
    .hero {
        padding-top: var(--header-height);
    }
}

/* Hero Section */
.hero {
    padding-top: var(--header-height);
    background: var(--color-charcoal);
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: min(78vh, 850px);
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.35) 0%,
        rgba(26, 26, 26, 0.2) 40%,
        rgba(26, 26, 26, 0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 20px 4rem;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-content h1,
.hero-content p {
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw + 0.5rem, 4.25rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.08;
    margin-bottom: 1rem;
    max-width: 14ch;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 2rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    pointer-events: auto;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 72px;
    border: none;
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-text);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: #fff;
    color: var(--color-gold);
    outline: none;
}

.hero-arrow--prev {
    left: 0;
    border-radius: 0 10px 10px 0;
}

.hero-arrow--next {
    right: 0;
    border-radius: 10px 0 0 10px;
}

.hero-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    max-width: calc(100% - 2rem);
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
    background: rgba(255, 255, 255, 0.5);
    outline: none;
}

.hero-dot.is-active {
    background: #fff;
    transform: scale(1.1);
}

/* About / Pousada Section */
.about-pousada {
    padding: 5.5rem 0 0;
    background: var(--color-off-white);
    overflow-x: clip;
}

.about-pousada h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw + 0.75rem, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--color-brand);
    text-align: center;
    margin-bottom: 1.35rem;
}

.about-pousada .section-description {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.75rem;
    font-family: var(--font-sans);
    font-size: clamp(0.9375rem, 1vw + 0.75rem, 1.125rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-soft);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.75rem;
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
}

/* Experiences carousel */
.experiences-carousel {
    margin-top: 0.5rem;
    padding-bottom: 0;
    outline: none;
    overflow-x: clip;
}

.experiences-carousel:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 4px;
}

.experiences-carousel__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.experiences-carousel__controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.experiences-carousel__stage {
    position: relative;
    height: clamp(420px, 72vh, 760px);
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-charcoal);
    box-shadow: var(--shadow-soft);
}

.experiences-carousel__slides {
    position: absolute;
    inset: 0;
}

.experiences-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 350ms ease, transform 350ms ease;
    pointer-events: none;
    will-change: opacity, transform;
}

.experiences-carousel__slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
}

.experiences-carousel__slide.is-entering-from-right {
    transform: translateX(28px);
    opacity: 0;
}

.experiences-carousel__slide.is-entering-from-left {
    transform: translateX(-28px);
    opacity: 0;
}

.experiences-carousel__slide.is-entering-from-right.is-active,
.experiences-carousel__slide.is-entering-from-left.is-active {
    transform: translateX(0);
    opacity: 1;
}

.experiences-carousel__slide.is-leaving-to-left {
    transform: translateX(-28px);
    opacity: 0;
    z-index: 1;
}

.experiences-carousel__slide.is-leaving-to-right {
    transform: translateX(28px);
    opacity: 0;
    z-index: 1;
}

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

.experiences-carousel__copy {
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: min(52%, 560px);
    padding: 2.5rem 2.25rem 4.25rem;
    pointer-events: none;
}

.experiences-carousel__copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 26, 0.78) 0%,
        rgba(26, 26, 26, 0.42) 62%,
        rgba(26, 26, 26, 0) 100%
    );
    z-index: -1;
}

.experiences-carousel__copy-icon {
    color: var(--color-gold);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.experiences-carousel__copy-title {
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 2.2vw + 0.75rem, 2.35rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 0.85rem;
    max-width: 16ch;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.experiences-carousel__copy-title::after {
    content: "";
    display: block;
    width: 2.75rem;
    height: 2px;
    margin-top: 0.9rem;
    background: var(--color-gold);
}

.experiences-carousel__copy-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1.02rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 34ch;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.experiences-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.experiences-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.experiences-carousel__dot.is-active {
    background: var(--color-gold);
    transform: scale(1.15);
}

.experiences-carousel__dot:hover,
.experiences-carousel__dot:focus-visible {
    background: #fff;
    outline: none;
}

.experiences-carousel__arrow {
    flex-shrink: 0;
    width: 46px;
    height: 72px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.experiences-carousel__arrow:hover,
.experiences-carousel__arrow:focus-visible {
    background: #fff;
    color: var(--color-gold);
    outline: none;
}

.experiences-carousel__thumbs-track {
    margin-top: 1rem;
    margin-bottom: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(217, 139, 16, 0.35) transparent;
}

.experiences-carousel__thumbs {
    display: flex;
    gap: 1rem;
    padding: 0.35rem 0.15rem 0.75rem;
    min-width: min-content;
}

.experiences-carousel__thumb {
    flex: 0 0 auto;
    width: min(220px, 42vw);
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.55rem;
    border: 2px solid rgba(44, 62, 80, 0.12);
    border-radius: 12px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    opacity: 0.88;
    box-shadow: var(--shadow-soft);
    transition: border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.experiences-carousel__thumb:hover {
    opacity: 1;
}

.experiences-carousel__thumb.is-active {
    opacity: 1;
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.03);
}

.experiences-carousel__thumb:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.experiences-carousel__thumb-image {
    width: 88px;
    height: 66px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.experiences-carousel__thumb-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.experiences-carousel__thumb-title {
    font-family: var(--font-serif);
    font-size: 0.98rem;
    line-height: 1.25;
    color: var(--color-text);
}

.experiences-carousel__thumb.is-active .experiences-carousel__thumb-title {
    color: var(--color-gold);
}

.experiences-carousel__thumb-subtitle {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--color-text-soft);
}

.experiences-carousel__thumb-subtitle[hidden] {
    display: none;
}

@media (min-width: 900px) {
    .experiences-carousel__thumbs {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 1rem;
        min-width: 0;
    }

    .experiences-carousel__thumb {
        width: auto;
    }
}

@media (max-width: 768px) {
    .experiences-carousel__controls {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .experiences-carousel__arrow {
        display: none;
    }

    .experiences-carousel__stage {
        height: clamp(360px, 68vh, 620px);
        border-radius: 12px;
    }

    .experiences-carousel__copy {
        width: 100%;
        padding: 1.35rem 1.25rem 3.75rem;
    }

    .experiences-carousel__copy::before {
        background: linear-gradient(
            180deg,
            rgba(26, 26, 26, 0) 0%,
            rgba(26, 26, 26, 0.2) 35%,
            rgba(26, 26, 26, 0.72) 100%
        );
    }

    .experiences-carousel__copy-title {
        max-width: none;
    }

    .experiences-carousel__copy-subtitle {
        max-width: none;
    }

    .experiences-carousel__thumbs-track {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .experiences-carousel__thumb {
        width: min(260px, 78vw);
    }
}

@media (prefers-reduced-motion: reduce) {
    .experiences-carousel__slide {
        transition: opacity 200ms ease;
        transform: none !important;
    }
}

/* Rooms Section */
.rooms {
    padding: var(--section-pad-y-tight) 0 var(--section-pad-y);
    background: #fff;
}

.rooms > .container > .section-description {
    margin-bottom: 2.75rem;
}

.room-group {
    margin-bottom: 4rem;
}

.room-group:last-child {
    margin-bottom: 0;
}

.room-group-title {
    font-size: 1.4rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--color-sand);
}

/* Listing cards */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.listing-grid-single {
    grid-template-columns: 1fr;
    max-width: 560px;
}

.listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.listing-card-image {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: var(--color-charcoal);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.listing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.listing-card-image:hover img {
    transform: scale(1.03);
}

.listing-card-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.listing-card-image--luxo {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #f39c12 100%);
}

.listing-card-image--queen {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #a9dfbf 100%);
}

.listing-card-image--casita {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #d7bde2 100%);
}

.listing-card-image--chale {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 50%, #5dade2 100%);
}

.listing-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listing-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    color: var(--color-text);
}

.listing-summary {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.listing-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.55rem;
}

.listing-price {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gold-dark);
}

.listing-actions {
    display: flex;
    margin-top: auto;
    padding-top: 0.85rem;
}

.listing-actions__cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
}

.listing-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}

.listing-link:hover {
    text-decoration: underline;
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.88rem;
}

.listing-actions .btn-sm {
    white-space: nowrap;
}

.listing-card-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.listing-card-title-link:hover {
    color: var(--color-gold);
}

/* Dedicated accommodation pages */
.accommodation-page {
    padding-top: var(--header-height);
}

.accommodation-hero-back {
    position: absolute;
    top: 1.1rem;
    left: 1.5rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
    transition: color 0.2s ease;
}

.accommodation-hero-back:hover {
    color: rgba(255, 255, 255, 0.95);
}

.accommodation-hero-back:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
    border-radius: 2px;
}

.accommodation-hero-back i {
    font-size: 0.6rem;
    opacity: 0.85;
}

.availability-widget__nights {
    margin: -0.15rem 0 0.15rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-gold-dark);
    text-align: center;
}

 .room-detail-hero {
    margin-top: 0;
}

.accommodation-related {
    padding: 4rem 0 5rem;
    background: var(--color-off-white);
}

.accommodation-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.accommodation-related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accommodation-related-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.accommodation-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.accommodation-related-card:hover .accommodation-related-card__image img {
    transform: scale(1.03);
}

.accommodation-related-card__body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.accommodation-related-card__body h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-serif);
    font-size: 1.15rem;
}

.accommodation-related-card__body h3 a {
    color: var(--color-text);
    text-decoration: none;
}

.accommodation-related-card__body h3 a:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .accommodation-related {
        padding: 3rem 0 4rem;
    }
}

/* Accommodation availability widget */
.accommodation-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 2.5rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    align-items: start;
}

.accommodation-page-main {
    min-width: 0;
}

.accommodation-page-main .room-detail-body {
    background: transparent;
}

.accommodation-page-main .room-detail-container {
    max-width: none;
    margin: 0;
    padding: 3.5rem 0 4.5rem;
}

.availability-widget {
    position: relative;
    z-index: 20;
}

.availability-widget__card {
    background: #fff;
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 1.5rem;
}

.availability-widget__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
}

.availability-widget__price {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-gold-dark);
}

.availability-widget__price-note {
    margin: 0.2rem 0 1.15rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--color-text-soft);
}

.availability-widget__fields {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.availability-widget__field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(44, 44, 44, 0.14);
    border-radius: 12px;
    overflow: hidden;
}

.availability-widget__field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border: 0;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.availability-widget__field + .availability-widget__field {
    border-left: 1px solid rgba(44, 44, 44, 0.14);
}

.availability-widget__field:hover,
.availability-widget__field:focus-visible {
    background: rgba(245, 240, 232, 0.65);
    outline: none;
}

.availability-widget__field.is-filled .availability-widget__field-value {
    color: var(--color-text);
}

.availability-widget__field-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.availability-widget__field-value {
    font-size: 0.95rem;
    color: var(--color-text-soft);
}

.availability-widget__guests-wrap {
    position: relative;
}

.availability-widget__guests-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(44, 44, 44, 0.14);
    border-radius: 12px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.availability-widget__guests-trigger:hover,
.availability-widget__guests-trigger:focus-visible,
.availability-widget.is-guests-open .availability-widget__guests-trigger {
    background: rgba(245, 240, 232, 0.65);
    outline: none;
}

.availability-widget.is-guests-open .availability-widget__guests-trigger {
    border-color: rgba(44, 44, 44, 0.28);
}

.availability-widget__guests-trigger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
}

.availability-widget__guests-chevron {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 1.5px solid var(--color-text-soft);
    border-bottom: 1.5px solid var(--color-text-soft);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.availability-widget.is-guests-open .availability-widget__guests-chevron {
    transform: rotate(-135deg) translateY(2px);
}

.availability-guests-picker {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 30;
    background: #fff;
    border: 1px solid rgba(44, 44, 44, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(26, 26, 26, 0.14);
    padding: 1rem 1rem 0.85rem;
}

.availability-guests-picker[hidden] {
    display: none;
}

.availability-guests-picker__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.availability-guests-picker__row + .availability-guests-picker__row {
    border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.availability-guests-picker__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
}

.availability-guests-picker__hint {
    margin-top: 0.15rem;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--color-text-soft);
}

.availability-guests-picker__counter {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.availability-guests-picker__value {
    min-width: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text);
}

.availability-guests-picker__step {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(44, 44, 44, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.availability-guests-picker__step:hover:not(:disabled) {
    border-color: var(--color-charcoal);
}

.availability-guests-picker__step:disabled,
.availability-guests-picker__step.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.availability-guests-picker__note {
    margin: 0.75rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(44, 44, 44, 0.08);
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--color-text-soft);
}

.availability-guests-picker__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.85rem;
}

.availability-guests-picker__close {
    border: 0;
    background: transparent;
    color: var(--color-text);
    font: inherit;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0.25rem 0;
}

.availability-widget__submit {
    width: 100%;
    margin-top: 0.25rem;
}

.availability-widget__result {
    margin-top: 1.15rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.availability-result__message {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-text-soft);
}

.availability-widget__notice {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--color-text-soft);
}

.availability-result__message--success {
    color: var(--color-text);
}

.availability-result__message--warning,
.availability-result__message--error {
    color: var(--color-text);
}

.availability-result__message--loading {
    color: var(--color-text-muted);
}

.availability-result__actions {
    display: grid;
    gap: 0.65rem;
}

.availability-result__cta {
    width: 100%;
}

@media (min-width: 1025px) {
    .availability-widget {
        position: sticky;
        top: calc(var(--header-height) + 1.5rem);
    }
}

.availability-calendar {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(28, 28, 28, 0.45);
}

.availability-calendar[hidden] {
    display: none;
}

.availability-calendar__panel {
    width: min(920px, 100%);
    max-height: min(90vh, 760px);
    overflow: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    padding: 1.5rem;
}

.availability-calendar__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.availability-calendar__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-text);
}

.availability-calendar__subtitle {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text-soft);
}

.availability-calendar__close {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(44, 44, 44, 0.06);
    color: var(--color-text);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.availability-calendar__nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.availability-calendar__arrow {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(44, 44, 44, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    cursor: pointer;
}

.availability-calendar__months {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.availability-calendar__month-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
}

.availability-calendar__weekdays,
.availability-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.2rem;
}

.availability-calendar__weekdays {
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
    text-align: center;
}

.availability-calendar__day,
.availability-calendar__pad {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
}

.availability-calendar__day {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--color-text);
    cursor: pointer;
}

.availability-calendar__day:hover:not(.is-unavailable):not(.is-selected) {
    background: rgba(217, 139, 16, 0.12);
}

.availability-calendar__day.is-selected {
    background: var(--color-charcoal);
    color: #fff;
}

.availability-calendar__day.is-in-range {
    background: rgba(217, 139, 16, 0.14);
    border-radius: 0;
}

.availability-calendar__day.is-unavailable {
    color: rgba(44, 44, 44, 0.35);
    cursor: not-allowed;
}

.availability-calendar__day.is-unavailable s {
    text-decoration: line-through;
    text-decoration-color: rgba(44, 44, 44, 0.45);
}

.availability-calendar__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.availability-calendar__clear {
    border: 0;
    background: transparent;
    color: var(--color-text);
    text-decoration: underline;
    cursor: pointer;
    font: inherit;
}

.availability-calendar__done {
    min-width: 7rem;
}

body.availability-calendar-open {
    overflow: hidden;
}

body.availability-calendar-open .fixed-bottom-bar {
    z-index: 1;
}

@media (max-width: 768px) {
    .accommodation-page-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 1rem 3rem;
    }

    .availability-widget {
        order: -1;
    }

    .availability-widget__card {
        margin-top: -1.25rem;
        position: relative;
        z-index: 2;
    }

    .accommodation-page-main .room-detail-container {
        padding: 2.5rem 0 3.5rem;
    }

    .availability-calendar {
        align-items: flex-end;
        padding: 0;
    }

    .availability-calendar__panel {
        width: 100%;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        padding: 1.25rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }

    .availability-calendar__months {
        grid-template-columns: 1fr;
    }
}

/* Room detail full-screen overlay */
.room-detail-overlay {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.room-detail-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

body.room-detail-open {
    overflow: hidden;
    padding-bottom: 0;
}

body.room-detail-open .header {
    z-index: 10001;
}

body.room-detail-open .fixed-bottom-bar {
    z-index: 10001;
}

body.room-detail-open .room-detail-scroll {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.room-detail-scroll {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.room-detail-footer-host {
    flex-shrink: 0;
}

.room-detail-footer-host .footer {
    margin-top: 0;
}

.room-detail-hero {
    position: relative;
    width: 100%;
    min-height: 65vh;
    height: 65vh;
    overflow: hidden;
    background: var(--color-charcoal);
}

.room-detail-hero-btn {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    font: inherit;
}

.room-detail-hero-btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -2px;
}

.room-detail-hero-btn img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.room-detail-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(26, 26, 26, 0.78) 0%,
        rgba(26, 26, 26, 0.55) 38%,
        rgba(26, 26, 26, 0.12) 62%,
        rgba(26, 26, 26, 0.28) 100%
    );
    pointer-events: none;
}

.room-detail-hero-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    box-sizing: border-box;
    pointer-events: none;
    gap: 1.25rem;
}

.room-detail-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    left: auto;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    pointer-events: auto;
    flex-shrink: 0;
}

.room-detail-close:hover,
.room-detail-close:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.room-detail-hero-copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    max-width: 520px;
    min-width: 0;
    pointer-events: auto;
}

.room-detail-hero-bottom {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1.5rem 2rem;
    width: 100%;
    min-width: 0;
    pointer-events: auto;
}

.room-detail-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    flex-shrink: 0;
}

.room-detail-hero-cta {
    padding: 11px 22px;
    font-size: 0.88rem;
}

.room-detail-hero-strip {
    align-self: flex-end;
    justify-self: end;
    pointer-events: auto;
    width: min(680px, 46vw);
    min-width: 0;
    max-width: min(680px, 46vw);
    flex-shrink: 1;
    overflow: hidden;
}

.room-detail-hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 0.75rem;
}

.room-detail-hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5vw, 5.8rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 0.85rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.room-detail-hero-teaser {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 460px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.room-detail-hero-strip .gallery-preview-grid--hero-strip,
.gallery-preview-grid.gallery-preview-grid--hero-strip {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    grid-template-columns: none;
}

.gallery-preview-grid--hero-strip .gallery-preview-tile--hero-strip {
    flex: 0 0 clamp(112px, 8vw, 132px);
    width: clamp(112px, 8vw, 132px);
    min-width: clamp(112px, 8vw, 132px);
    height: auto;
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.gallery-preview-grid--hero-strip .gallery-preview-tile--hero-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-preview-tile--hero-strip .gallery-view-all-count {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

.gallery-preview-tile--hero-strip .gallery-view-all-overlay {
    padding: 0.35rem;
}

@media (min-width: 769px) {
    .room-detail-hero {
        min-height: 75vh;
        height: 75vh;
        max-height: 80vh;
    }

    .room-detail-hero-inner {
        padding: 1.5rem 2.5rem 2.5rem;
        gap: 1.5rem 2rem;
    }

    .room-detail-close {
        top: 1.5rem;
        right: 2.5rem;
    }
}

.room-detail-body {
    background: var(--color-off-white);
}

.room-detail-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 4.5rem;
}

.room-detail-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-soft);
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
    white-space: pre-line;
}

.room-detail-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3rem;
    max-width: 320px;
    color: var(--color-gold);
    opacity: 0.7;
}

.room-detail-divider::before,
.room-detail-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(217, 139, 16, 0.25);
}

.room-detail-divider-icon {
    padding: 0 1rem;
    font-size: 0.85rem;
}

.room-detail-features {
    margin-bottom: 3rem;
}

.room-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem 1.25rem;
}

.room-detail-feature {
    text-align: center;
    padding: 0 0.5rem;
}

.room-detail-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 139, 16, 0.1);
    color: var(--color-gold);
    font-size: 1.15rem;
}

.room-detail-feature-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.room-detail-feature-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-text-soft);
    margin: 0;
}

.room-detail-amenities {
    margin-top: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
}

.room-detail-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-detail-amenity {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(217, 139, 16, 0.16);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(26, 26, 26, 0.04);
}

.room-detail-amenity i {
    color: var(--color-gold);
    font-size: 0.88rem;
    flex-shrink: 0;
}

.room-detail-amenity span {
    font-size: 0.78rem;
    color: var(--color-text);
    line-height: 1.3;
}

.room-detail-amenity--extra {
    display: none;
}

.room-detail-amenities.is-expanded .room-detail-amenity--extra {
    display: inline-flex;
}

.room-detail-amenities-toggle {
    display: none;
    margin: 0.85rem auto 0;
    border: none;
    background: none;
    color: var(--color-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

@media (min-width: 769px) {
    .room-detail-amenity--extra {
        display: inline-flex;
    }
}

.room-detail-booking-callout {
    margin-top: 3.5rem;
    padding: 3rem 2.5rem;
    background: var(--color-sand);
    border: 1px solid rgba(217, 139, 16, 0.12);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(26, 26, 26, 0.05);
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.room-detail-booking-callout-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(217, 139, 16, 0.1);
    color: var(--color-gold);
    font-size: 1rem;
}

.room-detail-booking-callout-title {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-text);
    margin: 0 0 1rem;
}

.room-detail-booking-callout-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 540px;
    margin: 0 auto 1.75rem;
}

.room-detail-booking-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 400px;
    text-align: left;
}

.room-detail-booking-benefits li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.5rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--color-text);
}

.room-detail-booking-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 600;
}

.room-detail-booking-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1rem;
}

.room-detail-booking-actions .btn {
    min-width: 200px;
}

.room-detail-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.75rem;
    text-align: center;
}

@media (max-width: 1100px) {
    .room-detail-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.room-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.room-detail-item {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 8px;
}

.room-detail-item i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.room-detail-item h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.35rem;
}

.room-detail-item p {
    font-size: 0.92rem;
    color: var(--color-text);
    margin: 0;
}

.room-detail-grid--amenities {
    grid-template-columns: repeat(5, 1fr);
}

.room-detail-grid--amenities .room-detail-item {
    padding: 1rem 0.5rem;
}

.room-detail-grid--amenities .room-detail-item p {
    font-size: 0.85rem;
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-cards-single {
    grid-template-columns: 1fr;
    max-width: 800px;
}

.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-gallery-mount {
    width: 100%;
}

.room-gallery {
    width: 100%;
}

/* Suite King detail gallery preview — single responsive grid */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-preview-tile {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-charcoal);
    aspect-ratio: 4 / 3;
}

.gallery-preview-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.gallery-preview-tile:hover img,
.gallery-preview-tile:focus-visible img {
    transform: scale(1.03);
}

.gallery-preview-tile:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.gallery-preview-tile--view-all {
    cursor: default;
}

.gallery-preview-tile--view-all img {
    position: absolute;
    inset: 0;
}

.gallery-view-all-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.75rem;
    border: none;
    background: rgba(0, 0, 0, 0.52);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gallery-view-all-overlay:hover,
.gallery-view-all-overlay:focus-visible {
    background: rgba(0, 0, 0, 0.62);
    outline: none;
}

.gallery-view-all-count {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.gallery-view-all-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    opacity: 0.92;
}

.gallery-hero {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-charcoal);
    aspect-ratio: 3 / 2;
}

.gallery-hero--detail {
    border-radius: 8px;
    max-height: 360px;
    aspect-ratio: auto;
}

.gallery-hero--detail img {
    width: 100%;
    height: 360px;
    max-height: 50vh;
    object-fit: cover;
}

.gallery-view-all {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    background: #f0f0f0;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.gallery-thumb {
    position: relative;
    padding: 0;
    border: none;
    background: #ddd;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
    transform: scale(1.04);
}

.gallery-thumb:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: -2px;
}

.gallery-carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    scrollbar-width: none;
}

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

.gallery-carousel-slide {
    flex: 0 0 88%;
    padding: 0;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: center;
    cursor: pointer;
    aspect-ratio: 3 / 2;
    background: var(--color-charcoal);
}

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

.gallery-grid--detail .gallery-thumb {
    border-radius: 10px;
    aspect-ratio: 4 / 3;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox-stage {
    position: relative;
    max-width: min(92vw, 1200px);
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: min(92vw, 1200px);
    min-height: 120px;
}

.gallery-lightbox-loader {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: gallery-lightbox-spin 0.7s linear infinite;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    pointer-events: none;
}

.gallery-lightbox.is-loading .gallery-lightbox-loader {
    opacity: 1;
    visibility: visible;
}

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

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.2s ease;
}

.gallery-lightbox-img.is-loading {
    opacity: 0;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-prev:focus-visible,
.gallery-lightbox-next:focus-visible {
    background: rgba(255, 255, 255, 0.25);
}

.gallery-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
}

.gallery-lightbox-prev {
    left: 1rem;
}

.gallery-lightbox-next {
    right: 1rem;
}

.gallery-lightbox-counter {
    position: absolute;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.room-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: relative;
}

.room-luxo {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #f39c12 100%);
}

.room-king {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 50%, #85c1e9 100%);
}

.room-queen {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 50%, #a9dfbf 100%);
}

.room-chale {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 50%, #5dade2 100%);
}

.room-casita {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #d7bde2 100%);
}

.room-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.room-badge {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--color-sand);
    color: var(--color-gold-dark);
    letter-spacing: 0.02em;
}

.room-badge-muted {
    background: rgba(46, 74, 58, 0.08);
    color: var(--color-palm);
}

.room-summary {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
}

.room-desc {
    color: #666;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
}

.room-highlights-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 1rem 0 0.5rem;
}

.room-highlights {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
}

.room-highlights li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.35rem;
    color: #555;
    font-size: 0.92rem;
}

.room-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.8rem;
}

.room-content h3 {
    margin-bottom: 0.65rem;
    color: var(--color-text);
}

.room-content {
    padding: 1.5rem;
}

.room-content p {
    color: #666;
    margin-bottom: 1rem;
}

.room-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0.5rem;
}

.view-details {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 500;
}

.view-details:hover {
    text-decoration: underline;
}

/* Guest Reviews */
.guest-reviews {
    padding: var(--section-pad-y-tight) 0 var(--section-pad-y);
    background: linear-gradient(180deg, var(--color-sand) 0%, var(--color-off-white) 100%);
}

.guest-reviews__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.guest-reviews__subtitle {
    margin-bottom: 0;
}

.guest-reviews__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.guest-reviews__desktop {
    display: block;
}

.guest-reviews__mobile {
    display: none;
}

.guest-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.guest-reviews__card {
    background: #fff;
    border: 1px solid rgba(217, 139, 16, 0.12);
    border-radius: 18px;
    padding: 1.35rem 1.4rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    height: 100%;
}

.guest-reviews__text {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.guest-reviews__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.guest-reviews__author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.guest-reviews__avatar {
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.guest-reviews__author-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.guest-reviews__guest {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.92rem;
}

.guest-reviews__date {
    font-size: 0.8rem;
    color: var(--color-text-soft);
}

.guest-reviews__card-badges {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
    flex-shrink: 0;
}

.guest-reviews__platform-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.05);
    color: var(--color-text);
    overflow: hidden;
}

.guest-reviews__platform-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
}

.guest-reviews__platform-icon--airbnb {
    background: #ff5a5f;
    color: #fff;
    font-size: 1.15rem;
}

.guest-reviews__platform-icon--google {
    background: #fff;
    color: #4285f4;
    font-size: 1rem;
    border: 1px solid rgba(26, 26, 26, 0.08);
}

.guest-reviews__platform-icon--booking,
.guest-reviews__platform-icon--vrbo {
    background: transparent;
    border-radius: 6px;
}

.guest-reviews__stars {
    color: var(--color-gold);
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    line-height: 1;
}

.guest-reviews__score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #003580;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.guest-reviews__read-more {
    align-self: flex-start;
    border: none;
    background: none;
    color: var(--color-gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.guest-reviews__host-response {
    margin: 0;
    padding: 0.85rem 0 0;
    border-top: 1px solid rgba(217, 139, 16, 0.12);
    font-size: 0.88rem;
    color: var(--color-text-soft);
    font-style: italic;
}

.guest-reviews__host-response-label {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 0.35rem;
}

.guest-reviews__more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.guest-reviews__more-btn {
    border: 1px solid rgba(217, 139, 16, 0.28);
    background: rgba(255, 255, 255, 0.85);
    color: var(--color-gold-dark);
    border-radius: 999px;
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.guest-reviews__more-btn:hover {
    background: #fff;
    transform: translateY(-1px);
}

.guest-reviews__mobile-viewport {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    width: 100%;
}

.guest-reviews__mobile-viewport::-webkit-scrollbar {
    display: none;
}

.guest-reviews__mobile-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0 0.15rem;
    box-sizing: border-box;
}

.guest-reviews__mobile-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
}

.guest-reviews__mobile-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    border: none;
    background: rgba(217, 139, 16, 0.25);
    cursor: pointer;
}

.guest-reviews__mobile-dot.is-active {
    background: var(--color-gold);
    transform: scale(1.15);
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: var(--color-off-white);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.location-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.location-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-soft);
    margin: 0;
}

.location-map {
    max-width: none;
    margin: 0;
}

.map-embed {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-directions-link {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--color-gold);
    font-weight: 500;
    text-decoration: none;
}

.map-directions-link:hover {
    text-decoration: underline;
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: var(--color-off-white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity {
    text-align: center;
    padding: 2rem;
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.amenity:nth-child(1) .amenity-icon {
    background: var(--color-sand);
    color: var(--color-gold-dark);
}

.amenity:nth-child(2) .amenity-icon {
    background: var(--color-gold);
    color: white;
}

.amenity:nth-child(3) .amenity-icon {
    background: var(--color-palm);
    color: white;
}

.amenity span {
    font-weight: 500;
    color: var(--color-text);
}

/* Footer */
.footer {
    background: var(--color-off-white);
    padding: 4rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 3rem 4rem;
    max-width: 1080px;
    margin: 0 auto 2.5rem;
    align-items: start;
}

.footer-brand {
    padding-right: 0.5rem;
}

.footer-brand .brand-mark--footer {
    justify-content: flex-start;
}

.footer-desc {
    max-width: 16rem;
    line-height: 1.55;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-soft);
}

.footer-section h3 {
    color: var(--color-text);
    margin: 0 0 1rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-section p {
    color: var(--color-text);
    margin: 0 0 0.65rem;
    line-height: 1.65;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.footer-phone {
    margin-top: 0.25rem;
}

.footer-email {
    margin-top: 0.35rem;
}

.footer-google {
    margin: 0.85rem 0 0;
}

.footer-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-google-link i {
    color: #4285f4;
    font-size: 1.1rem;
    line-height: 1;
}

.footer-google-link:hover {
    color: var(--color-gold-dark);
}

.footer-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-phone-link i {
    color: #25d366;
    font-size: 1.15rem;
    line-height: 1;
}

.footer-phone-link:hover {
    color: var(--color-gold-dark);
}

.footer-phone-link:hover i {
    color: #1ebe57;
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-email-link i {
    color: var(--color-gold-dark);
    font-size: 1rem;
    line-height: 1;
}

.footer-email-link:hover {
    color: var(--color-gold-dark);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--color-text);
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--color-gold);
}

.social-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    text-decoration: none;
    color: var(--color-text);
    transition: transform 0.2s ease, color 0.2s ease;
}

.social-link__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid rgba(217, 139, 16, 0.16);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-link__handle {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.social-link--instagram .social-link__icon {
    color: #e4405f;
}

.social-link--instagram:hover {
    color: #c13584;
    transform: translateY(-1px);
}

.social-link--instagram:hover .social-link__icon {
    background: #e4405f;
    border-color: #e4405f;
    color: #fff;
}

.social-link--facebook .social-link__icon {
    color: #1877f2;
}

.social-link--facebook:hover {
    color: #0f5fca;
    transform: translateY(-1px);
}

.social-link--facebook:hover .social-link__icon {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 62, 80, 0.2);
}

.footer-bottom p {
    color: var(--color-text);
    font-size: 0.9rem;
}

/* Fixed Bottom Bar */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    pointer-events: none;
    padding: 0 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    background: transparent;
    border: none;
    box-shadow: none;
}

.fixed-bottom-bar .container {
    pointer-events: auto;
    padding: 0;
    max-width: none;
}

.bottom-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fixed-bottom-bar .btn-whatsapp--fab {
    width: 3.5rem;
    height: 3.5rem;
    min-width: 0;
    max-width: none;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow:
        0 10px 28px rgba(37, 211, 102, 0.35),
        0 2px 10px rgba(26, 26, 26, 0.12);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 9px 18px;
    border: none;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    color: white;
    transform: translateY(-1px);
}

.btn-book-now {
    background: var(--color-gold);
    color: #fff;
    padding: 9px 18px;
    border: none;
    font-weight: 500;
    box-shadow: var(--shadow-gold);
}

.btn-book-now:hover {
    background: var(--color-gold-dark);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .guest-reviews__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        padding: 0;
    }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        height: var(--header-height);
        min-height: var(--header-height);
        padding: 0 20px;
        gap: 0;
    }

    .logo-img--horizontal {
        display: none;
    }

    .logo-img--mark {
        display: none;
    }

    .brand-mark {
        margin-right: 0;
    }

    .header .brand-mark__img--horizontal {
        height: 100%;
        max-height: var(--header-height);
        max-width: min(280px, 58vw);
    }

    .brand-mark--footer .brand-mark__img--square {
        max-height: 100px;
        max-width: 120px;
    }

    .guest-reviews {
        padding: 2.5rem 0 3.5rem;
    }

    .guest-reviews__header {
        margin-bottom: 1.75rem;
    }

    .guest-reviews__desktop {
        display: none;
    }

    .guest-reviews__mobile {
        display: block;
    }

    .guest-reviews__grid {
        grid-template-columns: 1fr;
    }

    .guest-reviews__card {
        padding: 1.5rem 1.25rem;
    }

    body.room-detail-open .room-detail-scroll {
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    }

    .room-detail-container {
        padding: 2.5rem 1rem 3.5rem;
    }

    .room-detail-hero {
        min-height: 58vh;
        height: auto;
    }

    .room-detail-hero-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        padding: 1.15rem 1.25rem 1.35rem;
        gap: 0;
    }

    .accommodation-hero-back {
        top: 1rem;
        left: 1.25rem;
    }

    .room-detail-close {
        top: 1rem;
        right: 1rem;
        left: auto;
    }

    .room-detail-hero-copy {
        max-width: none;
        padding-top: 0;
    }

    .room-detail-hero-bottom {
        display: block;
        width: 100%;
        margin-top: 1.1rem;
    }

    .room-detail-hero-eyebrow {
        font-size: 1.35rem;
        letter-spacing: 0.13em;
        margin-bottom: 0.65rem;
    }

    .room-detail-hero-headline {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
        line-height: 1.08;
        margin-bottom: 0.65rem;
    }

    .room-detail-hero-teaser {
        margin-bottom: 0;
    }

    .room-detail-hero-actions {
        display: none;
    }

    .room-detail-hero-strip {
        width: 100%;
        min-width: 0;
        max-width: none;
        margin-top: 0;
        overflow: hidden;
    }

    .room-detail-hero-strip .gallery-preview-grid--hero-strip,
    .gallery-preview-grid.gallery-preview-grid--hero-strip {
        flex-wrap: nowrap;
        gap: 0.6rem;
        max-width: 100%;
        width: 100%;
    }

    .gallery-preview-grid--hero-strip .gallery-preview-tile--hero-strip {
        flex: 0 0 92px;
        width: 92px;
        min-width: 92px;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
    }

    .room-detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.25rem;
    }

    .room-detail-amenity--extra {
        display: none;
    }

    .room-detail-amenities.is-expanded .room-detail-amenity--extra {
        display: inline-flex;
    }

    .room-detail-amenities-toggle {
        display: block;
    }

    .room-detail-booking-callout {
        padding: 2.25rem 1.5rem;
        margin-top: 2.5rem;
    }

    .room-detail-booking-actions {
        flex-direction: column;
        width: 100%;
    }

    .room-detail-booking-actions .btn {
        width: 100%;
        min-width: 0;
    }

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

    .nav-toggle {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        order: 3;
        padding: 0;
        margin: 0;
        border: none;
    }

    .nav-menu.is-open {
        display: flex;
        position: static;
        width: 100%;
        flex: 1 1 100%;
        background: transparent;
        padding: 0.75rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
        margin-top: 0.5rem;
        overflow: visible;
        border-top: 1px solid rgba(44, 62, 80, 0.1);
        box-shadow: none;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        height: auto;
        max-height: 100dvh;
        z-index: 10002;
        background: #faf8f4;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 8px 32px rgba(26, 26, 26, 0.12);
    }

    body.nav-open.room-detail-open .header {
        z-index: 10003;
    }

    body.nav-open .fixed-bottom-bar {
        display: none;
    }

    body.nav-open .header .container {
        padding: 0;
        min-height: 0;
    }

    body.nav-open .nav {
        height: auto;
        min-height: var(--header-height);
        align-items: center;
    }

    body.nav-open .nav-menu a:not(.btn) {
        color: var(--color-text);
        font-size: 0.9rem;
    }

    .nav-menu a {
        padding: 0.95rem 0;
        border-bottom: 1px solid rgba(44, 62, 80, 0.08);
    }

    .nav-menu a:last-of-type {
        border-bottom: none;
    }

    .nav-menu .nav-cta {
        display: none;
    }

    .nav-lang {
        justify-content: center;
        padding-top: 0.75rem;
    }

    .hero-carousel {
        height: 58vh;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero-slide img {
        object-position: center center;
    }

    .hero-content {
        padding: 1rem 16px 3.25rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.65rem;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.12;
        margin-bottom: 0.75rem;
        max-width: none;
    }

    .hero-tagline {
        font-size: clamp(0.9375rem, 3.5vw, 1.0625rem);
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-cta {
        font-size: 0.9rem;
        padding: 8px 18px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }

    .hero-arrow {
        width: 34px;
        height: 48px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.78);
    }

    .hero-dots {
        bottom: 0.85rem;
        gap: 0.4rem;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .about-pousada {
        padding: 2rem 0 0;
    }

    .about-pousada .section-description {
        margin-bottom: 1.5rem;
    }

    .rooms {
        padding: 2rem 0 3rem;
    }

    .rooms > .container > .section-description {
        margin-bottom: 2rem;
    }

    .experiences-carousel__inner {
        padding: 0 16px;
    }

    .location-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content h2 {
        text-align: center;
    }

    .location-desc {
        text-align: center;
    }

    .location-map {
        max-width: 100%;
        width: 100%;
    }

    .map-embed {
        height: auto;
        aspect-ratio: 4 / 3;
        min-height: 240px;
    }

    .map-directions-link {
        display: block;
        text-align: center;
    }
    
    .listing-grid {
        grid-template-columns: 1fr;
    }

    .listing-grid-single {
        max-width: 100%;
    }

    .gallery-preview-grid:not(.gallery-preview-grid--hero-strip) {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .gallery-view-all-count {
        font-size: 1rem;
    }

    .gallery-view-all-label {
        font-size: 0.75rem;
    }

    .listing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .listing-actions .btn-sm {
        width: 100%;
        text-align: center;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer {
        padding: 2.25rem 0 1.25rem;
    }

    .room-detail-footer-host .footer {
        padding-top: 2.25rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 0;
        text-align: center;
    }

    .footer-section {
        width: 100%;
    }

    .footer-brand {
        padding: 0 0 1.5rem;
        margin: 0;
        border-bottom: 1px solid rgba(44, 62, 80, 0.12);
    }

    .footer-brand__inner {
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        max-width: 17.5rem;
        margin: 0 auto;
        padding: 1.35rem 1.25rem 0.25rem;
        text-align: center;
    }

    .footer-brand__body {
        align-items: center;
        gap: 0.75rem;
    }

    .footer-brand .brand-mark--footer {
        margin: 0;
        justify-content: center;
    }

    .brand-mark--footer .brand-mark__img--square {
        max-height: 68px;
        max-width: 68px;
    }

    .footer-desc {
        max-width: 15rem;
        margin: 0;
        font-size: 0.92rem;
    }

    .footer-brand .social-icons {
        align-items: center;
    }

    .footer-links {
        display: none;
    }

    .footer-contact {
        padding: 1.75rem 0;
        border-bottom: 1px solid rgba(44, 62, 80, 0.12);
    }

    .footer-contact h3 {
        margin-top: 0;
    }

    .footer-phone-link {
        justify-content: center;
    }

    .footer-email-link {
        justify-content: center;
    }

    .footer-google-link {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        border-top: none;
    }
    
    body {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }

    .fixed-bottom-bar {
        padding: 0 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
    }

    .fixed-bottom-bar .btn-whatsapp--fab {
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.45rem;
    }

    .btn-book-now {
        flex: none;
        padding: 13px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h2 {
        font-size: 1.8rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ page */
.faq-page {
    background: var(--color-off-white);
}

.faq-hero {
    padding: calc(5.5rem + 72px) 0 4rem;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(244, 231, 215, 0.55) 0%, rgba(250, 248, 244, 0) 100%),
        var(--color-off-white);
}

.faq-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    animation: faqFadeUp 0.7s ease both;
}

.faq-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.faq-hero__subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    color: var(--color-text-soft);
    margin: 0 auto;
    max-width: 36ch;
    line-height: 1.7;
}

.faq-section {
    padding: 0 0 5rem;
}

.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    border: 1px solid rgba(217, 139, 16, 0.12);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(217, 139, 16, 0.22);
}

.faq-item.is-open {
    border-color: rgba(217, 139, 16, 0.28);
    box-shadow: 0 10px 36px rgba(26, 26, 26, 0.08);
}

.faq-item__heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 2.4vw, 1.35rem);
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.35;
    transition: color 0.25s ease;
}

.faq-item__trigger:hover,
.faq-item__trigger:focus-visible {
    color: var(--color-gold-dark);
    outline: none;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 231, 215, 0.65);
    color: var(--color-gold);
    font-size: 0.85rem;
    transition: transform 0.35s ease, background 0.25s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    background: rgba(217, 139, 16, 0.14);
}

.faq-item__panel {
    overflow: hidden;
}

.faq-item.is-open .faq-item__answer {
    animation: faqFadeUp 0.35s ease both;
}

.faq-item__answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--color-text-soft);
}

.faq-item__answer p {
    margin-bottom: 0.85rem;
}

.faq-item__answer p:last-child {
    margin-bottom: 0;
}

.faq-item__answer ul {
    margin: 0 0 0.85rem 1.1rem;
    padding: 0;
}

.faq-item__answer li {
    margin-bottom: 0.35rem;
}

.faq-item__answer li:last-child {
    margin-bottom: 0;
}

.faq-item__answer a {
    color: var(--color-gold-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.faq-item__answer a:hover {
    color: var(--color-gold);
}

.faq-cta {
    padding: 4.5rem 0 6rem;
    text-align: center;
}

.faq-cta__inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(244, 231, 215, 0.55), rgba(250, 248, 244, 0.95));
    border: 1px solid rgba(217, 139, 16, 0.14);
    box-shadow: var(--shadow-soft);
    animation: faqFadeUp 0.7s ease 0.15s both;
}

.faq-cta h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.faq-cta p {
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
}

.accommodation-faq-prompt {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.95rem;
}

.accommodation-faq-prompt a,
.footer-faq-link a {
    color: var(--color-gold-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    transition: color 0.2s ease;
}

.accommodation-faq-prompt a:hover,
.footer-faq-link a:hover {
    color: var(--color-gold);
}

.footer-faq-link {
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

@keyframes faqFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: calc(4.5rem + 64px) 0 3rem;
    }

    .faq-item__trigger {
        padding: 1.15rem 1.15rem;
    }

    .faq-item__answer {
        padding: 0 1.15rem 1.15rem;
    }

    .faq-cta__inner {
        padding: 2.25rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .faq-hero__inner,
    .faq-cta__inner,
    .faq-item__panel,
    .faq-item__icon {
        animation: none;
        transition: none;
    }
}

/* Cookie consent */
.cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    max-width: 720px;
    margin: 0 auto;
}

.cookie-consent__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(32, 28, 24, 0.96);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.cookie-consent__text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-consent__link {
    color: rgba(244, 231, 215, 0.95);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    margin-left: 0.35rem;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-consent__reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.9);
}

.cookie-consent__reject:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent__accept {
    min-width: 6.5rem;
}

/* Legal / privacy */
.legal-page {
    padding-top: var(--header-height);
}

.legal-hero {
    padding: calc(3.5rem + 16px) 0 2rem;
    background: linear-gradient(180deg, rgba(244, 231, 215, 0.45), transparent);
}

.legal-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    margin: 0 0 0.65rem;
    color: var(--color-charcoal);
}

.legal-hero__subtitle {
    margin: 0;
    max-width: 36rem;
    color: var(--color-text-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.legal-body {
    padding: 0 0 5rem;
}

.legal-body__inner {
    max-width: 720px;
}

.legal-content h2 {
    margin: 2rem 0 0.75rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.legal-content p,
.legal-content li {
    color: var(--color-text-soft);
    line-height: 1.75;
    font-size: 0.98rem;
}

.legal-content ul {
    margin: 0.75rem 0 1rem 1.1rem;
    padding: 0;
}

.legal-content a {
    color: var(--color-gold-dark);
}

.legal-content code {
    font-size: 0.9em;
}

/* 404 */
.error-page__main {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
    background: linear-gradient(160deg, rgba(244, 231, 215, 0.5), #faf8f4 45%, #fff);
}

.error-page__inner {
    max-width: 560px;
    text-align: center;
}

.error-page__code {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--color-gold-dark);
}

.error-page__inner h1 {
    margin: 0.75rem 0 0.85rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.error-page__inner p {
    margin: 0 0 1.75rem;
    color: var(--color-text-soft);
    line-height: 1.65;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.availability-result__message--success,
.availability-result__message--notice {
    font-weight: 500;
}

.availability-result__message--success {
    color: var(--color-gold-dark);
}

.availability-result__wa-link {
    color: var(--color-gold-dark);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

@media (max-width: 640px) {
    .cookie-consent {
        left: 0.65rem;
        right: 0.65rem;
        bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__reject,
    .cookie-consent__accept {
        flex: 1;
    }
}