/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Nunito', sans-serif;
    color: #2D2D2D;
    background: #FFFDF9;
    line-height: 1.7;
    overflow-x: hidden;
    -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; }

/* ===== COLOR VARIABLES ===== */
:root {
    --charcoal: #2D2D2D;
    --charcoal-light: #3D3D3D;
    --coral: #E86A5B;
    --coral-dark: #D4574A;
    --coral-light: #F5E0DC;
    --coral-50: #FFF5F3;
    --cream: #FFFDF9;
    --warm-gray: #F7F4F1;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(45,45,45,0.06);
    --shadow-md: 0 4px 20px rgba(45,45,45,0.08);
    --shadow-lg: 0 8px 40px rgba(45,45,45,0.12);
    --shadow-coral: 0 8px 30px rgba(232,106,91,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.3; color: var(--charcoal); }
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }
.text-coral { color: var(--coral); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-coral {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
    box-shadow: var(--shadow-coral);
}
.btn-coral:hover { background: var(--coral-dark); border-color: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(232,106,91,0.4); }
.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--coral); border-color: var(--white); }
.btn-white:hover { background: var(--coral-light); border-color: var(--coral-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION SPACING ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--warm-gray); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,253,249,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45,45,45,0.06);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon { width: 36px; height: 36px; }
.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
}
.logo-dot { color: var(--coral); }
.logo-text-light { color: var(--white); }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 50px;
    transition: var(--transition);
}
.main-nav a:hover { color: var(--coral); background: var(--coral-50); }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--coral-50) 50%, var(--warm-gray) 100%);
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(232,106,91,0.06) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(232,106,91,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--coral-light);
    color: var(--coral);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--charcoal);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(45,45,45,0.08);
}
.stat-number { display: block; font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; color: var(--charcoal); }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.stat-divider { width: 1px; height: 40px; background: rgba(45,45,45,0.1); }
.hero-image-wrap { position: relative; }
.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 580/680;
}
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-lg);
    opacity: 0.15;
    z-index: -1;
}
.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.hero-float-card svg { width: 28px; height: 28px; color: var(--coral); flex-shrink: 0; }
.hero-float-card strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
.hero-float-card span { font-size: 0.78rem; color: var(--text-light); }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 60%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
    position: absolute;
    top: -16px;
    right: 40px;
    background: var(--coral);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-coral);
}
.about-experience-badge .exp-number { display: block; font-family: 'Lora', serif; font-size: 2rem; font-weight: 600; line-height: 1; }
.about-experience-badge .exp-label { font-size: 0.75rem; font-weight: 700; opacity: 0.9; }
.about-lead { font-size: 1.05rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-content p { color: var(--text-light); margin-bottom: 20px; }
.about-features { margin-bottom: 32px; }
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}
.check-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--coral); }

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid rgba(45,45,45,0.05);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--coral);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap { width: 64px; height: 64px; margin-bottom: 20px; }
.service-icon-wrap svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--coral);
    transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.neighborhood-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
}
.neighborhood-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.neighborhood-card:hover img { transform: scale(1.08); }
.neighborhood-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45,45,45,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}
.neighborhood-card:hover .neighborhood-overlay { background: linear-gradient(to top, rgba(45,45,45,0.9) 0%, rgba(45,45,45,0.2) 60%); }
.neighborhood-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 4px; }
.neighborhood-overlay p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    border: 1px solid rgba(45,45,45,0.05);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: 'Lora', serif;
    font-size: 5rem;
    color: var(--coral);
    opacity: 0.12;
    line-height: 1;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--coral-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author-avatar svg { width: 24px; height: 24px; color: var(--coral); }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA ===== */
.cta { padding: 100px 0; background: var(--charcoal); position: relative; overflow: hidden; }
.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 72px 60px;
    text-align: center;
    overflow: hidden;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 0%, transparent 50%),
                       radial-gradient(circle at 70% 30%, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.section-label-light { color: rgba(255,255,255,0.8) !important; }
.cta-title { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-text { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white:hover { background: var(--coral-light) !important; border-color: var(--coral-light) !important; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-lead { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.8; }
.contact-details { margin-bottom: 32px; }
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(45,45,45,0.06);
}
.contact-details li:last-child { border-bottom: none; }
.contact-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--coral-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon-wrap svg { width: 22px; height: 22px; color: var(--coral); }
.contact-details strong { display: block; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 2px; }
.contact-details span, .contact-details a { font-size: 0.92rem; color: var(--text-light); }
.contact-details a:hover { color: var(--coral); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.contact-form-wrap { }
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45,45,45,0.05);
}
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-intro { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(45,45,45,0.12);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232,106,91,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B0B0B0; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.success-icon {
    width: 64px;
    height: 64px;
    background: var(--coral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.success-icon svg { width: 32px; height: 32px; color: var(--coral); }
.form-success h4 { font-size: 1.3rem; margin-bottom: 8px; }
.form-success p { color: var(--text-light); font-size: 0.92rem; }

/* ===== FOOTER ===== */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--coral); padding-left: 4px; }
.footer-contact address { font-style: normal; font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact p { font-size: 0.88rem; }
.footer-contact a:hover { color: var(--coral); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom a { color: var(--coral); transition: var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== ANIMATIONS ===== */
.fade-up, .fade-left, .fade-right {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up { transform: translateY(30px); }
.fade-left { transform: translateX(-30px); }
.fade-right { transform: translateX(30px); }
.fade-up.visible, .fade-left.visible, .fade-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}
.fade-delay { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(255,253,249,0.98);
        backdrop-filter: blur(12px);
        padding: 20px 24px;
        border-bottom: 1px solid rgba(45,45,45,0.06);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { display: block; padding: 12px 16px; font-size: 1rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image-wrap { max-width: 480px; margin: 0 auto; }
    .hero-float-card { left: 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { max-width: 520px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 72px 0; }
    .hero { padding: 100px 0 60px; }
    .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; }
    .hero-float-card { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .neighborhoods-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px; }
    .cta-card { padding: 48px 24px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-img-secondary { width: 70%; right: -10px; bottom: -20px; }
}
