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

:root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF9F5;
    --charcoal: #2A2420;
    --charcoal-light: #4A403A;
    --warm-gray: #8A7E76;
    --warm-gray-light: #B8AEA6;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===== Typography ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.section-headline em {
    font-style: italic;
    color: var(--terracotta);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    border: 2px solid var(--terracotta);
}

.btn--primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 92, 56, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--sand-dark);
}

.btn--ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--terracotta);
    border: 2px solid var(--white);
}

.btn--light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--sand-dark);
    box-shadow: 0 1px 12px rgba(42, 36, 32, 0.06);
}

.nav__inner {
    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: 12px;
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--terracotta);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--terracotta);
    border-radius: 4px;
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    display: none;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--terracotta);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--terracotta-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.mobile-menu__link:hover {
    color: var(--terracotta);
}

.mobile-menu__link--cta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white) !important;
    background: var(--terracotta);
    padding: 14px 32px;
    border-radius: 4px;
    margin-top: 16px;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 92, 56, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero__left {
    padding-right: 16px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero__headline em {
    font-style: italic;
    color: var(--terracotta);
}

.hero__sub {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-num {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hero__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
    flex-shrink: 0;
}

/* Hero Image Stack */
.hero__right {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(42, 36, 32, 0.15);
}

.hero__image--main {
    width: 75%;
    height: 80%;
    top: 0;
    right: 0;
}

.hero__image--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--accent {
    width: 55%;
    height: 45%;
    bottom: 0;
    left: 0;
    border: 4px solid var(--cream);
}

.hero__image--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--badge {
    width: auto;
    height: auto;
    bottom: 38%;
    right: -8px;
    z-index: 2;
}

.hero__badge {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 8px 24px rgba(42, 36, 32, 0.12);
    white-space: nowrap;
}

.hero__badge svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    animation: bobble 2s ease-in-out infinite;
}

@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== About ===== */
.about {
    padding: 120px 24px;
    background: var(--sand-light);
}

.about__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about__left {
    position: sticky;
    top: 120px;
}

.about__lead {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    line-height: 1.5;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.about__body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--charcoal-light);
    margin-bottom: 16px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
}

.about__value svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* ===== Services ===== */
.services {
    padding: 120px 24px;
    background: var(--cream);
}

.services__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.services__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: 6px;
    padding: 36px 28px;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42, 36, 32, 0.1);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: var(--sand-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--sand-light);
    color: var(--terracotta);
    margin-bottom: 20px;
    transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: var(--terracotta);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--terracotta);
    transition: gap 0.2s ease;
}

.service-card__link:hover {
    gap: 10px;
}

/* ===== Neighborhoods ===== */
.neighborhoods {
    padding: 120px 24px;
    background: var(--charcoal);
    color: var(--white);
}

.neighborhoods__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.neighborhoods__header .section-eyebrow {
    color: var(--terracotta-light);
}

.neighborhoods__header .section-headline {
    color: var(--white);
}

.neighborhoods__header .section-headline em {
    color: var(--terracotta-light);
}

.neighborhoods__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.neighborhood-card {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 6px;
    overflow: hidden;
    background: var(--charcoal-light);
    transition: transform 0.3s var(--ease-out);
}

.neighborhood-card:hover {
    transform: translateY(-4px);
}

.neighborhood-card__img {
    height: 240px;
    overflow: hidden;
}

.neighborhood-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.neighborhood-card:hover .neighborhood-card__img img {
    transform: scale(1.05);
}

.neighborhood-card__content {
    padding: 24px;
}

.neighborhood-card__name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.neighborhood-card__desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--warm-gray-light);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 24px;
    background: var(--sand-light);
}

.testimonials__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.testimonials__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: 6px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42, 36, 32, 0.08);
    border-color: transparent;
}

.testimonial-card__quote {
    color: var(--terracotta);
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__meta {
    padding-top: 20px;
    border-top: 1px solid var(--sand-dark);
}

.testimonial-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 100px 24px;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.cta-banner__headline {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner__headline em {
    font-style: italic;
    color: var(--sand);
}

.cta-banner .btn--light {
    margin-top: 32px;
}

/* ===== Contact ===== */
.contact {
    padding: 120px 24px;
    background: var(--cream);
}

.contact__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--charcoal-light);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__detail svg {
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 500;
}

.contact__detail-value a {
    color: var(--charcoal);
    transition: color 0.2s ease;
}

.contact__detail-value a:hover {
    color: var(--terracotta);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    border: 1px solid var(--sand-dark);
    border-radius: 8px;
    padding: 40px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--charcoal-light);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--sand-light);
    border: 1.5px solid var(--sand-dark);
    border-radius: 4px;
    padding: 12px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
}

.form-input:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

.form-input::placeholder {
    color: var(--warm-gray);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%238A7E76' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-success__text {
    font-size: 0.9375rem;
    color: var(--charcoal-light);
    line-height: 1.6;
    max-width: 320px;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 24px 40px;
}

.footer__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--terracotta-light);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--terracotta-light);
    border-radius: 4px;
    flex-shrink: 0;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray-light);
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta-light);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--warm-gray-light);
    line-height: 1.7;
}

.footer__contact a {
    color: var(--warm-gray-light);
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: var(--white);
}

.footer__bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--warm-gray);
}

.footer__disclaimer {
    font-size: 0.75rem !important;
    color: var(--warm-gray) !important;
}

/* ===== Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .nav__logo-text {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero__grid {
        gap: 48px;
    }

    .hero__right {
        height: 480px;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__left {
        padding-right: 0;
    }

    .hero__right {
        height: 360px;
        order: -1;
    }

    .hero__image--main {
        width: 85%;
        height: 85%;
    }

    .hero__image--accent {
        width: 55%;
        height: 50%;
    }

    .hero__stats {
        gap: 16px;
    }

    .hero__scroll {
        display: none;
    }

    .about {
        padding: 80px 24px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__left {
        position: static;
    }

    .about__values {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 80px 24px;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .neighborhoods {
        padding: 80px 24px;
    }

    .neighborhoods__grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        padding: 80px 24px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 80px 24px;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        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;
        align-items: flex-start;
        gap: 12px;
    }

    .hero__stat-divider {
        display: none;
    }
}
