/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Navigation ===== */
.nav-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
    transition: all 0.3s ease;
}
.nav-scrolled .nav-logo-text { color: #7B2D3B; }
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: #3D1218;
    transition: color 0.3s;
}
.nav-logo-text { color: #3D1218; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5C1E2A;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B2D3B;
    border-radius: 2px;
    transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a:not(.btn):hover { color: #7B2D3B; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #7B2D3B;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(61, 18, 24, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: #FDF6F4;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-overlay.active .mobile-menu { transform: translateX(0); }
.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #5C1E2A;
    padding: 12px 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
    transition: color 0.2s;
}
.mobile-link:hover { color: #7B2D3B; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: 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 36px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-burgundy {
    background: #7B2D3B;
    color: #F5E6E0;
    box-shadow: 0 4px 20px rgba(123, 45, 59, 0.3);
}
.btn-burgundy:hover {
    background: #5C1E2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 45, 59, 0.4);
}
.btn-outline {
    background: transparent;
    color: #7B2D3B;
    border: 2px solid #7B2D3B;
}
.btn-outline:hover {
    background: #7B2D3B;
    color: #F5E6E0;
    transform: translateY(-2px);
}
.btn-outline-light {
    background: transparent;
    color: #F5E6E0;
    border: 2px solid rgba(245, 230, 224, 0.5);
}
.btn-outline-light:hover {
    background: rgba(245, 230, 224, 0.1);
    border-color: #F5E6E0;
    transform: translateY(-2px);
}
.btn-white {
    background: #F5E6E0;
    color: #7B2D3B;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
    background: #FDF6F4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: #7B2D3B;
    padding: 120px 24px 120px 24px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(245, 230, 224, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(245, 230, 224, 0.05) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 230, 224, 0.12);
    border: 1px solid rgba(245, 230, 224, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F5E6E0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero-headline {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.12;
    color: #F5E6E0;
    margin-bottom: 24px;
}
.hero-headline em {
    font-style: italic;
    color: #fce3e8;
}
.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(245, 230, 224, 0.75);
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #F5E6E0;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(245, 230, 224, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 230, 224, 0.2);
}
.hero-image {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}
.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}
.hero-img-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 4px solid #7B2D3B;
}
.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/280;
}
.hero-accent-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 45, 59, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #F5E6E0;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ===== Container ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #3D1218;
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5C1E2A;
    opacity: 0.75;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: #FDF6F4;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #FDF6F4;
    border: 1px solid rgba(123, 45, 59, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #7B2D3B;
    transform: scaleX(0);
    transition: transform 0.3s;
    border-radius: 20px 20px 0 0;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.12);
    border-color: transparent;
}
.service-card-accent {
    background: #7B2D3B;
    border-color: transparent;
}
.service-card-accent::before { background: #F5E6E0; }
.service-card-accent:hover { box-shadow: 0 20px 50px rgba(123, 45, 59, 0.3); }
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(123, 45, 59, 0.08);
}
.service-card-accent .service-icon { background: rgba(245, 230, 224, 0.15); }
.service-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #3D1218;
}
.service-card-accent h3 { color: #F5E6E0; }
.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #5C1E2A;
    opacity: 0.8;
    margin-bottom: 20px;
}
.service-card-accent p { color: rgba(245, 230, 224, 0.7); }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #7B2D3B;
    transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-card-accent .service-link { color: #F5E6E0; }

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: #FDF6F4;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.12);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/600;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(123, 45, 59, 0.15);
    border: 4px solid #FDF6F4;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/300;
}
.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #7B2D3B;
    border-radius: 20px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(123, 45, 59, 0.3);
}
.exp-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.6rem;
    color: #F5E6E0;
}
.exp-text {
    display: block;
    font-size: 0.78rem;
    color: rgba(245, 230, 224, 0.7);
    margin-top: 4px;
    line-height: 1.4;
}
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; text-align: left; }
.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5C1E2A;
    opacity: 0.8;
    margin-bottom: 16px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-value strong {
    display: block;
    font-size: 0.95rem;
    color: #3D1218;
    margin-bottom: 4px;
}
.about-value span {
    font-size: 0.88rem;
    color: #5C1E2A;
    opacity: 0.75;
    line-height: 1.5;
}

