/* ============================================
           CSS CUSTOM PROPERTIES (DESIGN TOKENS)
           ============================================ */
        /* ============================================
           PRELOADER
           ============================================ */
        .site-preloader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: #09160f;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        .site-preloader.is-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .site-preloader svg {
            width: 80px;
            height: auto;
            opacity: 0.9;
            animation: preloader-pulse 1.8s ease-in-out infinite;
        }
        .preloader-bar {
            width: 120px;
            height: 2px;
            background: rgba(182, 154, 104, 0.2);
            border-radius: 2px;
            margin-top: 28px;
            overflow: hidden;
        }
        .preloader-bar-fill {
            width: 0%;
            height: 100%;
            background: #b69a68;
            border-radius: 2px;
            animation: preloader-fill 2.4s ease-in-out infinite;
        }
        @keyframes preloader-pulse {
            0%, 100% { opacity: 0.5; transform: scale(0.97); }
            50% { opacity: 1; transform: scale(1); }
        }
        @keyframes preloader-fill {
            0% { width: 0%; margin-left: 0; }
            50% { width: 100%; margin-left: 0; }
            100% { width: 0%; margin-left: 100%; }
        }

        :root {
            /* Brand Colors */
            --emerald: #104020;
            --gold: #b69a68;
            --cream: #ECEDED;
            --mocha: #636466;
            --sand: #D2D4D5;
            --fantasy: #F0EFF0;
            --black: #2D2D2E;
            --white: #FFFFFF;
            --forest-900: #09160f;
            --forest-800: #0f2418;
            --forest-700: #173628;
            --paper: #f5f3ef;
            --paper-strong: #ece8e1;
            
            /* Typography */
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Raleway', sans-serif;
            
            /* Spacing (8px grid) */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 96px;
            --space-5xl: 128px;

            /* Layout tokens */
            --section-y: clamp(5.5rem, 10vw, 8rem);
            --section-y-sm: clamp(4rem, 8vw, 5.5rem);
            --container-max: 1180px;
            --container-pad: clamp(1rem, 4vw, 2rem);
            --container-w: min(var(--container-max), calc(100% - var(--container-pad) * 2));
            --card-pad: var(--space-lg);
            --card-pad-lg: var(--space-2xl);
            
            /* Border-radius system */
            --radius-pill: 999px;
            --radius-card: 18px;
            --radius-card-sm: 14px;
            --radius-icon: 12px;

            /* Button system */
            --btn-pad-y: 0.78rem;
            --btn-pad-x: 1.4rem;
            --btn-pad-y-sm: 0.62rem;
            --btn-pad-x-sm: 1.1rem;
            --btn-min-h: 48px;
            --btn-font: 0.74rem;
            --btn-weight: 700;
            --btn-tracking: 0.14em;

            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(14, 60, 33, 0.06);
            --shadow-md: 0 4px 24px rgba(14, 60, 33, 0.08);
            --shadow-lg: 0 12px 48px rgba(14, 60, 33, 0.16);
            --shadow-xl: 0 20px 60px rgba(14, 60, 33, 0.24);
            
            /* Transitions */
            --transition-fast: 150ms ease-out;
            --transition-base: 300ms ease;
            --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Local Fonts */
        @font-face {
            font-family: 'Sarchia';
            src: url('../../fonts/03_SARCHIA_ABDULRAHMAN.TTF') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Raleway';
            src: url('../../fonts/RALEWAY-REGULAR.TTF') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Raleway';
            src: url('../../fonts/RALEWAY-BOLD.TTF') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Raleway';
            src: url('../../fonts/RALEWAY-LIGHT.TTF') format('truetype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }
        
        /* ============================================
           RESET & BASE STYLES
           ============================================ */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 108px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--body-font);
            font-size: 16px;
            line-height: 1.6;
            color: var(--black);
            background:
                radial-gradient(circle at top left, rgba(182, 154, 104, 0.12) 0%, rgba(182, 154, 104, 0) 30%),
                linear-gradient(180deg, #f6f5f1 0%, #f0f2f2 24%, var(--cream) 100%);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--heading-font);
            font-weight: 400;
            line-height: 1.2;
            color: var(--emerald);
        }
        
        h1 { font-size: clamp(48px, 8vw, 72px); letter-spacing: -0.02em; }
        h2 { font-size: clamp(36px, 6vw, 48px); letter-spacing: -0.01em; }
        h3 { font-size: clamp(24px, 4vw, 36px); font-weight: 500; }
        h4 { font-size: clamp(20px, 3vw, 24px); font-weight: 600; }

        /* Kurdish & Arabic locale font overrides — Sakkal Majalla / Noto Naskh Arabic */
        body[data-locale="ku"],
        body[data-locale="ar"] {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--body-font);
        }

        body[data-locale="ku"] h1,
        body[data-locale="ku"] h2,
        body[data-locale="ku"] h3,
        body[data-locale="ku"] h4,
        body[data-locale="ku"] h5,
        body[data-locale="ku"] h6,
        body[data-locale="ar"] h1,
        body[data-locale="ar"] h2,
        body[data-locale="ar"] h3,
        body[data-locale="ar"] h4,
        body[data-locale="ar"] h5,
        body[data-locale="ar"] h6 {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--heading-font);
        }

        /* Catch-all: any element that sets font-family explicitly must also get the locale override */
        body[data-locale="ku"] .hero-proof-value,
        body[data-locale="ku"] .villa-plan-title,
        body[data-locale="ku"] .submit-btn,
        body[data-locale="ku"] .form-group select,
        body[data-locale="ku"] .form-group option,
        body[data-locale="ku"] .form-group input,
        body[data-locale="ku"] .form-group label,
        body[data-locale="ku"] .collection-jump-link strong,
        body[data-locale="ku"] .villa-number,
        body[data-locale="ku"] .villa-stat-label,
        body[data-locale="ku"] .villa-stat strong,
        body[data-locale="ku"] .villa-schedule-en,
        body[data-locale="ku"] .plan-feature-index,
        body[data-locale="ku"] .contact-action,
        body[data-locale="ku"] .contact-office-card,
        body[data-locale="ku"] .section-kicker,
        body[data-locale="ku"] .amenity-label,
        body[data-locale="ku"] .footer-col-title,
        body[data-locale="ku"] .catalogue-cta,
        body[data-locale="ku"] .hero-cta,
        body[data-locale="ar"] .hero-proof-value,
        body[data-locale="ar"] .villa-plan-title,
        body[data-locale="ar"] .submit-btn,
        body[data-locale="ar"] .form-group select,
        body[data-locale="ar"] .form-group option,
        body[data-locale="ar"] .form-group input,
        body[data-locale="ar"] .form-group label,
        body[data-locale="ar"] .collection-jump-link strong,
        body[data-locale="ar"] .villa-number,
        body[data-locale="ar"] .villa-stat-label,
        body[data-locale="ar"] .villa-stat strong,
        body[data-locale="ar"] .villa-schedule-en,
        body[data-locale="ar"] .plan-feature-index,
        body[data-locale="ar"] .contact-action,
        body[data-locale="ar"] .contact-office-card,
        body[data-locale="ar"] .section-kicker,
        body[data-locale="ar"] .amenity-label,
        body[data-locale="ar"] .footer-col-title,
        body[data-locale="ar"] .catalogue-cta,
        body[data-locale="ar"] .hero-cta {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--body-font);
        }

        p {
            font-size: 16px;
            line-height: 1.6;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ::selection {
            background: rgba(182, 154, 104, 0.24);
            color: var(--emerald);
        }
        
        /* Accessibility: Focus Styles */
        *:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 4px;
            border-radius: 2px;
        }
        
        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* ============================================
           CUSTOM CURSOR
           ============================================ */
        .site-cursor {
            --cursor-x: -120px;
            --cursor-y: -120px;
            --hero-reveal-size: 72px;
            position: fixed;
            top: 0;
            left: 0;
            width: 30px;
            height: 30px;
            pointer-events: none;
            opacity: 0;
            z-index: 1600;
            transform: translate3d(calc(var(--cursor-x) - 50%), calc(var(--cursor-y) - 50%), 0);
            transition:
                width 180ms ease,
                height 180ms ease,
                opacity 140ms ease,
                border-color 180ms ease,
                background-color 180ms ease,
                box-shadow 180ms ease;
            will-change: transform, width, height, opacity;
        }

        .site-cursor::before,
        .site-cursor::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
        }

        .site-cursor::before {
            border: 1px solid rgba(16, 64, 32, 0.42);
            background: rgba(247, 245, 240, 0.16);
            box-shadow:
                inset 0 0 0 1px rgba(255, 255, 255, 0.34),
                0 10px 24px rgba(12, 27, 19, 0.12);
            backdrop-filter: blur(7px);
            filter: none;
            transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
        }

        .site-cursor::after {
            inset: 50%;
            width: 5px;
            height: 5px;
            margin: -2.5px 0 0 -2.5px;
            background: rgba(16, 64, 32, 0.86);
            opacity: 1;
            filter: none;
            transition: transform 180ms ease, opacity 180ms ease, background-color 180ms ease;
        }

        .site-cursor.is-visible {
            opacity: 1;
        }

        .site-cursor.is-hover {
            width: 44px;
            height: 44px;
        }

        .site-cursor.is-hover::before {
            border-color: rgba(16, 64, 32, 0.24);
            background: rgba(182, 154, 104, 0.16);
            box-shadow:
                inset 0 0 0 1px rgba(255, 255, 255, 0.28),
                0 14px 32px rgba(16, 64, 32, 0.14);
            filter: none;
        }

        .site-cursor.is-hover::after {
            transform: scale(1.45);
            background: rgba(16, 64, 32, 0.95);
            opacity: 1;
            filter: none;
        }

        .site-cursor.is-hero {
            width: calc(var(--hero-reveal-size) * 2);
            height: calc(var(--hero-reveal-size) * 2);
        }

        .site-cursor.is-hero::before {
            border-color: rgba(247, 245, 240, 0.92);
            background:
                radial-gradient(circle, rgba(247, 245, 240, 0.11) 0%, rgba(247, 245, 240, 0.04) 56%, rgba(247, 245, 240, 0) 74%);
            box-shadow:
                inset 0 0 0 1px rgba(255, 255, 255, 0.16),
                0 0 0 18px rgba(247, 245, 240, 0.04),
                0 24px 54px rgba(9, 22, 15, 0.24);
            backdrop-filter: none;
            filter: none;
        }

        .site-cursor.is-hero::after {
            opacity: 0;
            transform: scale(0.2);
        }

        .site-cursor.is-hidden {
            opacity: 0;
        }

        @media (hover: hover) and (pointer: fine) {
            body[data-has-custom-cursor="true"],
            body[data-has-custom-cursor="true"] a,
            body[data-has-custom-cursor="true"] button,
            body[data-has-custom-cursor="true"] .nav-toggle,
            body[data-has-custom-cursor="true"] .gallery-item,
            body[data-has-custom-cursor="true"] .collection-jump-link,
            body[data-has-custom-cursor="true"] .contact-action,
            body[data-has-custom-cursor="true"] .contact-office-card,
            body[data-has-custom-cursor="true"] .hero,
            body[data-has-custom-cursor="true"] .hero * {
                cursor: none !important;
            }

            body[data-has-custom-cursor="true"] input,
            body[data-has-custom-cursor="true"] textarea,
            body[data-has-custom-cursor="true"] select,
            body[data-has-custom-cursor="true"] option,
            body[data-has-custom-cursor="true"] [contenteditable="true"] {
                cursor: auto !important;
            }
        }

        /* ============================================
           STICKY NAVIGATION
           ============================================ */
        .main-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(236, 237, 237, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: 0 2px 20px rgba(16, 64, 32, 0.06);
            transition: transform var(--transition-base);
        }

        .main-nav.hidden {
            transform: translateY(-100%);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.45rem 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-xl);
        }

        .nav-logo {
            height: 52px;
            width: auto;
            transition: transform var(--transition-fast);
            filter: brightness(0) saturate(100%);
        }

        .nav-logo:hover {
            transform: scale(1.05);
        }

        .nav-logo-link {
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: var(--space-sm);
            margin-left: auto;
            flex-wrap: wrap;
        }

        .nav-controls {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            flex-shrink: 0;
        }

        .language-switch {
            display: inline-flex;
            align-items: center;
            padding: 0.24rem;
            border-radius: 999px;
            border: 1px solid rgba(16, 64, 32, 0.1);
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 10px 22px rgba(16, 64, 32, 0.06);
        }

        .language-option {
            min-width: 42px;
            padding: 0.55rem 0.72rem;
            border: 0;
            border-radius: 999px;
            background: transparent;
            color: rgba(16, 64, 32, 0.72);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
        }

        .language-option:hover {
            color: var(--emerald);
        }

        .language-option.is-active {
            background: var(--emerald);
            color: var(--white);
            box-shadow: 0 12px 24px rgba(16, 64, 32, 0.18);
        }

        .nav-item {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 0.7rem 1rem;
            border-radius: 999px;
            border: 1px solid rgba(16, 64, 32, 0.08);
            background: rgba(16, 64, 32, 0.04);
            color: var(--emerald);
            font-size: 0.78rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
            white-space: nowrap;
        }

        .nav-item-copy {
            display: grid;
            gap: 0.14rem;
            line-height: 1.1;
        }

        .nav-item-label {
            display: block;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .nav-item-local {
            display: none;
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--body-font);
            font-size: 0.66rem;
            font-weight: 400;
            color: rgba(16, 64, 32, 0.72);
            letter-spacing: 0;
            text-transform: none;
            line-height: 1.15;
        }

        .nav-item-index {
            font-family: var(--heading-font);
            font-size: 1.1rem;
            color: var(--gold);
            letter-spacing: 0;
            line-height: 1;
        }

        .nav-item:hover {
            transform: translateY(-2px);
            background: rgba(16, 64, 32, 0.08);
            border-color: rgba(16, 64, 32, 0.16);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.85rem 1.3rem;
            border-radius: 999px;
            background: var(--emerald);
            color: var(--white);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
            box-shadow: var(--shadow-sm);
        }

        .nav-cta:hover {
            background: #184a2d;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Mobile Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: var(--space-sm);
            z-index: 1001;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
            transition: all var(--transition-base);
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        
        /* ============================================
           HERO SECTION (PARALLAX + GLASS MORPHISM)
           ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: stretch;
            overflow: hidden;
            background:
                radial-gradient(circle at 80% 22%, rgba(182, 154, 104, 0.16) 0%, rgba(182, 154, 104, 0) 24%),
                linear-gradient(135deg, #1b3328 0%, #104020 52%, #0d2418 100%);
            padding: 0;
        }
        
        /* Parallax Background */
        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            right: -10%;
            bottom: -10%;
            background: url('../images/HERO-NG.webp') center 42%/cover no-repeat;
            opacity: 0.62;
            z-index: 1;
            transform: translateZ(0) scale(1.03);
            will-change: transform;
        }
        
        /* Animated Gradient Overlay */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(112deg, rgba(9, 22, 15, 0.9) 0%, rgba(9, 22, 15, 0.68) 34%, rgba(16, 64, 32, 0.34) 58%, rgba(16, 64, 32, 0.06) 100%),
                linear-gradient(0deg, rgba(9, 22, 15, 0.72) 0%, rgba(9, 22, 15, 0.04) 42%),
                radial-gradient(circle at 75% 18%, rgba(182, 154, 104, 0.14) 0%, rgba(182, 154, 104, 0) 20%);
            z-index: 2;
            animation: gradientShift 8s ease-in-out infinite alternate;
        }
        
        @keyframes gradientShift {
            0% { opacity: 0.6; }
            100% { opacity: 0.8; }
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            width: min(1360px, calc(100% - 3rem));
            margin: 0 auto;
            padding: clamp(6.8rem, 12vw, 8.6rem) 0 4.8rem;
            display: grid;
            grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.82fr);
            gap: clamp(2.25rem, 4vw, 4.25rem);
            align-items: center;
            color: var(--white);
            animation: fadeInUp 1s ease-out;
        }

        .hero-copy {
            position: relative;
            max-width: 820px;
            padding: clamp(1.55rem, 2.6vw, 2.25rem);
            border-radius: 34px;
            background:
                linear-gradient(180deg, rgba(7, 22, 13, 0.72) 0%, rgba(7, 22, 13, 0.42) 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 34px 80px rgba(5, 16, 11, 0.22);
            backdrop-filter: blur(14px);
        }

        .hero-copy::before {
            content: '';
            position: absolute;
            top: 1.1rem;
            left: 1.4rem;
            width: 86px;
            height: 1px;
            background: linear-gradient(90deg, rgba(182, 154, 104, 0.92) 0%, rgba(182, 154, 104, 0) 100%);
        }

        .hero-brand-row {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
            margin-bottom: 1.65rem;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-logo {
            width: clamp(68px, 10vw, 94px);
            height: auto;
            margin: 0;
            filter: drop-shadow(0 8px 24px rgba(0,0,0,0.24));
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .hero-kicker {
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.72);
            margin-bottom: var(--space-xs);
        }

        .hero-kurdish {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--heading-font);
            font-size: 1.05rem;
            color: var(--cream);
            line-height: 1.4;
        }

        .hero-arabic {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', Arial, sans-serif;
            font-size: 0.96rem;
            color: rgba(255, 255, 255, 0.74);
            line-height: 1.5;
            margin-top: 0.18rem;
        }

        .hero-heading {
            font-size: clamp(2.95rem, 5.15vw, 4.85rem);
            line-height: 0.92;
            letter-spacing: -0.045em;
            color: var(--white);
            max-width: 14ch;
            margin-bottom: 1.1rem;
            animation: fadeInUp 1s ease-out 0.4s both;
            text-shadow: 0 18px 42px rgba(4, 17, 10, 0.26);
            text-wrap: balance;
        }

        .hero-description {
            font-size: 1.12rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.86);
            max-width: 640px;
            margin-bottom: 1.45rem;
            animation: fadeInUp 1s ease-out 0.55s both;
        }

        .hero-proof {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.45rem;
            animation: fadeInUp 1s ease-out 0.7s both;
        }

        .hero-proof-item {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            min-width: 142px;
            padding: 0.88rem 0.98rem 0.9rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(4, 17, 10, 0.2) 100%);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 20px;
            backdrop-filter: blur(12px);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
        }

        .hero-proof-value {
            font-family: var(--heading-font);
            font-size: 1.4rem;
            line-height: 1;
            color: var(--white);
        }

        .hero-proof-label {
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.72);
        }

        .hero-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            animation: fadeInUp 1s ease-out 0.85s both;
            max-width: 520px;
        }

        .hero-actions .hero-cta {
            text-align: center;
        }

        .hero-download-row {
            display: contents;
        }

        .hero-download-row .catalogue-cta {
            margin-top: 0;
            justify-content: center;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-md);
            padding: 1rem 2rem;
            min-height: 58px;
            background: var(--gold);
            border: 1px solid transparent;
            color: var(--emerald);
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-size: 0.85rem;
            transition: all var(--transition-base);
            border-radius: 999px;
            box-shadow: 0 18px 40px rgba(200, 160, 100, 0.25);
        }

        .hero-cta:hover {
            background: #d6b17d;
            color: var(--emerald);
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(200, 160, 100, 0.34);
        }

        .hero-cta.secondary {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.18);
            color: var(--white);
            box-shadow: none;
        }

        .hero-cta.secondary:hover {
            background: rgba(255, 255, 255, 0.14);
            color: var(--white);
        }

        .hero-panel {
            align-self: end;
            position: relative;
            padding: clamp(1.7rem, 3vw, 2.35rem);
            border-radius: 30px;
            background: linear-gradient(180deg, rgba(245, 243, 239, 0.96) 0%, rgba(232, 228, 220, 0.9) 100%);
            border: 1px solid rgba(182, 154, 104, 0.18);
            backdrop-filter: blur(12px);
            box-shadow: 0 34px 80px rgba(4, 17, 10, 0.16);
            animation: fadeInUp 1s ease-out 1s both;
        }

        .hero-panel::before {
            content: '';
            position: absolute;
            top: 1.25rem;
            left: 1.5rem;
            right: 1.5rem;
            height: 1px;
            background: linear-gradient(90deg, rgba(182, 154, 104, 0.92) 0%, rgba(182, 154, 104, 0.12) 48%, rgba(182, 154, 104, 0) 100%);
        }

        .hero-panel-label {
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(16, 64, 32, 0.58);
            margin-bottom: 1rem;
            margin-top: 0.35rem;
        }

        .hero-panel-title {
            font-family: var(--heading-font);
            font-size: clamp(1.9rem, 3vw, 2.4rem);
            line-height: 1.02;
            color: var(--emerald);
            margin-bottom: var(--space-lg);
            text-wrap: balance;
        }

        .hero-panel-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            margin-bottom: var(--space-xl);
        }

        .hero-panel-list li {
            position: relative;
            padding-left: 1.2rem;
            color: #455046;
            line-height: 1.7;
        }

        .hero-panel-list li::before {
            content: '';
            position: absolute;
            top: 0.7rem;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gold);
        }

        .hero-panel-link {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: var(--emerald);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .hero-panel-link:hover {
            color: var(--gold);
        }
        
        /* Animated Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: var(--space-2xl);
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
            cursor: pointer;
        }
        
        .scroll-indicator::before {
            content: '';
            display: block;
            width: 2px;
            height: 40px;
            background: var(--gold);
            margin: 0 auto var(--space-sm);
        }
        
        @keyframes bounce {
            0%, 100% { 
                transform: translateX(-50%) translateY(0); 
            }
            50% { 
                transform: translateX(-50%) translateY(12px); 
            }
        }
        
        /* ============================================
           SECTION BASE STYLES
           ============================================ */
        section {
            padding: var(--section-y) 0;
            max-width: none;
            margin: 0;
            opacity: 1;
            transform: none;
            transition: none;
        }

        section[id] {
            scroll-margin-top: 108px;
        }

        section.visible {
            opacity: 1;
            transform: none;
        }

        .about > *,
        .property-types > *,
        .interior-gallery > *,
        .master-plan > *,
        .amenities > *,
        .location > *,
        .contact > *,
        .villa-detail > * {
            width: var(--container-w);
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-bottom: 1rem;
            color: var(--emerald);
            line-height: 0.96;
            letter-spacing: -0.02em;
            text-wrap: balance;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.08rem;
            color: var(--mocha);
            margin-bottom: var(--space-2xl);
            max-width: 720px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.9;
        }

        .section-kicker {
            display: block;
            width: fit-content;
            margin: 0 auto 1rem;
            color: var(--gold);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            position: relative;
            padding-left: 2.6rem;
        }

        .section-kicker::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 2rem;
            height: 1px;
            background: linear-gradient(90deg, rgba(182, 154, 104, 0) 0%, rgba(182, 154, 104, 0.95) 100%);
        }

        .brochure-copy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
        }

        .brochure-copy-block {
            position: relative;
            display: grid;
            gap: 1rem;
            padding: 1.5rem 1.55rem;
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 239, 240, 0.86) 100%);
            border: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: 0 16px 36px rgba(14, 60, 33, 0.06);
            overflow: hidden;
        }

        .brochure-copy-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 1.55rem;
            width: 68px;
            height: 1px;
            background: linear-gradient(90deg, rgba(182, 154, 104, 0.95) 0%, rgba(182, 154, 104, 0) 100%);
        }

        .brochure-copy-block[dir="rtl"] {
            text-align: right;
        }

        .brochure-copy-block[lang="ku"],
        .brochure-copy-block[lang="ar"] {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--body-font);
        }

        .brochure-copy-head {
            color: var(--emerald);
            font-size: 1.18rem;
            line-height: 1.75;
            font-weight: 700;
            padding-top: 0.4rem;
        }

        .brochure-copy-body {
            display: grid;
            gap: 0.85rem;
            color: #3c3934;
            font-size: 0.98rem;
            line-height: 2;
        }

        .brochure-quote {
            margin-top: var(--space-xl);
            padding: 1.35rem 1.5rem;
            border-left: 3px solid var(--gold);
            background: rgba(240, 239, 240, 0.86);
            border-radius: 0 24px 24px 0;
            display: grid;
            gap: 0.55rem;
            box-shadow: var(--shadow-sm);
        }

        .brochure-quote[dir="rtl"] {
            border-left: 0;
            border-right: 3px solid var(--gold);
            border-radius: 20px 0 0 20px;
            text-align: right;
        }

        .brochure-quote .villa-copy-line {
            color: var(--emerald);
            line-height: 1.9;
        }
        
        /* ============================================
           STORY SECTION (ASYMMETRIC 60/40 SPLIT)
           ============================================ */
        .about {
            background: var(--white);
            position: relative;
        }

        .about::before,
        .property-types::before,
        .interior-gallery::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at top right, rgba(182, 154, 104, 0.08) 0%, rgba(182, 154, 104, 0) 26%);
            opacity: 0.8;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 60fr 40fr;
            gap: var(--space-3xl);
            align-items: start;
        }
        
        .about-text {
            padding-right: var(--space-2xl);
        }
        
        .about-text h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: var(--space-xl);
            color: var(--emerald);
            line-height: 1.2;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: var(--space-lg);
            color: #333;
        }

        .story-copy-grid {
            margin-top: var(--space-xl);
        }
        
        /* Floating Badge with Glass Morphism */
        .about-highlight {
            position: relative;
            background: linear-gradient(135deg, rgba(14, 60, 33, 0.95) 0%, rgba(26, 90, 51, 0.95) 100%);
            backdrop-filter: blur(10px);
            color: var(--white);
            padding: var(--space-2xl);
            margin: var(--space-xl) 0;
            text-align: center;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            transform: translateY(0);
            transition: transform var(--transition-base);
        }
        
        .about-highlight:hover {
            transform: translateY(-4px);
        }
        
        .about-highlight .villas-svg {
            max-width: 300px;
            height: auto;
        }
        
        /* Parallax Image */
        .about-image {
            position: relative;
            height: 700px;
            overflow: hidden;
            border-radius: 32px;
            box-shadow: 0 26px 70px rgba(14, 60, 33, 0.18);
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            pointer-events: none;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 28%;
            transition: transform var(--transition-slow);
            will-change: transform;
        }
        
        .about-image:hover img {
            transform: scale(1.08);
        }
        
        /* ============================================
           PROPERTY TYPES (3D ELEVATED CARDS)
           ============================================ */
        .property-types {
            background: transparent;
            position: relative;
            overflow: visible;
        }
        
        .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-2xl);
            margin-top: var(--space-3xl);
        }
        
        /* 3D Card Effect */
        .type-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 239, 240, 0.9) 100%);
            overflow: hidden;
            border-radius: 28px;
            transition: transform var(--transition-base), box-shadow var(--transition-base);
            cursor: pointer;
            box-shadow: 0 18px 44px rgba(14, 60, 33, 0.08);
            position: relative;
            border: 1px solid rgba(16, 64, 32, 0.08);
        }

        .type-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 56px rgba(14, 60, 33, 0.14);
        }
        
        .type-image {
            height: 340px;
            overflow: hidden;
            position: relative;
        }
        
        .type-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 52%;
            transition: transform var(--transition-slow);
        }

        .type-card:nth-child(1) .type-image img {
            object-position: center 58%;
        }

        .type-card:nth-child(2) .type-image img {
            object-position: center 48%;
        }

        .type-card:nth-child(3) .type-image img {
            object-position: center 44%;
        }
        
        .type-card:hover .type-image img {
            transform: scale(1.1);
        }
        
        /* Glass Morphism Overlay on Hover */
        .type-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(180deg, rgba(14, 60, 33, 0.04) 0%, rgba(14, 60, 33, 0.22) 100%);
            opacity: 1;
            transition: opacity var(--transition-base), background var(--transition-base);
        }

        .type-card:hover .type-image::after {
            background:
                linear-gradient(180deg, rgba(14, 60, 33, 0.02) 0%, rgba(14, 60, 33, 0.3) 100%);
        }
        
        .type-info {
            padding: var(--card-pad);
        }
        
        .type-info h3 {
            font-size: 2.15rem;
            color: var(--emerald);
            margin-bottom: 0.6rem;
        }
        
        .type-info > p {
            font-size: 1.05rem;
            color: #666;
            margin-bottom: var(--space-lg);
            line-height: 1.6;
        }

        .type-card-locales {
            display: grid;
            gap: 0.14rem;
            margin-bottom: var(--space-lg);
            color: rgba(16, 64, 32, 0.76);
        }

        /* Spec Pills (Horizontal Layout) */
        .type-specs {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-md);
            margin: var(--space-lg) 0;
        }
        
        .spec-item {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: 0.65rem 0.9rem;
            background: rgba(255, 255, 255, 0.74);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--emerald);
            font-weight: 600;
            border: 1px solid rgba(16, 64, 32, 0.08);
        }
        
        .spec-icon {
            width: 18px;
            height: 18px;
            fill: var(--gold);
            flex-shrink: 0;
        }
        
        .view-plans {
            display: inline-block;
            margin-top: var(--space-md);
            padding: 0.92rem 1.55rem;
            background: var(--emerald);
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            border-radius: 999px;
            transition: all var(--transition-base);
            border: none;
            cursor: pointer;
            font-family: var(--body-font);
            box-shadow: 0 16px 34px rgba(16, 64, 32, 0.18);
        }
        
        .view-plans:hover {
            background: #1a5a33;
            transform: translateY(-3px);
        }
        
        /* ============================================
           INTERIOR GALLERY (BENTO GRID)
           ============================================ */
        .interior-gallery {
            background: var(--white);
            position: relative;
        }
        
        .gallery-description {
            max-width: 900px;
            margin: 0 auto var(--space-3xl);
            text-align: center;
            padding: 0 var(--space-xl);
        }
        
        .gallery-description p {
            font-size: 1.06rem;
            line-height: 1.95;
            color: #45423d;
            font-weight: 400;
        }
        
        .gallery-description strong {
            color: var(--emerald);
            font-weight: 600;
        }
        
        /* Bento Grid Layout (Mixed Sizes) */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-md);
            margin-top: var(--space-2xl);
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            cursor: pointer;
            box-shadow: 0 16px 40px rgba(14, 60, 33, 0.08);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }
        
        /* Bento Grid Sizes */
        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            min-height: 450px;
        }
        
        .gallery-item:nth-child(2) {
            grid-column: span 2;
            min-height: 220px;
        }
        
        .gallery-item:nth-child(3) {
            grid-column: span 2;
            min-height: 220px;
        }
        
        .gallery-item:nth-child(4) {
            grid-column: span 2;
            grid-row: span 2;
            min-height: 450px;
        }
        
        .gallery-item:nth-child(5) {
            grid-column: span 2;
            min-height: 220px;
        }
        
        .gallery-item:nth-child(6),
        .gallery-item:nth-child(7) {
            grid-column: span 1;
            min-height: 220px;
        }
        
        .gallery-item:nth-child(8),
        .gallery-item:nth-child(9),
        .gallery-item:nth-child(10) {
            grid-column: span 1;
            min-height: 280px;
        }
        
        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .gallery-item:nth-child(1) img { object-position: center 48%; }
        .gallery-item:nth-child(2) img { object-position: center 52%; }
        .gallery-item:nth-child(3) img { object-position: center 40%; }
        .gallery-item:nth-child(4) img { object-position: center 36%; }
        .gallery-item:nth-child(5) img { object-position: center 46%; }
        .gallery-item:nth-child(6) img { object-position: center 42%; }
        .gallery-item:nth-child(7) img { object-position: center 35%; }
        .gallery-item:nth-child(8) img { object-position: center 50%; }
        .gallery-item:nth-child(9) img { object-position: center 36%; }
        .gallery-item:nth-child(10) img { object-position: center 44%; }
        
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        
        /* Slide-up Caption */
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(9, 22, 15, 0.84) 0%, rgba(9, 22, 15, 0.1) 100%);
            padding: 1.15rem 1.25rem;
            color: var(--white);
            transform: translateY(0);
            transition: background var(--transition-base), padding var(--transition-base);
        }
        
        .gallery-item:hover .gallery-overlay {
            background: linear-gradient(0deg, rgba(9, 22, 15, 0.92) 0%, rgba(9, 22, 15, 0.14) 100%);
            padding-bottom: 1.45rem;
        }
        
        .gallery-overlay span {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .gallery-overlay span::before {
            content: '';
            width: 1.8rem;
            height: 1px;
            background: rgba(182, 154, 104, 0.86);
        }
        
        /* ============================================
           MASTER PLAN
           ============================================ */
        .master-plan {
            background: var(--fantasy);
        }
        
        .plan-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
            margin-top: var(--space-2xl);
        }
        
        .plan-image {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(14, 60, 33, 0.12);
        }

        .plan-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .plan-features {
            display: flex;
            flex-direction: column;
            gap: var(--space-xl);
        }
        
        .plan-feature {
            display: flex;
            align-items: flex-start;
            gap: var(--space-lg);
            padding: var(--card-pad);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 239, 240, 0.82) 100%);
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(16, 64, 32, 0.08);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }
        
        .plan-feature:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
        }
        
        .plan-feature-icon {
            width: 72px;
            height: 72px;
            flex-shrink: 0;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 245, 240, 0.92) 100%);
            border: 1px solid rgba(171, 141, 63, 0.28);
            box-shadow: inset 0 0 0 1px rgba(12, 61, 33, 0.08);
        }

        .plan-feature-index {
            font-family: var(--heading-font);
            font-size: 1.46rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            color: #0c3d21;
            line-height: 1;
            text-shadow: 0.6px 0 0 rgba(171, 141, 63, 0.45);
        }
        
        .plan-feature-text h4 {
            font-size: 1.3rem;
            color: var(--emerald);
            margin-bottom: var(--space-sm);
        }
        
        .plan-feature-text p {
            color: #666;
            line-height: 1.6;
        }

        .plan-feature-text .villa-copy-line {
            color: #44423d;
        }
        
        /* ============================================
           AERIAL SHOWCASE
           ============================================ */
        .aerial-showcase {
            background: var(--black);
            padding: 0;
            overflow: hidden;
        }
        
        .aerial-container {
            position: relative;
            height: 80vh;
            min-height: 960px;
        }

        .aerial-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.54) 100%),
                radial-gradient(circle at 22% 18%, rgba(10, 30, 18, 0.3) 0%, rgba(10, 30, 18, 0) 38%);
            z-index: 1;
            pointer-events: none;
            backdrop-filter: blur(2.5px);
        }

        .aerial-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            filter: saturate(0.82) contrast(0.88) brightness(0.78);
        }
        
        .aerial-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
            padding: var(--space-3xl) 5%;
            color: var(--white);
            text-align: center;
            z-index: 2;
        }
        
        .aerial-content h2 {
            font-family: var(--heading-font);
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: var(--space-md);
            color: var(--gold);
        }

        .aerial-title-group {
            display: grid;
            gap: 0.95rem;
        }
        
        .aerial-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .aerial-content .section-kicker {
            color: rgba(255, 255, 255, 0.68);
        }

        .aerial-copy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-lg);
            max-width: 1100px;
            margin: var(--space-xl) auto 0;
            text-align: left;
        }

        .aerial-copy-grid .brochure-copy-block {
            background: rgba(8, 18, 12, 0.76);
            border-color: rgba(255, 255, 255, 0.12);
            box-shadow: none;
        }

        .aerial-copy-grid .brochure-copy-head,
        .aerial-copy-grid .brochure-copy-body,
        .aerial-copy-grid .villa-copy-line {
            color: rgba(255, 255, 255, 0.92);
        }
        
        /* ============================================
           AMENITIES (STAGGERED ANIMATIONS)
           ============================================ */
        .amenities {
            background: var(--white);
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.35rem;
            margin-top: var(--space-3xl);
        }
        
        .amenity-item {
            text-align: center;
            padding: 1.4rem 1rem 1.2rem;
            transition: transform var(--transition-base), box-shadow var(--transition-base);
            opacity: 1;
            transform: none;
            background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
            border: 1px solid rgba(14, 60, 33, 0.08);
            border-radius: 24px;
            box-shadow: 0 14px 34px rgba(14, 60, 33, 0.06);
        }
        
        .amenity-item.visible {
            animation: bounceIn 0.6s ease-out forwards;
        }
        
        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.9);
            }
            60% {
                opacity: 1;
                transform: translateY(-8px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .amenity-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-md);
        }
        
        .amenity-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto var(--space-lg);
            position: relative;
        }
        
        .amenity-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.2;
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }
        
        .amenity-item:hover .amenity-icon::before {
            width: 100px;
            height: 100px;
        }
        
        .amenity-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(1170%) hue-rotate(108deg) brightness(95%) contrast(96%);
            transition: filter var(--transition-base), transform var(--transition-base);
            position: relative;
            z-index: 1;
        }
        
        .amenity-item:hover .amenity-icon img {
            filter: brightness(0) saturate(100%) invert(64%) sepia(37%) saturate(520%) hue-rotate(358deg) brightness(92%) contrast(84%);
            transform: scale(1.1);
        }
        
        .amenity-label {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--emerald);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1.35;
        }

        .amenity-copy {
            display: grid;
            gap: 0.12rem;
            margin-top: 0.55rem;
            color: var(--mocha);
            font-size: 0.78rem;
            line-height: 1.55;
        }
        
        /* ============================================
           LOCATION
           ============================================ */
        .location {
            background: var(--cream);
        }
        
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
            margin-top: var(--space-2xl);
        }

        .location-facts {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: var(--space-md);
            margin-bottom: var(--space-2xl);
            max-width: 540px;
        }

        .location-fact {
            padding: var(--card-pad);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: var(--shadow-sm);
        }

        .location-fact strong {
            display: block;
            color: var(--emerald);
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.15;
        }

        .location-fact span {
            display: block;
            margin-top: 0.4rem;
            color: var(--mocha);
            font-size: 0.82rem;
            line-height: 1.5;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        
        .location-info h3 {
            font-size: 2rem;
            color: var(--emerald);
            margin-bottom: var(--space-lg);
        }
        
        .location-info p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: var(--space-lg);
        }
        
        .location-info a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition-fast);
        }
        
        .location-info a:hover {
            color: var(--sand);
        }
        
        .location-highlights {
            display: flex;
            flex-direction: column;
            gap: var(--space-md);
            margin-top: var(--space-xl);
        }
        
        .location-highlight {
            display: flex;
            align-items: center;
            gap: var(--space-md);
            padding: var(--space-md);
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            transition: transform var(--transition-base);
        }
        
        .location-highlight:hover {
            transform: translateX(8px);
        }
        
        .location-highlight-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }
        
        .location-highlight-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        .location-map {
            height: 600px;
            overflow: visible;
            border-radius: 0;
            box-shadow: none;
            background: transparent;
            position: relative;
            z-index: 0;
        }
        
        .location-map img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: transparent;
            position: relative;
            z-index: 2;
        }

        
        /* Sales Offices */
        .sales-offices {
            margin-top: var(--space-2xl);
            padding-top: var(--space-2xl);
            border-top: 2px solid rgba(14, 60, 33, 0.1);
        }
        
        .sales-offices h4 {
            font-family: var(--heading-font);
            font-size: 1.8rem;
            color: var(--emerald);
            margin-bottom: var(--space-xl);
        }
        
        .office-grid {
            display: grid;
            gap: var(--space-lg);
        }
        
        .office-card {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-lg);
            background: var(--fantasy);
            border-left: 4px solid var(--gold);
            border-radius: 4px;
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }
        
        .office-card:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-sm);
        }
        
        .office-number {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: var(--emerald);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-family: var(--heading-font);
            font-size: 1.3rem;
        }
        
        .office-info {
            flex: 1;
        }
        
        .office-title {
            font-weight: 600;
            color: var(--emerald);
            margin-bottom: var(--space-xs);
            font-size: 1.05rem;
        }
        
        .office-address {
            color: #666;
            line-height: 1.6;
            margin-bottom: var(--space-xs);
        }
        
        .office-note {
            margin-top: var(--space-sm);
            font-size: 0.9rem;
            color: var(--gold);
            font-weight: 500;
        }
        
        /* ============================================
           CONTACT FORM (FLOATING CARD)
           ============================================ */
        .contact {
            background:
                radial-gradient(circle at top right, rgba(182, 154, 104, 0.14) 0%, rgba(182, 154, 104, 0) 20%),
                linear-gradient(135deg, #10281b 0%, var(--emerald) 48%, #1a5a33 100%);
            color: var(--white);
        }
        
        .contact .section-title {
            color: var(--white);
        }
        
        .contact .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-shell {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
            gap: var(--space-3xl);
            align-items: start;
        }

        .contact-intro {
            padding-top: var(--space-md);
            align-self: stretch;
        }

        .contact-kicker {
            display: inline-block;
            margin-bottom: var(--space-lg);
            color: rgba(255, 255, 255, 0.72);
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .contact .section-title,
        .contact .section-subtitle {
            text-align: left;
            margin-left: 0;
            margin-right: 0;
            width: auto;
        }

        .contact-actions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: var(--space-md);
            margin-top: var(--space-2xl);
        }

        .contact-action {
            display: block;
            padding: 1.2rem 1.25rem;
            border-radius: 22px;
            text-decoration: none;
            color: var(--white);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
            border: 1px solid rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(10px);
            transition: transform var(--transition-base), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
        }

        .contact-action:hover {
            transform: translateY(-4px);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
            border-color: rgba(255, 255, 255, 0.22);
            box-shadow: 0 18px 40px rgba(5, 16, 11, 0.18);
        }

        .contact-action-label {
            display: block;
            margin-bottom: var(--space-sm);
            color: rgba(255, 255, 255, 0.65);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .contact-action strong {
            display: block;
            font-size: 1.05rem;
            line-height: 1.5;
        }

        .contact-note {
            margin-top: var(--space-xl);
            max-width: 54ch;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
        }

        .contact-office-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: var(--space-md);
            margin-top: var(--space-xl);
        }

        .contact-office-card {
            display: grid;
            gap: 0.55rem;
            padding: 1.15rem 1.2rem;
            border-radius: 22px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
        }

        .contact-office-index {
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .contact-office-card strong {
            color: var(--white);
            font-size: 1rem;
            line-height: 1.45;
        }

        .contact-office-card p {
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.75;
            font-size: 0.95rem;
        }
        
        /* Floating Card with Glass Morphism */
        .contact-form {
            max-width: none;
            margin: 0;
            background: linear-gradient(180deg, rgba(245, 243, 239, 0.98) 0%, rgba(236, 232, 225, 0.96) 100%);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(182, 154, 104, 0.16);
            border-radius: 30px;
            padding: var(--space-2xl);
            box-shadow: 0 34px 80px rgba(4, 17, 10, 0.18);
        }

        .form-status {
            margin-top: var(--space-lg);
            padding: 1rem 1.2rem;
            border-radius: 14px;
            background: rgba(16, 64, 32, 0.08);
            border: 1px solid rgba(16, 64, 32, 0.12);
            color: var(--emerald);
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .form-status[hidden] {
            display: none;
        }
        
        .form-group {
            margin-bottom: var(--space-lg);
            position: relative;
        }
        
        /* Floating Labels */
        .form-group label {
            position: absolute;
            left: var(--space-lg);
            top: 1rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            font-size: 0.85rem;
            text-transform: uppercase;
            color: rgba(16, 64, 32, 0.46);
            transition: all var(--transition-base);
            pointer-events: none;
        }
        
        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group select:focus + label,
        .form-group select:not([value=""]) + label {
            top: -10px;
            left: var(--space-md);
            font-size: 0.75rem;
            background: var(--paper);
            color: var(--emerald);
            padding: 0 var(--space-sm);
            border-radius: 999px;
            box-shadow: 0 0 0 4px var(--paper);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem var(--space-lg);
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(16, 64, 32, 0.14);
            color: var(--black);
            font-family: var(--body-font);
            font-size: 1rem;
            border-radius: 18px;
            transition: all var(--transition-base);
        }
        
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: transparent;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.96);
            box-shadow: 0 0 0 4px rgba(182, 154, 104, 0.12);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-group select {
            cursor: pointer;
        }
        
        .form-group select option {
            background: var(--paper);
            color: var(--emerald);
        }
        
        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, var(--emerald) 0%, #184a2d 100%);
            color: var(--emerald);
            border: none;
            font-family: var(--body-font);
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 999px;
            transition: all var(--transition-base);
            color: var(--white);
            box-shadow: 0 18px 40px rgba(16, 64, 32, 0.18);
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #184a2d 0%, #225837 100%);
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(16, 64, 32, 0.24);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background:
                radial-gradient(circle at top center, rgba(182, 154, 104, 0.12) 0%, rgba(182, 154, 104, 0) 24%),
                linear-gradient(180deg, #111311 0%, #171917 100%);
            color: var(--white);
            padding: var(--space-3xl) 5%;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-logo {
            width: 200px;
            height: auto;
            margin: 0 auto var(--space-xl);
            opacity: 0.9;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: var(--space-xl);
            margin: var(--space-xl) 0;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--gold);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color var(--transition-fast);
        }
        
        .footer-links a:hover {
            color: var(--sand);
        }
        
        .footer-copyright {
            margin-top: var(--space-xl);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }

        .footer-about {
            margin: var(--space-2xl) 0;
            display: grid;
            gap: var(--space-lg);
        }

        .footer-about .section-kicker {
            color: rgba(255, 255, 255, 0.62);
            margin-bottom: 0;
        }

        .footer-about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: var(--space-lg);
        }

        .footer-about-card {
            display: grid;
            gap: 0.8rem;
            padding: 1.45rem 1.5rem;
            border-radius: 28px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            text-align: right;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .footer-about-card[lang="ku"],
        .footer-about-card[lang="ar"] {
            font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--body-font);
        }

        .footer-about-card h4 {
            color: var(--white);
            font-size: 1.25rem;
        }

        .footer-about-card p {
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.9;
            font-size: 0.95rem;
        }
        

/* ============================================
   COLLECTION HUB + VILLA DETAIL SECTIONS
   ============================================ */

/* --- Villa Module: centered tabs + card panel (Dribbble-inspired) --- */
.villa-module {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.villa-module .property-types {
    position: sticky;
    top: 72px;
    z-index: 50;
    background: transparent;
    padding-bottom: 0;
    text-align: center;
}

.collection-jump {
    display: inline-flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(16, 64, 32, 0.1);
}

.collection-jump-link {
    display: grid;
    gap: 0.15rem;
    padding: 0.8rem 1.6rem 0.9rem;
    border-radius: 0;
    text-decoration: none;
    color: var(--mocha);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    box-shadow: none;
    transition: color var(--transition-fast), border-color var(--transition-fast);
    position: relative;
    text-align: center;
    flex: 1;
    margin-bottom: -1px;
}

.collection-jump-link::before {
    display: none;
}

.collection-jump-link:hover {
    color: var(--emerald);
}

.collection-jump-link.is-active {
    color: var(--emerald) !important;
    border-bottom-color: var(--emerald) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.collection-jump-link.is-active .collection-jump-label {
    color: var(--gold) !important;
}

.collection-jump-link.is-active strong {
    color: var(--emerald) !important;
}

.collection-jump-link.is-active span:last-child {
    color: var(--mocha) !important;
}

.collection-jump-link.is-active::before {
    display: none;
}

.collection-jump-label {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.collection-jump-link strong {
    font-family: var(--heading-font);
    font-size: 2rem;
    line-height: 0.98;
    color: var(--emerald);
}

.collection-jump-link span:last-child {
    color: #5f5d58;
    font-size: 0.88rem;
    line-height: 1.4;
}

.villa-card-note {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: var(--space-lg);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.villa-detail {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    color: var(--black);
    border: none;
    box-shadow: none;
}

.villa-detail.alt {
    background: transparent;
}

.villa-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    gap: 0;
    align-items: start;
}

.villa-detail-media {
    display: contents;
}

.villa-render {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
}

.villa-detail-content {
    grid-column: 2;
    grid-row: 1;
    padding: var(--space-xl);
}

.villa-plan-grid {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: var(--space-lg) var(--space-xl);
    background: var(--paper);
    border-top: 1px solid rgba(16, 64, 32, 0.06);
}

.villa-detail.reverse .villa-detail-media {
    order: unset;
}

.villa-detail.reverse .villa-detail-content {
    order: unset;
}

.villa-render {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    background: var(--fantasy);
    margin-bottom: 0;
}

.villa-render::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(14, 60, 33, 0) 0%, rgba(14, 60, 33, 0.18) 100%);
    pointer-events: none;
}

.villa-render img {
    width: 100%;
    height: clamp(340px, 42vw, 560px);
    object-fit: cover;
    object-position: center 52%;
    transition: transform var(--transition-slow);
}

#type-1 .villa-render img {
    object-position: center 58%;
}

#type-2 .villa-render img {
    object-position: center 48%;
}

