/* ═══════════════════════════════════════════════════════════
   FINQUES GUINARDÓ — Custom Styles
   Palette: Teal (#1B4D5E) + Slate Grey (#3D4F5F / #6B7F8F)
   Fonts: Playfair Display (serif) + Inter (sans-serif)
   ═══════════════════════════════════════════════════════════ */

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

:root {
    --teal-dark:    #1B4D5E;
    --teal-mid:     #2A6B7C;
    --teal-light:   #3D8A9E;
    --teal-pale:    #E8F4F7;
    --slate-dark:   #3D4F5F;
    --slate-mid:    #6B7F8F;
    --slate-light:  #9BB0BE;
    --slate-pale:   #D6E2E8;
    --cream:        #F7F9FA;
    --warm-white:   #FAFBFC;
    --off-white:    #F0F4F6;
    --text-dark:    #1A2A36;
    --text-mid:     #4A5E6D;
    --text-light:   #7A8E9D;
    --white:        #FFFFFF;
    --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ── Typography ───────────────────────────────────────── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--teal-light);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.7;
}

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


/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.75rem;
    border-radius: 4px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-dark);
    color: var(--white);
    border-color: var(--teal-dark);
}
.btn-primary:hover {
    background: var(--teal-mid);
    border-color: var(--teal-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 77, 94, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--teal-dark);
    border-color: var(--teal-dark);
}
.btn-outline:hover {
    background: var(--teal-dark);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }


/* ── Header ───────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 251, 252, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-pale);
    transition: box-shadow 0.3s var(--ease-smooth);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(61, 79, 95, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.logo-text { letter-spacing: -0.01em; }

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

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.nav a:hover {
    color: var(--teal-dark);
    background: var(--teal-pale);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-dark);
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--teal-dark);
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-phone:hover {
    background: var(--teal-dark);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}

.menu-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--teal-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.menu-toggle.active .menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .menu-toggle-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ── Mobile Menu ──────────────────────────────────────── */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 42, 54, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .mobile-menu-link {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
}

.mobile-menu-overlay .mobile-menu-link:hover {
    background: rgba(255,255,255,0.08);
}

.mobile-menu-phone, .mobile-menu-email {
    font-size: 0.9rem !important;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0.5rem 2rem;
}


/* ── Hero ─────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 80% 20%, rgba(45, 120, 140, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(61, 79, 95, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--slate-mid);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--teal-light);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--teal-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--teal-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

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

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-pale);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 80%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 77, 94, 0.15);
}

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

.hero-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: 6px;
    overflow: hidden;
    border: 5px solid var(--warm-white);
    box-shadow: 0 12px 40px rgba(27, 77, 94, 0.12);
}

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

.hero-badge {
    position: absolute;
    bottom: 42%;
    left: -10px;
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}


/* ── Trust Bar ────────────────────────────────────────── */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--slate-pale);
    border-bottom: 1px solid var(--slate-pale);
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
}

.trust-item svg {
    color: var(--teal-mid);
    flex-shrink: 0;
}


/* ── Section Spacing ──────────────────────────────────── */
section {
    padding: 6rem 0;
}


/* ── About ────────────────────────────────────────────── */
.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-wrap {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(27, 77, 94, 0.1);
}

.about-img-main {
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
}

.about-img-accent {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    border: 5px solid var(--warm-white);
}

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

.about-content .section-title { margin-bottom: 1.5rem; }

.about-lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-content > p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--teal-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
}

.value-text { display: flex; flex-direction: column; gap: 0.15rem; }
.value-text strong {
    font-size: 0.95rem;
    color: var(--text-dark);
}
.value-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* ── Services ─────────────────────────────────────────── */
.services {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.services-bg-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 120, 140, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 6px;
    padding: 2rem;
    border: 1px solid var(--slate-pale);
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 77, 94, 0.1);
    border-color: var(--teal-pale);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--teal-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}

