/* ===========================
   CSS Variables
   =========================== */
:root {
    --green-deep:    #1a3d32;
    --green-primary: #2d5f4f;
    --green-mid:     #3d7a67;
    --green-light:   #e9f3f0;
    --gold:          #d4af37;
    --gold-light:    #ecd060;
    --cream:         #faf9f6;
    --off-white:     #f3f1ec;
    --white:         #ffffff;
    --text-dark:     #182820;
    --text-body:     #4b5854;
    --text-muted:    #849890;
    --border:        #e2dfd8;

    --shadow-xs: 0 1px 4px rgba(24, 40, 32, 0.07);
    --shadow-sm: 0 3px 12px rgba(24, 40, 32, 0.09);
    --shadow-md: 0 8px 32px rgba(24, 40, 32, 0.12);
    --shadow-lg: 0 20px 60px rgba(24, 40, 32, 0.15);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem,   3.8vw, 3rem);   }
h3 { font-size: clamp(1.1rem, 2vw,   1.5rem);  }
h4 { font-size: 1rem; }

p {
    color: var(--text-body);
    margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

ul { list-style: none; }

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

/* ===========================
   Layout
   =========================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   Utility: Section Tag
   =========================== */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green-primary);
    background-color: var(--green-light);
    padding: 0.38rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.1rem;
}

.section-tag.light {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.18);
}

/* ===========================
   Utility: Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.9rem 2.1rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.94rem;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}
.btn-gold:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

.btn-outline-white {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--green-deep);
}

.btn-nav {
    background-color: var(--gold);
    color: var(--green-deep);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-color: var(--gold);
}
.btn-nav:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-1px);
}

/* ===========================
   Scroll Reveal Animation
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: padding var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
    padding: 0.6rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo-link {
    flex-shrink: 0;
    line-height: 0;
}

.nav-logo {
    height: 64px;
    width: auto;
    transition: height var(--duration) var(--ease);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 0.48rem 0.9rem;
    border-radius: var(--radius-sm);
    color: var(--text-body);
    transition: background-color var(--duration) var(--ease),
                color var(--duration) var(--ease);
}
.nav-link:hover,
.nav-link.active {
    color: var(--green-primary);
    background-color: var(--green-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: background-color var(--duration) var(--ease);
}
.hamburger:hover { background-color: var(--green-light); }

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   Mobile Menu
   =========================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(24, 40, 32, 0.55);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
    backdrop-filter: blur(4px);
}
.mobile-menu-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background-color: var(--green-deep);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 3rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    transition: color var(--duration) var(--ease);
    line-height: 0;
}
.mobile-close:hover { color: var(--white); }

.mobile-menu nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.9rem 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: color var(--duration) var(--ease),
                background-color var(--duration) var(--ease);
}
.mobile-nav-link:hover { color: var(--gold); background-color: rgba(255,255,255,0.05); }

.mobile-book-btn {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: var(--gold);
    color: var(--green-deep) !important;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-align: center;
}
.mobile-book-btn:hover {
    background-color: var(--gold-light) !important;
    color: var(--green-deep) !important;
}

/* ===========================
   Hero
   =========================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9rem 2rem 7rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(150deg,
            #0f2b21 0%,
            #1a4a37 25%,
            #206650 55%,
            #1a5c42 75%,
            #122d23 100%
        );
}

/* Subtle dot-grid texture */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* Vignette overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%,
        transparent 40%,
        rgba(10, 24, 18, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    animation: heroEntry 0.9s var(--ease) both;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.32);
    padding: 0.48rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 3rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}
.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===========================
   Stats Bar
   =========================== */
.stats-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.6rem 2.4rem;
    flex: 1;
    min-width: 160px;
    max-width: 240px;
}

.stat-icon {
    color: var(--green-primary);
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background-color: var(--border);
    flex-shrink: 0;
    align-self: center;
}

/* ===========================
   Photos Section
   =========================== */
.photos-section {
    padding: 5rem 0 4rem;
    background-color: var(--white);
}

.photos-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}
.photos-header h2 { margin-bottom: 0.6rem; margin-top: 0.3rem; }

/* 5-photo Airbnb-style grid */
.photo-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.photo-slot {
    position: relative;
    overflow: hidden;
    background-color: var(--off-white);
}

/* Large left photo spans both rows */
.photo-slot.photo-main {
    grid-row: 1 / 3;
}

/* Photo itself — works for both <img> and placeholder */
.photo-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.photo-slot:hover img {
    transform: scale(1.04);
}

