        :root {
            --bg: #f3eadf;
            --bg-soft: #fbf7f1;
            --ink: #1d2d2f;
            --muted: #5b6b69;
            --line: rgba(29, 45, 47, 0.12);
            --panel: rgba(255, 252, 247, 0.82);
            --accent: #1e6b61;
            --accent-deep: #11453f;
            --accent-warm: #c98d42;
            --shadow: 0 24px 70px rgba(27, 40, 38, 0.12);
            --radius-xl: 34px;
            --radius-lg: 24px;
            --radius-md: 18px;
            --content: min(1180px, calc(100% - 32px));
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Manrope", sans-serif;
            color: var(--ink);
            background:
                radial-gradient(circle at top left, rgba(201, 141, 66, 0.22), transparent 24%),
                radial-gradient(circle at 86% 12%, rgba(30, 107, 97, 0.16), transparent 21%),
                linear-gradient(180deg, #f5ece1 0%, #efe3d4 28%, #f7f2ea 100%);
        }

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

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

        button {
            font: inherit;
        }

        .shell {
            width: var(--content);
            margin: 0 auto;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(18px);
            background: rgba(247, 242, 234, 0.78);
            border-bottom: 1px solid rgba(29, 45, 47, 0.08);
        }

        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            min-height: 82px;
            position: relative;
        }

        .brand-mark {
            display: flex;
            align-items: center;
            gap: 0;
            padding: 10px 8px 10px 4px;
            border-radius: 24px;
        }

        .brand-badge {
            width: 300px;
            max-width: 100%;
        }

        .brand-badge img {
            width: 300px;
            max-width: 100%;
            height: auto;
            display: block;
        }

        .eyebrow,
        .stat-label,
        .section-kicker,
        .mini-label {
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .header-nav {
            display: flex;
            align-items: center;
            gap: 22px;
            color: var(--muted);
            font-size: 0.95rem;
        }

        .header-links {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .desktop-lang {
            display: inline-flex;
        }

        .header-actions,
        .mobile-lang-panel {
            display: none;
        }

        .header-icon-button {
            width: 48px;
            height: 48px;
            border: 1px solid rgba(29, 45, 47, 0.1);
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.72);
            color: var(--ink);
            display: grid;
            place-items: center;
            cursor: pointer;
            box-shadow: 0 12px 28px rgba(29, 45, 47, 0.08);
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

        .header-icon-button:hover {
            transform: translateY(-1px);
        }

        .header-icon-button.is-active {
            background: var(--ink);
            color: #fff;
            border-color: transparent;
        }

        .header-icon-button svg {
            width: 22px;
            height: 22px;
        }

        .lang-switch {
            display: inline-flex;
            align-items: center;
            padding: 4px;
            border-radius: 999px;
            background: rgba(29, 45, 47, 0.08);
        }

        .lang-switch button {
            border: 0;
            background: transparent;
            color: var(--muted);
            border-radius: 999px;
            padding: 10px 16px;
            cursor: pointer;
            font-weight: 700;
        }

        .lang-switch button.is-active {
            background: #fff;
            color: var(--ink);
            box-shadow: 0 6px 18px rgba(29, 45, 47, 0.08);
        }

        .hero {
            padding: 42px 0 34px;
        }

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

        .hero-copy {
            padding: 24px 0;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 11px 16px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.68);
            border: 1px solid rgba(29, 45, 47, 0.08);
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--muted);
        }

        .eyebrow::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--accent);
        }

        h1,
        h2 {
            font-family: "Cormorant Garamond", serif;
            line-height: 0.94;
            margin: 0;
        }

        h1 {
            margin-top: 22px;
            font-size: clamp(3.9rem, 10vw, 7.4rem);
            letter-spacing: -0.04em;
        }

        .hero-lead {
            max-width: 640px;
            margin: 22px 0 0;
            font-size: 1.16rem;
            line-height: 1.8;
            color: var(--muted);
        }

        .hero-category {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 18px;
            padding: 12px 16px;
            border-radius: 18px;
            background: rgba(255, 252, 247, 0.78);
            border: 1px solid rgba(29, 45, 47, 0.08);
            color: var(--ink);
            font-weight: 700;
            box-shadow: 0 16px 34px rgba(29, 45, 47, 0.08);
        }

        .hero-category-stars,
        .hero-badge-stars {
            color: var(--accent-warm);
            letter-spacing: 0.14em;
            font-size: 1rem;
            white-space: nowrap;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            padding: 0 24px;
            border-radius: 999px;
            font-weight: 800;
            transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
        }

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

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
            color: #fff;
            box-shadow: 0 18px 40px rgba(17, 69, 63, 0.22);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.74);
            color: var(--ink);
            border: 1px solid rgba(29, 45, 47, 0.08);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
            margin-top: 28px;
        }

        .stat-card,
        .detail-card,
        .story-card,
        .gallery-card,
        .amenity-card,
        .distance-card,
        .cta-card,
        .highlight-card {
            background: var(--panel);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            backdrop-filter: blur(12px);
        }

        .stat-card {
            padding: 18px;
            border-radius: 22px;
        }

        .stat-value {
            font-size: 1.48rem;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.7rem;
            color: var(--muted);
        }

        .hero-visual {
            position: relative;
            min-height: 640px;
        }

        .hero-photo-stack {
            position: absolute;
            inset: 0;
            border-radius: 38px;
            overflow: hidden;
            background: #d6c4ae;
            box-shadow: 0 34px 80px rgba(29, 45, 47, 0.2);
        }

        .hero-photo-stack::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(18, 32, 34, 0.06), rgba(18, 32, 34, 0.26));
        }

        .hero-photo-stack img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-photo-badge {
            position: absolute;
            top: 22px;
            left: 22px;
            z-index: 1;
            display: grid;
            gap: 4px;
            max-width: min(270px, calc(100% - 44px));
            padding: 14px 16px;
            border-radius: 20px;
            background: rgba(255, 252, 247, 0.88);
            border: 1px solid rgba(29, 45, 47, 0.08);
            box-shadow: 0 18px 38px rgba(29, 45, 47, 0.16);
            backdrop-filter: blur(12px);
        }

        .hero-photo-badge .mini-label {
            color: var(--muted);
        }

        .floating-note,
        .floating-rating {
            position: absolute;
            z-index: 1;
            border-radius: 24px;
            padding: 18px 20px;
        }

        .floating-note {
            left: -14px;
            bottom: 42px;
            max-width: 235px;
        }

        .floating-rating {
            right: -14px;
            top: 28px;
            min-width: 170px;
        }

        .floating-note strong,
        .floating-rating strong {
            display: block;
            font-size: 1.36rem;
            margin-top: 6px;
        }

        .floating-note p,
        .floating-rating p,
        .story-copy,
        .distance-text,
        .footer-note {
            color: var(--muted);
        }

        .section {
            padding: 34px 0;
        }

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

        .section-kicker,
        .mini-label {
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--accent);
        }

        .section-title {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            margin-top: 8px;
        }

        .section-intro {
            max-width: 620px;
            color: var(--muted);
            line-height: 1.8;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 1.08fr 0.92fr;
            gap: 24px;
        }

        .story-card,
        .detail-card,
        .cta-card {
            border-radius: var(--radius-xl);
        }

        .story-card {
            padding: 34px;
        }

        .story-copy {
            font-size: 1.04rem;
            line-height: 1.95;
        }

        .detail-stack {
            display: grid;
            gap: 18px;
        }

        .detail-card {
            padding: 24px;
        }

        .detail-list {
            margin: 16px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .detail-list li {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(29, 45, 47, 0.08);
        }

        .detail-list li:last-child {
            padding-bottom: 0;
            border-bottom: 0;
        }

        .detail-list span:last-child {
            text-align: right;
            font-weight: 700;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 18px;
        }

        .gallery-primary,
        .gallery-secondary {
            display: grid;
            gap: 18px;
        }

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

        .gallery-card {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            min-height: 240px;
            cursor: pointer;
            border: 0;
            padding: 0;
            width: 100%;
            background: transparent;
            appearance: none;
        }

        .gallery-card.tall {
            min-height: 520px;
        }

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

        .gallery-caption {
            position: absolute;
            left: 16px;
            bottom: 16px;
            border-radius: 999px;
            padding: 10px 14px;
            background: rgba(255, 252, 247, 0.82);
            color: var(--ink);
            font-size: 0.82rem;
            font-weight: 800;
        }

        .gallery-card:focus-visible,
        .lightbox-btn:focus-visible,
        .lightbox-close:focus-visible {
            outline: 3px solid rgba(201, 141, 66, 0.9);
            outline-offset: 3px;
        }

        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 120;
            display: grid;
            place-items: center;
            padding: 24px;
            background: rgba(12, 20, 22, 0.84);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.24s ease, visibility 0.24s ease;
        }

        .lightbox.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .lightbox-dialog {
            position: relative;
            width: min(1100px, 100%);
            max-height: calc(100vh - 48px);
            max-height: calc(100svh - 48px);
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            gap: 16px;
            align-items: center;
        }

        .lightbox-figure {
            margin: 0;
            position: relative;
            display: flex;
            flex-direction: column;
            max-height: calc(100vh - 48px);
            max-height: calc(100svh - 48px);
            border-radius: 28px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
        }

        .lightbox-image {
            display: block;
            max-width: min(82vw, 920px);
            max-height: calc(100vh - 150px);
            max-height: calc(100svh - 150px);
            width: auto;
            height: auto;
            object-fit: contain;
            background: #10201f;
        }

        .lightbox-caption {
            position: static;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 16px 18px;
            background: rgba(255, 252, 247, 0.96);
            color: var(--ink);
            font-size: 0.92rem;
            font-weight: 700;
        }

        .lightbox-controls {
            display: contents;
        }

        .lightbox-btn,
        .lightbox-close {
            border: 0;
            border-radius: 999px;
            background: rgba(255, 252, 247, 0.92);
            color: var(--ink);
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
        }

        .lightbox-btn {
            width: 54px;
            height: 54px;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .lightbox-close {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
            width: 46px;
            height: 46px;
            font-size: 1.6rem;
            line-height: 1;
        }

        .highlights-grid,
        .amenities-grid,
        .distances-grid,
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
        }

        .highlight-card,
        .amenity-card,
        .distance-card {
            border-radius: 24px;
            padding: 22px;
        }

        .highlight-card strong,
        .amenity-card strong,
        .distance-card strong {
            display: block;
            font-size: 1.06rem;
            margin: 10px 0 8px;
        }

        .highlight-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: rgba(30, 107, 97, 0.12);
            color: var(--accent);
            display: grid;
            place-items: center;
            font-weight: 800;
        }

        .amenity-card ul {
            margin: 14px 0 0;
            padding-left: 18px;
            color: var(--muted);
            line-height: 1.9;
        }

        .distance-text {
            line-height: 1.75;
        }

        .reviews-layout {
            max-width: 1080px;
            margin: 0 auto;
        }

        .reviews-mobile-list {
            display: none;
        }

        .reviews-marquee {
            position: relative;
            overflow: hidden;
            width: min(100%, 1080px);
            margin: 0 auto;
            height: 860px;
            border-radius: 36px;
            padding: 32px;
            background: rgba(255, 252, 247, 0.56);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
        }

        .reviews-marquee::before,
        .reviews-marquee::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            height: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .reviews-marquee::before {
            top: 0;
            background: linear-gradient(180deg, rgba(247, 242, 234, 0.98) 0%, rgba(247, 242, 234, 0) 100%);
        }

        .reviews-marquee::after {
            bottom: 0;
            background: linear-gradient(0deg, rgba(247, 242, 234, 0.98) 0%, rgba(247, 242, 234, 0) 100%);
        }

        .reviews-columns {
            display: grid;
            grid-template-columns: repeat(2, minmax(320px, 420px));
            justify-content: center;
            align-items: start;
            gap: 32px;
            height: 100%;
        }

        .reviews-track {
            display: grid;
            gap: 22px;
            align-content: start;
            will-change: transform;
            min-width: 0;
        }

        .reviews-track.down {
            animation: reviews-down 52s linear infinite;
        }

        .reviews-track.up {
            animation: reviews-up 52s linear infinite;
        }

        .reviews-marquee.is-paused .reviews-track {
            animation-play-state: paused;
        }

        .review-card {
            position: relative;
            padding: 22px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(29, 45, 47, 0.08);
            box-shadow: 0 16px 34px rgba(29, 45, 47, 0.08);
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .review-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 38px rgba(29, 45, 47, 0.1);
        }

        .review-card:focus-visible {
            outline: 3px solid rgba(201, 141, 66, 0.9);
            outline-offset: 3px;
        }

        .review-card::after {
            content: "+";
            position: absolute;
            top: 18px;
            right: 18px;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background: rgba(30, 107, 97, 0.12);
            color: var(--accent);
            font-size: 1rem;
            font-weight: 800;
        }

        .review-card.is-expanded::after {
            content: "-";
        }

        .review-card strong {
            display: block;
            font-size: 1.02rem;
            margin: 8px 0 10px;
        }

        .review-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 12px;
        }

        .review-author {
            font-size: 1rem;
            font-weight: 800;
            margin: 0;
        }

        .review-badge {
            display: inline-flex;
            align-items: center;
            padding: 7px 10px;
            border-radius: 999px;
            background: rgba(124, 170, 115, 0.12);
            color: #54714c;
            font-size: 0.74rem;
            font-weight: 700;
        }

        .review-stars {
            margin: 0 0 10px;
            color: #d19a2b;
            letter-spacing: 0.14em;
            font-size: 0.95rem;
        }

        .review-location,
        .review-age {
            display: block;
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 12px;
        }

        #reviews .section-head {
            max-width: 1080px;
            margin: 0 auto 24px;
        }

        .review-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.8;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .review-card.is-expanded p {
            display: block;
            -webkit-line-clamp: unset;
            overflow: visible;
        }

        .review-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(30, 107, 97, 0.1);
            color: var(--accent);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        @keyframes reviews-down {
            0% { transform: translateY(-48%); }
            100% { transform: translateY(0%); }
        }

        @keyframes reviews-up {
            0% { transform: translateY(0%); }
            100% { transform: translateY(-48%); }
        }

        .map-card {
            margin-top: 24px;
            border-radius: 30px;
            overflow: hidden;
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            background: #fff;
        }

        .map-card iframe {
            width: 100%;
            height: 360px;
            border: 0;
        }

        .cta-card {
            padding: 34px;
            border: 1px solid rgba(249, 246, 241, 0.12);
            background-color: #16564f;
            background-image:
                radial-gradient(circle at top right, rgba(201, 141, 66, 0.22), transparent 26%),
                linear-gradient(135deg, rgba(17, 69, 63, 0.97) 0%, rgba(30, 107, 97, 0.92) 100%);
            color: #f9f6f1;
        }

        .cta-card .section-title {
            color: #f9f6f1;
        }

        .cta-card .section-kicker,
        .cta-card .section-intro,
        .cta-card .footer-note {
            color: rgba(249, 246, 241, 0.8);
        }

        .cta-actions {
            align-items: end;
        }

        .cta-option {
            display: grid;
            gap: 10px;
        }

        .cta-discount {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            align-self: flex-start;
            min-height: 32px;
            padding: 0 14px;
            border-radius: 999px;
            background: #c63d2f;
            color: #fff6f3;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            box-shadow: 0 14px 28px rgba(198, 61, 47, 0.24);
        }

        .btn-secondary.cta-direct-btn {
            background: rgba(255, 252, 247, 0.94);
        }

        .reservation-wrap {
            display: grid;
            grid-template-columns: 0.92fr 1.08fr;
            gap: 24px;
            padding: 30px;
            border-radius: var(--radius-xl);
            background: rgba(255, 252, 247, 0.72);
            border: 1px solid var(--line);
            box-shadow: var(--shadow);
            backdrop-filter: blur(12px);
        }

        .reservation-copy {
            padding: 6px 6px 6px 0;
        }

        .reservation-form {
            display: grid;
            gap: 16px;
        }

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

        .form-field {
            display: grid;
            gap: 8px;
        }

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

        .form-field label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--ink);
        }

        .form-input {
            width: 100%;
            min-height: 56px;
            padding: 14px 16px;
            border-radius: 18px;
            border: 1px solid rgba(29, 45, 47, 0.12);
            background: rgba(255, 255, 255, 0.9);
            color: var(--ink);
            font: inherit;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        textarea.form-input {
            min-height: 140px;
            resize: vertical;
        }

        .form-input:focus {
            outline: none;
            border-color: rgba(30, 107, 97, 0.5);
            box-shadow: 0 0 0 4px rgba(30, 107, 97, 0.12);
            transform: translateY(-1px);
        }

        .reservation-submit {
            justify-self: flex-start;
        }

        .reservation-submit[disabled] {
            opacity: 0.75;
            cursor: wait;
            transform: none;
        }

        .reservation-status {
            min-height: 1.5rem;
            margin: 0;
            font-weight: 700;
        }

        .reservation-status.is-pending {
            color: var(--muted);
        }

        .reservation-status.is-success {
            color: var(--accent);
        }

        .reservation-status.is-error {
            color: #b13d2b;
        }

        .reservation-note {
            margin: 0;
        }

        .site-footer {
            padding: 0 0 42px;
        }

        .footer-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding-top: 22px;
            border-top: 1px solid rgba(29, 45, 47, 0.1);
        }

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

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

        [data-i18n] {
            transition: opacity 0.18s ease;
        }

        @media (max-width: 1100px) {
            .hero-grid,
            .details-grid,
            .gallery-grid,
            .reservation-wrap {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: 540px;
            }

            .highlights-grid,
            .amenities-grid,
            .distances-grid,
            .reviews-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 840px) {
            .header-row,
            .footer-box,
            .section-head {
                flex-direction: column;
                align-items: flex-start;
            }

            .header-row {
                min-height: 96px;
                padding: 12px 0;
                flex-direction: row;
                align-items: center;
            }

            .brand-mark {
                gap: 0;
                padding: 10px 8px 10px 2px;
                flex: 0 0 auto;
            }

            .brand-badge {
                width: min(240px, 52vw);
            }

            .brand-badge img {
                width: 100%;
                height: auto;
            }

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

            .header-nav {
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                z-index: 30;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
                padding: 20px;
                border-radius: 28px;
                background: rgba(255, 252, 247, 0.96);
                border: 1px solid rgba(29, 45, 47, 0.08);
                box-shadow: var(--shadow);
                backdrop-filter: blur(18px);
            }

            .header-nav.is-open {
                display: flex;
            }

            .header-links {
                display: grid;
                gap: 0;
            }

            .header-links a {
                padding: 13px 0;
                font-size: 1rem;
                border-bottom: 1px solid rgba(29, 45, 47, 0.08);
            }

            .header-links a:last-child {
                border-bottom: 0;
            }

            .desktop-lang {
                display: none;
            }

            .mobile-lang-panel {
                position: absolute;
                top: calc(100% + 12px);
                right: 0;
                z-index: 31;
                display: none;
                padding: 14px;
                border-radius: 24px;
                background: rgba(255, 252, 247, 0.97);
                border: 1px solid rgba(29, 45, 47, 0.08);
                box-shadow: var(--shadow);
                backdrop-filter: blur(18px);
            }

            .mobile-lang-panel.is-open {
                display: block;
            }

            .mobile-lang-panel .lang-switch {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
                padding: 0;
                background: transparent;
            }

            .mobile-lang-panel .lang-switch button {
                min-width: 58px;
                background: rgba(29, 45, 47, 0.06);
            }

            .mobile-lang-panel .lang-switch button.is-active {
                background: var(--ink);
                color: #fff;
                box-shadow: none;
            }

            .hero-stats,
            .gallery-secondary,
            .highlights-grid,
            .amenities-grid,
            .distances-grid,
            .reviews-grid,
            .reservation-grid,
            .reviews-columns {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                min-height: auto;
            }

            .reviews-marquee {
                height: auto;
                padding: 18px;
            }

            .reviews-marquee {
                display: none;
            }

            .reviews-mobile-list {
                display: grid;
                gap: 18px;
            }

            .reviews-track.down,
            .reviews-track.up {
                animation: none;
            }

            .review-card p {
                -webkit-line-clamp: 2;
            }

            .lightbox {
                align-items: center;
                padding: 12px;
            }

            .lightbox-dialog {
                width: 100%;
                max-height: calc(100vh - 24px);
                max-height: calc(100svh - 24px);
                grid-template-columns: repeat(2, auto);
                gap: 12px;
                justify-content: center;
            }

            .lightbox-controls {
                display: flex;
                justify-content: center;
                order: 2;
            }

            .lightbox-figure {
                width: 100%;
                max-height: calc(100vh - 112px);
                max-height: calc(100svh - 112px);
                order: 1;
                grid-column: 1 / -1;
                border-radius: 24px;
            }

            .lightbox-image {
                width: 100%;
                max-width: 100%;
                max-height: calc(100vh - 210px);
                max-height: calc(100svh - 210px);
            }

            .lightbox-caption {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 14px 16px;
            }

            .floating-note,
            .floating-rating {
                position: static;
                margin-top: 16px;
            }

            .hero-photo-stack {
                position: relative;
                min-height: auto;
                display: flex;
                flex-direction: column;
                gap: 16px;
                overflow: visible;
                background: transparent;
                box-shadow: none;
            }

            .hero-photo-stack::after {
                display: none;
            }

            .hero-photo-stack img {
                order: 1;
                min-height: 380px;
                border-radius: 38px;
                box-shadow: 0 34px 80px rgba(29, 45, 47, 0.2);
            }

            .hero-photo-badge {
                position: static;
                order: 2;
                max-width: none;
            }

            h1 {
                font-size: clamp(3rem, 18vw, 4.8rem);
            }
        }
