/* ===================================================================
   DHOMMUS — Luxury Real Estate Design System
   Dark Luxury Theme · Porto Feliz / Itu / SP
   =================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

/* --- Design Tokens --- */
:root {
    /* Colors */
    --bg-primary: #0b0f14;
    --bg-secondary: #111820;
    --bg-card: #161d27;
    --bg-card-hover: #1c2533;
    --bg-glass: rgba(11, 15, 20, 0.85);
    --bg-glass-light: rgba(22, 29, 39, 0.7);

    --gold: #c9a96e;
    --gold-light: #dfc598;
    --gold-dark: #a88b4a;
    --gold-glow: rgba(201, 169, 110, 0.15);

    --text-primary: #f0ece4;
    --text-secondary: #a09b93;
    --text-dim: #6b6760;
    --text-inverse: #0b0f14;

    --border: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(201, 169, 110, 0.3);

    --success: #4ade80;
    --whatsapp: #25d366;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing */
    --section-padding: 60px 60px;
    --section-padding-mobile: 60px 20px;

    /* Transitions */
    --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.3s var(--ease-luxury);
    --transition-medium: 0.6s var(--ease-luxury);
    --transition-slow: 1s var(--ease-luxury);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

/* --- Grain Overlay --- */
.grain-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background: url('data:image/svg+xml,<svg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 60px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.nav-logo span {
    color: var(--gold);
}

.nav-tagline {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-left: 1px solid var(--border);
    padding-left: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--text-inverse) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 28px; height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: var(--bg-primary);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--gold);
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-bg img,
.hero-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35) contrast(1.1);
    transition: transform 8s var(--ease-luxury);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(11, 15, 20, 0.7) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Decorative Side Element */
.hero-side-info {
    position: absolute;
    right: 60px;
    bottom: 100px;
    z-index: 2;
    text-align: right;
}

.hero-side-info .label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
}

.hero-side-info .value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.hero-side-info .unit {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-inverse);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

.btn-icon {
    width: 20px; height: 20px;
}

/* ===================================================================
   SECTION HEADERS
   =================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ===================================================================
   CONDOMINIUMS SECTION
   =================================================================== */
.condominios {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.condo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.condo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 1px solid var(--border);
}

.condo-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--gold-glow);
}

.condo-card-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.9);
    transition: all var(--transition-slow);
}

.condo-card:hover .condo-card-img {
    filter: brightness(0.4) saturate(1.1);
    transform: scale(1.05);
}

.condo-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.condo-card-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: block;
}

.condo-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.condo-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.condo-card-meta {
    display: flex;
    gap: 16px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
}

.condo-card-arrow {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    color: var(--gold);
    font-size: 1.2rem;
}

.condo-card:hover .condo-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================================================
   STATS / SOCIAL PROOF
   =================================================================== */
.stats-section {
    padding: 80px 60px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 24px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ===================================================================
   DIFFERENTIALS
   =================================================================== */
.differentials {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.diff-card {
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.diff-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    background: var(--bg-card-hover);
}

.diff-card:hover::before {
    transform: scaleX(1);
}

.diff-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.diff-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.diff-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================================================
   PORTFOLIO GRID
   =================================================================== */
.portfolio-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--text-inverse);
    border-color: var(--gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1700px;
    margin: 0 auto;
}

@media (min-width: 1800px) {
    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.property-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.property-card-image {
    position: relative;
    height: 340px;
    overflow: hidden;
}

.property-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.property-card:hover .property-card-image img {
    transform: scale(1.08);
}

.property-card-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gold);
    color: var(--text-inverse);
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-card-price {
    position: absolute;
    bottom: 16px; right: 16px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.property-card-info {
    padding: 24px;
}

.property-card-condo {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    display: block;
}

.property-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.property-card-specs {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.property-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.property-spec-label {
    font-size: 0.6rem;
    color: var(--text-dim);
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.property-spec-value {
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===================================================================
   PROPERTY DETAIL PAGE
   =================================================================== */
.property-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.property-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.property-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 2;
}

.property-detail {
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}

.property-gallery img {
    width: 100%; height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid var(--border);
}

.property-gallery img:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.property-description {
    margin-bottom: 48px;
}

.property-description h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.property-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

/* Specs Table */
.specs-table {
    width: 100%;
    margin-bottom: 48px;
}

.specs-table h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.spec-row .label {
    color: var(--text-secondary);
}

.spec-row .value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Finishes */
.finishes-section h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.finish-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.finish-item {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.finish-item h4 {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--gold);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.finish-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Architect */
.architect-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
}

.architect-card .label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    display: block;
}

.architect-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.architect-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Sidebar */
.property-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.sidebar-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.sidebar-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

/* ===================================================================
   BLOG
   =================================================================== */
.blog-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: var(--gold-glow);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.blog-date {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
}

.blog-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.blog-card:hover .blog-read-more {
    gap: 12px;
}

/* Blog Page Layout */
.blog-page-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    margin-bottom: 48px;
    cursor: pointer;
}

.blog-featured img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    transition: transform var(--transition-slow);
}

.blog-featured:hover img {
    transform: scale(1.03);
}

.blog-featured-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 48px;
    z-index: 2;
}