#type-3 .villa-render img {
    object-position: center 42%;
}

.villa-detail:hover .villa-render img {
    transform: scale(1.03);
}

.villa-render-caption {
    position: absolute;
    left: 1.2rem;
    bottom: 1.2rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--emerald);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.villa-detail-content {
    display: grid;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static;
}

.villa-detail-content h2 {
    color: var(--emerald);
}

.villa-detail-content .villa-stat {
    background: rgba(16, 64, 32, 0.03);
    border-color: rgba(16, 64, 32, 0.08);
}

.villa-detail-content .villa-stat-label {
    color: var(--mocha);
}

.villa-detail-content .villa-stat strong {
    color: var(--emerald);
}

.villa-number {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.villa-number::before {
    content: '';
    width: 46px;
    height: 1px;
    background: rgba(200, 160, 100, 0.82);
}

.villa-translation {
    font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--heading-font);
    font-size: 1rem;
    color: rgba(14, 60, 33, 0.7);
    line-height: 1.6;
}

.villa-detail-content h2 {
    font-size: clamp(2.5rem, 4.3vw, 3.8rem);
    line-height: 0.95;
    margin: 0;
}

.villa-lead {
    font-size: 1.06rem;
    line-height: 1.85;
    color: #4b4a45;
}

.villa-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.villa-stat {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 60, 33, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.villa-stat-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7c7569;
    font-weight: 700;
}