/* Placeholder state (before real photos added) */
.photo-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #d8e8e3 0%, #c2d8d0 100%);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: center;
    padding: 1rem;
    transition: background 0.3s var(--ease);
}
.photo-placeholder svg { opacity: 0.4; }
.photo-slot:hover .photo-placeholder {
    background: linear-gradient(135deg, #cce0d9 0%, #b5cec5 100%);
}

/* "Show all photos" overlay button */
.view-all-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration) var(--ease),
                transform var(--duration) var(--ease);
    z-index: 2;
    white-space: nowrap;
}
.view-all-btn:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    color: var(--green-primary);
}

/* Extra photos grid — revealed by "Show all" toggle */
.extra-photos {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}
.extra-photos.gallery-collapsed {
    display: none;
}
.photo-thumb {
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    background-color: var(--off-white);
}
.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.photo-thumb:hover img {
    transform: scale(1.06);
}

/* Property gallery real-photo support */
.gallery-main img,
.img-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.gallery-main:hover img,
.img-placeholder:hover img {
    transform: scale(1.04);
}

/* ===========================
   Property Section
   =========================== */
.property {
    padding: 6rem 0 5rem;
    background-color: var(--cream);
}

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

/* Gallery */
.property-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.img-placeholder {
    background: linear-gradient(135deg, #d8e8e3 0%, #c5dbd5 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(45, 95, 79, 0.1);
}
.gallery-main    { aspect-ratio: 4 / 3; }
.img-placeholder.small { aspect-ratio: 3 / 2; }

.placeholder-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.placeholder-inner svg { opacity: 0.45; }

/* Property Info */
.property-info h2 {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--green-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.property-description {
    font-size: 1.03rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 2rem;
}

.property-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.1rem 1.4rem;
    background-color: var(--white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-xs);
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}
.highlight:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    background-color: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    flex-shrink: 0;
}

.highlight h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.highlight p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===========================
   Amenities
   =========================== */
.amenities {
    padding: 6rem 0;
    background-color: var(--green-deep);
    position: relative;
}

/* Subtle top wave */
.amenities::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23faf9f6' d='M0,30 C360,60 1080,0 1440,30 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
    pointer-events: none;
}

.amenities-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}
.amenities-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.amenities-header p  { color: rgba(255, 255, 255, 0.65); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.amenity-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-md);
    transition: background-color var(--duration) var(--ease),
                border-color var(--duration) var(--ease),
                transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
    backdrop-filter: blur(6px);
}
.amenity-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.1rem;
    transition: background-color var(--duration) var(--ease);
}
.amenity-card:hover .amenity-icon {
    background-color: rgba(212, 175, 55, 0.25);
}

.amenity-card h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   Local Area
   =========================== */
.local-area {
    padding: 6rem 0;
    background-color: var(--white);
}

.local-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.local-content .section-tag { margin-bottom: 1rem; }

.local-content h2 {
    margin-bottom: 1rem;
    margin-top: 0.2rem;
}

.local-content > p {
    font-size: 1.03rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.attractions-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.attractions-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: background-color var(--duration) var(--ease),
                border-color var(--duration) var(--ease);
}
.attractions-list li:hover {
    background-color: var(--green-light);
    border-color: rgba(45, 95, 79, 0.15);
}

.attraction-dot {
    width: 9px;
    height: 9px;
    background-color: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4rem;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.attractions-list strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.attractions-list span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Map card */
.local-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.map-embed-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}
.map-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.1rem 1.5rem;
    background-color: var(--white);
    color: var(--green-primary);
    font-weight: 600;
    font-size: 0.9rem;
    justify-content: center;
    border-top: 1px solid var(--border);
    transition: background-color var(--duration) var(--ease),
                color var(--duration) var(--ease);
}
.map-cta:hover {
    background-color: var(--green-light);
    color: var(--green-deep);
}

/* ===========================
   Book / CTA Section
   =========================== */
.book-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.book-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #152d24 0%, var(--green-primary) 50%, #1a5040 100%);
}
.book-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
}

.book-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.book-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 0.3rem;
}

.book-content > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.booking-platforms {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.93rem;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    border: 2px solid transparent;
    line-height: 1;
}

.booking-btn.primary {
    background-color: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
}
.booking-btn.primary:hover {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.45);
}

.booking-btn.outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}
.booking-btn.outline:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--green-deep);
}

.booking-note {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    margin: 0;
}

/* ===========================
   Contact
   =========================== */
.contact {
    padding: 6rem 0;
    background-color: var(--cream);
}

