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

:root {
    --forest: #1a3a2a;
    --forest-light: #2a5a42;
    --forest-dark: #0f2419;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --sage: #8fa88a;
    --sage-light: #b5c4b0;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 1px 30px rgba(26, 58, 42, 0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--forest);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-icon {
    color: var(--forest);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--forest);
}

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

.nav-link--cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--forest);
    border-radius: 100px;
    color: var(--forest);
    transition: all var(--transition);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--forest);
    color: var(--cream-light);
}

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

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--forest);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    background: var(--cream-light);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.hero-content {
    padding-right: 2rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sage);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--forest);
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
}

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

.hero-sub {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary {
    background: var(--forest);
    color: var(--cream-light);
    border-color: var(--forest);
}

.btn--primary:hover {
    background: var(--forest-light);
    border-color: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(26, 58, 42, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--forest);
    border-color: var(--cream-dark);
}

.btn--ghost:hover {
    border-color: var(--forest);
    background: rgba(26, 58, 42, 0.04);
}

.btn--full {
    width: 100%;
}

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

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 80%;
    overflow: hidden;
    border-radius: 2px;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.hero-image-main:hover img {
    transform: scale(1.03);
}

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 40%;
    overflow: hidden;
    border-radius: 2px;
    border: 4px solid var(--cream-light);
    box-shadow: 0 20px 60px rgba(26, 58, 42, 0.12);
}

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

.hero-stats {
    position: absolute;
    bottom: 38%;
    right: -1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
}

.hero-stat {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.hero-line {
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--sage-light) 50%, transparent 100%);
    opacity: 0.2;
}

/* ── SECTION COMMON ── */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--forest);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--sage);
    margin-bottom: 1rem;
}

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

/* ── ABOUT ── */
.about {
    padding: 8rem 0;
    background: var(--cream-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.about-content {
    padding-top: 0.5rem;
}

.about-body {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-divider {
    width: 60px;
    height: 1px;
    background: var(--cream-dark);
    margin: 2.5rem 0;
}

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

.about-detail {
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.detail-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--forest);
    font-weight: 400;
}

/* ── AMENITIES ── */
.amenities {
    padding: 8rem 0;
    background: var(--cream);
}

.amenities-header {
    max-width: 560px;
    margin-bottom: 4rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
}

.amenity-card {
    background: var(--cream);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
}

.amenity-card:hover {
    background: var(--white);
}

.amenity-icon {
    width: 40px;
    height: 40px;
    color: var(--forest);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.amenity-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.amenity-desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── COMMUNITY ── */
.community {
    padding: 8rem 0;
    background: var(--cream-light);
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.community-visual {
    position: relative;
    height: 650px;
}

.community-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.community-content {
    padding-top: 1rem;
}

.community-body {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.community-values {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.value-num {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--sage);
    font-weight: 400;
    min-width: 28px;
}

.value-text {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.01em;
}

/* ── LOCATION ── */
.location {
    padding: 8rem 0;
    background: var(--cream);
}

.location-header {
    max-width: 560px;
    margin-bottom: 3rem;
}

.location-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
}

.location-map {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 40px rgba(26, 58, 42, 0.08);
}

/* ── CONTACT ── */
.contact {
    padding: 8rem 0;
    background: var(--cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
    transition: color var(--transition);
}

.contact-detail:hover {
    color: var(--forest);
}

.contact-detail svg {
    color: var(--sage);
    flex-shrink: 0;
}

.contact-detail a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.contact-form-wrap {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 40px rgba(26, 58, 42, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 0;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--cream-dark);
    outline: none;
    transition: border-color var(--transition);
}

.form-input::placeholder {
    color: var(--cream-dark);
}

.form-input:focus {
    border-bottom-color: var(--forest);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success.visible {
    display: flex;
}

.form-success svg {
    color: var(--forest);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest);
}

.success-text {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
    background: var(--forest);
    color: var(--cream);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--sage-light);
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--sage-light);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.7;
    transition: all var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sage-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-contact a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.7;
    transition: all var(--transition);
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--sage-light);
}

.footer-contact span {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.7;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--sage);
    opacity: 0.6;
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-visual {
        height: 450px;
        order: 2;
    }

    .about-grid,
    .community-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 242, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 2rem;
    }

    .hero-grid {
        min-height: auto;
        padding: 2rem;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        margin-top: 1.5rem;
    }

    .hero-stat {
        flex: 1;
    }

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

    .community-visual {
        height: 400px;
    }

    .about-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }

    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.875rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-image-main {
        width: 100%;
        height: 100%;
    }
}