.villa-stat strong {
    display: block;
    color: var(--emerald);
    font-size: 1.2rem;
    line-height: 1.25;
}

.villa-translation-stack,
.villa-stat-copy,
.villa-plan-copy,
.villa-schedule-copy,
.villa-brochure-note {
    display: grid;
    gap: 0.18rem;
}

.villa-copy-line[lang="ku"],
.villa-copy-line[lang="ar"] {
    display: block;
    font-family: 'Sakkal Majalla', 'Noto Naskh Arabic', 'Noto Sans Arabic', var(--heading-font);
}

body[data-language="en"] [lang="ku"],
body[data-language="en"] [lang="ar"] {
    display: none !important;
}

body[data-language="ku"] [lang="en"],
body[data-language="ku"] [lang="ar"] {
    display: none !important;
}

body[data-language="ar"] [lang="en"],
body[data-language="ar"] [lang="ku"] {
    display: none !important;
}

body[data-language="en"] .type-card-locales,
body[data-language="en"] .villa-translation-stack {
    display: none;
}

body[data-language="en"] .amenity-copy,
body[data-language="en"] .villa-stat-copy,
body[data-language="en"] .villa-schedule-copy,
body[data-language="en"] .villa-plan-copy,
body[data-language="en"] .villa-brochure-note {
    display: none;
}