.blog-featured-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-featured-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.blog-sidebar-section {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.blog-sidebar-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-link {
    display: block;
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition-fast);
}

.sidebar-link:hover,
.sidebar-link.active {
    color: var(--gold);
}

.sidebar-link.active {
    font-weight: 600;
}

.sidebar-link:last-child {
    border-bottom: none;
}

/* Blog Post */
.blog-post-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.blog-post-hero img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.blog-post-hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 60px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 2;
    max-width: 900px;
}

.blog-post-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-post-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin: 48px 0 20px;
    font-weight: 600;
}

.blog-post-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 36px 0 16px;
    font-weight: 600;
}

.blog-post-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 1rem;
}

.blog-post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 20px 28px;
    margin: 32px 0;
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.blog-post-content img {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 32px 0;
}

.related-posts {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

/* ===================================================================
   CONTACT / CONVERSION
   =================================================================== */
.contact-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px; height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-form {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
    border-color: #f87171;
}

.field-error-msg {
    display: block;
    font-size: 0.72rem;
    color: #f87171;
    margin-top: 4px;
    font-family: var(--font-mono);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===================================================================
   CTA BANNER
   =================================================================== */
.cta-banner {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 60%);
    animation: cta-glow 6s ease infinite alternate;
}

@keyframes cta-glow {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
    padding: 80px 60px 40px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px; height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--gold);
    background: var(--gold-glow);
    color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 32px auto 0;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================================================
   WHATSAPP FLOATING
   =================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    cursor: pointer;
    animation: whatsapp-bounce 2s ease infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px; height: 28px;
    fill: white;
}

@keyframes whatsapp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===================================================================
   LIGHTBOX
   =================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s, color 0.2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    background: var(--bg-glass);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

@media (max-width: 600px) {
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
}

/* ===================================================================
   PAGE HERO (Blog, Portfolio, Contact)
   =================================================================== */
.page-hero {
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60%;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    z-index: 1;
}

.page-hero img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(0.8);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-luxury);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-luxury);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-luxury);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s var(--ease-luxury);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-luxury);
}