.contact-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3.5rem;
}
.contact-header h2 { margin-bottom: 0.75rem; margin-top: 0.3rem; }

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.contact-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform var(--duration) var(--ease),
                box-shadow var(--duration) var(--ease);
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card.featured {
    background-color: var(--green-primary);
    border-color: var(--green-primary);
}
.contact-card.featured h3,
.contact-card.featured p {
    color: var(--white);
}
.contact-card.featured p { color: rgba(255,255,255,0.8); }
.contact-card.featured .contact-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.contact-icon {
    width: 58px;
    height: 58px;
    background-color: var(--green-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.65;
}

.contact-link {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--duration) var(--ease);
}
.contact-link:hover { color: var(--gold); }

.contact-card.featured .contact-link {
    color: var(--gold);
}
.contact-card.featured .contact-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-badge {
    display: inline-block;
    background-color: var(--green-light);
    color: var(--green-primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

/* ===========================
   Footer
   =========================== */
footer {
    background-color: var(--green-deep);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo {
    height: 76px;
    width: auto;
    margin-bottom: 1.4rem;
    opacity: 0.85;
    border-radius: var(--radius-sm);
}

.footer-brand > p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: color var(--duration) var(--ease);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 0.6rem;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--duration) var(--ease);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    transition: color var(--duration) var(--ease);
}
.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.8); }

.made-by {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}
.made-by a {
    color: var(--gold);
    font-weight: 600;
    transition: color var(--duration) var(--ease);
}
.made-by a:hover { color: var(--gold-light); }

/* ===========================
   Legal Pages (Privacy & Terms)
   =========================== */

/* Navbar is always solid on legal pages — class set in HTML */
.navbar.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

/* Push content below fixed navbar */
.legal-main {
    padding-top: 80px; /* matches navbar height */
}

/* Page header strip */
.legal-hero {
    background-color: var(--green-deep);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    transition: color var(--duration) var(--ease);
    position: relative;
    z-index: 1;
}
.legal-back:hover { color: var(--gold); }

.legal-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

.legal-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Main content area */
.legal-body {
    padding: 3.5rem 0 5rem;
    background-color: var(--cream);
}

.legal-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 3rem 3.5rem;
    max-width: 860px;
    margin: 0 auto;
}

/* Lead paragraph */
.legal-intro {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
}

/* Each numbered section */
.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.legal-section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.1em;
    background-color: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.legal-section p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.96rem;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-section ul {
    margin: 0.5rem 0 0.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.legal-section li {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.7;
    padding-left: 1.4rem;
    position: relative;
}
.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.legal-section a {
    color: var(--green-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color var(--duration) var(--ease);
}
.legal-section a:hover { color: var(--gold); }

/* Contact info block */
.legal-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background-color: var(--green-light);
    border-left: 3px solid var(--green-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.5rem;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}
.legal-contact-block strong {
    color: var(--text-dark);
    font-weight: 700;
}
.legal-contact-block span {
    color: var(--text-body);
}
.legal-contact-block a {
    color: var(--green-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-contact-block a:hover { color: var(--gold); }

/* Bottom disclaimer notice (TOS only) */
.legal-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }
    .legal-hero {
        padding: 2.5rem 0 2rem;
    }
}

@media (max-width: 480px) {
    .legal-card {
        padding: 1.5rem 1.25rem;
    }
}

/* ===========================
   Responsive — 1024px
   =========================== */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ===========================
   Responsive — 768px
   =========================== */
@media (max-width: 768px) {
    .nav-links,
    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Photo grid — 2-column on mobile */
    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .photo-slot.photo-main {
        grid-column: 1 / 3; /* full width on top */
        grid-row: 1 / 2;
    }

    .hero {
        padding: 7rem 1.5rem 5rem;
    }

    .stats-grid {
        flex-wrap: wrap;
    }
    .stat-item {
        flex: 1 0 50%;
        max-width: none;
        border-bottom: 1px solid var(--border);
    }
    .stat-divider {
        display: none;
    }

    .property-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .property-gallery {
        order: -1;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .local-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .local-visual {
        max-width: 440px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ===========================
   Responsive — 480px
   =========================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    /* Photo grid — single column on small phones */
    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    .photo-slot.photo-main {
        grid-column: 1;
        grid-row: 1 / 2;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .stat-item {
        flex: 1 0 100%;
    }

    .booking-platforms {
        flex-direction: column;
        align-items: center;
    }
    .booking-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .gallery-secondary {
        grid-template-columns: 1fr;
    }
}