body[data-language="ku"] .villa-schedule-en,
body[data-language="ar"] .villa-schedule-en,
body[data-language="ku"] .amenity-label,
body[data-language="ar"] .amenity-label,
body[data-language="ku"] .villa-stat-label,
body[data-language="ar"] .villa-stat-label {
    display: none;
}

body[data-language="ku"] .villa-number,
body[data-language="ar"] .villa-number {
    display: none;
}

body[data-language="ku"] .amenity-copy,
body[data-language="ar"] .amenity-copy {
    margin-top: 0;
    font-size: 0.94rem;
    color: var(--emerald);
    font-weight: 700;
}

body[data-language="ku"] .villa-stat-copy,
body[data-language="ar"] .villa-stat-copy,
body[data-language="ku"] .villa-schedule-copy,
body[data-language="ar"] .villa-schedule-copy,
body[data-language="ku"] .type-card-locales,
body[data-language="ar"] .type-card-locales {
    color: var(--emerald);
}

.villa-stat-copy {
    margin-top: 0.55rem;
    color: var(--mocha);
    font-size: 0.88rem;
    line-height: 1.55;
}

.villa-brochure-note {
    padding: 1rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(16, 64, 32, 0.08);
    color: var(--emerald);
    line-height: 1.75;
}

.villa-feature-grid {
    display: grid;
    gap: 0.85rem;
}

.villa-feature {
    position: relative;
    padding-left: 1.3rem;
    color: #44423d;
    line-height: 1.75;
}

.villa-feature::before {
    content: '';
    position: absolute;
    top: 0.75rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.villa-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    margin-top: var(--space-sm);
}

.villa-secondary-link {
    color: var(--emerald);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.villa-secondary-link:hover {
    color: var(--gold);
}

.villa-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
}

.villa-plan-card {
    display: grid;
    gap: var(--space-md);
    align-content: start;
    padding: 1.1rem;
    border-radius: 16px;
    background: var(--paper);
    border: 1px solid rgba(16, 64, 32, 0.06);
    box-shadow: none;
    color: var(--black);
}

.villa-plan-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.villa-plan-label {
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.villa-plan-title {
    font-family: var(--heading-font);
    color: var(--emerald);
    font-size: 1.4rem;
    line-height: 1.1;
}

.villa-plan-copy {
    color: var(--emerald);
    font-size: 0.95rem;
    line-height: 1.6;
}

.villa-plan-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(14, 60, 33, 0.08);
    background: #fff;
}

.villa-schedule {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
}

.villa-schedule li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.8rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(16, 64, 32, 0.08);
}

.villa-schedule-index {
    min-width: 1.2rem;
    color: var(--gold);
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.4;
}

.villa-schedule-name {
    display: grid;
    gap: 0.12rem;
}

.villa-schedule-en {
    color: var(--emerald);
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.45;
}

.villa-schedule-copy {
    color: var(--mocha);
    font-size: 0.84rem;
    line-height: 1.55;
}

.villa-schedule strong {
    color: var(--emerald);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.4;
}

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 968px) {
            /* Reduce section padding */
            section {
                padding: var(--space-3xl) 0;
            }
            
            /* Navigation */
            .nav-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 74px;
                left: var(--space-md);
                right: var(--space-md);
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                align-items: stretch;
                padding: var(--space-lg);
                gap: var(--space-md);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateX(calc(100% + var(--space-lg)));
                transition: transform var(--transition-base), opacity var(--transition-base), visibility 0s linear var(--transition-base);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
                border-radius: 24px;
            }
            
            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateX(0);
                transition: transform var(--transition-base), opacity var(--transition-base), visibility 0s linear 0s;
            }
            
            .nav-item {
                justify-content: space-between;
                width: 100%;
            }

            .nav-item-copy {
                justify-items: end;
                text-align: right;
            }

            .language-option {
                min-width: 38px;
                padding: 0.5rem 0.62rem;
            }

            .nav-cta {
                width: 100%;
            }

            .hero-content {
                grid-template-columns: 1fr;
                align-items: start;
                padding: 7rem 0 4rem;
            }

            .hero-panel {
                max-width: 560px;
            }
            
            /* About: Stack Layout */
            .about-content {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }

            .brochure-copy-grid,
            .aerial-copy-grid {
                grid-template-columns: 1fr;
            }
            
            .about-text {
                padding-right: 0;
            }
            
            .about-image {
                height: 400px;
            }
            
            /* Property Types: Single Column */
            .types-grid {
                grid-template-columns: 1fr;
            }
            

