/* Minimal policy list, styled like amenities-list */
.policy-list-minimal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    list-style: none;
    margin: 24px 0 32px 0;
    padding: 0;
    border: none;
    background: none;
    font-size: .9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    max-width: 540px;
    line-height: 1.8;
}

.policy-list-minimal li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.policy-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    display: inline-block;
}

/* ════════════════════════════════════════
   POLICY LIST (CANCELLATION)
════════════════════════════════════════ */
.policy-list {
    list-style: none;
    margin: 24px 0 32px 0;
    padding: 0;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(184, 145, 42, 0.04);
    max-width: 480px;
    font-size: .98rem;
    font-weight: 400;
    color: var(--charcoal);
}

.policy-list li {
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-bullet {
    color: var(--gold);
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

:root {
    --gold: #b8912a;
    --gold-light: #d4af5a;
    --gold-pale: #f0e4c2;
    --gold-dark: #8a6a1a;
    --cream: #faf8f3;
    --white: #ffffff;
    --charcoal: #2c2a26;
    --mid: #6b6458;
    --line: rgba(184, 145, 42, 0.25);

    --red-home: #c0392b;
    --green-home: #27ae60;
    --blue-home: #2980b9;
    --yellow-home: #e6ac00;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --max: 1160px;
    --radius: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 3px;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-logo img {
    height: 42px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.lang-switch {
    display: flex;
    gap: 6px;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .1em;
}

.lang-switch button {
    background: none;
    border: 1px solid transparent;
    color: var(--mid);
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: all .2s;
}

.lang-switch button.active,
.lang-switch button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-burger span {
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all .3s;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 60% at 50% 100%, rgba(184, 145, 42, 0.08) 0%, transparent 70%),
        var(--cream);
}


.hero-ornament {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(184, 145, 42, 0.10);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-ornament:nth-child(2) {
    width: 900px;
    height: 900px;
    border-color: rgba(184, 145, 42, 0.06);
}

.hero-ornament:nth-child(3) {
    width: 1200px;
    height: 1200px;
    border-color: rgba(184, 145, 42, 0.04);
}

.hero-eyebrow {
    font-size: .72rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-logo {
    width: 280px;
    max-width: 60vw;
    margin-bottom: 36px;
    animation: fadeUp .9s ease both;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 18px;
    animation: fadeUp 1s .15s ease both;
}

.hero-tagline em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub,
h2.hero-sub {
    font-size: .95rem;
    color: var(--mid);
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 56px;
    animation: fadeUp 1s .25s ease both;
}

/* 4 home cards in hero */
.hero-homes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: var(--max);
    animation: fadeUp 1s .4s ease both;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-decoration: none;
    color: var(--charcoal);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    transition: opacity .4s;
}

.hero-card:hover .hero-card-bg {
    opacity: 0.28;
}

.hero-card>*:not(.hero-card-bg) {
    position: relative;
    z-index: 1;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.hero-card.red::before {
    background: var(--red-home);
}

.hero-card.green::before {
    background: var(--green-home);
}

.hero-card.blue::before {
    background: var(--blue-home);
}

.hero-card.yellow::before {
    background: var(--yellow-home);
}

.hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
    border-color: var(--gold-light);
}

.home-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-icon svg {
    width: 100%;
    height: 100%;
}

.hero-card .home-num {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: .82rem;
    color: var(--mid);
    line-height: 1.6;
    font-weight: 300;
}

.scroll-cue {
    margin-top: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    animation: fadeUp 1s .6s ease both;
}

.scroll-cue span.line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: .4;
        transform: scaleY(.6);
    }
}

/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
section {
    padding: 100px 40px;
}

.container {
    max-width: var(--max);
    margin: 0 auto;
}

.section-label {
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: .9rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 56px;
}

.section-sub-policy {
    font-size: .9rem;
    color: var(--mid);
    line-height: 1.8;
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 15px;
}

.gold-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 32px;
}

/* ════════════════════════════════════════
   ACCOMMODATION SECTION
════════════════════════════════════════ */
#accommodation {
    background: var(--white);
}

.homes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.home-block {
    position: relative;
    aspect-ratio: 2/1;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.home-block-bg {
    position: absolute;
    inset: 0;
    transition: transform .6s ease;
}

.home-block:hover .home-block-bg {
    transform: scale(1.04);
}

.home-block.red .home-block-bg {
    background: linear-gradient(135deg, #7b1010 0%, #c0392b 40%, #e05a4a 100%);
}

.home-block.green .home-block-bg {
    background: linear-gradient(135deg, #1a5c30 0%, #27ae60 40%, #48c97a 100%);
}

.home-block.blue .home-block-bg {
    background: linear-gradient(135deg, #1a3f6b 0%, #2980b9 40%, #4aa3da 100%);
}

.home-block.yellow .home-block-bg {
    background: linear-gradient(135deg, #7a5500 0%, #e6ac00 40%, #f5c830 100%);
}

.home-block-img-placeholder {
    position: absolute;
    inset: 0;
    opacity: .25;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .05) 0, rgba(255, 255, 255, .05) 1px,
            transparent 1px, transparent 12px);
}

/* Photo opacity overlay on home blocks */
.home-block-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 14, 0.42);
    transition: background .4s;
    z-index: 1;
}

.home-block:hover .home-block-photo-overlay {
    background: rgba(20, 18, 14, 0.22);
}

.home-block-content {
    z-index: 2;
}

.home-block-arrow {
    z-index: 3;
}

.home-block-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 100%);
    color: white;
    transition: padding .3s;
}

