*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0a2e4a;
    --midnight-light: #134b74;
    --mint: #7ec8a8;
    --mint-light: #a8dfc4;
    --mint-pale: #e8f5ee;
    --cream: #f8f7f4;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #8a8a8a;
    --line: #e0ded8;
    --line-light: #efeee9;
    
    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    
    --nav-h: 72px;
    --container: 1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(248, 247, 244, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.nav.scrolled .nav-logo {
    color: var(--midnight);
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a {
    color: var(--text-light);
}

.nav-links a:hover {
    color: var(--mint);
}

.nav.scrolled .nav-links a:hover {
    color: var(--midnight);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 8px 20px !important;
    border-radius: 0 !important;
    transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}

.nav.scrolled .nav-cta {
    border-color: var(--midnight) !important;
    color: var(--midnight) !important;
}

.nav-cta:hover {
    background: var(--mint) !important;
    border-color: var(--mint) !important;
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 1px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.nav.scrolled .nav-toggle span {
    background: var(--midnight);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 46, 74, 0.55) 0%,
        rgba(10, 46, 74, 0.35) 50%,
        rgba(10, 46, 74, 0.70) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 46, 74, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-light);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: var(--mint-light);
}

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--mint);
    color: var(--white);
    border: 1px solid var(--mint);
}

.btn-primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.35);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── INTRO / CAMPSITES ── */
.intro {
    padding: 120px 0 100px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--mint);
    flex-shrink: 0;
}

.label-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.2;
    color: var(--midnight);
    margin-bottom: 20px;
}

.section-title.thin {
    font-weight: 400;
}

.section-lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 480px;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.site-card {
    background: var(--white);
    border: 1px solid var(--line-light);
    transition: box-shadow 0.3s, transform 0.3s;
}

.site-card:hover {
    box-shadow: 0 12px 40px rgba(10, 46, 74, 0.08);
    transform: translateY(-4px);
}

.site-card-image {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.site-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.site-card:hover .site-card-image img {
    transform: scale(1.04);
}

.site-card-body {
    padding: 32px 28px;
}

.site-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    border: 1px solid var(--mint);
    padding: 4px 10px;
    margin-bottom: 16px;
}

.site-card-body h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--midnight);
    margin-bottom: 12px;
}

.site-card-body > p {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.site-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-features li {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.site-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 1px;
    background: var(--mint);
}

/* ── AMENITIES ── */
.amenities {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.amenities-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.amenity {
    text-align: center;
    padding: 0 16px;
}

.amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--midnight);
    margin-bottom: 10px;
}

.amenity p {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ── AREA ── */
.area {
    padding: 120px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.area-content .label-line {
    width: 40px;
}

.area-content .section-lead {
    max-width: none;
}

.area-highlights {
    display: flex;
    gap: 48px;
    margin-top: 16px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.area-highlight {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--midnight);
    line-height: 1;
}

.highlight-text {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.area-image {
    overflow: hidden;
    aspect-ratio: 7/9;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── GALLERY ── */
.gallery {
    padding: 100px 0 120px;
    background: var(--white);
    border-top: 1px solid var(--line-light);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item--wide {
    grid-column: span 2;
}

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

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

.gallery-item:nth-child(2) { aspect-ratio: 1; }
.gallery-item:nth-child(3) { aspect-ratio: 1; }
.gallery-item:nth-child(4) { aspect-ratio: 1; }

/* ── CTA ── */
.cta {
    padding: 120px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 200, 168, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-text .label-line {
    width: 40px;
    background: var(--mint);
}

.cta-text .label-text {
    color: var(--mint);
}

.cta-text .section-title {
    color: var(--white);
}

.cta-text .section-lead {
    color: rgba(255,255,255,0.6);
    max-width: none;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.6;
    transition: color 0.3s;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.contact-item:hover {
    color: var(--mint-light);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--mint);
}

/* ── FOOTER ── */
.footer {
    padding: 60px 0 40px;
    background: #061d2e;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-tagline {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--mint);
}

.footer-copy {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .area-grid {
        gap: 48px;
    }
    
    .cta-inner {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 64px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, box-shadow 0.3s;
        box-shadow: none;
    }
    
    .nav-links.open {
        max-height: 400px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 16px 24px;
        color: var(--text-light) !important;
        border-top: 1px solid var(--line-light);
    }
    
    .nav-links a:hover {
        background: var(--mint-pale);
        color: var(--midnight) !important;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-cta {
        border: none !important;
        text-align: center;
        color: var(--midnight) !important;
        margin-top: 8px;
    }
    
    .nav-cta:hover {
        background: var(--mint-pale) !important;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .area-grid {
        grid-template-columns: 1fr;
    }
    
    .area-image {
        order: -1;
        aspect-ratio: 4/3;
    }
    
    .area-highlights {
        gap: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--wide {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
    
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        aspect-ratio: 4/3;
    }
    
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .intro {
        padding: 80px 0 60px;
    }
    
    .amenities,
    .area,
    .gallery,
    .cta {
        padding: 80px 0;
    }
    
    .area-highlights {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links {
        gap: 20px;
    }
}