/* villa stacking handled by E2 media queries */
            /* Gallery: 2 Columns */
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-item:nth-child(1),
            .gallery-item:nth-child(4) {
                grid-column: span 2;
                min-height: 300px;
            }
            
            .gallery-item:nth-child(2),
            .gallery-item:nth-child(3),
            .gallery-item:nth-child(5) {
                grid-column: span 2;
                min-height: 200px;
            }
            
            .gallery-item:nth-child(6),
            .gallery-item:nth-child(7),
            .gallery-item:nth-child(8),
            .gallery-item:nth-child(9),
            .gallery-item:nth-child(10) {
                grid-column: span 1;
                min-height: 200px;
            }
            
            /* Master Plan: Stack */
            .plan-container {
                grid-template-columns: 1fr;
            }

            .aerial-container {
                height: auto;
                min-height: 0;
                display: grid;
            }

            .aerial-container::before {
                inset: 0;
                width: 100%;
                background: linear-gradient(180deg, rgba(4, 11, 8, 0.42) 0%, rgba(4, 11, 8, 0.24) 38%, rgba(4, 11, 8, 0.72) 100%);
                backdrop-filter: blur(2px);
            }

            .aerial-container video {
                height: 420px;
            }

            .aerial-content {
                position: static;
                width: auto;
                display: grid;
                gap: 1.5rem;
                padding: var(--space-2xl) var(--space-lg);
                background: linear-gradient(180deg, rgba(6, 14, 10, 0.82) 0%, rgba(6, 14, 10, 0.74) 100%);
                transform: none;
            }

            .aerial-title-group {
                max-width: 28rem;
                padding: 0;
            }

            .aerial-title-group::before {
                display: none;
            }

            .aerial-copy-grid {
                width: auto;
                justify-self: stretch;
                padding: 1.25rem 1.3rem;
            }
            
            /* Location: Stack */
            .location-content {
                grid-template-columns: 1fr;
            }
            
            .location-map {
                height: 400px;
            }

            .contact-shell {
                grid-template-columns: 1fr;
            }
            
            /* Amenities: 3 Columns */
            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: var(--space-lg);
            }
            
            .floor-plans {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 640px) {
            /* Hero */
            .hero {
                min-height: 100vh;
                min-height: 100svh;
            }
            
            .hero-content {
                width: min(calc(100% - 2rem), 1360px);
                padding: 6rem 0 3.4rem;
                gap: var(--space-2xl);
            }

            .hero-brand-row {
                align-items: flex-start;
                flex-direction: column;
                gap: var(--space-md);
            }

            .hero-heading {
                font-size: clamp(2.25rem, 11vw, 3.15rem);
                max-width: 12ch;
            }

            .hero-description {
                font-size: 0.98rem;
                line-height: 1.72;
            }

            .hero-proof {
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero-proof-item {
                min-width: 0;
            }

            .hero-actions {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .hero-cta {
                width: 100%;
            }

            .hero-panel {
                display: none;
            }
            
            /* Typography */
            .section-title {
                font-size: 2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }

            .location-facts {
                grid-template-columns: 1fr;
            }

            .amenity-copy {
                font-size: 0.72rem;
            }
            
            /* Navigation */
            .nav-container {
                padding: 0.8rem var(--space-md);
            }
            
            .nav-logo {
                height: 30px;
            }

            .nav-menu {
                top: 68px;
            }
            
            .villa-stat-grid {
                grid-template-columns: 1fr;
            }

            .villa-render img {
                height: 280px;
            }

            /* Amenities: 2 Columns */
            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            /* Footer */
            .footer-links {
                flex-direction: column;
                gap: var(--space-md);
            }
            
            /* Gallery: Single Column */
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item:nth-child(1),
            .gallery-item:nth-child(2),
            .gallery-item:nth-child(3),
            .gallery-item:nth-child(4),
            .gallery-item:nth-child(5) {
                grid-column: span 1;
                min-height: 250px;
            }

            .contact-actions {
                grid-template-columns: 1fr;
            }

            .contact-office-grid,
            .footer-about-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           QUIET EDITORIAL REDUCTION PASS
           ============================================ */
        body {
            background: linear-gradient(180deg, #f7f5f0 0%, #f2f1ec 52%, #eeece6 100%);
        }

        .main-nav {
            background: rgba(247, 245, 240, 0.9);
            border-bottom: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: none;
            backdrop-filter: blur(14px);
        }

        .nav-container {
            max-width: var(--container-max);
            padding: 0.95rem var(--container-pad);
            gap: 1.5rem;
        }

        .nav-menu {
            gap: 1.15rem;
            flex-wrap: nowrap;
        }

        .language-switch {
            padding: 0.12rem;
            border-color: rgba(16, 64, 32, 0.12);
            background: rgba(255, 255, 255, 0.72);
            box-shadow: none;
        }

        .language-option {
            min-width: 38px;
            padding: 0.48rem 0.64rem;
            font-size: 0.68rem;
            letter-spacing: 0.14em;
        }

        .language-option.is-active {
            box-shadow: none;
        }

        .nav-item {
            gap: 0.55rem;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .nav-item:hover {
            transform: none;
            background: transparent;
            border-color: transparent;
            color: rgba(16, 64, 32, 0.68);
        }

        .nav-item-index {
            font-size: 0.92rem;
            color: rgba(182, 154, 104, 0.9);
        }

        .nav-item-copy {
            display: inline-flex;
        }

        .nav-item-label {
            letter-spacing: 0.14em;
        }

        .nav-cta {
            padding: 0.55rem 0 0.3rem;
            border-radius: 0;
            background: transparent;
            border-bottom: 1px solid rgba(16, 64, 32, 0.28);
            color: var(--emerald);
            font-size: 0.72rem;
            letter-spacing: 0.16em;
            box-shadow: none;
        }

        .nav-cta:hover {
            background: transparent;
            transform: none;
            box-shadow: none;
            color: rgba(16, 64, 32, 0.72);
            border-bottom-color: rgba(16, 64, 32, 0.48);
        }

        .hero {
            min-height: 100vh;
            min-height: 100svh;
            isolation: isolate;
            --hero-reveal-x: 72%;
            --hero-reveal-y: 54%;
            --hero-reveal-size: 156px;
            --hero-reveal-feather: 34px;
            --hero-layer-position: center center;
            --hero-layer-size: cover;
            background: transparent;
        }

        .hero::before {
            inset: 0;
            background-image: url('../images/bg_color.png.webp');
            background-position: var(--hero-layer-position);
            background-size: var(--hero-layer-size);
            background-repeat: no-repeat;
            opacity: 1;
            filter: none;
            transform: none;
            z-index: 0;
        }

        .hero::after {
            animation: none;
            background: none;
            z-index: 2;
        }

        .hero-reveal,
        .hero-reveal-ring {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .hero-reveal {
            z-index: 1;
            background-image: url('../images/bg_sketch.png.webp');
            background-position: var(--hero-layer-position);
            background-size: var(--hero-layer-size);
            background-repeat: no-repeat;
            opacity: 0;
            -webkit-mask-image: radial-gradient(
                circle at var(--hero-reveal-x) var(--hero-reveal-y),
                rgba(0, 0, 0, 1) 0 calc(var(--hero-reveal-size) - var(--hero-reveal-feather)),
                rgba(0, 0, 0, 0.82) calc(var(--hero-reveal-size) - calc(var(--hero-reveal-feather) * 0.38)),
                rgba(0, 0, 0, 0) calc(var(--hero-reveal-size) + var(--hero-reveal-feather))
            );
            mask-image: radial-gradient(
                circle at var(--hero-reveal-x) var(--hero-reveal-y),
                rgba(0, 0, 0, 1) 0 calc(var(--hero-reveal-size) - var(--hero-reveal-feather)),
                rgba(0, 0, 0, 0.82) calc(var(--hero-reveal-size) - calc(var(--hero-reveal-feather) * 0.38)),
                rgba(0, 0, 0, 0) calc(var(--hero-reveal-size) + var(--hero-reveal-feather))
            );
            transition: opacity 140ms ease;
            filter: none;
        }

        .hero-reveal-ring {
            display: none;
        }

        .hero.is-reveal-active .hero-reveal {
            opacity: 1;
        }

        .hero-content {
            width: var(--container-w);
            padding: clamp(7.25rem, 12vw, 9rem) 0 clamp(4.5rem, 8vw, 6rem);
            grid-template-columns: 1fr;
            gap: 0;
            align-items: end;
            z-index: 4;
        }

        .hero-copy {
            max-width: 670px;
            padding: 1.15rem 1.3rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 16px;
            background: linear-gradient(180deg, rgba(8, 18, 12, 0.5) 0%, rgba(8, 18, 12, 0.3) 100%);
            box-shadow: 0 18px 36px rgba(8, 18, 12, 0.26);
            backdrop-filter: blur(2.4px);
        }

        .hero-copy::before,
        .hero-panel,
        .scroll-indicator {
            display: none;
        }

        .hero-brand-row {
            margin-bottom: 1.4rem;
        }

        .hero-logo {
            width: clamp(58px, 8vw, 76px);
            filter: none;
        }

        .hero-kicker {
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.72);
            text-shadow: 0 2px 14px rgba(8, 18, 12, 0.38);
        }

        .hero-heading {
            max-width: 10ch;
            margin-bottom: 1.1rem;
            font-size: clamp(3.25rem, 6vw, 5.3rem);
            letter-spacing: -0.045em;
            text-shadow: 0 6px 22px rgba(8, 18, 12, 0.4);
        }

        .hero-description {
            max-width: 58ch;
            margin-bottom: 1.6rem;
            font-size: 1.02rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.84);
            text-shadow: 0 4px 18px rgba(8, 18, 12, 0.34);
        }

        .hero-proof {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, max-content));
            gap: 1.25rem 2rem;
            margin-bottom: 1.75rem;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(255, 255, 255, 0.34);
        }

        .hero-proof-item {
            min-width: 0;
            padding: 0.45rem 0.65rem;
            gap: 0.2rem;
            background: rgba(8, 18, 12, 0.28);
            border: 0;
            border-radius: 10px;
            backdrop-filter: blur(4px);
            box-shadow: none;
        }

        .hero-proof-value {
            font-size: 1.18rem;
            letter-spacing: -0.01em;
            text-shadow: 0 4px 16px rgba(8, 18, 12, 0.34);
        }

        .hero-proof-label {
            font-size: 0.74rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.68);
            text-shadow: 0 2px 12px rgba(8, 18, 12, 0.28);
        }

        .hero-actions {
            gap: 10px;
        }

        .hero-cta {
            min-height: 0;
            padding: 0.8rem 1.45rem;
            background: var(--gold);
            border: 1px solid var(--gold);
            color: var(--white);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .hero-cta:hover {
            background: #c5a977;
            border-color: #c5a977;
            color: var(--white);
            transform: none;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
        }

        /* Section padding and container width now use layout tokens from :root */

        .section-title {
            line-height: 1;
            margin-bottom: 0.9rem;
        }

        .section-subtitle {
            max-width: 60ch;
            margin-bottom: var(--space-2xl);
            font-size: 1rem;
            line-height: 1.85;
            color: #5b5a55;
        }

        .section-kicker {
            margin-bottom: 0.85rem;
            padding-left: 0;
            color: rgba(16, 64, 32, 0.56);
            font-size: 0.72rem;
            letter-spacing: 0.2em;
        }

        .section-kicker::before {
            display: none;
        }

        .brochure-copy-grid {
            gap: 2rem;
        }

        .brochure-copy-block {
            padding: 1.15rem 0 0;
            border-radius: 0;
            background: transparent;
            border: 0;
            border-top: 1px solid rgba(16, 64, 32, 0.12);
            box-shadow: none;
        }

        .brochure-copy-block::before {
            display: none;
        }

        .brochure-copy-head {
            font-size: 1.04rem;
            line-height: 1.7;
            padding-top: 0;
        }

        .brochure-copy-body {
            gap: 0.75rem;
            font-size: 0.97rem;
            line-height: 1.9;
            color: #3d3b36;
        }

        .brochure-quote {
            padding: 1.1rem 0 0;
            border-left: 0;
            border-right: 0;
            border-top: 1px solid rgba(182, 154, 104, 0.46);
            background: transparent;
            border-radius: 0;
            box-shadow: none;
        }

        .brochure-quote[dir="rtl"] {
            border-right: 0;
            border-left: 0;
            border-radius: 0;
        }

        .about::before,
        .property-types::before,
        .interior-gallery::before {
            display: none;
        }

        .about-content {
            grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
            gap: clamp(2.5rem, 5vw, 4.5rem);
        }

        .about-text {
            padding-right: 0;
        }

        .about-image {
            height: 640px;
            border-radius: 18px;
            box-shadow: none;
        }

        .about-image::after {
            display: none;
        }

        .about-image img {
            transition: none;
            transform: none !important;
        }

        .about-image:hover img {
            transform: none;
        }

        .master-plan {
            background: var(--white);
        }

        .plan-container {
            gap: 2.5rem;
        }

        .plan-image {
            border-radius: 18px;
            border: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: none;
            background: #fbfaf7;
        }

        .plan-feature {
            padding: var(--space-md) 0;
            border-radius: 0;
            background: transparent;
            border: 0;
            border-top: 1px solid rgba(16, 64, 32, 0.12);
            box-shadow: none;
        }

        .plan-feature:hover {
            transform: none;
            box-shadow: none;
        }

        .amenities,
        .interior-gallery,
        .contact {
            background: var(--paper);
        }

        .aerial-showcase {
            background: var(--black);
            padding: 0;
        }

        .aerial-container {
            width: 100%;
            min-height: clamp(620px, 82vh, 980px);
            display: block;
            background: transparent;
            border: 0;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
        }

        .aerial-container::before {
            inset: 0;
            width: 100%;
            background:
                linear-gradient(
                    90deg,
                    rgba(6, 14, 10, 0.82) 0%,
                    rgba(6, 14, 10, 0.66) 28%,
                    rgba(6, 14, 10, 0.5) 52%,
                    rgba(6, 14, 10, 0.34) 74%,
                    rgba(6, 14, 10, 0.24) 88%,
                    rgba(6, 14, 10, 0.16) 100%
                ),
                radial-gradient(
                    86% 92% at 79% 54%,
                    rgba(5, 12, 9, 0.48) 0%,
                    rgba(5, 12, 9, 0.34) 45%,
                    rgba(5, 12, 9, 0.18) 72%,
                    rgba(5, 12, 9, 0) 100%
                );
            backdrop-filter: blur(1.25px);
        }

        .aerial-container::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 2;
            background:
                linear-gradient(
                    112deg,
                    rgba(255, 255, 255, 0.16) 0%,
                    rgba(255, 255, 255, 0) 40%,
                    rgba(255, 255, 255, 0.12) 64%,
                    rgba(255, 255, 255, 0) 100%
                ),
                radial-gradient(
                    120% 90% at 78% 70%,
                    rgba(214, 169, 84, 0.22) 0%,
                    rgba(214, 169, 84, 0) 58%
                );
            opacity: 0.36;
            mix-blend-mode: screen;
            animation: aerialOverlayDissolve 11s ease-in-out infinite alternate;
        }

        .aerial-container img,
        .aerial-container video {
            min-height: 100%;
            height: 100%;
            border-radius: 0;
        }

        .aerial-container video {
            filter: saturate(1.04) contrast(1.02) brightness(1);
            animation: aerialVideoTone 12s ease-in-out infinite alternate;
            transform: scale(1.03);
            transform-origin: center;
        }

        @keyframes aerialOverlayDissolve {
            0% {
                opacity: 0.24;
                transform: translate3d(-3.2%, 0, 0);
            }
            50% {
                opacity: 0.4;
            }
            100% {
                opacity: 0.56;
                transform: translate3d(3.2%, 0, 0);
            }
        }

        @keyframes aerialVideoTone {
            0% {
                filter: saturate(0.98) contrast(1) brightness(0.93);
            }
            100% {
                filter: saturate(1.12) contrast(1.06) brightness(1.01);
            }
        }

        .aerial-content {
            inset: 0;
            width: auto;
            transform: none;
            display: grid;
            grid-template-columns: minmax(320px, 420px) minmax(440px, 1fr);
            gap: clamp(3rem, 5vw, 6rem);
            align-items: center;
            justify-content: space-between;
            padding: clamp(2.75rem, 4vw, 4.25rem) clamp(2rem, 4.5vw, 4rem);
            background: none;
            border: 0;
            border-radius: 0;
            backdrop-filter: none;
            text-align: left;
            margin-bottom: 0;
            position: absolute;
            z-index: 3;
        }

        .aerial-content::before {
            content: none;
        }

        .aerial-title-group {
            position: relative;
            display: grid;
            z-index: 1;
            align-self: center;
            max-width: 24rem;
            padding: 0;
            gap: 1rem;
            opacity: 1;
            visibility: visible;
        }

        .aerial-title-group::before {
            content: none;
        }

        .aerial-title-group .section-kicker {
            margin: 0;
            color: rgba(255, 255, 255, 0.76);
            padding: 0;
            position: relative;
            z-index: 1;
        }

        .aerial-title-group h2 {
            align-self: start;
            max-width: 9.6ch;
            margin: 0;
            font-size: clamp(3.15rem, 4vw, 4.85rem);
            font-weight: 500;
            line-height: 1.03;
            letter-spacing: -0.038em;
            color: #efdeb4;
            text-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
            text-wrap: balance;
            position: relative;
            z-index: 1;
        }

        .aerial-copy-grid {
            align-self: center;
            justify-self: end;
            display: block;
            width: min(100%, 41rem);
            margin-top: 0;
            text-align: left;
            padding: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
            backdrop-filter: none;
            box-shadow: none;
            position: relative;
            z-index: 1;
            opacity: 1;
            visibility: visible;
        }

        .aerial-copy-grid .brochure-copy-block {
            padding: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
            backdrop-filter: none;
            box-shadow: none;
        }

        .aerial-copy-grid .brochure-copy-head {
            display: none;
        }

        .aerial-copy-grid .brochure-copy-body p,
        .aerial-copy-grid .villa-copy-line {
            font-size: clamp(1rem, 1.06vw, 1.1rem);
            line-height: 1.92;
            color: rgba(255, 255, 255, 1);
            text-shadow:
                0 3px 14px rgba(0, 0, 0, 0.5),
                0 1px 2px rgba(0, 0, 0, 0.38);
        }

        .advantages-visual {
            width: var(--container-w);
            margin-top: 2rem;
            border-radius: 18px;
            box-shadow: none;
        }

        .advantages-visual img {
            height: clamp(280px, 42vw, 520px);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.25rem 2rem;
            margin-top: 2rem;
        }

        .amenity-item {
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr);
            align-items: start;
            gap: 0.25rem 1rem;
            padding: 1rem 0;
            background: transparent;
            border: 0;
            border-top: 1px solid rgba(16, 64, 32, 0.12);
            border-radius: 0;
            box-shadow: none;
            transition: none;
        }

        .amenity-item:hover {
            transform: none;
            box-shadow: none;
        }

        .amenity-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(16, 64, 32, 0.14);
            background: transparent;
            display: grid;
            place-items: center;
        }

        .amenity-icon img {
            width: 18px;
            height: 18px;
        }

        .amenity-label {
            font-size: 1rem;
            line-height: 1.45;
            color: var(--emerald);
            text-transform: none;
            letter-spacing: 0;
        }

        .amenity-copy {
            grid-column: 2;
            font-size: 0.88rem;
            line-height: 1.65;
            color: #67635c;
        }

        .collection-jump {
            gap: var(--space-md);
            margin: 0;
            position: sticky;
            top: 72px;
            z-index: 100;
            background: transparent;
            padding: 12px 0;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid rgba(16, 64, 32, 0.08);
        }

        .collection-jump-link {
            padding: 0.75rem 1.2rem;
            border-radius: 12px 12px 0 0;
            background: transparent;
            border: 1px solid transparent;
            border-bottom: none;
            box-shadow: none;
        }

        .collection-jump-link:hover {
            transform: none;
            box-shadow: none;
            background: rgba(255, 255, 255, 0.5);
            border-color: rgba(16, 64, 32, 0.06);
            border-bottom: none;
        }

        .collection-jump-link strong {
            font-size: 1.65rem;
        }

        .types-grid {
            display: none;
        }

        .villa-detail {
            background: transparent;
            padding-top: 0;
            margin-top: 0;
        }

        .villa-detail.alt {
            background: transparent;
        }

        .villa-detail-shell {
            gap: 0 clamp(1.5rem, 3vw, 2.5rem);
        }

        .villa-render {
            margin-bottom: 1.25rem;
            border-radius: 18px;
            box-shadow: none;
            background: transparent;
        }

        .villa-render::after {
            display: none;
        }

        .villa-render img {
            border-radius: 18px;
            transition: none;
        }

        .villa-detail:hover .villa-render img {
            transform: none;
        }

        .villa-render-caption {
            left: 1rem;
            bottom: 1rem;
            padding: 0.45rem 0.7rem;
            background: rgba(247, 245, 240, 0.92);
            box-shadow: none;
        }

        .villa-detail-content {
            top: 96px;
            gap: var(--space-md);
            padding: var(--card-pad);
            background: none;
            border: none;
            border-radius: 0;
            box-shadow: none;
        }

        .villa-number {
            font-size: 0.72rem;
            letter-spacing: 0.16em;
        }

        .villa-number::before {
            width: 28px;
        }

        .villa-lead {
            font-size: 1rem;
            line-height: 1.8;
        }

        .villa-stat {
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.72);
            box-shadow: none;
        }

        .villa-plan-grid {
            gap: 1.25rem;
        }

        .villa-plan-card {
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.86);
            border: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: none;
        }

        .view-plans,
        .villa-secondary-link {
            padding: 0.72rem 1.2rem;
            border-radius: 999px;
            box-shadow: none;
            border: 1px solid rgba(16, 64, 32, 0.16);
            transition: all var(--transition-base);
        }

        .villa-secondary-link {
            background: transparent;
            color: var(--emerald);
        }

        .view-plans:hover,
        .villa-secondary-link:hover {
            transform: none;
            box-shadow: none;
            background: rgba(16, 64, 32, 0.06);
            border-color: var(--gold);
        }

        .interior-gallery {
            background: var(--white);
        }

        .gallery-description {
            max-width: 62ch;
            margin-bottom: 2rem;
            padding: 0;
        }

        .gallery-description p {
            font-size: 1rem;
            line-height: 1.85;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
            margin-top: 0;
        }

        .gallery-item,
        .gallery-item:nth-child(1),
        .gallery-item:nth-child(2),
        .gallery-item:nth-child(3),
        .gallery-item:nth-child(4),
        .gallery-item:nth-child(5),
        .gallery-item:nth-child(6),
        .gallery-item:nth-child(7),
        .gallery-item:nth-child(8),
        .gallery-item:nth-child(9),
        .gallery-item:nth-child(10) {
            grid-column: auto;
            grid-row: auto;
            min-height: 0;
            display: grid;
            gap: 0.85rem;
            border-radius: 0;
            box-shadow: none;
            transform: none;
        }

        .gallery-item img {
            aspect-ratio: 4 / 3;
            border-radius: 18px;
            transition: none;
        }

        .gallery-item:hover img {
            transform: none;
        }

        .gallery-overlay {
            position: static;
            background: transparent;
            padding: 0;
            color: var(--emerald);
            transform: none;
            transition: none;
        }

        .gallery-item:hover .gallery-overlay {
            background: transparent;
            padding-bottom: 0;
        }

        .gallery-overlay span {
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            color: rgba(16, 64, 32, 0.78);
        }

        .gallery-overlay span::before {
            width: 1.2rem;
        }

        .contact {
            color: var(--black);
        }

        .contact .section-title {
            color: var(--emerald);
        }

        .contact .section-subtitle {
            color: #5b5a55;
        }

        .contact-shell {
            grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
            gap: 2.5rem;
        }

        .contact-actions {
            gap: 0.9rem;
        }

        .contact-action {
            padding: var(--card-pad);
            border-radius: 16px;
            color: var(--emerald);
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(16, 64, 32, 0.08);
            backdrop-filter: none;
            box-shadow: none;
        }

        .contact-action:hover {
            transform: none;
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(16, 64, 32, 0.16);
            box-shadow: none;
        }

        .contact-action-label,
        .contact-office-index {
            color: rgba(16, 64, 32, 0.5);
        }

        .contact-action strong,
        .contact-office-card strong {
            color: var(--emerald);
        }

        .contact-note,
        .contact-office-card p {
            color: #5b5a55;
        }

        .contact-office-card {
            padding: var(--card-pad);
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(16, 64, 32, 0.08);
            backdrop-filter: none;
            box-shadow: none;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.84);
            border: 1px solid rgba(16, 64, 32, 0.08);
            border-radius: 18px;
            padding: var(--card-pad);
            backdrop-filter: none;
            box-shadow: none;
        }

        .form-group {
            display: flex;
            flex-direction: column-reverse;
            gap: 0.45rem;
            margin-bottom: 1rem;
        }

        .form-group label {
            position: static;
            left: auto;
            top: auto;
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(16, 64, 32, 0.48);
            transition: none;
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label,
        .form-group select:focus + label,
        .form-group select:not([value=""]) + label {
            position: static;
            left: auto;
            top: auto;
            padding: 0;
            background: none;
            color: rgba(16, 64, 32, 0.48);
            border-radius: 0;
            box-shadow: none;
            font-size: 0.76rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.9rem 1rem;
            background: rgba(255, 255, 255, 0.86);
            border: 1px solid rgba(16, 64, 32, 0.12);
            border-radius: 14px;
            box-shadow: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            box-shadow: none;
        }

        .submit-btn {
            padding: 1rem 1.2rem;
            background: var(--emerald);
            border-radius: 999px;
            box-shadow: none;
        }

        .submit-btn:hover,
        .submit-btn:active {
            background: #184a2d;
            transform: none;
            box-shadow: none;
        }

        footer {
            position: relative;
            overflow: visible;
            background: var(--white);
            color: var(--emerald);
            padding: var(--section-y) var(--container-pad);
            border-top: 1px solid rgba(16, 64, 32, 0.08);
        }

        footer::before {
            display: none;
        }

        .footer-content {
            position: static;
            max-width: var(--container-max);
            text-align: left;
        }

        .footer-logo {
            width: 170px;
            margin: 0 0 1.5rem;
            opacity: 1;
        }

        .footer-about {
            margin: 0 0 1.5rem;
        }

        .footer-about .section-kicker {
            color: rgba(16, 64, 32, 0.5);
        }

        .footer-about-grid {
            grid-template-columns: 1fr;
        }

        .footer-about-card {
            padding: 0;
            border-radius: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            text-align: left;
        }

        .footer-about-card h4 {
            color: var(--emerald);
        }

        .footer-about-card p,
        .footer-company-strip,
        .footer-copyright {
            color: #5b5a55;
        }

        .footer-links {
            justify-content: flex-start;
            gap: 0.85rem 1.35rem;
            margin: 1.5rem 0 1rem;
        }

        .footer-links a {
            color: rgba(16, 64, 32, 0.72);
        }

        .footer-links a:hover {
            color: var(--emerald);
        }

        .footer-company-strip {
            display: block;
            margin-top: 0.4rem;
            padding: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
        }

        @media (max-width: 1080px) {
            .nav-menu {
                flex-wrap: wrap;
                gap: 0.9rem;
            }

            .about-content,
            .aerial-container,
            .contact-shell {
                grid-template-columns: 1fr;
            }

            .villa-detail-shell {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .villa-render,
            .villa-detail-content,
            .villa-plan-grid {
                grid-column: 1;
                grid-row: auto;
            }

            .aerial-container img,
            .aerial-container video {
                min-height: 360px;
            }

            .amenities-grid {
                grid-template-columns: 1fr;
            }
        }

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

            .nav-menu {
                position: fixed;
                top: 72px;
                left: var(--space-md);
                right: var(--space-md);
                flex-direction: column;
                align-items: stretch;
                padding: 1.1rem 1rem;
                gap: 0.9rem;
                background: rgba(247, 245, 240, 0.98);
                border: 1px solid rgba(16, 64, 32, 0.08);
                border-radius: 18px;
                box-shadow: none;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-0.6rem);
                transition: opacity var(--transition-base), transform var(--transition-base), visibility 0s linear var(--transition-base);
            }

            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
                transition: opacity var(--transition-base), transform var(--transition-base), visibility 0s linear 0s;
            }

            .nav-item,
            .nav-cta {
                width: 100%;
                padding: 0.7rem 0.5rem;
                border-bottom: 1px solid rgba(16, 64, 32, 0.08);
            }

            .nav-cta {
                padding-bottom: 0.7rem;
            }

            .hero-content {
                width: var(--container-w);
                padding: 6.8rem 0 4rem;
            }

            .hero-proof {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1rem 1.5rem;
            }

            .collection-jump,
            .gallery-grid,
            .contact-actions,
            .contact-office-grid {
                grid-template-columns: 1fr;
            }

            .villa-detail-content {
                position: static;
            }
        }

        @media (max-width: 640px) {
            :root {
                --section-y: var(--section-y-sm);
                --container-pad: 0.75rem;
            }

            .hero {
                min-height: 100vh;
                min-height: 100svh;
            }

            .hero-heading {
                font-size: clamp(2.4rem, 12vw, 3.4rem);
            }

            .hero-proof-item {
                padding: 0.5rem 0.6rem;
                background: rgba(8, 18, 12, 0.4);
            }

            .hero-proof-value {
                font-size: 1.1rem;
            }

            .hero-actions {
                display: grid;
                gap: var(--space-sm);
            }

            .hero-cta,
            .catalogue-cta {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .about-image,
            .aerial-container img,
            .aerial-container video,
            .villa-render img {
                min-height: 0;
                height: 280px;
            }

            .gallery-item img {
                aspect-ratio: 5 / 4;
            }

            .footer-content,
            .footer-about-card,
            .footer-links {
                text-align: left;
                justify-content: flex-start;
            }
        }
        /* ============================================
           QUIET EDITORIAL REDUCTION PASS
           ============================================ */
        html {
            font-size: 93.75%;
        }

        body {
            font-size: 1rem;
        }

        section {
            padding: clamp(4.75rem, 8vw, 6.5rem) 0;
        }

        .about > *,
        .property-types > *,
        .interior-gallery > *,
        .master-plan > *,
        .amenities > *,
        .location > *,
        .contact > *,
        .villa-detail > * {
            width: min(1120px, calc(100% - 4rem));
        }

        .nav-menu {
            gap: 1.15rem;
        }

        .nav-item {
            gap: 0;
            padding: 0.18rem 0;
            color: rgba(16, 64, 32, 0.74);
            font-size: 0.73rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .nav-item:hover {
            color: var(--emerald);
        }

        .nav-item-index,
        .nav-cta,
        .hero-panel,
        .types-grid {
            display: none !important;
        }

        .language-switch {
            padding: 0;
            background: transparent;
            border-color: rgba(16, 64, 32, 0.14);
        }

        .language-option {
            min-width: 34px;
            padding: 0.5rem 0.4rem;
            font-size: 0.64rem;
            font-weight: 700;
            letter-spacing: 0.12em;
        }

        .language-option.is-active {
            background: transparent;
            color: var(--emerald);
            box-shadow: none;
        }

        .hero {
            min-height: 100vh;
            min-height: 100svh;
        }

        .hero-content {
            width: min(1120px, calc(100% - 4rem));
            padding: clamp(6.45rem, 10vw, 7.85rem) 0 clamp(3.8rem, 6vw, 5rem);
        }

        .hero-copy {
            max-width: 620px;
            min-height: clamp(380px, 44vw, 450px);
            display: grid;
            align-content: center;
            gap: 0.4rem;
            padding: clamp(1.8rem, 3vw, 2.45rem);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow:
                0 28px 68px rgba(4, 17, 10, 0.28),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }

        .hero-copy::after {
            content: '';
            position: absolute;
            inset: 0.8rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: calc(34px - 0.8rem);
            pointer-events: none;
        }

        .hero-brand-row {
            gap: 1.1rem;
            margin-bottom: 1.2rem;
        }

        .hero-logo {
            width: clamp(78px, 8.4vw, 102px);
        }

        .hero-kicker {
            font-size: 0.76rem;
            letter-spacing: 0.2em;
        }

        .hero-heading {
            max-width: 9ch;
            margin-bottom: 0.95rem;
            font-size: clamp(2.7rem, 4.4vw, 4.1rem);
        }

        .hero-description {
            max-width: 50ch;
            margin-bottom: 1.15rem;
            font-size: 0.96rem;
            line-height: 1.78;
        }

        .hero-proof {
            grid-template-columns: repeat(3, minmax(0, max-content));
            gap: 0.85rem 1.1rem;
            margin-bottom: 1.35rem;
            padding-top: 0.95rem;
        }

        .hero-proof-item {
            min-width: 148px;
            gap: 0.18rem;
            padding: 0.95rem 1rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(4, 17, 10, 0.24) 100%);
            border-color: rgba(255, 255, 255, 0.16);
        }

        .hero-proof-value {
            font-size: 1.16rem;
        }

        .hero-proof-label {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .hero-actions {
            margin-top: 0.15rem;
        }

        .hero-cta {
            padding: 0.74rem 1.15rem;
            background: transparent;
            border-color: rgba(247, 245, 240, 0.88);
            color: var(--white);
            font-size: 0.66rem;
            letter-spacing: 0.14em;
        }

        .hero-cta:hover {
            background: rgba(247, 245, 240, 0.12);
            color: var(--white);
            border-color: rgba(247, 245, 240, 0.92);
        }

        .section-title {
            font-size: clamp(2.15rem, 3.9vw, 3.35rem);
            margin-bottom: 0.75rem;
        }

        .section-subtitle {
            max-width: 62ch;
            margin-bottom: 2.4rem;
            font-size: 0.95rem;
            line-height: 1.78;
        }

        .section-kicker {
            margin-bottom: 0.85rem;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
        }

        .brochure-copy-block {
            gap: 0.85rem;
            padding: 1.2rem 1.25rem;
        }

        .brochure-copy-head {
            font-size: 0.74rem;
            letter-spacing: 0.16em;
        }

        .brochure-copy-body {
            gap: 0.82rem;
            font-size: 0.94rem;
            line-height: 1.82;
        }

        .amenities-grid {
            max-width: 900px;
            margin: 2.2rem auto 0;
            gap: 0.6rem 3rem;
        }

        .amenity-item {
            padding: 0.95rem 0;
        }

        .amenity-label {
            font-size: 0.92rem;
            line-height: 1.4;
        }

        .collection-jump {
            gap: 0.75rem;
            margin: 0;
            position: sticky;
            top: 60px;
            z-index: 100;
            background: transparent;
            padding: 10px 0;
            border-radius: 0;
            border-bottom: 1px solid rgba(16, 64, 32, 0.08);
        }

        .collection-jump-link {
            gap: 0.28rem;
            padding: 0.65rem 0.8rem;
            border-radius: 10px 10px 0 0;
            background: transparent;
            border: 1px solid transparent;
            border-bottom: none;
            box-shadow: none;
        }

        .collection-jump-link:hover {
            background: rgba(255, 255, 255, 0.5);
            border-color: rgba(16, 64, 32, 0.06);
            border-bottom: none;
        }

        .collection-jump-link strong {
            font-size: 1.28rem;
        }

        .collection-jump-link span:last-child {
            font-size: 0.88rem;
        }

        .gallery-grid {
            max-width: 900px;
            margin: 0 auto;
            grid-template-columns: 1fr;
            gap: 2.4rem;
        }

        .gallery-item {
            max-width: 80%;
            gap: 0.55rem;
        }

        .gallery-item:nth-child(2n) {
            margin-left: auto;
        }

        body[data-locale-direction="rtl"] .gallery-item:nth-child(2n) {
            margin-left: 0;
            margin-right: auto;
        }

        .gallery-item img {
            aspect-ratio: 16 / 10;
            border-radius: 14px;
        }

        .gallery-overlay {
            padding-top: 0.1rem;
        }

        .gallery-overlay span {
            font-size: 0.68rem;
            letter-spacing: 0.12em;
        }

        .contact-shell {
            gap: 1.7rem;
        }

        .contact-actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.65rem;
            margin-top: 1.25rem;
        }

        .contact-action {
            padding: 0 0 0.8rem;
            border: 0;
            border-bottom: 1px solid rgba(16, 64, 32, 0.12);
            border-radius: 0;
            background: transparent;
        }

        .contact-office-grid {
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .contact-office-card {
            padding: 0.95rem 0 0;
            border: 0;
            border-top: 1px solid rgba(16, 64, 32, 0.12);
            border-radius: 0;
            background: transparent;
        }

        .contact-form {
            padding: 1.15rem;
            background: rgba(255, 255, 255, 0.72);
        }

        .villa-detail-shell {
            gap: 2.2rem;
        }

        .villa-detail-content {
            padding: 1.2rem 1.25rem;
        }

        .villa-detail-content h2 {
            font-size: clamp(2rem, 3.2vw, 2.9rem);
        }

        .villa-lead {
            font-size: 0.94rem;
            line-height: 1.74;
        }

        .villa-stat {
            padding: 0.85rem 0.95rem;
        }

        .villa-plan-card {
            padding: 0.95rem 1rem;
        }

        footer {
            padding: 3rem 5% 3.4rem;
        }

        .footer-about {
            margin-bottom: 0.8rem;
        }

        .footer-about-grid {
            grid-template-columns: minmax(0, 62ch);
        }

        .footer-about-card p {
            line-height: 1.85;
        }

        .footer-links,
        .footer-company-strip {
            display: none;
        }

        @media (max-width: 900px) {
            html {
                font-size: 100%;
            }

            .nav-menu {
                gap: 0.9rem;
            }

            .hero-reveal,
            .hero-reveal-ring {
                display: none;
            }

            .hero-proof {
                grid-template-columns: 1fr;
                gap: 0.55rem;
            }

            .gallery-item,
            .gallery-item:nth-child(2n) {
                max-width: none;
                margin-left: 0;
                margin-right: 0;
            }

            body[data-locale-direction="rtl"] .gallery-item:nth-child(2n) {
                margin-right: 0;
            }
        }

        /* ============================================
           LIGHTBOX
           ============================================ */
        .lightbox-overlay {
            position: fixed;
            inset: 0;
            z-index: 9000;
            display: none;
            place-items: center;
            background: rgba(9, 22, 15, 0.92);
            backdrop-filter: blur(8px);
            cursor: zoom-out;
        }

        .lightbox-overlay.is-active {
            display: grid;
        }

        .lightbox-img {
            max-width: 92vw;
            max-height: 88vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
            touch-action: pinch-zoom;
        }

        .lightbox-close {
            position: absolute;
            top: var(--space-lg);
            right: var(--space-lg);
            width: 48px;
            height: 48px;
            display: grid;
            place-items: center;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.6rem;
            cursor: pointer;
            transition: background var(--transition-fast);
        }

        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.24);
        }

        /* ============================================
           WHATSAPP FAB
           ============================================ */
        .whatsapp-fab {
            position: fixed;
            bottom: var(--space-xl);
            right: var(--space-xl);
            z-index: 900;
            width: 56px;
            height: 56px;
            display: grid;
            place-items: center;
            background: #25d366;
            color: var(--white);
            border-radius: 50%;
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
            text-decoration: none;
        }

        .whatsapp-fab:hover {
            transform: scale(1.08);
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
        }

        body[data-locale-direction="rtl"] a[href^="tel:"],
        body[data-locale-direction="rtl"] [dir="ltr"] {
            direction: ltr;
            unicode-bidi: isolate;
        }

        body[data-locale-direction="rtl"] .whatsapp-fab {
            right: auto;
            left: var(--space-xl);
        }

        /* ============================================
           BACK TO TOP
           ============================================ */
        .back-to-top {
            position: fixed;
            bottom: var(--space-xl);
            right: calc(var(--space-xl) + 56px + var(--space-md));
            z-index: 900;
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            background: rgba(247, 245, 240, 0.92);
            border: 1px solid rgba(16, 64, 32, 0.12);
            border-radius: 50%;
            color: var(--emerald);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), background var(--transition-fast);
        }

        .back-to-top.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: var(--white);
        }

        body[data-locale-direction="rtl"] .back-to-top {
            right: auto;
            left: calc(var(--space-xl) + 56px + var(--space-md));
        }

        /* ============================================
           ACTIVE NAV STATE
           ============================================ */
        .nav-item.is-active {
            color: var(--gold);
        }

        .nav-item.is-active .nav-item-label {
            color: var(--gold);
        }

        /* ============================================
           CATALOGUE CTA
           ============================================ */
        .catalogue-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: var(--space-md);
            padding: 0.65rem 1.2rem;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.36);
            border-radius: 999px;
            color: rgba(255, 255, 255, 0.88);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all var(--transition-base);
        }

        .catalogue-cta:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.52);
            color: var(--white);
        }

        .catalogue-cta svg {
            width: 16px;
            height: 16px;
        }

        @media (max-width: 640px) {
            .whatsapp-fab {
                bottom: var(--space-lg);
                right: var(--space-lg);
            }

            .back-to-top {
                bottom: var(--space-lg);
                right: calc(var(--space-lg) + 56px + var(--space-sm));
            }

            body[data-locale-direction="rtl"] .whatsapp-fab {
                right: auto;
                left: var(--space-lg);
            }

            body[data-locale-direction="rtl"] .back-to-top {
                right: auto;
                left: calc(var(--space-lg) + 56px + var(--space-sm));
            }
        }

        /* ============================================
           UNIFIED DESIGN SYSTEM — FINAL OVERRIDE
           Placed after ALL editorial passes.
           ============================================ */

        /* --- A: Button system --- */
        .hero-cta,
        .view-plans,
        .submit-btn,
        .catalogue-cta,
        .villa-secondary-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            min-height: var(--btn-min-h);
            font-size: var(--btn-font);
            font-weight: var(--btn-weight);
            letter-spacing: var(--btn-tracking);
            line-height: 1.05;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: var(--radius-pill);
            cursor: pointer;
            transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
        }

        /* Primary gold */
        .hero-cta {
            height: var(--btn-min-h);
            padding: 0 var(--btn-pad-x);
            background: var(--gold);
            border: 1px solid var(--gold);
            color: var(--white);
            font-weight: 800;
            box-shadow: 0 8px 24px rgba(182, 154, 104, 0.25);
        }
        .hero-cta:hover {
            background: #c5a977;
            border-color: #c5a977;
            box-shadow: 0 12px 32px rgba(182, 154, 104, 0.35);
            transform: translateY(-1px);
        }

        /* Primary emerald */
        .view-plans,
        .submit-btn {
            height: var(--btn-min-h);
            padding: 0 var(--btn-pad-x);
            background: var(--emerald);
            border: 1px solid var(--emerald);
            color: var(--white);
        }
        .view-plans:hover,
        .submit-btn:hover {
            background: #184a2d;
            border-color: #184a2d;
            box-shadow: 0 8px 24px rgba(16, 64, 32, 0.2);
            transform: translateY(-1px);
        }
        .submit-btn {
            width: 100%;
        }

        /* Outline variant */
        .villa-secondary-link,
        .catalogue-cta {
            height: var(--btn-min-h);
            padding: 0 calc(var(--btn-pad-x) - 0.18rem);
            background: transparent;
            border: 1px solid rgba(16, 64, 32, 0.18);
            color: var(--emerald);
        }
        .villa-secondary-link:hover,
        .catalogue-cta:hover {
            background: rgba(16, 64, 32, 0.05);
            border-color: var(--gold);
            transform: translateY(-1px);
        }

        /* Catalogue on dark hero background */
        .hero .catalogue-cta {
            border-color: rgba(255, 255, 255, 0.36);
            color: rgba(255, 255, 255, 0.88);
        }
        .hero .catalogue-cta:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.56);
            color: var(--white);
        }

        .catalogue-cta {
            margin-top: 0;
        }

        .hero-actions,
        .villa-cta-row {
            align-items: center;
        }

        /* Collection jump links — underline tabs */
        .collection-jump-link {
            border-radius: 0;
            transition: color var(--transition-base), border-color var(--transition-base);
        }
        .collection-jump-link.is-active {
            color: var(--emerald) !important;
            background: transparent !important;
            border-bottom-color: var(--emerald) !important;
            box-shadow: none !important;
        }

        /* --- A: Border-radius harmony --- */
        .contact-form,
        .contact-action,
        .contact-office-card,
        .villa-render,
        .villa-render img,
        .gallery-item img,
        .plan-image img,
        .about-image img,
        .advantages-visual img,
        .footer-about-card,
        .villa-plan-card {
            border-radius: var(--radius-card);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            border-radius: var(--radius-card-sm);
        }

        .plan-feature-icon {
            border-radius: var(--radius-icon);
        }

        /* --- B: Plan feature icons — prominent gold circles --- */
        .plan-feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(182, 154, 104, 0.2);
            flex-shrink: 0;
        }

        .plan-feature-index {
            font-family: var(--heading-font);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            text-shadow: none;
        }

        .plan-feature {
            border-top: 1px solid rgba(16, 64, 32, 0.08);
        }

        .plan-feature:first-child {
            border-top: none;
        }

        /* --- B: Floor plan density --- */
        .villa-plan-card img {
            max-height: 380px;
            width: 100%;
            object-fit: contain;
            padding: var(--space-sm);
            cursor: zoom-in;
            border-radius: var(--radius-card-sm);
            background: rgba(16, 64, 32, 0.02);
        }

        .villa-schedule {
            gap: 0;
        }

        .villa-schedule li {
            padding: 0.45rem 0;
            border-bottom: 1px solid rgba(16, 64, 32, 0.05);
        }

        .villa-schedule li:last-child {
            border-bottom: none;
        }

        /* --- B: Amenity items — visible icons, hover effect --- */
        .amenity-item {
            background: rgba(247, 245, 240, 0.6);
            border: 1px solid rgba(16, 64, 32, 0.06);
            border-radius: var(--radius-card-sm);
            transition: transform var(--transition-base), box-shadow var(--transition-base);
        }

        .amenity-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(14, 60, 33, 0.08);
        }

        .amenity-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(182, 154, 104, 0.1);
            border-radius: var(--radius-icon);
        }

        .amenity-icon img {
            width: 24px;
            height: 24px;
            opacity: 0.7;
        }

        /* --- E: Scroll reveal animations --- */
        .reveal-target {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .reveal-target.is-revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-stagger > .reveal-target:nth-child(1) { transition-delay: 0s; }
        .reveal-stagger > .reveal-target:nth-child(2) { transition-delay: 0.07s; }
        .reveal-stagger > .reveal-target:nth-child(3) { transition-delay: 0.14s; }
        .reveal-stagger > .reveal-target:nth-child(4) { transition-delay: 0.21s; }
        .reveal-stagger > .reveal-target:nth-child(5) { transition-delay: 0.28s; }
        .reveal-stagger > .reveal-target:nth-child(6) { transition-delay: 0.35s; }
        .reveal-stagger > .reveal-target:nth-child(7) { transition-delay: 0.42s; }
        .reveal-stagger > .reveal-target:nth-child(8) { transition-delay: 0.49s; }

        /* --- E: Villa tab system --- */
        .villa-detail.is-tab-hidden {
            display: none;
        }

        .villa-detail.is-tab-visible {
            display: block;
        }

        /* --- E2: Villa module tab component --- */
        .property-types .section-title,
        .property-types .section-subtitle {
            display: none;
        }

        .property-types {
            padding: 0 !important;
            margin: 0;
            background: transparent !important;
            overflow: visible !important;
        }

        .collection-jump {
            background: transparent !important;
            border-radius: 0 !important;
            border: none !important;
            border-bottom: 1px solid rgba(16, 64, 32, 0.1) !important;
        }

        .collection-jump-link {
            background: transparent !important;
            border: none !important;
            border-bottom: 3px solid transparent !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            margin-bottom: -1px;
        }

        .collection-jump-link.is-active {
            background: transparent !important;
            border-bottom-color: var(--emerald) !important;
            color: var(--emerald) !important;
            box-shadow: none !important;
        }

        .villa-detail {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            border-radius: 0 !important;
        }

        .villa-detail-content {
            background: none !important;
            border: none !important;
            border-radius: 0 !important;
            box-shadow: none !important;
        }

        /* Mobile: compact tabs */
        @media (max-width: 768px) {
            .villa-module {
                padding: var(--space-lg) var(--space-md);
            }

            .collection-jump {
                gap: var(--space-md);
            }

            .collection-jump-link span:last-child {
                display: none;
            }

            .villa-detail-shell {
                grid-template-columns: 1fr;
            }

            .villa-render,
            .villa-detail-content,
            .villa-plan-grid {
                grid-column: 1;
                grid-row: auto;
            }

            .villa-detail-content {
                padding: var(--space-lg);
            }

            .villa-plan-grid {
                padding: var(--space-md);
            }
        }

        /* --- E: Image hover effects --- */
        .villa-render img,
        .gallery-item img {
            transition: transform 0.5s ease;
        }

        .villa-render:hover img {
            transform: scale(1.03);
        }

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

        @media (prefers-reduced-motion: reduce) {
            .reveal-target {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .villa-render img,
            .gallery-item img {
                transition: none;
            }
            .villa-render:hover img,
            .gallery-item:hover img {
                transform: none;
            }
        }

        /* --- Footer restructured --- */
        .footer-brand {
            display: flex;
            align-items: flex-start;
            gap: var(--space-xl);
            margin-bottom: var(--space-2xl);
        }

        .footer-brand .footer-logo {
            width: 140px;
            flex-shrink: 0;
            margin: 0;
        }

        .footer-about-text h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--emerald);
            margin-bottom: var(--space-sm);
        }

        .footer-about-text p {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #5b5a55;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-2xl);
            padding: var(--space-xl) 0;
            border-top: 1px solid rgba(16, 64, 32, 0.08);
            border-bottom: 1px solid rgba(16, 64, 32, 0.08);
        }

        .footer-col-title {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(16, 64, 32, 0.45);
            margin-bottom: var(--space-md);
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
        }

        .footer-nav a {
            color: var(--emerald);
            text-decoration: none;
            font-size: 0.92rem;
            transition: color var(--transition-fast);
        }

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

        .footer-col p {
            font-size: 0.9rem;
            color: #5b5a55;
            line-height: 1.7;
            margin-bottom: var(--space-sm);
        }

        .footer-col p:last-child {
            margin-bottom: 0;
        }

        .footer-social {
            display: flex;
            gap: var(--space-md);
            margin-top: var(--space-sm);
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(16, 64, 32, 0.08);
            color: var(--emerald);
            transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
        }

        .social-link:hover {
            background: var(--emerald);
            color: var(--white);
            transform: translateY(-2px);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: var(--space-lg);
            gap: var(--space-lg);
        }

        .footer-copyright {
            font-size: 0.82rem;
            color: #8a8880;
            margin: 0;
            line-height: 1.6;
        }

        .footer-bottom-links {
            display: flex;
            gap: var(--space-md);
        }

        .footer-bottom-links a {
            font-size: 0.82rem;
            color: #8a8880;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

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

        @media (max-width: 640px) {
            .footer-brand {
                flex-direction: column;
                gap: var(--space-md);
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: var(--space-sm);
            }
        }

        /* ============================================
           ANNOTATED UI FIXES (from screenshot notes)
           ============================================ */

        /* 1. Nav logo — make it bigger */
        .nav-logo {
            height: 52px;
        }

        @media (max-width: 968px) {
            .nav-logo {
                height: 44px;
            }
        }

        /* 2. Story section — defined image height, professional proportions */
        .about-content {
            grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
            align-items: center;
            gap: clamp(2.25rem, 4vw, 4rem);
        }

        .about-image {
            height: auto;
            min-height: 560px;
            max-height: 760px;
            position: sticky;
            top: 112px;
            padding: 0.85rem;
            background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 232, 225, 0.88) 100%);
            border: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: 0 30px 72px rgba(14, 60, 33, 0.12);
        }

        .about-image::after {
            inset: 0.85rem;
            border-color: rgba(255, 255, 255, 0.46);
        }

        .about-image img {
            height: 100%;
            min-height: 560px;
            max-height: 760px;
            object-fit: cover;
            object-position: center 26%;
            border-radius: calc(var(--radius-card) - 2px);
        }

        @media (max-width: 1080px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            .about-image {
                position: static;
                min-height: 360px;
                max-height: 480px;
            }
            .about-image img {
                min-height: 360px;
                max-height: 480px;
            }
        }

        /* 3. Plan feature numbers — much bigger text */
        .plan-feature-icon {
            width: 56px;
            height: 56px;
        }

        .plan-feature-index {
            font-size: 1.3rem;
            font-weight: 800;
        }

        .plan-feature-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .location-facts {
            max-width: 620px;
        }

        .location-fact {
            padding: 1.1rem 1.2rem;
        }

        .location-fact strong {
            font-size: 1.42rem;
        }

        /* 4. Aerial/Quality section — centered alignment */
        .aerial-container {
            min-height: clamp(560px, 75vh, 880px);
        }

        .aerial-content {
            align-items: center;
        }

        .aerial-title-group h2 {
            text-wrap: balance;
        }

        @media (max-width: 900px) {
            .aerial-container {
                background-image:
                    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.24) 45%, rgba(0, 0, 0, 0.5) 100%),
                    url('../images/quality-garden.jpeg');
                background-position: center;
                background-repeat: no-repeat;
                background-size: cover;
            }

            .aerial-container video {
                display: none;
            }
        }

        .advantages-visual {
            margin-top: var(--space-xl);
            margin-left: auto;
            margin-right: auto;
            border-radius: var(--radius-card);
            overflow: hidden;
        }

        .advantages-visual img {
            height: clamp(320px, 45vw, 560px);
            width: 100%;
            object-fit: cover;
        }

        /* 5. Amenity icons — bigger, more professional */
        .amenity-item {
            display: grid;
            grid-template-columns: 78px minmax(0, 1fr);
            gap: 0.35rem 1rem;
            align-items: center;
            min-height: 116px;
            padding: 1rem 1.15rem;
            border: 1px solid rgba(16, 64, 32, 0.07);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 245, 240, 0.88) 100%);
            border-radius: 18px;
            box-shadow: 0 14px 34px rgba(14, 60, 33, 0.05);
        }

        .amenity-item:first-child {
            border-top: 1px solid rgba(16, 64, 32, 0.07);
        }

        .amenity-icon {
            width: 78px;
            height: 78px;
            display: grid;
            place-items: center;
            border-radius: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
        }

        .amenity-icon::before {
            display: none;
        }

        .amenity-icon img {
            width: 48px;
            height: 48px;
            opacity: 1;
            filter: brightness(0) saturate(100%) invert(24%) sepia(12%) saturate(1200%) hue-rotate(97deg) brightness(95%) contrast(92%);
        }

        .amenity-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--emerald);
        }

        .amenity-copy {
            grid-column: 2;
            margin-top: 0.15rem;
        }

        .amenities-grid {
            gap: 1rem;
            margin-top: var(--space-xl);
        }

        /* 6. Villa types & plans — cohesive tab component */
        .collection-jump {
            position: sticky;
            top: 72px;
            z-index: 100;
            background: transparent;
            padding: 12px 0;
            margin: 0;
            border-radius: 0;
            border: none;
            border-bottom: 1px solid rgba(16, 64, 32, 0.08);
        }

        .collection-jump-link {
            padding: 0.75rem 1.2rem;
            border-radius: 12px 12px 0 0;
            background: transparent;
            border: 1px solid transparent;
            border-bottom: none;
            box-shadow: none;
        }

        .villa-detail-shell {
            padding: clamp(1rem, 2vw, 1.5rem);
            border-radius: 26px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(247, 245, 240, 0.92) 100%);
            border: 1px solid rgba(16, 64, 32, 0.06);
        }

        .villa-detail-content {
            padding: clamp(1.4rem, 2.3vw, 1.95rem);
            scroll-margin-top: clamp(6.25rem, 10vw, 7.5rem);
        }

        .villa-plan-card {
            padding: clamp(1rem, 2vw, 1.25rem);
        }

        /* 6. Floor plans — reduce whitespace, fill space */
        .villa-plan-grid {
            gap: var(--space-md);
        }

        .villa-plan-card {
            padding: clamp(1rem, 2vw, 1.25rem);
        }

        .villa-plan-card img {
            max-height: none;
            height: auto;
            width: 100%;
            padding: 0;
            object-fit: contain;
            background: rgba(16, 64, 32, 0.015);
            border: 1px solid rgba(16, 64, 32, 0.05);
        }

        .villa-plan-head {
            margin-bottom: var(--space-sm);
        }

        .villa-schedule {
            margin-top: var(--space-sm);
        }

        .villa-schedule li {
            padding: 0.4rem 0;
            font-size: 0.88rem;
        }

        /* 6B. Quality of Life — mobile adaptation
           Layout: full-bleed image hero fading into a dark content area.
           The image occupies the top ~55% of the container, the title
           sits over the fade, and the copy card lives in a solid dark
           zone below so it is always legible. */
        @media (max-width: 900px) {
            .aerial-showcase {
                background: #060e0a;
            }

            .aerial-container {
                min-height: 0;
                display: flex;
                flex-direction: column;
                background-image:
                    url('../images/quality-garden-mobile.jpeg');
                background-position: center 20%;
                background-repeat: no-repeat;
                background-size: cover;
                position: relative;
            }

            /* Single clean gradient from transparent at the image top
               to solid dark where the copy lives */
            .aerial-container::before {
                background:
                    linear-gradient(
                        180deg,
                        rgba(6, 14, 10, 0.0) 0%,
                        rgba(6, 14, 10, 0.04) 18%,
                        rgba(6, 14, 10, 0.28) 36%,
                        rgba(6, 14, 10, 0.72) 50%,
                        rgba(6, 14, 10, 0.94) 62%,
                        rgba(6, 14, 10, 1) 72%
                    );
                backdrop-filter: none;
            }

            .aerial-container::after {
                opacity: 0;
                animation: none;
            }

            .aerial-container video {
                display: none;
            }

            .aerial-content {
                position: relative;
                inset: auto;
                width: auto;
                min-height: auto;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                gap: 0;
                /* Top padding creates the image reveal area;
                   bottom padding gives the copy breathing room */
                padding: clamp(14rem, 52vw, 20rem) var(--container-pad) clamp(2rem, 5vw, 2.8rem);
                background: none;
                transform: none;
                text-align: left;
            }

            .aerial-title-group {
                width: 100%;
                max-width: none;
                gap: 0.5rem;
                margin-bottom: clamp(1.2rem, 3.5vw, 1.8rem);
            }

            .aerial-title-group .section-kicker {
                color: var(--gold);
                font-size: 0.72rem;
                letter-spacing: 0.2em;
                opacity: 0.82;
            }

            .aerial-title-group h2 {
                max-width: 24ch;
                font-size: clamp(1.7rem, 6.4vw, 2.2rem);
                line-height: 1.15;
                font-weight: 500;
                color: #f2e3bc;
                text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
                text-wrap: balance;
            }

            /* Thin gold rule separating the title from the copy */
            .aerial-copy-grid {
                display: grid;
                width: 100%;
                max-width: none;
                gap: 0;
                justify-self: stretch;
                padding-top: clamp(1rem, 3vw, 1.4rem);
                border-top: 1px solid rgba(182, 154, 104, 0.28);
            }

            .aerial-copy-grid .brochure-copy-block {
                padding: 0;
                background: transparent;
                border: 0;
                border-radius: 0;
                backdrop-filter: none;
                box-shadow: none;
            }

            /* COMMENTED OUT: brochure-copy-head on mobile.
               The section-kicker + h2 already communicate the theme;
               repeating the heading inside the copy card is redundant. */
            .aerial-copy-grid .brochure-copy-head {
                display: none;
            }

            .aerial-copy-grid .brochure-copy-body p,
            .aerial-copy-grid .villa-copy-line {
                font-size: 0.94rem;
                line-height: 1.78;
                color: rgba(255, 255, 255, 0.84);
                text-shadow: none;
            }

            .aerial-copy-grid .brochure-copy-body p + p {
                margin-top: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .aerial-container {
                background-position: center 15%;
            }

            .aerial-content {
                padding-top: clamp(11rem, 46vw, 15rem);
                padding-bottom: clamp(1.6rem, 4.5vw, 2.2rem);
            }

            .aerial-title-group {
                margin-bottom: clamp(1rem, 3vw, 1.4rem);
            }

            .aerial-title-group h2 {
                max-width: 22ch;
                font-size: clamp(1.5rem, 5.8vw, 1.85rem);
            }

            .aerial-copy-grid .brochure-copy-body p,
            .aerial-copy-grid .villa-copy-line {
                font-size: 0.88rem;
                line-height: 1.7;
            }
        }

        /* 7. Mobile refinement — denser tabs and villa layouts */
        @media (max-width: 768px) {
            .property-types {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
            }

            .collection-jump {
                display: grid;
                grid-auto-flow: column;
                grid-auto-columns: minmax(13rem, 78vw);
                grid-template-columns: none;
                gap: 0.7rem;
                overflow-x: auto;
                overscroll-behavior-x: contain;
                scroll-snap-type: x proximity;
                padding: 10px var(--container-pad);
                margin: 0;
                border-radius: 0;
                background: transparent;
                position: sticky;
                top: 60px;
                z-index: 100;
                border-bottom: 1px solid rgba(16, 64, 32, 0.08);
                -webkit-overflow-scrolling: touch;
            }

            .collection-jump::-webkit-scrollbar {
                display: none;
            }

            .collection-jump-link {
                scroll-snap-align: start;
                gap: 0.2rem;
                min-height: 100%;
                padding: 0.72rem 0.8rem 0.68rem;
                border-radius: 12px 12px 0 0;
                background: transparent;
                border: 1px solid transparent;
                border-bottom: none;
                box-shadow: none;
            }

            .collection-jump-label {
                font-size: 0.66rem;
                letter-spacing: 0.14em;
            }

            .collection-jump-link strong {
                font-size: 1.18rem;
                line-height: 1.02;
            }

            .collection-jump-link span:last-child {
                font-size: 0.8rem;
                line-height: 1.45;
            }

            .villa-detail {
                padding-top: 0 !important;
                padding-bottom: var(--space-lg) !important;
                margin-top: 0;
            }

            .villa-detail-shell {
                gap: 1rem;
                padding: 0.8rem;
                border-radius: 22px;
            }

            .villa-render-caption {
                font-size: 0.68rem;
                letter-spacing: 0.12em;
            }

            .villa-plan-grid {
                gap: 0.85rem;
            }

            .villa-plan-card {
                gap: 0.75rem;
                padding: 0.85rem;
                border-radius: 20px;
            }

            .villa-plan-title {
                font-size: 1.12rem;
            }

            .villa-plan-copy {
                font-size: 0.82rem;
                line-height: 1.45;
            }

            .villa-schedule {
                gap: 0.5rem;
            }

            .villa-schedule li {
                padding: 0.28rem 0;
                font-size: 0.8rem;
            }

            .villa-detail-content {
                gap: 0.9rem;
                padding: 1rem 0.95rem;
                background: none;
                border: none;
                border-radius: 0;
                box-shadow: none;
            }

            .villa-number {
                font-size: 0.69rem;
                letter-spacing: 0.14em;
            }

            .villa-number::before {
                width: 32px;
            }

            .villa-translation {
                font-size: 0.9rem;
            }

            .villa-detail-content h2 {
                font-size: clamp(2rem, 10vw, 2.55rem);
            }

            .villa-stat-grid {
                gap: 0.65rem;
            }

            .villa-stat {
                padding: 0.8rem 0.78rem;
                border-radius: 18px;
            }

            .villa-stat-label {
                margin-bottom: 0.2rem;
                font-size: 0.62rem;
                letter-spacing: 0.12em;
            }

            .villa-stat strong {
                font-size: 1rem;
            }

            .villa-stat-copy,
            .villa-brochure-note {
                font-size: 0.8rem;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            #villas .section-title {
                font-size: clamp(1.75rem, 8.5vw, 2.1rem);
            }

            #villas .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 0.9rem;
            }

            .collection-jump {
                grid-auto-columns: minmax(11.5rem, 84vw);
                gap: 0.55rem;
                margin: 0;
                padding: 8px var(--container-pad);
            }

            .collection-jump-link {
                padding: 0.68rem 0.72rem 0.62rem;
            }

            .villa-detail-shell {
                padding: 0.68rem;
                gap: 0.85rem;
            }

            .villa-detail-content {
                padding: 0.9rem 0.82rem;
            }

            .villa-plan-card {
                padding: 0.72rem;
            }

            .villa-stat-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-shell {
            grid-template-columns: minmax(0, 1fr) minmax(380px, 0.94fr);
            gap: clamp(2rem, 4vw, 3.25rem);
            align-items: start;
        }

        .contact-intro {
            padding-top: 0.85rem;
        }

        .contact-action,
        .contact-office-card {
            min-height: 88px;
            padding: 1.1rem 1.2rem;
            background: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(16, 64, 32, 0.08);
            box-shadow: 0 12px 30px rgba(14, 60, 33, 0.05);
        }

        .contact-form {
            padding: clamp(1.5rem, 2.5vw, 2rem);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 243, 237, 0.98) 100%);
            border: 1px solid rgba(182, 154, 104, 0.18);
            box-shadow: 0 26px 60px rgba(4, 17, 10, 0.12);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            min-height: 58px;
            background: rgba(255, 255, 255, 0.96);
        }

        .form-group textarea {
            min-height: 170px;
        }

        @media (max-width: 1080px) {
            .hero-content {
                width: min(100%, calc(100% - 2rem));
            }

            .hero-copy {
                min-height: auto;
            }

            .about-image {
                min-height: 420px;
                max-height: 520px;
                padding: 0.7rem;
            }

            .about-image::after {
                inset: 0.7rem;
            }

            .about-image img {
                min-height: 420px;
                max-height: 520px;
            }

            .contact-shell {
                grid-template-columns: 1fr;
            }

            .amenity-item {
                min-height: auto;
            }
        }

        /* 7. Footer — vertically centered content */
        footer {
            display: flex;
            align-items: center;
            min-height: auto;
        }

        .footer-content {
            width: 100%;
        }

        .footer-brand .footer-logo {
            width: 160px;
        }
    

