/* ── 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: #faf9f7;
    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; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E86A50;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.section-title-center { text-align: center; }
.section-lead { font-size: 1.125rem; color: #555; max-width: 600px; line-height: 1.7; }
.section-lead-center { margin: 0 auto 56px; text-align: center; }
.lead { font-size: 1.0625rem; color: #444; line-height: 1.75; margin-bottom: 16px; }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9375rem;
    padding: 14px 28px; border-radius: 8px; border: 2px solid transparent;
    cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn-coral { background: #E86A50; color: #fff; border-color: #E86A50; }
.btn-coral:hover { background: #d4563d; border-color: #d4563d; transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 0.8125rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(26,26,26,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.0625rem; color: #fff; }
.logo-light { color: #fff; }
.logo-icon { flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav a:hover { color: #fff; }
.header-phone { margin-left: 8px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,26,0.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.25rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.mobile-menu a:hover { color: #E86A50; }
.mobile-menu .btn { margin-top: 16px; }

/* ── Hero ── */
.hero {
    padding-top: 72px; min-height: 100vh;
    background: #1a1a1a;
    display: flex; align-items: center;
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
    padding-top: 40px; padding-bottom: 40px;
}
.hero-eyebrow {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: #E86A50; margin-bottom: 16px;
}
.hero-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    color: #fff; margin-bottom: 24px; line-height: 1.05;
}
.hero-desc { font-size: 1.0625rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }
.hero-image { position: relative; border-radius: 16px; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.hero-accent {
    position: absolute; bottom: -20px; left: -20px;
    width: 120px; height: 120px; background: #E86A50;
    border-radius: 16px; z-index: -1; opacity: 0.3;
}

/* ── About ── */
.about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { border-radius: 16px; overflow: hidden; }
.about-image-wrap img { width: 100%; height: 480px; object-fit: cover; }

/* ── Amenities ── */
.amenities { padding: 120px 0; background: #1a1a1a; }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.amenity-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 36px 28px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}
.amenity-card:hover { transform: translateY(-4px); border-color: rgba(232,106,80,0.3); }
.amenity-icon { margin-bottom: 20px; }
.amenity-card h3 { font-family: 'Inter', sans-serif; font-size: 1.0625rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.amenity-card p { font-size: 0.9375rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ── Site Types ── */
.site-types { padding: 120px 0; background: #faf9f7; }
.site-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.site-type-card {
    background: #fff; border: 1px solid #e8e6e3; border-radius: 16px;
    padding: 48px 40px; transition: box-shadow 0.25s ease;
}
.site-type-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.site-type-featured { border-color: #E86A50; position: relative; }
.site-type-label {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: #888; margin-bottom: 16px;
}
.site-type-label-coral { color: #E86A50; }
.site-type-card h3 { font-size: 1.75rem; margin-bottom: 16px; }
.site-type-card > p { font-size: 0.9375rem; color: #555; line-height: 1.7; margin-bottom: 28px; }
.site-features { display: flex; flex-direction: column; gap: 12px; }
.site-features li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9375rem; color: #444;
}
.site-features li::before {
    content: ''; width: 6px; height: 6px; background: #E86A50;
    border-radius: 50%; flex-shrink: 0;
}

/* ── Community ── */
.community { padding: 120px 0; background: #f3f1ee; }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.community-image-wrap { border-radius: 16px; overflow: hidden; }
.community-image-wrap img { width: 100%; height: 620px; object-fit: cover; }
.community-values { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.value-item { display: flex; align-items: center; gap: 14px; font-size: 0.9375rem; font-weight: 500; color: #333; }

/* ── Contact ── */
.contact { padding: 120px 0; background: #1a1a1a; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin: 40px 0 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
    width: 44px; height: 44px; background: rgba(232,106,80,0.12);
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 1rem; color: rgba(255,255,255,0.8); }
.contact-item a:hover { color: #E86A50; }
.map-wrap { border-radius: 12px; overflow: hidden; }

/* ── Contact Form ── */
.contact-form-wrap {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px; padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.5rem; color: #fff; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.6); }
.form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 12px 16px; color: #fff;
    font-family: 'Inter', sans-serif; font-size: 0.9375rem;
    transition: border-color 0.2s; outline: none; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #E86A50; }
.form-group select { cursor: pointer; appearance: none; }
.form-group select option { background: #1a1a1a; color: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 24px; gap: 16px; }
.form-success h4 { font-size: 1.5rem; color: #fff; }
.form-success p { color: rgba(255,255,255,0.5); font-size: 0.9375rem; }

/* ── Footer ── */
.footer { background: #111; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { font-size: 0.9375rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
    font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9375rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #E86A50; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact p { font-size: 0.9375rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #E86A50; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { gap: 32px; }
    .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav, .header-phone { display: none; }
    .mobile-toggle { display: flex; }
    .hero-grid { grid-template-columns: 1fr; padding-top: 24px; }
    .hero-image { order: -1; max-height: 400px; }
    .hero-image img { height: 400px; }
    .hero-stats { gap: 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap img { height: 320px; }
    .amenity-grid { grid-template-columns: 1fr; }
    .site-types-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .community-image-wrap img { height: 360px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
    .hero-headline { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider { display: none; }
}
