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

:root {
    --sage: #A8C09A;
    --sand: #F5E6D3;
    --bay-blue: #4A6FA5;
    --fog: #FAFAFA;
    --charcoal: #2C2C2C;
    --light-gray: #8C8C8C;
}

body {
    font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--fog);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    background: linear-gradient(to bottom, rgba(250,250,250,0.95), rgba(250,250,250,0));
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(250,250,250,0.98);
    backdrop-filter: blur(10px);
    padding: 20px 60px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 300;
    color: var(--charcoal);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(245,230,211,0.7) 0%, rgba(250,250,250,0.7) 100%), 
                url('../img/aerial-property-pool.webp') center/cover;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sage) 0%, var(--bay-blue) 100%);
    opacity: 0.0;
    color: var(--charcoal);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
    animation: fadeInUp 1.2s ease;
}

.hero h1 {
    font-size: 72px;
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.hero .tagline {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--light-gray);
    margin-bottom: 60px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 3px;
    height: 10px;
    background: var(--light-gray);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Section Styles */
section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.section-intro h2 {
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.section-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-gray);
    font-weight: 300;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 100px;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--bay-blue);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-image {
    height: 400px;
    background: url('../img/living-room-gathering.webp') center/cover;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--sage) 0%, var(--bay-blue) 100%);
    opacity: 0.0;
}

/* Space Section */
.space-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.feature {
    text-align: center;
}

.feature-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--sage);
    margin-bottom: 15px;
}

.feature-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    font-weight: 300;
}

/* Gatherings Section */
.gatherings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.gathering-card {
    padding: 40px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gathering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.gathering-type {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 15px;
}

.gathering-title {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.gathering-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-gray);
    font-weight: 300;
}

/* Apply Section */
.apply {
    background: linear-gradient(135deg, var(--sand) 0%, var(--fog) 100%);
    text-align: center;
    padding: 160px 60px;
}

.apply-content {
    max-width: 700px;
    margin: 0 auto;
}

.apply h2 {
    font-size: 42px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--charcoal);
}

.apply p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 50px;
    font-weight: 300;
}

.apply-button {
    display: inline-block;
    padding: 18px 60px;
    background: var(--charcoal);
    color: var(--fog);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid var(--charcoal);
}

.apply-button:hover {
    background: transparent;
    color: var(--charcoal);
}

/* Footer */
footer {
    padding: 60px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--light-gray);
    font-weight: 300;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Space Images */
.space-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.space-image-large,
.space-image-small {
    height: 450px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.space-image-small {
    height: 450px;
}

.space-image-large {
    background: url('../img/kitchen-bay-views.webp') center/cover;
}

.space-image-small {
    background: url('../img/pool-night.webp') center/cover;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .logo {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    section {
        padding: 80px 30px;
    }

    .section-intro h2 {
        font-size: 32px;
    }

    .section-intro p {
        font-size: 18px;
    }

    .about-grid,
    .gatherings-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .space-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .space-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .space-image-large,
    .space-image-small {
        height: 250px;
    }

    .gathering-card {
        padding: 30px;
    }

    .apply {
        padding: 100px 30px;
    }

    .apply h2 {
        font-size: 32px;
    }

    .apply p {
        font-size: 18px;
    }

    .apply-button {
        padding: 15px 40px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .hero .tagline {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .nav-links {
        font-size: 11px;
        gap: 10px;
    }
}