.home-block:hover .home-block-content {
    padding-bottom: 40px;
}

.home-block-num {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 4px;
}

.home-block-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.home-block-meta {
    font-size: .78rem;
    opacity: .8;
    font-weight: 300;
}

.home-block-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.8);
    transition: all .3s;
}

.home-block:hover .home-block-arrow {
    opacity: 1;
    transform: scale(1);
}

/* ════════════════════════════════════════
   INDIVIDUAL HOME DETAIL SECTIONS
════════════════════════════════════════ */
.home-detail {
    padding: 100px 40px;
    border-top: 1px solid var(--line);
}

.home-detail:nth-child(odd) {
    background: var(--cream);
}

.home-detail:nth-child(even) {
    background: var(--white);
}

.home-detail-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.home-detail-inner.reverse {
    direction: rtl;
}

.home-detail-inner.reverse>* {
    direction: ltr;
}

.home-detail-color-bar {
    width: 4px;
    height: 48px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
    border-radius: 2px;
}

.red-bar {
    background: var(--red-home);
}

.green-bar {
    background: var(--green-home);
}

.blue-bar {
    background: var(--blue-home);
}

.yellow-bar {
    background: var(--yellow-home);
}

.home-detail-number {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.home-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.home-detail-desc {
    font-size: .9rem;
    color: var(--mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 36px;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 36px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: var(--charcoal);
    font-weight: 300;
}

.amenity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.red-dot {
    background: var(--red-home);
}

.green-dot {
    background: var(--green-home);
}

.blue-dot {
    background: var(--blue-home);
}

.yellow-dot {
    background: var(--yellow-home);
}

.home-detail-specs {
    display: flex;
    gap: 32px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
}

.spec {
    text-align: center;
}

.spec-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--charcoal);
}

.spec-label {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 400;
}

/* Accommodation overview images */
.accom-overview-imgs {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
    align-items: start;
}

.accom-img-wrap img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    display: block;
}

.accom-img-caption {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mid);
    text-align: center;
    margin-top: 8px;
}

@media (max-width: 700px) {
    .accom-overview-imgs {
        grid-template-columns: 1fr;
    }
}

/* ── GALLERY GRID (8 × 1:1) ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-grid .gallery-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.gallery-grid .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-grid .gallery-thumb:hover img {
    transform: scale(1.06);
}

.gallery-grid .gallery-thumb::after {
    content: '⤢';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    background: rgba(0, 0, 0, 0);
    transition: background .3s;
    pointer-events: none;
}

.gallery-grid .gallery-thumb:hover::after {
    background: rgba(0, 0, 0, .28);
}

/* ── LIGHTBOX ── */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(20, 18, 14, .94);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#lightbox.open {
    display: flex;
}

#lightbox-img {
    max-width: min(92vw, 900px);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
    user-select: none;
    width: auto;
    height: auto;
}

#lightbox-counter {
    margin-top: 14px;
    font-size: .72rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .45);
    font-family: var(--font-body);
}

.lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 1000;
}

.lb-btn:hover {
    background: rgba(255, 255, 255, .18);
}

#lb-prev {
    left: 20px;
}

#lb-next {
    right: 20px;
}

#lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .6);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    z-index: 1000;
    transition: color .2s;
}

#lb-close:hover {
    color: white;
}

/* ════════════════════════════════════════
   HOUSE RULES
════════════════════════════════════════ */
#house-rules {
    background: var(--charcoal);
    color: white;
}

#house-rules .section-title {
    color: white;
}

#house-rules .section-sub {
    color: rgba(255, 255, 255, .6);
}

#house-rules .section-sub-policy {
    color: rgba(255, 255, 255, .6);
}

#house-rules .section-label {
    color: var(--gold-light);
}

#house-rules .gold-line {
    background: var(--gold-light);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.rule-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 32px;
    transition: background .3s;
}

.rule-card:hover {
    background: rgba(255, 255, 255, .07);
}

.rule-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.rule-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--gold-light);
}

.rule-text {
    font-size: .82rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .65);
    font-weight: 300;
}

