/* ============================================
   SARAH COHEN REAL ESTATE — BLACK & GOLD
   ============================================ */

:root {
    --black: #0A0A0A;
    --rich-black: #111111;
    --dark-surface: #171717;
    --card-bg: #1C1C1C;
    --border-dark: #2A2A2A;
    --gold: #C9A84C;
    --gold-light: #DFC06F;
    --gold-muted: #A88B3D;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --white: #FAFAFA;
    --off-white: #E8E8E8;
    --muted: #888888;
    --muted-light: #AAAAAA;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--off-white);
    background-color: var(--black);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

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

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

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dark);
    padding: 0.8rem 4%;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-logo span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.58rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--muted-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: transparent;
    color: var(--gold) !important;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--off-white);
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--black);
    padding: 1rem 2.2rem;
    border: 1px solid var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--muted-light);
    padding: 1rem 2.2rem;
    border: 1px solid var(--border-dark);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--gold-muted);
    color: var(--gold);
}

/* ===== SECTION LABEL ===== */
.section-label {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.section-label--lined {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label--lined::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 4% 0 8%;
    max-width: 55%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.5rem 1.3rem;
    margin-bottom: 2.5rem;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hero-badge::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 3rem;
    line-height: 1.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.hero-languages {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-languages > span:first-child {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 300;
}

.lang-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-dark);
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    color: var(--muted-light);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image-area {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    overflow: hidden;
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #252520 40%, #1e1d18 100%);
    position: relative;
}

.hero-image-placeholder::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, var(--black), transparent);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    border-left: 1px solid var(--border-dark);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}

.hero-image-overlay svg {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    opacity: 0.4;
    color: var(--gold-muted);
}

.hero-image-overlay p {
    font-size: 0.8rem;
    opacity: 0.5;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* When real image is added */
.hero-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-area::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, var(--black), transparent);
    z-index: 1;
}

/* ===== BROKERAGE BAR ===== */
.brokerage-bar {
    background: var(--rich-black);
    padding: 1.5rem 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.brokerage-bar p {
    color: var(--muted);
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.brokerage-bar .nest-seekers-text {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 4px;
}

/* ===== ABOUT ===== */
.about {
    padding: 8rem 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a1a 0%, #222218 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-frame .placeholder-text {
    text-align: center;
    color: var(--muted);
    padding: 2rem;
}

.about-image-frame .placeholder-text svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.3;
    color: var(--gold-muted);
}

.about-image-frame .placeholder-text p {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.about-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 160px;
    height: 160px;
    border: 1px solid var(--gold-muted);
    opacity: 0.2;
    z-index: -1;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.8rem;
}

.about-content p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-weight: 300;
}

.about-signature {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-dark);
}

.about-signature .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.about-signature .title {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    margin-top: 0.4rem;
    font-weight: 300;
}

/* ===== SERVICES ===== */
.services {
    background: var(--rich-black);
    padding: 8rem 8%;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.services-header p {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    transition: all 0.4s ease;
    border: 1px solid var(--border-dark);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods {
    padding: 8rem 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.neighborhoods-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.neighborhoods-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.neighborhood-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
    border: 1px solid var(--border-dark);
}

.neighborhood-card:hover {
    transform: scale(1.02);
    border-color: rgba(201, 168, 76, 0.3);
}

.neighborhood-card:nth-child(1) { background: linear-gradient(180deg, #1a1915 0%, #2a2520 50%, #1a1610 100%); }
.neighborhood-card:nth-child(2) { background: linear-gradient(180deg, #151a15 0%, #202a20 50%, #101a10 100%); }
.neighborhood-card:nth-child(3) { background: linear-gradient(180deg, #1a1818 0%, #2a2525 50%, #1a1515 100%); }
.neighborhood-card:nth-child(4) { background: linear-gradient(180deg, #18181a 0%, #25252a 50%, #15151a 100%); }

.neighborhood-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.neighborhood-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.45) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
}

.neighborhood-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.neighborhood-overlay p {
    font-size: 0.68rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.3rem;
}

.neighborhood-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--muted-light);
    font-weight: 300;
    line-height: 1.6;
    margin-top: 0.6rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.neighborhood-card:hover .neighborhood-desc {
    opacity: 1;
    transform: translateY(0);
}

.neighborhood-link {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.4rem 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease 0.1s;
}

.neighborhood-card:hover .neighborhood-link {
    opacity: 1;
    transform: translateY(0);
}

.neighborhood-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== WHY ME ===== */
.why-me {
    background: var(--dark-surface);
    padding: 8rem 8%;
    color: white;
    position: relative;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.why-me::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-me-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
}

.why-me h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 1.8rem;
    color: var(--white);
}

.why-me h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.why-me-text p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.why-me-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255,255,255,0.02);
    padding: 2rem;
    border: 1px solid var(--border-dark);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.stat-item:hover {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.15);
}

.stat-item:hover::after {
    width: 60%;
}

.stat-icon {
    margin-bottom: 1rem;
    color: var(--gold);
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.stat-item p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    padding: 8rem 8%;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 300;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-attribution {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 1px;
}

.testimonial-note {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-left: 2px solid var(--gold-muted);
}

.testimonial-note p {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    font-weight: 300;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--rich-black);
    padding: 8rem 8%;
    text-align: center;
    position: relative;
    border-top: 1px solid var(--border-dark);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.2rem;
}

.cta-inner h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.cta-inner p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 3rem;
    line-height: 1.9;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 300;
}

.cta-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold-muted);
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    padding: 4rem 8% 2rem;
    color: var(--muted);
    border-top: 1px solid var(--border-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .nav-logo {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-brand .nav-logo span {
    color: var(--gold-muted);
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.82rem;
    line-height: 1.8;
    font-weight: 300;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 300;
}

.footer-bottom .social-links {
    display: flex;
    gap: 1.2rem;
}

.footer-bottom .social-links a {
    color: var(--muted);
    transition: color 0.3s ease;
}

.footer-bottom .social-links a:hover {
    color: var(--gold);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.2);
    margin-top: 1.5rem;
    text-align: center;
    justify-content: center;
    font-weight: 300;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { max-width: 60%; }
    .hero-image-area { width: 40%; }
    .about { gap: 4rem; padding: 6rem 6%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero { flex-direction: column; padding-top: 5rem; }
    .hero-content { max-width: 100%; padding: 2rem 6%; text-align: center; }
    .hero-image-area { position: relative; width: 100%; height: 300px; }
    .hero-image-placeholder::after { display: none; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-languages { justify-content: center; flex-wrap: wrap; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }

    .about { grid-template-columns: 1fr; padding: 5rem 6%; gap: 3rem; }
    .about-content .section-label--lined { justify-content: center; }

    .services { padding: 5rem 6%; }
    .services-grid { grid-template-columns: 1fr; }

    .neighborhoods { padding: 5rem 6%; }
    .neighborhoods-grid { grid-template-columns: 1fr 1fr; }

    .why-me { padding: 5rem 6%; }
    .why-me .section-label--lined { justify-content: center; }
    .why-me-inner { grid-template-columns: 1fr; gap: 3rem; }

    .cta-actions { flex-direction: column; align-items: center; }
    .cta-contact-info { flex-direction: column; align-items: center; gap: 1rem; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .brokerage-bar { flex-wrap: wrap; gap: 0.5rem; text-align: center; }
}