.stagger-children.visible > *:nth-child(1)  { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2)  { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3)  { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4)  { transition-delay: 0.20s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5)  { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6)  { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7)  { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8)  { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9)  { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(10) { transition-delay: 0.50s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(11) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(12) { transition-delay: 0.60s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(13) { transition-delay: 0.65s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(14) { transition-delay: 0.70s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(15) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(16) { transition-delay: 0.80s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(17) { transition-delay: 0.85s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(18) { transition-delay: 0.90s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(n+19) { transition-delay: 0.90s; opacity: 1; transform: translateY(0); }

/* ===================================================================
   CONDO PROFILES — Detailed breakdown section
   =================================================================== */

.condos-detail {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.condo-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}
.condo-profile:last-of-type { border-bottom: none; }

.condo-profile.reverse .condo-profile-visual { order: 2; }
.condo-profile.reverse .condo-profile-content { order: 1; }

/* Visual side */
.condo-profile-visual {
    position: relative;
}
.condo-profile-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.condo-profile-keystats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-gold);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    margin-top: 20px;
    overflow: hidden;
}
.condo-keystat {
    background: var(--bg-card);
    padding: 20px 16px;
    text-align: center;
}
.condo-keystat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.2;
}
.condo-keystat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
    display: block;
}


.condo-profile-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}
.condo-profile-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.1;
}
.condo-profile-location {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.condo-profile-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.condo-profile-desc strong {
    color: var(--text-primary);
}

.condo-amenities-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.condo-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.condo-amenity {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}
.condo-amenity-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.condo-amenity-text { flex: 1; }

.condo-profile-cta {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: gap var(--transition-fast);
}
.condo-profile-cta:hover { gap: 14px; }

/* Unique highlight badge */
.condo-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-glow);
    border: 1px solid var(--border-gold);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .condo-profile {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    .condo-profile.reverse .condo-profile-visual { order: 0; }
    .condo-profile.reverse .condo-profile-content { order: 0; }
    .condo-profile-visual img { height: 360px; }
}

@media (max-width: 768px) {
    .condo-amenities-grid { grid-template-columns: 1fr; }
    .condo-keystats { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1200px) {
    .condo-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .hero { padding: 40px 20px; }
    .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-side-info { display: none; }

    .property-detail { grid-template-columns: 1fr; }
    .property-sidebar { position: static; }

    .contact-grid { grid-template-columns: 1fr; }
    .blog-page-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 20px;
    }

    .navbar { padding: 0 20px; }
    .nav-tagline { display: none; }

    .condo-grid { grid-template-columns: 1fr; }
    .condo-card { height: 380px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 2.5rem; }

    .diff-grid { grid-template-columns: 1fr; }

    .portfolio-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    .property-gallery { grid-template-columns: repeat(2, 1fr); }
    .finish-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .page-hero { padding: 40px 20px; min-height: 300px; }
    .property-hero-overlay { padding: 40px 20px; }
    .property-detail { padding: 40px 20px; }
    .blog-post-hero-content { padding: 40px 20px; }
    .blog-post-content { padding: 40px 20px; }
    .cta-banner { padding: 60px 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .property-card-specs { flex-wrap: wrap; gap: 12px; }
}

/* ─── REGION TEASER (index.html) ─── */
.regiao-teaser {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.regiao-teaser-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.regiao-teaser-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.regiao-teaser-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.75) 60%, rgba(8,8,8,0.88) 100%);
}

.regiao-teaser-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.regiao-teaser-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.regiao-teaser-text p {
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.7;
}

.regiao-teaser-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.rt-stat {
    background: rgba(10,10,10,0.85);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.rt-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.rt-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 900px) {
    .regiao-teaser-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .regiao-teaser { padding: 80px 0; }
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    padding-bottom: 40px;
}

.pagination-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.pagination-btn:hover,
.pagination-btn.active {
    background: var(--gold);
    color: var(--text-inverse);
    border-color: var(--gold);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===================================================================
   === Mapa: Popup Premium (Phase 4) ===
   POP-01..POP-04: Popup de condominio (hero + stats + actions)
   POP-06: Dark theme global para todos os popups Leaflet
   =================================================================== */

/* ─── POP-06: Leaflet dark theme overrides ─── */
.leaflet-popup-content-wrapper {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: var(--radius-lg) !important;
    padding: 0 !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px var(--gold-glow) !important;
}

.leaflet-popup-content {
    margin: 0 !important;
}

.leaflet-popup-tip {
    background: var(--bg-card) !important;
}

.leaflet-popup-close-button {
    color: var(--text-secondary) !important;
    top: 8px !important;
    right: 10px !important;
}

/* ─── POP-01: Hero image ─── */
.popup-hero {
    position: relative;
    overflow: hidden;
}

.popup-img-premium {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: block;
}

.popup-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
    padding: 24px 14px 10px;
}

.popup-hero-overlay .popup-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-display);
    margin: 0 0 2px;
}

.popup-hero-overlay .popup-location {
    font-size: .72rem;
    color: rgba(255,255,255,.7);
}

/* ─── Wrapper premium ─── */
.popup-premium {
    display: block;
}

/* ─── POP-04: Botoes de acao ─── */
.popup-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.popup-btn {
    display: block;
    text-align: center;
    padding: 8px 6px;
    border-radius: var(--radius-sm);
    font-size: .72rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: opacity .2s;
}

.popup-btn-gold {
    background: var(--gold);
    color: var(--text-inverse);
}

.popup-btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.popup-btn-neutral {
    background: transparent;
    border-color: var(--border-gold);
    color: var(--gold);
}

.popup-btn-disabled {
    background: transparent;
    border-color: var(--border);
    color: var(--text-dim);
    opacity: .4;
    cursor: not-allowed;
}