/* ── Location QR block ── */
.location-qr-wrap {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.location-qr {
    width: 130px;
    height: 130px;
    object-fit: contain;
    flex-shrink: 0;
}

.location-qr-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.location-qr-address {
    font-size: .92rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.5;
}

.location-qr-gps {
    font-size: .78rem;
    color: var(--mid);
    font-family: monospace;
    letter-spacing: .04em;
}

.location-qr-link {
    font-size: .78rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 4px;
}

.location-qr-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ════════════════════════════════════════
   LOCATION
════════════════════════════════════════ */
#location {
    background: var(--cream);
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #c8d8c0 0%, #a8c4b0 40%, #8ab08a 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: rgba(0, 0, 0, .5);
    letter-spacing: .1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.map-placeholder::after {
    content: '📍';
    position: absolute;
    font-size: 2.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.location-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.location-fact {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.location-fact-icon {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.location-fact-label {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.location-fact-value {
    font-size: .88rem;
    color: var(--charcoal);
    font-weight: 400;
}

.location-directions {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.location-directions h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--charcoal);
}

.location-directions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-directions li {
    font-size: .82rem;
    color: var(--mid);
    padding-left: 16px;
    position: relative;
    font-weight: 300;
    line-height: 1.6;
}

.location-directions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ── Location extended ── */
.loc-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.loc-subheading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-dark);
    margin: 28px 0 10px;
    letter-spacing: .02em;
}

.loc-body {
    font-size: .88rem;
    color: var(--mid);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 14px;
}

.loc-body em {
    color: var(--charcoal);
    font-style: italic;
}

.loc-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.loc-link:hover {
    color: var(--gold-dark);
}

.loc-full-block {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--line);
}

.loc-photo-wrap {
    margin-bottom: 48px;
    position: relative;
}

.loc-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.loc-photo-caption {
    margin-top: 10px;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    text-align: center;
}

.loc-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.loc-excursions {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-top: 10px;
}

.loc-excursions li {
    font-size: .82rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .loc-text-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .loc-excursions {
        grid-template-columns: 1fr;
    }
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact {
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: .92rem;
    color: var(--charcoal);
    font-weight: 400;
    text-decoration: none;
}

.contact-item-value:hover {
    color: var(--gold);
}

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 28px;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--charcoal);
    font-weight: 300;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 145, 42, 0.10);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Flexible dates checkbox */
.flex-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: .85rem;
    color: var(--charcoal);
    font-weight: 300;
    user-select: none;
}

.flex-check-label input[type="checkbox"] {
    display: none;
}

.flex-check-box {
    width: 18px;
    height: 18px;
    border: 1px solid var(--gold-light);
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
    transition: background .2s, border-color .2s;
}

.flex-check-label input:checked+.flex-check-box {
    background: var(--gold);
    border-color: var(--gold);
}

.flex-check-label input:checked+.flex-check-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

#date-fields {
    transition: opacity .3s, transform .3s;
}

#date-fields.disabled {
    opacity: .35;
    pointer-events: none;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: white;
    border: none;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .2s, transform .2s;
    width: 100%;
    justify-content: center;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, .55);
    padding: 48px 40px;
    text-align: center;
}

footer img {
    height: 38px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(5deg);
    opacity: .7;
}

footer p {
    font-size: .78rem;
    line-height: 1.8;
    font-weight: 300;
}

footer a {
    color: var(--gold-light);
    text-decoration: none;
}

footer a:hover {
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.animate {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════
   LANGUAGE HIDDEN
════════════════════════════════════════ */


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 24px 40px 32px;
        border-bottom: 1px solid var(--line);
        z-index: 99;
        gap: 20px;
    }

    .nav-burger {
        display: flex;
    }

    .hero-homes {
        grid-template-columns: 1fr 1fr;
    }

    .homes-grid {
        grid-template-columns: 1fr;
    }

    .home-detail-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-detail-inner.reverse {
        direction: ltr;
    }

    .rules-grid {
        grid-template-columns: 1fr 1fr;
    }

    .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    section {
        padding: 64px 24px;
    }

    nav {
        padding: 0 24px;
    }
}

@media (max-width: 560px) {
    .hero-homes {
        grid-template-columns: 1fr;
    }

    .rules-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .location-facts {
        grid-template-columns: 1fr;
    }
}

/* ── Lang link ── */
.lang-link {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    border: 1px solid var(--gold-light);
    padding: 4px 10px;
    border-radius: 2px;
    transition: all .2s;
    font-family: var(--font-body);
    margin-right: 8px;
}

.lang-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ── Hero intro paragraph ── */
.hero-intro {
    font-size: .88rem;
    color: var(--mid);
    max-width: 600px;
    line-height: 1.8;
    font-weight: 300;
    margin-top: -32px;
    margin-bottom: 48px;
    font-style: italic;
}

/* ── CTA section ── */
.cta-section {
    background: var(--gold);
    padding: 64px 40px;
    text-align: center;
}

.cta-text {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: white;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-section .btn-gold {
    background: white;
    color: var(--gold-dark);
}

.cta-section .btn-gold:hover {
    background: var(--cream);
}

/* Honeypot spam field — hidden from humans */
.form-honeypot {
    display: none !important;
    visibility: hidden;
}

/* Email obfuscation */
.email-protect .ep-u::after {
    content: attr(data-u);
}

.email-protect .ep-d::after {
    content: attr(data-d);
}

/* ── Form validation ── */
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #27ae60;
}

.field-error {
    font-size: .75rem;
    color: #c0392b;
    margin-top: 5px;
    display: none;
}

.field-error.show {
    display: block;
}