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

:root {
    --charcoal: #2D2D2D;
    --charcoal-dark: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #E85D4A;
    --coral-light: #F07868;
    --coral-dark: #D14A38;
    --white: #FFFFFF;
    --off-white: #F8F7F5;
    --gray-100: #F3F3F1;
    --gray-200: #E8E8E5;
    --gray-300: #D1D1CD;
    --gray-400: #9E9E9A;
    --gray-500: #6E6E6A;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(45,45,45,0.08);
    --shadow-md: 0 4px 20px rgba(45,45,45,0.12);
    --shadow-lg: 0 8px 40px rgba(45,45,45,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --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(--charcoal);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.text-coral {
    color: var(--coral);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn--primary:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 93, 74, 0.35);
}

.btn--ghost {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

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

.btn--outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn--outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ===== Section Header ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    margin-bottom: 12px;
}

.section-tag--light {
    color: var(--coral-light);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-header--light {
    text-align: center;
}

.section-header--light .section-title {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    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;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav__logo-mark {
    width: 38px;
    height: 38px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--white);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo-text {
    color: var(--charcoal);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: 50px;
    transition: all var(--transition);
}

.nav.scrolled .nav__link {
    color: var(--charcoal);
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.nav.scrolled .nav__link:hover {
    color: var(--coral);
    background: rgba(232, 93, 74, 0.08);
}

.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.nav__menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    z-index: 1001;
}

.nav.scrolled .nav__menu-btn {
    color: var(--charcoal);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--charcoal-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.mobile-menu__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.mobile-menu__link--cta {
    color: var(--coral);
    margin-top: 16px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.88) 0%,
        rgba(45, 45, 45, 0.72) 50%,
        rgba(232, 93, 74, 0.35) 100%
    );
}

.hero__geometric {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero__shape {
    position: absolute;
    opacity: 0.12;
}

.hero__shape--1 {
    width: 500px;
    height: 500px;
    background: var(--coral);
    border-radius: 50%;
    top: -150px;
    right: -100px;
}

.hero__shape--2 {
    width: 200px;
    height: 200px;
    background: var(--coral);
    bottom: 15%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: var(--radius-md);
    opacity: 0.15;
}

.hero__shape--3 {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    bottom: 25%;
    right: 25%;
    opacity: 0.06;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 93, 74, 0.2);
    border: 1px solid rgba(232, 93, 74, 0.4);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-light);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    max-width: 750px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.15s forwards;
    opacity: 0;
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeInUp 0.8s ease 0.45s forwards;
    opacity: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero__scroll svg {
    animation: bounce 2s ease infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== Stats ===== */
.stats {
    background: var(--charcoal-dark);
    padding: 0;
}

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

.stat {
    padding: 48px 32px;
    text-align: center;
    position: relative;
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat__divider {
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat:last-child .stat__divider {
    display: none;
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services__deco {
    position: absolute;
    top: 80px;
    right: -60px;
    pointer-events: none;
}

.services__deco-circle {
    width: 250px;
    height: 250px;
    border: 2px solid rgba(232, 93, 74, 0.1);
    border-radius: 50%;
}

.services__deco-dots {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--coral) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.3;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card--featured {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

.service-card--featured::before {
    background: var(--coral);
}

.service-card--featured:hover {
    box-shadow: 0 8px 40px rgba(45,45,45,0.3);
}

.service-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 50px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    margin-bottom: 24px;
}

.service-card--featured .service-card__icon {
    background: rgba(232, 93, 74, 0.2);
}

.service-card__accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(232, 93, 74, 0.05);
    border-radius: 50%;
    transition: all var(--transition);
}

.service-card:hover .service-card__accent {
    transform: scale(1.5);
    background: rgba(232, 93, 74, 0.08);
}

.service-card--featured .service-card__accent {
    background: rgba(232, 93, 74, 0.08);
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-card--featured .service-card__title {
    color: var(--white);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card--featured .service-card__desc {
    color: rgba(255,255,255,0.65);
}

.service-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-500);
}

.service-card--featured .service-card__list li {
    color: rgba(255,255,255,0.7);
}

.service-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

.about__geometric {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.about__shape {
    position: absolute;
}

.about__shape--1 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    opacity: 0.04;
    border-radius: var(--radius-lg);
    top: -80px;
    left: -80px;
    transform: rotate(25deg);
}

.about__shape--2 {
    width: 150px;
    height: 150px;
    background: var(--coral);
    opacity: 0.06;
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--coral);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about__floater {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about__floater-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.about__floater-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
    max-width: 140px;
}

.about__content {
    position: relative;
    z-index: 1;
}

.about__lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
}

.about__body {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.value-item__icon {
    width: 28px;
    height: 28px;
    background: rgba(232, 93, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

/* ===== Neighborhoods ===== */
.neighborhoods {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.neighborhoods__scroll-wrapper {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.neighborhoods__track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.neighborhoods__track:hover {
    animation-play-state: paused;
}

.neighborhood-card {
    flex-shrink: 0;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition);
}

.neighborhood-card:hover {