/* ─── Compact POI header (Phase 4 Plan 02: POP-05) ─── */
.popup-compact-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.popup-compact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.popup-btn-rota-full {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* === Mapa: Side Panel (Phase 5) === */

.sp-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    z-index: 1100;
    background: var(--bg-card);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-left: 1px solid var(--border-gold);
    box-shadow: -4px 0 40px rgba(0,0,0,0.6), 0 0 0 1px var(--gold-glow);
    transform: translateX(100%);
    transition: transform 300ms var(--ease-luxury, ease-out);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.sp-panel.sp-open {
    transform: translateX(0);
}

.sp-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    transition: background 200ms;
}

.sp-close-btn:hover {
    background: rgba(0,0,0,0.75);
}

.sp-hero {
    position: relative;
    overflow: hidden;
}

.sp-hero-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.sp-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 40px 20px 16px;
}

.sp-hero-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.sp-hero-cidade {
    color: var(--gold);
    font-size: 0.78rem;
    margin: 4px 0 0;
    opacity: 0.9;
}

.sp-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 16px 20px;
}

.sp-kpi-item {
    border-left: 2px solid var(--border-gold);
    padding-left: 10px;
}

.sp-kpi-val {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
    display: block;
}

.sp-kpi-lbl {
    color: var(--text-secondary);
    font-size: 0.7rem;
    display: block;
    margin-top: 2px;
}

.sp-poi-section {
    padding: 0 20px 16px;
    border-top: 1px solid rgba(201,169,110,0.15);
}

.sp-poi-title {
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 14px 0 10px;
    font-weight: 600;
}

.sp-poi-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sp-poi-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.sp-poi-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.85;
}

.sp-poi-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
}

.sp-poi-dist {
    color: var(--gold);
    font-size: 0.75rem;
    white-space: nowrap;
    font-weight: 600;
}

.sp-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(201,169,110,0.15);
}

.sp-btn {
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--radius-sm, 6px);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: opacity 200ms;
    border: none;
}

.sp-btn:hover {
    opacity: 0.85;
}

.sp-btn-gold {
    background: var(--gold);
    color: #111;
}

.sp-btn-green {
    background: #25D366;
    color: #fff;
}

.sp-btn-neutral {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
}

.sp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
}

.sp-overlay.sp-open {
    display: block;
}

.sp-drag-handle {
    width: 40px;
    height: 4px;
    background: rgba(201,169,110,0.4);
    border-radius: 2px;
    margin: 10px auto 6px;
    display: none;
}

@media (max-width: 768px) {
    .sp-panel {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 60vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
    }

    .sp-panel.sp-open {
        transform: translateY(0);
    }

    .sp-hero-img {
        height: 160px;
    }

    .sp-drag-handle {
        display: block;
    }

    .sp-close-btn {
        top: 48px;
    }
}

/* ── SearchControl ──────────────────────────────────────────────── */

.search-control {
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 800;
    overflow: visible;
    position: relative;
}

.search-control input {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: inherit;
    border-radius: 8px;
    box-sizing: border-box;
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 900;
}

.search-dropdown.open {
    display: block;
}

.search-group-header {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0,0,0,0.2);
}

.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #e0e0e0;
    transition: background 0.15s;
}

.search-item:hover {
    background: rgba(201,168,76,0.12);
}

.search-item.highlighted {
    background: rgba(201,168,76,0.22);
    outline: none;
}

.search-item .search-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-item .search-icon svg {
    width: 100%;
    height: 100%;
}

.search-item .search-name {
    font-weight: 500;
}

.search-item .search-city {
    color: #888;
    font-size: 11px;
    margin-left: auto;
}

.search-no-result {
    padding: 12px 14px;
    color: #888;
    font-size: 13px;
    font-style: italic;
}

@media (max-width: 700px) {
    .search-control {
        width: 220px;
    }
}

/* ── Tour Overlay ─────────────────────────────────────────────── */