/* ===== Neighborhoods ===== */
.neighborhoods {
    padding: 100px 0;
    background: #FDF6F4;
}
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.neighborhood-card {
    border-radius: 20px;
    overflow: hidden;
    background: #FDF6F4;
    border: 1px solid rgba(123, 45, 59, 0.1);
    transition: all 0.3s ease;
}
.neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.12);
    border-color: transparent;
}
.neighborhood-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.neighborhood-info {
    padding: 24px;
}
.neighborhood-info h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.2rem;
    color: #3D1218;
    margin-bottom: 8px;
}
.neighborhood-info p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #5C1E2A;
    opacity: 0.75;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(245, 230, 224, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.testimonials .section-header { position: relative; z-index: 1; }
.testimonials .section-tag { color: #F5E6E0; }
.testimonials .section-title { color: #F5E6E0; }
.testimonials .section-desc { color: rgba(245, 230, 224, 0.65); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.testimonial-card {
    background: rgba(245, 230, 224, 0.08);
    border: 1px solid rgba(245, 230, 224, 0.12);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.testimonial-card:hover {
    background: rgba(245, 230, 224, 0.12);
    transform: translateY(-4px);
}
.testimonial-quote {
    margin-bottom: 20px;
    opacity: 0.6;
}
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(245, 230, 224, 0.85);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245, 230, 224, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}
.author-name {
    display: block;
    font-size: 0.9rem;
    color: #F5E6E0;
}
.author-role {
    font-size: 0.78rem;
    color: rgba(245, 230, 224, 0.5);
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: #5C1E2A;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(245, 230, 224, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 230, 224, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.cta-tag { color: #F5E6E0; }
.cta-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #F5E6E0;
    line-height: 1.2;
    margin-bottom: 20px;
}
.cta-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 230, 224, 0.7);
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: #FDF6F4;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 12px; }
.contact-info .section-title { margin-bottom: 16px; text-align: left; }
.contact-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: #5C1E2A;
    opacity: 0.75;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(123, 45, 59, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-item strong {
    display: block;
    font-size: 0.95rem;
    color: #3D1218;
    margin-bottom: 4px;
}
.contact-item p {
    font-size: 0.9rem;
    color: #5C1E2A;
    opacity: 0.8;
    line-height: 1.5;
}
.contact-item a {
    color: #7B2D3B;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-item a:hover { color: #5C1E2A; }
.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(123, 45, 59, 0.1);
}
.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/280;
}

/* Contact Form */
.contact-form-wrap { max-width: 100%; }
.contact-form-card {
    background: #FDF6F4;
    border: 1px solid rgba(123, 45, 59, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.08);
}
.contact-form-card h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.6rem;
    color: #3D1218;
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 0.9rem;
    color: #5C1E2A;
    opacity: 0.7;
    margin-bottom: 28px;
}
.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: 600;
    color: #3D1218;
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(123, 45, 59, 0.15);
    border-radius: 12px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: #3D1218;
    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: #7B2D3B;
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #BF8A7E;
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.active { display: block; }
.success-icon { margin-bottom: 16px; }
.form-success h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem;
    color: #3D1218;
    margin-bottom: 8px;
}
.form-success p {
    font-size: 0.92rem;
    color: #5C1E2A;
    opacity: 0.75;
}
.contact-form.hidden { display: none; }

/* ===== Footer ===== */
.footer {
    background: #3D1218;
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}
.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.1rem;
    color: #F5E6E0;
    margin-bottom: 16px;
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(245, 230, 224, 0.55);
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F5E6E0;
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.88rem;
    color: rgba(245, 230, 224, 0.55);
    transition: color 0.2s;
}
.footer-links a:hover { color: #F5E6E0; }
.footer-contact p {
    font-size: 0.88rem;
    color: rgba(245, 230, 224, 0.55);
    line-height: 1.7;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-contact a {
    color: rgba(245, 230, 224, 0.55);
    transition: color 0.2s;
}
.footer-contact a:hover { color: #F5E6E0; }
.footer-bottom {
    border-top: 1px solid rgba(245, 230, 224, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 230, 224, 0.35);
}
.footer-bottom a {
    color: rgba(245, 230, 224, 0.35);
    transition: color 0.2s;
}
.footer-bottom a:hover { color: #F5E6E0; }

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-content { max-width: 100%; }
    .hero-image { max-width: 500px; }
    .hero-img-accent { left: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-images { max-width: 500px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 20px 80px; }
    .hero-headline { font-size: 2.2rem; }
    .hero-stats { gap: 16px; }
    .stat-number { font-size: 1.2rem; }
    .hero-img-accent { bottom: -20px; left: -10px; }
    .services-grid { grid-template-columns: 1fr; }
    .neighborhoods-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-img-secondary { right: -10px; bottom: -15px; }
    .about-experience-badge { top: -15px; right: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 280px; }
}