.service-card:hover .service-icon {
    background: var(--teal-dark);
    color: var(--white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
}


/* ── Properties ───────────────────────────────────────── */
.properties {
    background: var(--warm-white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.property-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--slate-pale);
    transition: all 0.3s var(--ease-smooth);
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(27, 77, 94, 0.1);
}

.property-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.property-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--teal-dark);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 3px;
    letter-spacing: 0.05em;
}

.property-tag-rent {
    background: var(--slate-dark);
}

.property-info {
    padding: 1.5rem;
}

.property-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.5rem;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.8rem;
    color: var(--text-mid);
    background: var(--off-white);
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
}

.property-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-mid);
    transition: color 0.2s;
}

.property-link:hover { color: var(--teal-dark); }


/* ── Neighborhood ─────────────────────────────────────── */
.neighborhood {
    background: var(--white);
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.neighborhood-lead {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.neighborhood-content > p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.neighborhood-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.highlight-item {
    background: var(--off-white);
    border-radius: 6px;
    padding: 1.25rem;
    border: 1px solid var(--slate-pale);
}

.highlight-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.25rem;
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.neighborhood-images {
    height: 520px;
}

.neighborhood-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.ni-img {
    border-radius: 6px;
    overflow: hidden;
}

.ni-img-1 { grid-row: 1 / 3; }
.ni-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.ni-img-2 img, .ni-img-3 img { width: 100%; height: 100%; object-fit: cover; }


/* ── CTA Banner ───────────────────────────────────────── */
.cta-banner {
    background: var(--teal-dark);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(61, 138, 158, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(42, 107, 124, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1rem;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta-title em { font-style: italic; color: var(--slate-pale); }

.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ── Contact ──────────────────────────────────────────── */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cd-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--teal-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
}

.cd-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cd-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.cd-value {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.cd-link {
    color: var(--teal-mid);
    transition: color 0.2s;
}

.cd-link:hover { color: var(--teal-dark); }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid var(--slate-pale);
    box-shadow: 0 4px 20px rgba(27, 77, 94, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--teal-dark);
    margin-bottom: 0.35rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--warm-white);
    border: 1.5px solid var(--slate-pale);
    border-radius: 4px;
    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: var(--teal-mid);
    box-shadow: 0 0 0 3px rgba(45, 120, 140, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-light);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--teal-pale);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--teal-dark);
}

.form-success svg { color: var(--teal-mid); flex-shrink: 0; }


/* ── Footer ───────────────────────────────────────────── */
.site-footer {
    background: var(--teal-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.8;
}

.footer-phone a, .footer-email a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-phone a:hover, .footer-email a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 0.5rem;
}


/* ── Animations ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    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 (max-width: 1024px) {
    .hero-grid { gap: 2.5rem; }
    .hero-visual { height: 480px; }
    .about-grid { gap: 2.5rem; }
    .about-images { height: 480px; }
    .services-grid { gap: 1rem; }
    .property-card:hover { transform: translateY(-2px); }
}

@media (max-width: 900px) {
    .nav, .nav-phone { display: none; }
    .menu-toggle { display: flex; }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid,
    .neighborhood-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-images { height: 400px; }
    .neighborhood-images { height: 360px; }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    section { padding: 4rem 0; }

    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-visual { height: 320px; }
    .hero-img-main { width: 80%; height: 85%; }
    .hero-img-secondary { width: 60%; height: 40%; }
    .hero-badge { display: none; }

    .trust-items { gap: 1.5rem; }
    .trust-item { font-size: 0.8rem; }

    .about-images { height: 320px; }
    .about-img-main { width: 70%; height: 85%; }
    .about-img-accent { width: 55%; height: 50%; }

    .services-grid { grid-template-columns: 1fr; }
    .properties-grid { grid-template-columns: 1fr; }

    .neighborhood-images { height: 280px; }
    .neighborhood-img-grid { grid-template-rows: 1fr 1fr; }
    .ni-img-1 { grid-row: auto; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 1.5rem; }

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

    .cta-banner { padding: 3.5rem 0; }
}