.tour-overlay {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1150;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 14px 18px;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-overlay-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-overlay-counter {
    font-size: 12px;
    color: var(--gold);
    font-weight: 400;
    margin-left: 8px;
}

.tour-overlay-bar {
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.tour-overlay-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.tour-overlay-btns {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.tour-overlay-next,
.tour-overlay-stop {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s, transform 0.1s;
}

.tour-overlay-next {
    background: var(--gold);
    color: #111;
}

.tour-overlay-next:hover {
    background: #d4b060;
}

.tour-overlay-stop {
    background: transparent;
    color: var(--gold);
}

.tour-overlay-stop:hover {
    background: rgba(201,168,76,0.1);
}

@media (max-width: 700px) {
    .tour-overlay {
        min-width: 240px;
        max-width: calc(100vw - 32px);
        bottom: 16px;
    }
}

/* ── Radius Filter (Fase 9) ──────────────────────────────────── */
.popup-radius-wrap { margin-top: 8px; border-top: 1px solid rgba(201,168,76,0.15); padding-top: 8px; }
.popup-radius-btn { width: 100%; text-align: center; }
.popup-radius-btn.active { background: rgba(201,168,76,0.2); color: var(--gold); border-color: var(--gold); }
.popup-radius-slider { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }
.popup-radius-input { width: 100%; accent-color: var(--gold, #C9A84C); cursor: pointer; }
.popup-radius-label { font-size: 11px; color: rgba(201,168,76,0.8); text-align: center; letter-spacing: 0.03em; }
.leaflet-tooltip.dist-tooltip { background: rgba(10,10,10,0.85); border: 1px solid rgba(201,168,76,0.4); color: #C9A84C; font-size: 11px; padding: 2px 7px; box-shadow: none; }
.leaflet-tooltip.dist-tooltip::before { border-right-color: rgba(201,168,76,0.4); }

/* ===================================================================
   MIAMI — Seção Internacional
   =================================================================== */

.miami-section {
    background: var(--bg-primary);
}

/* ── Intro Hero ── */
.miami-intro {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: var(--section-padding);
    padding-top: 100px;
    padding-bottom: 100px;
}

.miami-intro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.miami-intro-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.28) saturate(1.3);
}

.miami-intro-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(11, 15, 20, 0.97) 38%, rgba(11, 15, 20, 0.35) 100%),
        linear-gradient(to top, rgba(11, 15, 20, 1) 0%, transparent 55%);
}

.miami-intro-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
}

.miami-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(201, 169, 110, 0.06);
    backdrop-filter: blur(10px);
}

.miami-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-dot 2s ease infinite;
    flex-shrink: 0;
}

.miami-intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.miami-intro-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.miami-intro-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 500px;
}

.miami-intro-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.miami-intro-stat {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
}

.miami-intro-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.miami-intro-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.miami-city-tag {
    position: absolute;
    bottom: 36px;
    right: 60px;
    z-index: 2;
    text-align: right;
    pointer-events: none;
}

.miami-city-name {
    display: block;
    font-family: var(--font-display);
    font-size: 6.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.035);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
}

.miami-city-sub {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    margin-top: 4px;
}

/* ── Building Card ── */
.miami-building {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
}

.miami-building-visual {
    position: relative;
    overflow: hidden;
}

.miami-building-visual img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

.miami-building:hover .miami-building-visual img {
    transform: scale(1.04);
}

.miami-keystats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.miami-keystat {
    padding: 20px 14px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.miami-keystat:last-child {
    border-right: none;
}

.miami-keystat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.miami-keystat-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.52rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.miami-building-content {
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
    background: var(--bg-secondary);
}

.miami-building-brand {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold);
    border-left: 2px solid var(--gold);
    padding-left: 12px;
    display: block;
}

.miami-building-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 4px 0;
}

.miami-building-cta {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.miami-price-tag {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.miami-price-from {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.miami-price-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .miami-intro-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .miami-intro {
        min-height: auto;
        padding: 80px 32px;
    }
    .miami-intro-text h2 { font-size: 3.2rem; }
    .miami-intro-text p { max-width: 100%; }
    .miami-intro-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
    .miami-intro-stat { flex: 1; min-width: 160px; }
    .miami-city-tag { right: 32px; bottom: 20px; }
    .miami-city-name { font-size: 4rem; }
}

@media (max-width: 900px) {
    .miami-building {
        grid-template-columns: 1fr;
    }
    .miami-building-visual img { min-height: 420px; }
    .miami-keystats { grid-template-columns: repeat(2, 1fr); }
    .miami-keystat:nth-child(2) { border-right: none; }
    .miami-building-content { padding: 40px 28px; }
}

@media (max-width: 600px) {
    .miami-intro { padding: 64px 20px; }
    .miami-intro-text h2 { font-size: 2.6rem; }
    .miami-intro-stats { flex-direction: column; gap: 20px; }
    .miami-keystats { grid-template-columns: repeat(2, 1fr); }
    .miami-building-cta { flex-direction: column; align-items: flex-start; gap: 20px; }
    .miami-city-tag { display: none; }
}
