/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a1a1a;
    background: #FDF8F6;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Colors ── */
:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5E1F2B;
    --blush: #F2D0C4;
    --blush-light: #FBE8E2;
    --cream: #FDF8F6;
    --warm-gray: #6B6560;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --border: #E8DDD8;
}

/* ── Utilities ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -9999px; z-index: 999; padding: 12px 24px; background: var(--burgundy); color: var(--white); border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; top: 0; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 24px;
}
.section-title--center { text-align: center; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-burgundy {
    background: var(--burgundy);
    color: var(--white);
    border: 2px solid var(--burgundy);
}
.btn-burgundy:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(123,45,59,0.25); }
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--burgundy); border: 2px solid var(--white); }
.btn-white:hover { background: var(--blush-light); border-color: var(--blush-light); transform: translateY(-1px); }

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253,248,246,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo--footer { margin-bottom: 16px; }
.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--burgundy);
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
}
.logo-mark::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 12px;
    background: var(--blush);
    border-radius: 3px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--dark); }
.logo-sub { font-size: 0.6875rem; font-weight: 500; color: var(--warm-gray); letter-spacing: 0.05em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.875rem; font-weight: 500; color: var(--warm-gray); transition: color 0.2s; }
.main-nav a:hover { color: var(--burgundy); }

.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; }
.nav-toggle:hover { background: var(--blush-light); }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--burgundy); }
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 28px;
}
.hero-headline .accent { color: var(--burgundy); font-style: italic; }
.hero-body {
    font-size: 1.125rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 0; }
.stat { flex: 1; padding: 20px 0; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); }
.stat-label { font-size: 0.8125rem; color: var(--warm-gray); margin-top: 4px; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; margin: 0 24px; }

.hero-visual { position: relative; height: 100%; min-height: 560px; }
.hero-img-main {
    width: 100%;
    height: 560px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(123,45,59,0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--white);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(123,45,59,0.3);
}
.hero-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}

/* ── About ── */
.about { padding: 120px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.about-image-accent {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: var(--blush);
    border-radius: 16px;
    z-index: -1;
}
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: var(--warm-gray); margin-bottom: 16px; font-size: 1.0625rem; }
.about-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}
.about-list li svg { color: var(--burgundy); flex-shrink: 0; }

/* ── Lifestyle ── */
.lifestyle {
    padding: 120px 0;
    background: var(--white);
}
.lifestyle .container { max-width: 1080px; }
.lifestyle .section-eyebrow,
.lifestyle .section-title { text-align: center; margin-bottom: 56px; }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.lifestyle-card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lifestyle-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.1); }
.lifestyle-card-img { height: 280px; overflow: hidden; }
.lifestyle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.lifestyle-card:hover .lifestyle-card-img img { transform: scale(1.04); }
.lifestyle-card-body { padding: 32px; }
.lifestyle-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}
.lifestyle-card-body p { color: var(--warm-gray); line-height: 1.7; }

/* ── Amenities ── */
.amenities { padding: 120px 0; background: var(--cream); }
.amenities-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.amenities-content .section-title { margin-bottom: 16px; }
.amenities-intro { color: var(--warm-gray); font-size: 1.0625rem; line-height: 1.7; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.amenity-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.amenity-item:hover { border-color: var(--blush); box-shadow: 0 8px 24px rgba(123,45,59,0.08); transform: translateY(-2px); }
.amenity-icon {
    width: 48px;
    height: 48px;
    background: var(--blush-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 20px;
}
.amenity-item h4 { font-size: 1.0625rem; margin-bottom: 8px; color: var(--dark); }
.amenity-item p { font-size: 0.875rem; color: var(--warm-gray); line-height: 1.6; }

/* ── Community ── */
.community { padding: 120px 0; background: var(--white); }
.community-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}
.community-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}
.community-content .section-title { margin-bottom: 20px; }
.community-content p { color: var(--warm-gray); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 16px; }
.community-content .btn { margin-top: 24px; }

/* ── Location ── */
.location { padding: 120px 0; background: var(--cream); }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.location-content .section-title { margin-bottom: 16px; }
.location-intro { color: var(--warm-gray); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 40px; }
.location-features { display: flex; flex-direction: column; gap: 20px; }
.location-feature { display: flex; flex-direction: column; gap: 4px; }
.lf-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--burgundy); }
.lf-text { font-size: 1rem; color: var(--dark); font-weight: 500; }
.location-map { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

/* ── CTA ── */
.cta {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-eyebrow { color: var(--blush); margin-bottom: 16px; }
.cta-title { color: var(--white); margin-bottom: 20px; }
.cta-body { color: rgba(255,255,255,0.8); font-size: 1.125rem; line-height: 1.7; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.5) 40px, rgba(255,255,255,0.5) 41px);
    pointer-events: none;
}

/* ── Contact ── */
.contact { padding: 120px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-intro { color: var(--warm-gray); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--blush-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    flex-shrink: 0;
}
.cd-label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 4px; }
.cd-value { font-size: 1rem; font-weight: 500; color: var(--dark); }
.cd-link:hover { color: var(--burgundy); }

/* ── Form ── */
.contact-form-wrap {
    background: var(--cream);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8AFA8; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: #E8F5E9;
    border-radius: 8px;
    color: #2E7D32;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 64px; padding-bottom: 64px; }
.footer-brand .logo-name { color: var(--white); }
.footer-tagline { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; margin-top: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--blush); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--blush); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s ease;
    z-index: 50;
    box-shadow: 0 8px 24px rgba(123,45,59,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--burgundy-dark); transform: translateY(-2px); }

/* ── Animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 32px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.35s ease;
        pointer-events: none;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .main-nav a { font-size: 1rem; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { min-height: 400px; order: -1; }
    .hero-img-main { height: 360px; }
    .hero-img-accent { width: 200px; left: -16px; bottom: -24px; }
    .hero-accent-badge { right: 16px; top: -16px; }
    .hero-stats { flex-wrap: wrap; gap: 0; }
    .stat-divider { display: none; }
    .stat { flex: none; width: 33.33%; padding: 16px 0; }

    .about-grid,
    .amenities-layout,
    .community-grid,
    .location-layout,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrap { order: -1; }
    .about-image-wrap img { height: 400px; }
    .about-image-accent { width: 100px; height: 100px; top: -16px; right: -16px; }

    .lifestyle-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-img-main { height: 280px; }
    .hero-img-accent { display: none; }
    .hero-accent-badge { display: none; }
}
