/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --emerald:    #047857;
    --emerald-deep: #065f46;
    --emerald-light: #d1fae5;
    --emerald-faint: #ecfdf5;
    --cream:      #fefaf3;
    --cream-dark: #f5f0e8;
    --warm:       #faf8f5;
    --text:       #1a2e2a;
    --text-light: #4a635e;
    --text-muted: #7a9490;
    --white:      #ffffff;
    --shadow-sm:  0 2px 8px rgba(4,120,87,0.06);
    --shadow-md:  0 8px 30px rgba(4,120,87,0.10);
    --shadow-lg:  0 16px 50px rgba(4,120,87,0.14);
    --radius-sm:  12px;
    --radius-md:  20px;
    --radius-lg:  32px;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--emerald); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--emerald-deep); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--emerald {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
}
.btn--emerald:hover {
    background: var(--emerald-deep);
    border-color: var(--emerald-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--emerald);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--outline-sm {
    background: transparent;
    color: var(--emerald);
    border-color: var(--emerald);
    padding: 10px 24px;
    font-size: 0.9rem;
}
.btn--outline-sm:hover {
    background: var(--emerald-faint);
}

.btn--small { padding: 10px 22px; font-size: 0.88rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }

/* ── Section Labels ───────────────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    background: var(--emerald-light);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254,250,243,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(4,120,87,0.08);
    transition: all var(--transition);
}
.nav.scrolled {
    background: rgba(254,250,243,0.96);
    box-shadow: var(--shadow-sm);
}
.nav__inner {
    max-width: 1200px;
    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: var(--font-display);
    font-size: 1.2rem;
    color: var(--emerald);
    text-decoration: none;
}
.nav__logo:hover { color: var(--emerald-deep); }
.nav__logo-icon { transition: transform var(--transition); }
.nav__logo:hover .nav__logo-icon { transform: scale(1.1); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav__links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 50px;
    transition: all var(--transition);
}
.nav__links a:hover {
    color: var(--emerald);
    background: var(--emerald-faint);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.nav__hamburger,
.nav__hamburger::before,
.nav__hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav__hamburger { top: 50%; margin-top: -1px; }
.nav__hamburger::before { content: ''; top: -7px; }
.nav__hamburger::after  { content: ''; bottom: -7px; }
.nav__toggle[aria-expanded="true"] .nav__hamburger { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__hamburger::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__hamburger::after  { bottom: 0; transform: translateX(-50%) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #065f46 0%, #047857 35%, #059669 65%, #10b981 100%);
    padding: 100px 24px 120px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(16,185,129,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(6,95,70,0.4) 0%, transparent 60%);
    pointer-events: none;
}
.hero__content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}
.hero__accent {
    font-style: italic;
    color: #a7f3d0;
}
.hero__sub {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 600;
}
.hero__trust-item svg { opacity: 0.7; }

.hero__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.hero__image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero__wave svg { width: 100%; height: 80px; }

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 0;
    background: var(--cream);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about__images {
    position: relative;
    height: 560px;
}
.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.about__img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}
.about__img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about__img-float img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}
.about__float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}
.about__float-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--emerald);
}
.about__float-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.about__text .section-title { margin-bottom: 20px; }
.about__body {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}
.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}
.about__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 100px 0;
    background: var(--warm);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(4,120,87,0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(4,120,87,0.12);
}
.card--service--featured {
    border: 2px solid var(--emerald-light);
    background: linear-gradient(135deg, var(--emerald-faint) 0%, var(--white) 100%);
}
.card__badge {
    position: absolute;
    top: 0;
    right: 32px;
    background: var(--emerald);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 0 0 10px 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-faint);
    border-radius: var(--radius-sm);
    color: var(--emerald);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.card:hover .card__icon {
    background: var(--emerald);
    color: var(--white);
}
.card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text);
}
.card__body {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-light);
}
.card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Neighborhoods ────────────────────────────────── */
.neighborhoods {
    padding: 100px 0;
    background: var(--cream);
}
.neighborhoods__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.neighborhood-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(4,120,87,0.06);
    transition: all var(--transition);
}
.neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.neighborhood-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.neighborhood-card:hover img { transform: scale(1.05); }
.neighborhood-card__info {
    padding: 24px;
}
.neighborhood-card__info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}
.neighborhood-card__info p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--emerald) 100%);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(16,185,129,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.testimonials .section-label {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}
.testimonials .section-title { color: var(--white); }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
}
.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}
.testimonial-card__quote {
    margin-bottom: 16px;
    opacity: 0.5;
}
.testimonial-card__text {
    color: rgba(255,255,255,0.9);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-card__name {
    display: block;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}
.testimonial-card__detail {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq {
    padding: 100px 0;
    background: var(--warm);
}
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.faq__header .section-title { margin-bottom: 16px; }
.faq__sub {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-item {
    border: 1px solid rgba(4,120,87,0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover { border-color: rgba(4,120,87,0.2); }
.faq-item__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    transition: all var(--transition);
}
.faq-item__btn:hover { color: var(--emerald); }
.faq-item__icon {
    flex-shrink: 0;
    color: var(--emerald);
    transition: transform var(--transition);
}
.faq-item__btn[aria-expanded="true"] .faq-item__icon {
    transform: rotate(45deg);
}
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item__a p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}
.faq-item.active .faq-item__a {
    max-height: 300px;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 100px 0;
    background: var(--cream);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact__body {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact__detail svg {
    color: var(--emerald);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact__detail strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.contact__detail span,
.contact__detail a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
}
.contact__detail a:hover { color: var(--emerald); }

.contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(4,120,87,0.06);
}
.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(4,120,87,0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(4,120,87,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact__privacy {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

.contact__success {
    text-align: center;
    padding: 40px;
}
.contact__success-icon {
    margin-bottom: 16px;
}
.contact__success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--emerald);
    margin-bottom: 8px;
}
.contact__success p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}
.footer h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 16px;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.92rem;
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--emerald-light); }
.footer__contact p {
    font-size: 0.92rem;
    line-height: 1.8;
}
.footer__contact a {
    color: rgba(255,255,255,0.7);
}
.footer__contact a:hover { color: var(--emerald-light); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer__disclaimer {
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.25) !important;
    max-width: 400px;
    text-align: right;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__content { gap: 40px; }
    .hero__image img { height: 420px; }
    .about__images { height: 460px; }
    .about__img-float { right: -16px; bottom: -20px; }
    .services__grid { gap: 20px; }
    .neighborhoods__grid { gap: 20px; }
}

@media (max-width: 900px) {
    .nav__links { display: none; }
    .nav__toggle { display: block; }
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254,250,243,0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(4,120,87,0.08);
        box-shadow: var(--shadow-md);
    }
    .nav__links.open a {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
    }

    .hero { padding: 100px 24px 100px; }
    .hero__content { grid-template-columns: 1fr; text-align: center; }
    .hero__sub { margin: 0 auto 36px; }
    .hero__actions { justify-content: center; }
    .hero__trust { justify-content: center; }
    .hero__image { display: none; }
    .hero__wave svg { height: 60px; }

    .about__grid { grid-template-columns: 1fr; }
    .about__images { height: 400px; }
    .about__img-float { right: 16px; bottom: -16px; }
    .about__img-float img { width: 220px; height: 160px; }

    .services__grid { grid-template-columns: 1fr; }
    .neighborhoods__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .faq__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero { padding: 90px 20px 80px; }
    .hero__badge { font-size: 0.78rem; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__trust { flex-direction: column; align-items: center; gap: 12px; }

    .about__images { height: 320px; }
    .about__img-main img { height: 320px; }
    .about__highlights { grid-template-columns: 1fr; }
    .about__img-float { display: none; }

    .services { padding: 70px 0; }
    .card { padding: 28px; }

    .neighborhoods { padding: 70px 0; }
    .neighborhoods__grid { grid-template-columns: 1fr; }

    .testimonials { padding: 70px 0; }

    .faq { padding: 70px 0; }

    .contact { padding: 70px 0; }
    .contact__form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; text-align: center; }
    .footer__disclaimer { text-align: center; }
}
