/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a2e;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link { position: absolute; left: -999px; top: 0; background: #1B2A4A; color: #D4A843; padding: 12px 24px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #1B2A4A;
    margin-bottom: 20px;
}
.section-sub {
    font-size: 1.1rem;
    color: #555;
    max-width: 640px;
    margin: 0 auto;
}
.lead-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 24px;
}
.text-center { text-align: center; }
.section-header { margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-gold {
    background: #D4A843;
    color: #1B2A4A;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
}
.btn-gold:hover { background: #c49a35; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212, 168, 67, 0.45); }
.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.btn-white {
    background: #fff;
    color: #1B2A4A;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.btn-outline {
    background: transparent;
    color: #1B2A4A;
    border: 1.5px solid #1B2A4A;
}
.btn-outline:hover { background: #1B2A4A; color: #fff; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 42, 74, 0.08);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(27, 42, 74, 0.1); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: #1B2A4A;
}
.logo-sub { font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: #D4A843; margin-left: -4px; margin-top: 4px; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1B2A4A;
    transition: color 0.2s;
    position: relative;
}
.main-nav a:not(.btn):hover { color: #D4A843; }
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4A843;
    border-radius: 1px;
    transition: width 0.3s;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.2s;
}
.mobile-toggle:hover { background: rgba(27, 42, 74, 0.06); }
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: #1B2A4A;
    position: relative;
    transition: all 0.3s;
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: #1B2A4A;
    border-radius: 1px;
    transition: all 0.3s;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.mobile-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #1B2A4A;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.06) 0%, transparent 50%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.25);
    color: #D4A843;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: #D4A843;
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-top: 6px;
    letter-spacing: 0.02em;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}
.hero-visual { position: relative; height: 520px; }
.hero-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card-main {
    width: 320px;
    height: 380px;
    top: 0;
    right: 0;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-accent {
    width: 220px;
    height: 160px;
    bottom: 60px;
    left: 0;
    border: 4px solid rgba(255,255,255,0.15);
}
.hero-card-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1B2A4A;
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 16px 20px;
    bottom: 0;
    right: 40px;
    width: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-card-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #fff; }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p { color: #555; margin-bottom: 16px; }
.about-values { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
}
.value-item h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: #1B2A4A; margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; color: #666; margin: 0; line-height: 1.6; }
.about-visual { position: relative; height: 620px; }
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 42, 74, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27, 42, 74, 0.18);
    border: 5px solid #fff;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #F7F4EE; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 44px 36px;
    box-shadow: 0 4px 24px rgba(27, 42, 74, 0.06);
    border: 1px solid rgba(27, 42, 74, 0.06);
    transition: all 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27, 42, 74, 0.12); }
.service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #1B2A4A, #2a3f6a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    margin-bottom: 24px;
}
.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 12px;
}
.service-card > p { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 20px; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #444;
}
.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #D4A843;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods { padding: 100px 0; background: #fff; }
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.neighborhood-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(27, 42, 74, 0.07);
    border: 1px solid rgba(27, 42, 74, 0.06);
    transition: all 0.35s ease;
}
.neighborhood-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27, 42, 74, 0.13); }
.neighborhood-img { overflow: hidden; height: 220px; }
.neighborhood-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.neighborhood-card:hover .neighborhood-img img { transform: scale(1.05); }
.neighborhood-info { padding: 28px; }
.neighborhood-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B2A4A;
    margin-bottom: 8px;
}
.neighborhood-info p { font-size: 0.9rem; color: #555; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #1B2A4A; }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}
.testimonial-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
.testimonial-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 4rem;
    color: #D4A843;
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.6;
}
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
}
.author-name { display: block; font-weight: 700; font-size: 0.9rem; color: #fff; }
.author-detail { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: #F7F4EE; }
.faq-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.faq-content .section-title { margin-bottom: 20px; }
.faq-content p { color: #555; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid rgba(27, 42, 74, 0.07); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1B2A4A;
    transition: color 0.2s;
}
.faq-question:hover { color: #D4A843; }
.faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
    transition: transform 0.3s, background 0.3s;
}
.faq-item[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); background: #D4A843; color: #1B2A4A; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item[aria-expanded="true"] .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 28px 22px; font-size: 0.9rem; color: #555; line-height: 1.8; }

/* ===== CTA ===== */
.cta { padding: 100px 0; background: linear-gradient(135deg, #1B2A4A 0%, #0f1d36 100%); }
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-title { color: #fff; margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 500px; line-height: 1.8; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #fff; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-content .section-title { margin-bottom: 20px; }
.contact-content p { color: #555; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A843;
}
.contact-detail strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #1B2A4A; margin-bottom: 4px; }
.contact-detail span, .contact-detail a { font-size: 0.95rem; color: #555; }
.contact-detail a:hover { color: #D4A843; }
.contact-detail address { font-style: normal; }

/* Form */
.contact-form-wrap { background: #F7F4EE; border-radius: 24px; padding: 44px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: #1B2A4A; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(27, 42, 74, 0.12);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #D4A843;
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.12);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: #888; text-align: center; }
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.form-success h3 { font-size: 1.5rem; color: #1B2A4A; }
.form-success p { color: #555; font-size: 0.95rem; }
.form-success .btn { margin-top: 8px; }

/* ===== FOOTER ===== */
.site-footer { background: #0f1d36; color: rgba(255,255,255,0.6); }
.footer-inner { padding: 72px 0 48px; display: grid; grid-template-columns: 1.5fr 2fr; gap: 60px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4A843;
    margin-bottom: 20px;
}
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; line-height: 1.8; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(15, 29, 54, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 95;
    padding: 90px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1B2A4A;
    padding: 14px 0;
    border-bottom: 1px solid rgba(27, 42, 74, 0.07);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: #D4A843; padding-left: 8px; }
.mobile-nav .btn { margin-top: 16px; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .about-inner { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { height: 400px; order: -1; }
    .faq-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; max-width: 320px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .services-grid { grid-template-columns: 1fr; }
    .neighborhoods-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .stat-divider { width: 48px; height: 1px; }
    .footer-links { grid-template-columns: 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
