        /* Evita palabras huérfanas: ninguna línea final queda con una sola palabra.
           text-wrap es heredable, así que aplica a todo el texto del sitio. */
        body {
            text-wrap: pretty;
        }

        h1, h2, h3, h4, h5, h6 {
            text-wrap: balance;
        }

        .brand-logo {
            height: 40px;
        }

        .nav-divider {
            width: 1px;
            height: 24px;
            background-color: #ccc;
        }

        .guest-box {
            border: 1px solid #ccc;
            border-radius: 6px;
            padding: 6px 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .nav-link {
            font-weight: 500;
            font-size: var(--font-size-nav);
            color: #333 !important;
            margin: 0 10px;
        }

        #mainNavbar a,
        #mainNavbar h6 {
            font-size: var(--font-size-nav-lg) !important;
        }

        #mainNavbar .btn-book {
            flex-shrink: 0;
            width: max-content;
            white-space: nowrap;
        }

        .btn-book {
            background-color: #8B2C2C;
            color: #fff;
            font-weight: 600;
            min-width: max-content;
            white-space: nowrap;
        }

        .btn-book:hover {
            background-color: #732323;
            color: #fff;
        }

        /* ===== Hero CTAs ===== */
        .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            font-size: var(--font-size-nav-lg) !important;
            letter-spacing: 0.3px;
            text-decoration: none;
            border: 2px solid transparent;
            transition: transform 0.25s ease, box-shadow 0.25s ease,
                background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
            white-space: nowrap;
            line-height: 1;
        }

        .btn-hero i {
            font-size: var(--font-size-icon-md);
            line-height: 1;
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, #8B2C2C 0%, #6d2222 100%);
            color: #fff;
            border-color: #8B2C2C;
            box-shadow: 0 6px 20px rgba(139, 44, 44, 0.32);
        }

        .btn-hero-primary:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(139, 44, 44, 0.45);
        }

        .btn-hero-outline {
            background: transparent;
            color: #8B2C2C;
            border-color: #8B2C2C;
        }

        .btn-hero-outline:hover {
            background: #8B2C2C;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(139, 44, 44, 0.28);
        }

        /* Footer CTA variants (light on burgundy background) */
        .btn-hero-footer-primary {
            background: #f5d77a;
            color: #8B2C2C;
            border-color: #f5d77a;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        }

        .btn-hero-footer-primary:hover {
            background: #fff;
            color: #8B2C2C;
            border-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
        }

        .btn-hero-footer-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, 0.6);
        }

        .btn-hero-footer-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        body {
            font-family: outfit;

        }

        .hero-section {
            position: relative;
            height: 97vh;
            overflow: hidden;
        }

        .hero-image {
            display: block;
            width: 100%;
            height: 99%;
            object-fit: fill;
            /* La imagen tiene un borde transparente de 1px (canal alfa) que dejaba ver
               una línea blanca en el filo. Escalamos un poco para recortarlo (la sección
               ya tiene overflow: hidden). */
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .hero-image {
                object-fit: cover;
            }
        }

        .hero-overlay-text {
            position: absolute;
            top: 3%;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 2;
            pointer-events: none;
            padding: 0 20px;
        }

        .hero-tagline {
            display: inline-block;
            color: transparent;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: var(--font-size-hero-title);
            letter-spacing: clamp(12px, 0.3vw, 3px);
            background: linear-gradient(90deg,
                    #7a4a12 0%,
                    #b1914a 35%,
                    #e0c36f 50%,
                    #b1914a 65%,
                    #7a4a12 100%);
            background-size: 220% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
            margin: 0 auto;
            animation: heroTaglineColorWave 9s ease-in-out infinite;
        }

        .hero-subtitle {
            display: block;
            color: #ffffff;
            font-family: 'Cinzel', serif;
            font-weight: 700;
            font-size: var(--font-size-hero-subtitle);
            letter-spacing: clamp(3px, 0.4vw, 6px);
            text-transform: capitalize;
            margin-top: -0.3em;
        }

        @keyframes heroTaglineColorWave {
            0% {
                background-position: 90% 50%;
            }

            100% {
                background-position: -90% 50%;
            }

        }

        @media (max-width: 575px) {
            .hero-overlay-text {
                top: 8%;
            }

            .hero-tagline {
                letter-spacing: 1px;
                font-size: var(--font-size-hero-title-sm);
            }

            .hero-subtitle {
                font-size: var(--font-size-icon-md);
                margin-top: 0.8em;
            }
        }

        .btn-book {
            background-color: #8B2C2C;
            color: #fff;
            font-weight: 600;
            white-space: nowrap;
        }

        .btn-contact {
            background-color: #9b6a1b;
            color: #fff;
            font-weight: 600;
        }

        .btn-contact:hover {
            background-color: #c2964f;
            color: #fff;

        }

        .btn-book:hover {
            background-color: #732323;
            color: #fff;
        }

        .prime-location-section {
            background-color: #8B2C2C;
            max-width: 100%;
        }

        .prime-location-map {
            position: relative;
            padding: 0;
            margin: 0;
            width: 100%;
            line-height: 0;
        }

        .prime-location-map-img {
            width: 100%;
            height: auto;
            display: block;
        }

        .map-overlay-text {
            position: absolute;
            top: 6%;
            left: 0;
            right: 0;
            text-align: center;
            z-index: 2;
            pointer-events: none;
            padding: 0 20px;
            line-height: 1;
        }

        .map-tagline {
            display: inline-block;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 300;
            font-size: var(--font-size-map-title);
            letter-spacing: clamp(1px, 0.3vw, 3px);
            text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
            line-height: 1.2;
            margin: 0 auto;
        }

        @media (max-width: 575px) {
            .map-overlay-text {
                top: 8%;
            }

            .map-tagline {
                letter-spacing: 1px;
            }
        }

        .location-text {
            max-width: 720px;
            line-height: 1.7;
            opacity: 0.9;
        }

        .location-img {
            border-radius: 28px;

            max-width: 820px;
        }

        .gradient-line {
            width: 100%;
            height: 20px;
            background: linear-gradient(90deg,
                    #7a4a12 0%,
                    #c9a24d 50%,
                    #f5d77a 70%,
                    #c9a24d 85%,
                    #7a4a12 100%);
        }

        .property-section {
            padding-top: 0;
            padding-bottom: 0;
            margin-top: 0;
        }

        .property-header {
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
        }

        /* Unified property styles are now handled by global typography classes */

        .property-image-fullbleed {
            width: 100%;
            line-height: 0;
            overflow: hidden;
        }

        .property-image-fullbleed img {
            width: 100%;
            height: auto;
            display: block;
        }

        .property-details-card {
            background: linear-gradient(180deg, #e8e2da 0%, #ddd4c8 100%);
            border: 1px solid rgba(139, 44, 44, 0.08);
            border-radius: 18px;
            padding: 36px 32px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        }

        .property-details-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 32px;
            right: 32px;
            height: 3px;
            background: linear-gradient(90deg, #c9a24d, #f5d77a, #c9a24d);
            border-radius: 0 0 4px 4px;
        }

        .property-details-card-white {
            background: transparent;
            border-radius: 18px;
            padding: 36px 32px;
            position: relative;
            /* border: 1px solid rgba(139, 44, 44, 0.08); */
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); */
        }

        .property-details-card-white::before {
            content: "";
            position: absolute;
            top: 0;
            left: 32px;
            right: 32px;
            height: 3px;
            background: linear-gradient(90deg, #c9a24d, #f5d77a, #c9a24d);
            border-radius: 0 0 4px 4px;
        }

        .property-details-title {
            color: #8B2C2C;
            font-weight: 700;
            font-size: var(--font-size-h4);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin: 0 0 24px;
            text-align: center;
            display: block;
        }

        .property-details-list {
            margin: 0;
            padding: 0;
        }

        .property-detail-row {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 16px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(139, 44, 44, 0.08);
            align-items: baseline;
        }

        .property-detail-row:last-child {
            border-bottom: none;
        }

        .property-detail-row dt {
            font-size: var(--font-size-body);
            font-weight: 700;
            color: #6b3a3a;
            letter-spacing: 0.3px;
        }

        .property-detail-row dd {
            margin: 0;
            font-size: var(--font-size-body);
            color: #000;
            text-align: right;
            line-height: 1.4;
        }

        .property-detail-row dd span {
            color: #000;
            /* font-weight: 600; */
        }

        .property-detail-row-full {
            grid-template-columns: 1fr;
            gap: 6px;
        }

        .property-detail-row-full dd {
            text-align: left;
        }

        @media (max-width: 575px) {
            .property-detail-row {
                grid-template-columns: 1fr;
                gap: 4px;
            }

            .property-detail-row dd {
                text-align: left;
            }
        }

        .video-description {
            max-width: 1500px;
            font-size: var(--font-size-body);
            line-height: 1.8;
            color: #444;
        }

        .amenity-card {
            position: relative;
            display: block;
            height: 100%;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.45s ease, box-shadow 0.45s ease;
            cursor: pointer;
        }

        .amenity-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        }

        .amenity-card img {
            height: 320px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
            display: block;
        }

        .amenity-card:hover img {
            transform: scale(1.06);
        }

        .amenity-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(0, 0, 0, 0) 45%,
                    rgba(0, 0, 0, 0.35) 70%,
                    rgba(40, 12, 12, 0.85) 100%);
            pointer-events: none;
        }

        .amenity-label {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 22px 24px;
            color: #fff;
            font-weight: 600;
            font-size: var(--font-size-label);
            letter-spacing: 0.2px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .amenity-label::before {
            content: "";
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg, #f5d77a, #c9a24d);
            display: inline-block;
            flex-shrink: 0;
        }

        .btn-call {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 38px;
            border-radius: 12px;
            font-weight: 600;
            font-size: var(--font-size-nav-lg) !important;
            letter-spacing: 0.3px;
            text-decoration: none;
            border: 2px solid transparent;
            background: linear-gradient(135deg, #8B2C2C 0%, #6d2222 100%);
            color: #fff;
            box-shadow: 0 6px 20px rgba(139, 44, 44, 0.25);
            transition: transform 0.25s ease, box-shadow 0.25s ease,
                background 0.25s ease, color 0.25s ease;
        }

        .btn-call:hover {
            background: linear-gradient(135deg, #732323 0%, #591b1b 100%);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(139, 44, 44, 0.35);
        }

        /* Section titles are now handled by global .section-title class */

        .experience-card {
            position: relative;
            display: block;
            height: 100%;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.45s ease, box-shadow 0.45s ease;
            cursor: pointer;
        }

        .experience-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
        }

        .experience-card img {
            height: 360px;
            width: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
            display: block;
        }

        .experience-card:hover img {
            transform: scale(1.06);
        }

        .experience-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(0, 0, 0, 0) 45%,
                    rgba(0, 0, 0, 0.35) 70%,
                    rgba(12, 24, 40, 0.85) 100%);
            pointer-events: none;
        }

        .experience-label {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 22px 24px;
            color: #fff;
            font-weight: 600;
            font-size: var(--font-size-label);
            letter-spacing: 0.2px;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .experience-label::before {
            content: "";
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg, #f5d77a, #c9a24d);
            display: inline-block;
            flex-shrink: 0;
        }

        .experience-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.92);
            color: #8B2C2C;
            font-size: var(--font-size-eyebrow-xs);
            font-weight: 700;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 999px;
            z-index: 3;
        }

        .eyebrow {
            display: inline-block;
            font-size: var(--font-size-eyebrow);
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #c9a24d;
            margin-bottom: 14px;
        }

        .eyebrow-light {
            color: #f5d77a;
        }

        .highlights-row {
            margin-top: 36px;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
            padding-top: 28px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 22px 30px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            color: #fff;
        }

        .highlight-item i {
            font-size: var(--font-size-icon-lg);
            color: #f5d77a;
            line-height: 1;
            margin-top: 2px;
        }

        .highlight-item strong {
            display: block;
            font-weight: 600;
            font-size: var(--font-size-small);
            margin-bottom: 2px;
        }

        .highlight-item span {
            font-size: var(--font-size-xs);
            opacity: 0.78;
            line-height: 1.4;
        }

        .property-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .property-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: var(--font-size-body);
            color: #333;
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            font-weight: 600;
        }

        .property-features li:last-child {
            padding-bottom: 0;
            border-bottom: none;
        }

        .property-features li i {
            color: #8B2C2C;
            font-size: var(--font-size-icon);
            flex-shrink: 0;
        }

        .video-wrapper {
            position: relative;
            max-width: 1500px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
            background: #000;
        }

        .video-wrapper mux-player {
            width: 100%;
            display: block;
        }

        .section-divider {
            width: 64px;
            height: 3px;
            background: linear-gradient(90deg, #c9a24d, #f5d77a);
            margin: 0 auto 24px;
            border-radius: 2px;
        }

        @media (max-width: 768px) {

            .highlights-row,
            .property-features {
                grid-template-columns: 1fr;
            }
        }

        :root {
            --font-size-body: clamp(1.35rem, 1.7vw, 1.65rem);
            --font-size-h1: clamp(2.5rem, 5vw, 4.5rem);
            --font-size-h2: clamp(2rem, 3vw, 2.6rem);
            --font-size-h3: clamp(1.6rem, 2.3vw, 2.1rem);
            --font-size-h4: clamp(1.35rem, 1.9vw, 1.7rem);
            --font-size-h5: clamp(1.2rem, 1.6vw, 1.45rem);
            --font-size-h6: clamp(1.05rem, 1.3vw, 1.25rem);
            --font-size-nav: 0.95rem;
            --font-size-nav-lg: clamp(1.188rem, 1.495vw, 1.449rem);
            --font-size-ui: 1rem;
            --font-size-form-label-sm: 0.82rem;
            --font-size-label: 1.05rem;
            --font-size-small: clamp(0.9rem, 1vw, 1rem);
            --font-size-xs: 0.85rem;
            --font-size-eyebrow: 1.78rem;
            --font-size-eyebrow-xs: 0.72rem;
            --font-size-dropdown-header: 0.7rem;
            --font-size-icon: 1.25rem;
            --font-size-icon-md: 1.1rem;
            --font-size-icon-lg: 1.4rem;
            --font-size-icon-xl: 1.8rem;
            --font-size-hero-title: clamp(1.8rem, 4.2vw, 5.5rem);
            --font-size-hero-title-sm: 2.8rem;
            --font-size-hero-subtitle: clamp(0.65rem, 1.3vw, 1.4rem);
            --font-size-map-title: clamp(1.4rem, 3.2vw, 3rem);
        }

        h1, .section-title, .section-title-main {
            font-size: var(--font-size-h1);
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: 0;
            color: #8B2C2C;
            margin-bottom: 20px;
        }

        h2,
        .feature-text h2,
        .feature-text-card h2,
        .place-activity-text h2 {
            font-size: var(--font-size-h2);
            font-weight: 600;
            line-height: 1.25;
            color: #8B2C2C;
            margin-bottom: 16px;
        }

        h3 {
            font-size: var(--font-size-h3);
            font-weight: 600;
            line-height: 1.25;
            color: #8B2C2C;
            margin-bottom: 14px;
        }

        h4 {
            font-size: var(--font-size-h4);
        }

        h5 {
            font-size: var(--font-size-h5);
        }

        h6 {
            font-size: var(--font-size-h6);
        }

        h1#footer {
            color: white !important;
        }

        p,
        .body-text,
        .lead-text,
        .intro-copy,
        .feature-text p,
        .feature-text-card p,
        .place-activity-text p {
            font-size: var(--font-size-body);
            font-weight: 300;
            line-height: 1.65;
            color: #555;
        }

        .small-text {
            font-size: var(--font-size-small);
            font-weight: 400;
            line-height: 1.65;
            color: #666;
        }

        .w-readable-lg {
            max-width: 1200px;
        }

        .w-readable {
            max-width: 900px;
        }

        .w-readable-sm {
            max-width: 720px;
        }

        .btn {
            font-size: var(--font-size-small);
        }

        section {
            padding-top: clamp(3rem, 6vh, 6rem);
            padding-bottom: clamp(3rem, 6vh, 6rem);
        }

        .feature-section .container {
            max-width: none;
            padding-left: 10%;
            padding-right: 10%;
        }

        .contact-footer {
            position: relative;
            background:
                radial-gradient(circle at 15% 20%, rgba(245, 215, 122, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(201, 162, 77, 0.10) 0%, transparent 50%),
                linear-gradient(135deg, #8B2C2C 0%, #6d2222 100%);
            overflow: hidden;
        }

        .contact-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg,
                    #7a4a12 0%,
                    #c9a24d 50%,
                    #f5d77a 70%,
                    #c9a24d 85%,
                    #7a4a12 100%);
        }

        .contact-intro .eyebrow {
            color: #f5d77a;
            margin-bottom: 18px;
        }

        .contact-intro h1 {
            color: #fff !important;
            font-weight: 600;
            font-size: var(--font-size-h1);
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }

        .contact-intro p {
            color: rgba(255, 255, 255, 0.82);
            font-size: var(--font-size-body);
            line-height: 1.65;
            max-width: 950px;
            margin: 0 auto 28px;
        }

        .contact-card {
            background: #fff;
            border-radius: 22px;
            padding: 38px 36px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        }

        .contact-card-lg {
            padding: 56px 64px;
            border-radius: 26px;
        }

        .contact-card-lg .form-label {
            font-size: var(--font-size-form-label-sm);
        }

        .contact-card-lg .form-control,
        .contact-card-lg .form-select {
            padding: 15px 18px;
            font-size: var(--font-size-ui) !important;
            border-radius: 12px;
        }

        .btn-submit-lg {
            padding: 16px 38px;
            font-size: var(--font-size-ui);
            border-radius: 12px;
        }

        @media (max-width: 767px) {
            .contact-card-lg {
                padding: 32px 24px;
            }
        }

        .contact-card .form-label {
            font-size: var(--font-size-nav-lg) !important;
            font-weight: 600;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            color: #6b6b6b;
            margin-bottom: 6px;
        }

        .contact-card .form-control,
        .contact-card .form-select {
            border-radius: 10px;
            border: 1px solid #e3e3e3;
            font-size: var(--font-size-nav-lg) !important;
            padding: 12px 14px;
            background-color: #fafafa;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
        }

        .contact-card .form-control:focus,
        .contact-card .form-select:focus {
            border-color: #8B2C2C;
            background-color: #fff;
            box-shadow: 0 0 0 4px rgba(139, 44, 44, 0.12);
        }

        .contact-card .form-control::placeholder {
            color: #b5b5b5;
            font-size: var(--font-size-nav-lg) !important;
            font-weight: 400;
        }

        .btn-submit-contact {
            background: linear-gradient(135deg, #8B2C2C 0%, #6d2222 100%);
            color: #fff;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 10px;
            border: none;
            font-size: var(--font-size-nav-lg) !important;
            letter-spacing: 0.3px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 6px 18px rgba(139, 44, 44, 0.35);
        }

        .btn-submit-contact:hover {
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(139, 44, 44, 0.45);
        }

        .btn-submit-contact i {
            transition: transform 0.25s ease;
        }

        .btn-submit-contact:hover i {
            transform: translateX(4px);
        }

        .privacy-note {
            color: #888;
            font-size: var(--font-size-nav-lg) !important;
            margin-top: 14px;
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .privacy-note i {
            color: #8B2C2C;
        }

        .contact-direct-bar {
            margin-top: 56px;
            padding: 32px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }

        .contact-direct-bar .row {
            display: grid;
            grid-template-columns: 1.15fr 1.35fr 1.35fr 1.2fr;
            gap: 28px 42px;
        }

        .contact-direct-bar .row > [class*="col-"] {
            width: auto;
            max-width: none;
            padding-left: 0;
            padding-right: 0;
        }

        .contact-direct-item {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #fff;
        }

        .contact-direct-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(245, 215, 122, 0.12);
            border: 1px solid rgba(245, 215, 122, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f5d77a;
            font-size: var(--font-size-icon-md);
            flex-shrink: 0;
        }

        .contact-direct-item small {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: var(--font-size-nav-lg) !important;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .contact-direct-item a,
        .contact-direct-item span.value {
            color: #fff;
            font-weight: 500;
            font-size: var(--font-size-nav-lg) !important;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.2s ease;
        }

        .contact-direct-item a:hover {
            color: #f5d77a;
        }

        .contact-social {
            display: flex;
            gap: 12px;
            margin: 0;
        }

        .contact-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
            text-decoration: none;
        }

        .contact-social a:hover {
            background: #f5d77a;
            border-color: #f5d77a;
            color: #8B2C2C;
            transform: translateY(-2px);
        }

        .footer-bottom {
            margin-top: 32px;
            color: rgba(255, 255, 255, 0.6);
            font-size: var(--font-size-xs);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
        }

        .footer-bottom span {
            font-size: var(--font-size-nav-lg) !important;
        }

        @media (max-width: 767px) {
            .contact-card {
                padding: 28px 22px;
            }

            .contact-intro {
                text-align: center;
            }

            .contact-intro p {
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 991px) {
            .contact-direct-bar .row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 575px) {
            .contact-direct-bar .row {
                grid-template-columns: 1fr;
            }

            .contact-direct-item span.value {
                white-space: normal;
            }
        }




        /* ===== Gallery page ===== */
        .gallery-header {
            padding: 80px 0 40px;
        }

        .gallery-title {
            color: #8B2C2C;
            font-weight: 700;
            font-size: var(--font-size-h1);
            letter-spacing: -1px;
            margin-bottom: 18px;
            line-height: 1.1;
        }

        .gallery-intro {
            max-width: 720px;
            color: #555;
            font-size: var(--font-size-body);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .gallery-meta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #8B2C2C;
            font-weight: 600;
            font-size: var(--font-size-xs);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 8px 18px;
            border: 1px solid rgba(139, 44, 44, 0.25);
            border-radius: 999px;
            background: rgba(139, 44, 44, 0.04);
        }

        .gallery-meta span {
            font-size: var(--font-size-xs) !important;
        }

        .gallery-grid-section {
            padding: 30px 0 80px;
        }

        .gallery-grid {
            --gap: 14px;
            --cols: 3;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--gap);
        }

        /* Columns adapt to how many photos a gallery has: fewer photos → larger images */
        .gallery-cols-1 { --cols: 1; }
        .gallery-cols-2 { --cols: 2; }
        .gallery-cols-3 { --cols: 3; }

        .gallery-item {
            flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
            max-width: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
            position: relative;
            display: block;
            border-radius: 14px;
            overflow: hidden;
            aspect-ratio: var(--item-ratio, 4 / 3);
            background: #f4f0ed;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: zoom-in;
        }

        /* A single photo gets a comfortable cap so it isn't full-bleed */
        .gallery-cols-1 .gallery-item {
            max-width: min(70%, 760px);
        }

        @media (max-width: 991px) {
            .gallery-cols-3 { --cols: 2; }
        }

        @media (max-width: 575px) {
            .gallery-cols-2,
            .gallery-cols-3 { --cols: 1; }

            .gallery-cols-1 .gallery-item {
                max-width: 100%;
            }
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
        }

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

        .gallery-item:hover img {
            transform: scale(1.06);
        }

        .gallery-item:first-child img {
            object-position: right center;
        }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(40, 12, 12, 0.0);
            color: #fff;
            font-size: var(--font-size-icon-xl);
            opacity: 0;
            transition: background 0.35s ease, opacity 0.35s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            background: rgba(40, 12, 12, 0.45);
            opacity: 1;
        }

        .gallery-cta {
            background: #f7f4f0;
            padding: 70px 0;
        }

        .gallery-cta h3 {
            color: #8B2C2C;
            font-weight: 600;
            font-size: var(--font-size-h3);
            margin-bottom: 12px;
        }

        .gallery-cta p {
            max-width: 860px;
            margin: 0 auto 28px;
            color: #555;
            font-size: var(--font-size-body);
            line-height: 1.6;
        }

        /* ===== Lightbox ===== */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(15, 8, 8, 0.94);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 60px 70px;
        }

        .lightbox.is-open {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 100%;
            max-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content img {
            max-width: 100%;
            width: 70vw;
            max-height: 70vh;
            border-radius: 6px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            object-fit: contain;
        }

        .lightbox-counter {
            position: absolute;
            bottom: -38px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            font-size: var(--font-size-xs);
            letter-spacing: 1.5px;
            font-weight: 500;
        }

        .lightbox-nav {
            position: absolute;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .lightbox-close-btn {
            position: absolute;
            top: 24px;
            left: 24px;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            background: #ffffff;
            border: 2px solid #ffffff;
            color: #8B2C2C;
            border-radius: 999px;
            font-size: var(--font-size-icon-md);
            font-weight: 700;
            letter-spacing: 0.3px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
            transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
        }

        .lightbox-close-btn:hover {
            background: #f5d77a;
            color: #8B2C2C;
            border-color: #f5d77a;
            transform: scale(1.05);
        }

        .lightbox-nav {
            top: 50%;
            transform: translateY(-50%);
            width: 54px;
            height: 54px;
            border-radius: 50%;
            font-size: var(--font-size-icon-lg);
        }

        .lightbox-prev {
            left: 18px;
        }

        .lightbox-next {
            right: 18px;
        }

        .lightbox-nav:hover {
            background: rgba(245, 215, 122, 0.85);
            color: #8B2C2C;
            border-color: #f5d77a;
        }

        .lightbox-nav:hover {
            transform: translateY(-50%) scale(1.06);
        }

        @media (max-width: 575px) {
            .lightbox {
                padding: 50px 12px;
            }

            .lightbox-nav {
                width: 42px;
                height: 42px;
                font-size: var(--font-size-icon-md);
            }

            .lightbox-prev {
                left: 8px;
            }

            .lightbox-next {
                right: 8px;
            }
        }

        /* ===== Contact page ===== */
        .contact-page-header {
            padding: 80px 0 50px;
        }

        .contact-page-title {
            color: #8B2C2C;
            font-weight: 700;
            font-size: var(--font-size-h1);
            letter-spacing: -1px;
            margin-bottom: 18px;
            line-height: 1.1;
        }

        .contact-page-intro {
            max-width: 680px;
            color: #555;
            font-size: var(--font-size-body);
            line-height: 1.7;
        }

        .contact-page-body {
            padding-bottom: 90px;
        }

        .contact-sidebar {
            background: linear-gradient(135deg, #8B2C2C 0%, #6d2222 100%);
            border-radius: 22px;
            padding: 36px 32px;
            color: #fff;
            box-shadow: 0 18px 50px rgba(139, 44, 44, 0.25);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .contact-sidebar::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #c9a24d, #f5d77a, #c9a24d);
        }

        .contact-sidebar-block {
            padding: 22px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.13);
            position: relative;
        }

        .contact-sidebar-block:first-child {
            padding-top: 8px;
        }

        .contact-sidebar-block:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-sidebar-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(245, 215, 122, 0.14);
            border: 1px solid rgba(245, 215, 122, 0.28);
            color: #f5d77a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: var(--font-size-ui);
            margin-bottom: 10px;
        }

        .contact-sidebar-block small {
            display: block;
            color: rgba(255, 255, 255, 0.55);
            font-size: var(--font-size-nav-lg) !important;
            letter-spacing: 1.4px;
            text-transform: uppercase;
            margin-bottom: 4px;
            font-weight: 600;
        }

        .contact-sidebar-block a,
        .contact-sidebar-block .value {
            color: #fff;
            font-weight: 500;
            font-size: var(--font-size-nav-lg) !important;
            text-decoration: none;
            line-height: 1.5;
            transition: color 0.2s ease;
        }

        .contact-sidebar-block a:hover {
            color: #f5d77a;
        }

        /* ===== Dropdown navbar ===== */
        .navbar .dropdown-menu {
            border: none;
            border-radius: 14px;
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
            padding: 12px 8px;
            min-width: 240px;
            margin-top: 8px;
        }

        .navbar .dropdown-header {
            font-size: var(--font-size-dropdown-header);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c9a24d;
            padding: 10px 14px 6px;
        }

        .navbar .dropdown-item {
            padding: 9px 14px;
            border-radius: 8px;
            font-size: var(--font-size-nav);
            color: #333;
            font-weight: 500;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .navbar .dropdown-item:hover,
        .navbar .dropdown-item:focus {
            background: rgba(139, 44, 44, 0.08);
            color: #8B2C2C;
        }

        .navbar .dropdown-item.fw-bold {
            color: #8B2C2C;
        }

        .navbar .dropdown-divider {
            margin: 8px 6px;
            opacity: 0.12;
        }

        /* Mobile menu (< 1200px) */
        @media (max-width: 1199px) {
            #mainNavbar {
                padding: 16px 4px 8px;
                border-top: 1px solid rgba(0, 0, 0, 0.08);
            }

            #mainNavbar .navbar-nav {
                gap: 2px !important;
            }

            #mainNavbar .nav-link {
                padding: 10px 8px;
                border-radius: 8px;
            }

            #mainNavbar .nav-link:hover,
            #mainNavbar .nav-link:focus {
                background: rgba(139, 44, 44, 0.06);
                color: #8B2C2C !important;
            }

            #mainNavbar .btn-book {
                width: 100%;
                text-align: center;
                margin-top: 10px;
                max-width: 100%;
            }

            .guest-box {
                width: 100%;
                justify-content: space-between;
            }

            div.location-text {
                text-align: center;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                max-width: 100%;
            }

            div.location-img {
                display: flex;
                width: 100%;
                flex-direction: column;
                align-items: center;
                max-width: 100%;
            }
        }