/* ============================================
   STATIC MULTI-LOCALE LAYER
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: var(--emerald);
    padding: 1rem 2rem;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

.language-option {
    text-decoration: none;
}

.scroll-indicator {
    display: block;
}

body[data-locale-direction="rtl"] .hero-copy,
body[data-locale-direction="rtl"] .about-text,
body[data-locale-direction="rtl"] .location-info,
body[data-locale-direction="rtl"] .plan-feature-text,
body[data-locale-direction="rtl"] .aerial-content,
body[data-locale-direction="rtl"] .villa-detail-content,
body[data-locale-direction="rtl"] .villa-plan-head,
body[data-locale-direction="rtl"] .villa-plan-card,
body[data-locale-direction="rtl"] .villa-schedule-name,
body[data-locale-direction="rtl"] .contact-intro,
body[data-locale-direction="rtl"] .contact-form,
body[data-locale-direction="rtl"] .footer-about,
body[data-locale-direction="rtl"] .footer-links {
    direction: rtl;
    text-align: right;
}

body[data-locale-direction="rtl"] .nav-item-copy,
body[data-locale-direction="rtl"] .location-fact,
body[data-locale-direction="rtl"] .plan-feature,
body[data-locale-direction="rtl"] .villa-stat,
body[data-locale-direction="rtl"] .contact-action,
body[data-locale-direction="rtl"] .contact-office-card {
    text-align: right;
}

body[data-locale-direction="rtl"] .contact-office-card p,
body[data-locale-direction="rtl"] .contact-office-card strong {
    direction: ltr;
    text-align: right;
    unicode-bidi: embed;
}

body[data-locale-direction="rtl"] .villa-schedule li {
    direction: rtl;
}

body[data-locale-direction="rtl"] .villa-schedule-index,
body[data-locale-direction="rtl"] .villa-schedule strong,
body[data-locale-direction="rtl"] .nav-item-index {
    direction: ltr;
}

body[data-locale-direction="rtl"] input,
body[data-locale-direction="rtl"] textarea,
body[data-locale-direction="rtl"] select {
    direction: rtl;
    text-align: right;
}

body[data-locale-direction="rtl"] .section-kicker {
    padding-left: 0;
    padding-right: 2.6rem;
}

body[data-locale-direction="rtl"] .section-kicker::before {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, rgba(182, 154, 104, 0) 0%, rgba(182, 154, 104, 0.95) 100%);
}

body[data-locale-direction="rtl"] .villa-render-caption {
    left: auto;
    right: 1rem;
}

body[data-locale-direction="rtl"] .lightbox-close {
    right: auto;
    left: var(--space-lg);
}

body[data-page-type="landing"] {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 20%, rgba(182, 154, 104, 0.28) 0%, rgba(182, 154, 104, 0) 28%),
        linear-gradient(140deg, rgba(9, 22, 15, 0.94), rgba(16, 64, 32, 0.88)),
        url('../images/cover-facade.png') center/cover no-repeat;
    color: var(--white);
}

body[data-page-type="landing"]::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 22, 15, 0.18), rgba(9, 22, 15, 0.72));
    pointer-events: none;
}

.landing-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 5vw, 4rem);
}

.landing-card {
    width: min(980px, 100%);
    padding: clamp(2rem, 4vw, 4rem);
    border-radius: 36px;
    background: rgba(9, 22, 15, 0.56);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.landing-logo {
    width: clamp(110px, 12vw, 140px);
    filter: brightness(0) invert(1);
}

.landing-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.66);
}

.landing-title {
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 12ch;
}

.landing-copy {
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2.5rem;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.locale-card {
    position: relative;
    display: grid;
    gap: 0.9rem;
    min-height: 220px;
    padding: 1.5rem;
    border-radius: 26px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base);
}

.locale-card:hover {
    transform: translateY(-6px);
    border-color: rgba(182, 154, 104, 0.58);
    background: linear-gradient(180deg, rgba(182, 154, 104, 0.18), rgba(255, 255, 255, 0.06));
}

.locale-code {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.locale-card strong {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 2.7rem);
    line-height: 1;
    color: var(--white);
}

.locale-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    margin-top: auto;
}

.locale-card span:last-child {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .language-grid {
        grid-template-columns: 1fr;
    }
}
