        :root {
            --primary: #1a2a3a;
            --primary-light: #2c4a6a;
            --accent: #c8a96e;
            --accent-light: #e0c88a;
            --white: #ffffff;
            --off-white: #f8f6f2;
            --gray-100: #f0ede8;
            --gray-200: #e0dcd5;
            --gray-300: #b0a89d;
            --gray-500: #6b6560;
            --gray-700: #3d3833;
            --dark: #0d1520;
            --gradient-hero: linear-gradient(135deg, rgba(13,21,32,0.85) 0%, rgba(26,42,58,0.6) 50%, rgba(200,169,110,0.2) 100%);
            --gradient-section: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
            --shadow-card: 0 20px 60px rgba(0,0,0,0.08);
            --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);
            --radius: 16px;
            --radius-sm: 8px;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        body {
            font-family: 'Heebo', 'Assistant', sans-serif;
            color: var(--gray-700);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════
           NAVIGATION
        ═══════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1000;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .nav.scrolled {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 60px;
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
        }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: var(--transition);
        }

        .nav.scrolled .nav-logo {
            color: var(--primary);
        }

        .nav-logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav.scrolled .nav-links a {
            color: var(--gray-500);
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 28px;
            background: var(--accent);
            color: var(--white) !important;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
        }

        .nav-cta::after {
            display: none !important;
        }

        /* ═══════════════════════════════════════
           HERO SECTION
        ═══════════════════════════════════════ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            /* hero image is now a real <img> for LCP control — see .hero-bg img */
            transform: scale(1.05);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            from { transform: scale(1.05); }
            to { transform: scale(1.12); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: var(--gradient-hero);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 80px;
            max-width: 1040px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(200,169,110,0.2);
            border: 1px solid rgba(200,169,110,0.4);
            border-radius: 50px;
            color: var(--white);
            font-size: 1.275rem;
            font-weight: 500;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }

        .hero h1 {
            font-size: 6.75rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero h1 .hero-en {
            display: block;
            color: var(--white);
            font-size: 3.3rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-top: 8px;
        }

        .hero h1 .accent {
            color: var(--accent);
        }

        .hero-subtitle {
            display: inline-block;
            font-size: 1.875rem;
            color: rgba(255,255,255,0.92);
            font-weight: 300;
            max-width: 840px;
            margin-bottom: 40px;
            line-height: 1.7;
            padding: 20px 30px;
            background: rgba(13,21,32,0.18);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            margin-top: 48px;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 3.15rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 1.275rem;
            color: rgba(255,255,255,0.7);
            margin-top: 8px;
            font-weight: 300;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.5);
            font-size: 1.125rem;
            animation: float 3s ease-in-out infinite;
        }

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

        .hero-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
        }

        /* ═══════════════════════════════════════
           SECTIONS GENERAL
        ═══════════════════════════════════════ */
        .section {
            padding: 120px 80px;
        }

        /* Offset anchor scrolling so the fixed nav doesn't cover section eyebrows */
        section, #data-strip {
            scroll-margin-top: 92px;
        }

        .section-dark {
            background: var(--primary);
            color: var(--white);
        }

        .section-light {
            background: var(--off-white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 20px;
        }

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

        .section-desc {
            font-size: 1.15rem;
            color: var(--gray-500);
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
            line-height: 1.8;
        }

        .section-dark .section-desc {
            color: rgba(255,255,255,0.7);
        }

        /* ═══════════════════════════════════════
           VISION SECTION
        ═══════════════════════════════════════ */
        .vision {
            position: relative;
            padding: 0;
            aspect-ratio: 6000 / 2967;
            height: auto;
            min-height: 480px;
            display: flex;
            align-items: center;
        }

        .vision-bg {
            position: absolute;
            inset: 0;
            background: url('../img/vision-corp.webp') center/cover no-repeat;
        }

        .vision-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to left, rgba(13,21,32,0.9) 0%, rgba(13,21,32,0.4) 60%, transparent 100%);
        }

        .vision-content {
            position: relative;
            z-index: 2;
            max-width: 550px;
            margin-right: auto;
            margin-left: 7cm;
            padding: 0 80px;
        }

        .vision-content .section-label {
            text-align: right;
            color: var(--white);
        }

        .section-dark .section-label,
        .cta .section-label {
            color: var(--white);
        }

        /* Eyebrow pill on light sections — gold text so it stays readable */
        .section-light .hero-badge {
            color: var(--accent);
        }

        .vision-content h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 24px;
        }

        .vision-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.9;
        }

        /* ═══════════════════════════════════════
           LOCATION SECTION
        ═══════════════════════════════════════ */
        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .location-image {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .location-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .location-image:hover img {
            transform: scale(1.03);
        }

        .location-details h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 24px;
        }

        .location-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 32px;
        }

        .location-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
        }

        .location-feature:hover {
            transform: translateX(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }

        .location-feature-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: linear-gradient(135deg, rgba(200,169,110,0.16), rgba(200,169,110,0.04));
            border: 1px solid rgba(200,169,110,0.4);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .location-feature-text h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .location-feature-text p {
            font-size: 0.9rem;
            color: var(--gray-500);
            font-weight: 300;
        }

        /* Compact the location section so header + map + features fit one screen */
        #location { padding-top: 30px; padding-bottom: 30px; }
        #location .section-header { margin-bottom: 20px; }
        #location .section-title { font-size: 2rem; margin-bottom: 10px; }
        #location .section-desc { font-size: 0.95rem; }
        #location .location-grid { gap: 40px; }
        #location .location-image img { height: 350px; }
        #location .location-details h3 { font-size: 1.5rem; margin-bottom: 12px; }
        #location .location-features { gap: 12px; margin-top: 18px; }
        #location .location-feature { padding: 14px 18px; }
        #location .location-feature-icon { width: 46px; height: 46px; min-width: 46px; }

        /* ═══════════════════════════════════════
           ADVANTAGES / FEATURES
        ═══════════════════════════════════════ */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .advantage-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius);
            padding: 40px 32px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .advantage-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-8px);
            border-color: rgba(200,169,110,0.3);
        }

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

        .advantage-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(200,169,110,0.2), rgba(200,169,110,0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .advantage-card h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .advantage-card p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.6);
            font-weight: 300;
            line-height: 1.7;
        }

        /* Sophisticated line-icon styling (shared) */
        .advantage-icon svg,
        .location-feature-icon svg,
        .use-icon svg,
        .amenity-item-icon svg {
            display: block;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.6;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .advantage-icon { color: var(--accent-light); }
        .advantage-icon svg { width: 30px; height: 30px; }
        .location-feature-icon { color: var(--accent); }
        .location-feature-icon svg { width: 24px; height: 24px; }
        .use-icon { color: var(--white); line-height: 0; }
        .use-icon svg { width: 46px; height: 46px; }
        .amenity-item-icon {
            color: var(--primary);
            display: flex;
            justify-content: center;
            margin-bottom: 16px;
        }
        .amenity-item-icon svg { width: 38px; height: 38px; }

        /* ═══════════════════════════════════════
           USES / SPACES
        ═══════════════════════════════════════ */
        .uses-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .use-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }

        .use-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .use-card-header {
            padding: 32px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            position: relative;
        }

        .use-card-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
        }

        .use-card-header .use-icon {
            position: absolute;
            top: 24px;
            left: 24px;
            font-size: 2.5rem;
            opacity: 0.3;
        }

        .use-card-body {
            padding: 32px;
        }

        .use-card-body ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .use-card-body li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--gray-700);
        }

        .use-card-body li::before {
            content: '◆';
            color: var(--accent);
            font-size: 0.6rem;
            margin-top: 6px;
            min-width: 12px;
        }

        /* ═══════════════════════════════════════
           COMMERCIAL / AMENITY BASE
        ═══════════════════════════════════════ */
        .amenity-showcase {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 60px;
        }

        .amenity-showcase img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .amenity-showcase-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            left: 0;
            padding: 48px;
            background: linear-gradient(to top, rgba(13,21,32,0.95) 0%, transparent 100%);
        }

        .amenity-showcase-overlay h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .amenity-showcase-overlay p {
            color: rgba(255,255,255,0.7);
            font-size: 1.05rem;
            font-weight: 300;
        }

        .amenity-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .amenity-item {
            text-align: center;
            padding: 32px 20px;
            background: var(--white);
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: var(--transition);
        }

        .amenity-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        }

        .amenity-item-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .amenity-item h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .amenity-item p {
            font-size: 0.85rem;
            color: var(--gray-500);
            font-weight: 300;
        }

        /* ═══════════════════════════════════════
           NUMBERS / DATA STRIP
        ═══════════════════════════════════════ */
        .data-strip {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            background: var(--primary);
        }

        .data-strip-item {
            padding: 60px 32px;
            text-align: center;
            border-left: 1px solid rgba(255,255,255,0.08);
            transition: var(--transition);
        }

        .data-strip-item:last-child {
            border-left: none;
        }

        .data-strip-item:hover {
            background: rgba(255,255,255,0.05);
        }

        .data-strip-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 8px;
        }

        .data-strip-unit {
            font-size: 1rem;
            color: var(--white);
            font-weight: 300;
        }

        .data-strip-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
            margin-top: 8px;
            font-weight: 300;
        }

        /* ═══════════════════════════════════════
           GALLERY
        ═══════════════════════════════════════ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: auto auto;
            gap: 16px;
        }

        .gallery-item {
            border-radius: var(--radius-sm);
            overflow: hidden;
            position: relative;
        }

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

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item.large img {
            height: 500px;
        }

        .gallery-item:not(.large) img {
            height: 242px;
        }

        /* ═══════════════════════════════════════
           BUILDINGS SECTION
        ═══════════════════════════════════════ */
        .buildings-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .building-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
        }

        .building-card-image {
            height: 300px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .building-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .building-card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .building-card-body {
            padding: 32px;
        }

        .building-card-body h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .building-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .building-spec {
            padding: 16px;
            background: var(--gray-100);
            border-radius: var(--radius-sm);
        }

        .building-spec-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }

        .building-spec-label {
            font-size: 0.8rem;
            color: var(--gray-500);
            font-weight: 400;
        }

        /* ═══════════════════════════════════════
           HOLISTIC SECTION
        ═══════════════════════════════════════ */
        .holistic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .holistic-item {
            text-align: center;
            padding: 48px 32px;
        }

        .holistic-number {
            font-size: 4rem;
            font-weight: 100;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 16px;
        }

        .holistic-item h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .holistic-item p {
            font-size: 0.95rem;
            color: var(--gray-500);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ═══════════════════════════════════════
           CTA SECTION
        ═══════════════════════════════════════ */
        .cta {
            position: relative;
            padding: 120px 80px;
            text-align: center;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            background: url('../img/night-sunset.webp') center/cover no-repeat;
        }

        .cta-overlay {
            position: absolute;
            inset: 0;
            background: rgba(13,21,32,0.85);
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta h2 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 40px;
            font-weight: 300;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-form {
            max-width: 560px;
            margin: 0 auto 16px;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(200,169,110,0.3);
            border-radius: var(--radius);
            padding: 28px;
            backdrop-filter: blur(8px);
            text-align: right;
        }
        .cta-form-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 18px;
            text-align: center;
        }
        .cta-form-row {
            display: flex;
            gap: 14px;
            margin-bottom: 14px;
        }
        .cta-form input,
        .cta-form select,
        .cta-form textarea {
            flex: 1;
            width: 100%;
            padding: 13px 16px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.95);
            color: var(--gray-700);
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: var(--transition);
        }
        .cta-form textarea { margin-bottom: 16px; resize: vertical; }
        .cta-form input:focus,
        .cta-form select:focus,
        .cta-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,169,110,0.25); }
        .cta-form-submit { width: 100%; border: none; cursor: pointer; }
        @media (max-width: 600px) { .cta-form-row { flex-direction: column; } }

        .cta-contact {
            margin-top: 40px;
            color: rgba(255,255,255,0.85);
        }
        .cta-marketed {
            font-size: 1.05rem;
            font-weight: 400;
            margin-bottom: 18px;
        }
        .cta-marketed strong { color: var(--accent-light); font-weight: 700; }
        .cta-contact-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px 30px;
            font-size: 1.05rem;
            font-weight: 500;
        }
        .cta-contact-row a {
            color: var(--white);
            text-decoration: none;
            border-bottom: 1px solid rgba(200,169,110,0.5);
            padding-bottom: 3px;
            transition: var(--transition);
        }
        .cta-contact-row a:hover { color: var(--accent-light); border-color: var(--accent-light); }

        .cta-contact-groups {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 24px;
        }
        .cta-contact-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            padding: 22px 36px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(200,169,110,0.35);
            border-radius: 16px;
            min-width: 240px;
        }
        .cta-contact-cat {
            font-size: 0.82rem;
            letter-spacing: 2px;
            color: var(--accent-light);
            font-weight: 700;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(200,169,110,0.25);
        }
        .cta-email {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            border-bottom: 1px solid rgba(200,169,110,0.5);
            padding-bottom: 3px;
            transition: var(--transition);
        }
        .cta-email:hover { color: var(--accent-light); border-color: var(--accent-light); }

        .btn {
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Heebo', sans-serif;
        }

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

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200,169,110,0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-outline:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }

        /* ═══════════════════════════════════════
           FOOTER
        ═══════════════════════════════════════ */
        .footer {
            background: var(--off-white);
            padding: 56px 80px 34px;
            color: var(--gray-500);
            border-top: 1px solid var(--gray-200);
        }

        .footer-credits {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 48px;
            padding-bottom: 32px;
            margin-bottom: 22px;
            border-bottom: 1px solid var(--gray-200);
        }

        .fcredit {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
        }

        .fcredit-label {
            font-size: 0.78rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 600;
        }

        .fcredit-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .fcredit-logos {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .fcredit-logo {
            height: 70px;
            width: auto;
        }

        .fcredit-logo-project {
            height: 96px;
            width: auto;
        }

        .fcredit-site {
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        .fcredit-site:hover { color: var(--primary); }

        .footer-logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        /* ═══════════════════════════════════════
           ANIMATIONS
        ═══════════════════════════════════════ */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .fade-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .stagger > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .stagger.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
        .stagger.visible > *:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }

        /* ═══════════════════════════════════════
           RESPONSIVE
        ═══════════════════════════════════════ */
        @media (max-width: 1024px) {
            .section { padding: 80px 40px; }
            .hero-content { padding: 0 40px; }
            .hero h1 { font-size: 3.2rem; }
            .advantages-grid { grid-template-columns: repeat(2, 1fr); }
            .data-strip { grid-template-columns: repeat(3, 1fr); }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .gallery-item.large { grid-column: span 1; grid-row: span 1; }
            .gallery-item.large img { height: 300px; }
        }

        @media (max-width: 768px) {
            .nav { padding: 16px 24px; }
            .nav-links { display: none; }
            .section { padding: 60px 24px; }
            .hero-content { padding: 0 24px; }
            .hero h1 { font-size: 2.4rem; }
            .hero h1 .hero-en { font-size: 1.4rem; }
            .hero-stats { flex-wrap: wrap; gap: 24px; }
            .section-title { font-size: 2rem; }
            .location-grid { grid-template-columns: 1fr; }
            .advantages-grid { grid-template-columns: 1fr; }
            .uses-grid { grid-template-columns: 1fr; }
            .buildings-grid { grid-template-columns: 1fr; }
            .amenity-grid { grid-template-columns: repeat(2, 1fr); }
            .data-strip { grid-template-columns: repeat(2, 1fr); }
            .holistic-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .cta h2 { font-size: 2rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
        }
        /* ═══════════════════════════════════════
           SUSTAINABILITY SECTION
        ═══════════════════════════════════════ */
        .sustain-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .sustain-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }
        .sustain-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        .sustain-card-img {
            position: relative;
            height: 230px;
            overflow: hidden;
        }
        .sustain-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .sustain-card:hover .sustain-card-img img { transform: scale(1.05); }
        .sustain-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 14px rgba(0,0,0,0.2);
        }
        .sustain-card-body { padding: 28px; }
        .sustain-card-body h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        .sustain-card-body p {
            font-size: 0.95rem;
            color: var(--gray-500);
            font-weight: 300;
            line-height: 1.7;
        }
        @media (max-width: 768px) {
            .sustain-grid { grid-template-columns: 1fr; }
        }

        /* Advantages — sized so header + all 6 cards fill one screen, below the nav */
        #advantages { padding-top: 50px; padding-bottom: 50px; }
        #advantages .section-header { margin-bottom: 32px; }
        #advantages .section-title { font-size: 2.4rem; margin-bottom: 12px; }
        #advantages .section-desc { font-size: 1rem; }
        #advantages .hero-badge { margin-bottom: 18px; }
        #advantages .advantages-grid { gap: 24px; }
        #advantages .advantage-card { padding: 32px 28px; }
        #advantages .advantage-icon { width: 62px; height: 62px; margin-bottom: 18px; border-radius: 16px; }
        #advantages .advantage-icon svg { width: 32px; height: 32px; }
        #advantages .advantage-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
        #advantages .advantage-card p { font-size: 0.92rem; line-height: 1.6; }


/* ─── Hero background converted from CSS url() to a real <img> (LCP) ─── */
.hero-bg img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
