:root {
            --color-navy-dark: #06111F;
            --color-navy: #0B1F33;
            --color-navy-2: #102A43;
            --color-cream: #F8F5EF;
            --color-gold: #C8A96A;
            --color-gold-soft: #E8D7A8;
            --color-white: #FFFFFF;
            --color-text: #1C1C1C;
            --color-muted: #6B7280;
            --border-soft: rgba(11,31,51,0.12);
            --border-light: rgba(255,255,255,0.14);
            --shadow-soft: 0 20px 60px rgba(11,31,51,0.10);
            --shadow-strong: 0 30px 90px rgba(0,0,0,0.28);
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --container: 1180px;
            --transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-cream);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
        }

        .container {
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--color-navy);
            color: var(--color-white);
            padding: 8px 16px;
            text-decoration: none;
            z-index: 10000;
            border-radius: var(--radius-md);
        }

        .skip-link:focus {
            top: 10px;
        }

        /* Header */
        .header {
            position: sticky;
            top: 0;
            background: rgba(248, 245, 239, 0.88);
            backdrop-filter: blur(16px);
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid var(--border-soft);
        }

        .header.is-scrolled {
            box-shadow: 0 10px 30px rgba(11, 31, 51, 0.08);
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 16px 0;
            position: relative;
        }

        .site-nav {
            flex: 1;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            min-width: 0;
            padding-left: 12px;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 0;
            flex-shrink: 0;
            min-width: 220px;
        }

        .logo-mark {
            width: 54px;
            height: 54px;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--color-gold-soft), var(--color-gold));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 16px 36px rgba(200, 169, 106, 0.24);
            flex-shrink: 0;
        }

        .logo-mark i {
            color: var(--color-navy);
            font-size: 24px;
        }

        .logo-copy {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .logo-title {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--color-navy);
            line-height: 1.05;
            white-space: nowrap;
        }

        .logo-tagline {
            margin-top: 4px;
            color: var(--color-muted);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            line-height: 1.4;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 4px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link,
        .nav-dropdown-toggle {
            color: var(--color-navy);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: var(--transition);
            position: relative;
            letter-spacing: 0.02em;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 12px;
            border-radius: 999px;
            border: none;
            background: transparent;
            cursor: pointer;
            font-family: inherit;
        }

        .nav-link:hover,
        .nav-dropdown-toggle:hover,
        .nav-link.active,
        .nav-dropdown-toggle.active,
        .nav-item.is-active > .nav-link,
        .nav-item.is-active > .nav-dropdown-toggle {
            color: var(--color-navy);
            background: rgba(200, 169, 106, 0.18);
        }

        .nav-dropdown-toggle i {
            font-size: 11px;
            transition: transform 180ms ease;
        }

        .nav-item:hover > .nav-dropdown-toggle i,
        .nav-item:focus-within > .nav-dropdown-toggle i,
        .nav-item.is-open > .nav-dropdown-toggle i,
        .nav-item.is-active > .nav-dropdown-toggle i {
            transform: rotate(180deg);
        }

        .nav-dropdown-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            min-width: 280px;
            display: grid;
            gap: 8px;
            padding: 14px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid var(--border-soft);
            box-shadow: var(--shadow-soft);
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: var(--transition);
            z-index: 1002;
        }

        .nav-item:hover > .nav-dropdown-menu,
        .nav-item:focus-within > .nav-dropdown-menu,
        .nav-item.is-open > .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-submenu-link {
            display: block;
            text-decoration: none;
            border-radius: 16px;
            padding: 12px 14px;
            transition: var(--transition);
            background: rgba(11, 31, 51, 0.02);
            border: 1px solid transparent;
        }

        .nav-submenu-link span {
            display: block;
            color: var(--color-navy);
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .nav-submenu-link small {
            display: block;
            color: var(--color-muted);
            font-size: 12px;
            line-height: 1.5;
        }

        .nav-submenu-link:hover,
        .nav-submenu-link.active {
            border-color: rgba(200, 169, 106, 0.3);
            background: rgba(200, 169, 106, 0.14);
        }

        .nav-search {
            display: none;
        }

        .nav-search input,
        .nav-search button {
            font-family: inherit;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .header-contact {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-contact-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-height: 52px;
            padding: 10px 16px;
            border-radius: 999px;
            background: rgba(11, 31, 51, 0.05);
            border: 1px solid rgba(11, 31, 51, 0.1);
            text-decoration: none;
            color: var(--color-navy);
            transition: var(--transition);
        }

        .header-contact-link:hover,
        .header-contact-icon:hover {
            background: rgba(200, 169, 106, 0.16);
            border-color: rgba(200, 169, 106, 0.32);
        }

        .header-contact-link i,
        .header-contact-icon i {
            color: var(--color-gold);
            font-size: 16px;
        }

        .header-contact-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .header-contact-text small {
            color: var(--color-muted);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .header-contact-text strong {
            color: var(--color-navy);
            font-size: 15px;
            font-weight: 700;
            margin-top: 4px;
        }

        .header-contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            background: rgba(11, 31, 51, 0.05);
            border: 1px solid rgba(11, 31, 51, 0.1);
            transition: var(--transition);
        }

        .nav-cta {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .header-cta-button {
            min-width: 148px;
            justify-content: center;
            white-space: nowrap;
            box-shadow: 0 14px 30px rgba(200, 169, 106, 0.22);
        }

        .nav-mobile-meta {
            display: none;
        }

        @media (min-width: 1451px) {
            .header-contact-link {
                width: 48px;
                height: 48px;
                min-height: 48px;
                padding: 0;
                justify-content: center;
            }
            .header-contact-text {
                display: none;
            }
        }

        .btn {
            padding: 14px 24px;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            border: none;
            font-size: 14px;
            min-height: 48px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #C8A96A, #E8D7A8);
            color: var(--color-navy);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 169, 106, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--border-light);
            color: var(--color-white);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .btn-outline-dark {
            background: transparent;
            border: 2px solid var(--color-navy);
            color: var(--color-navy);
        }

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

        .mobile-menu-toggle {
            display: none;
            width: 50px;
            height: 50px;
            align-items: center;
            justify-content: center;
            background: rgba(11, 31, 51, 0.05);
            border: 1px solid rgba(11, 31, 51, 0.1);
            font-size: 20px;
            color: var(--color-navy);
            cursor: pointer;
            border-radius: var(--radius-md);
            transition: var(--transition);
            flex-shrink: 0;
        }

        .mobile-menu-toggle:hover {
            background: rgba(200, 169, 106, 0.16);
            border-color: rgba(200, 169, 106, 0.32);
        }

        /* Hero Section */
        .hero {
            background-image:
                linear-gradient(115deg, rgba(6, 17, 31, 0.88) 0%, rgba(11, 31, 51, 0.78) 45%, rgba(22, 59, 92, 0.82) 100%),
                image-set(
                    url('/asset/images/phoicanh/phoicanh24.webp') type('image/webp'),
                    url('/asset/images/phoicanh/phoicanh24.jpg') type('image/jpeg')
                );
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: var(--color-white);
            min-height: 100vh;
            padding: 120px 24px 96px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(200, 169, 106, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(22, 59, 92, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 55% 45%;
            gap: 60px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-light);
            color: var(--color-gold-soft);
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 72px);
            margin-bottom: 24px;
            max-width: 720px;
        }

        .hero-subtitle {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 32px;
            max-width: 680px;
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }

        .hero-note {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            font-style: italic;
        }

        .hero-cta-secondary {
            margin-top: -8px;
            margin-bottom: 18px;
        }

        .hero-visual-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid var(--border-light);
            border-radius: 32px;
            padding: 28px;
            box-shadow: var(--shadow-strong);
            backdrop-filter: blur(16px);
        }

        .hero-panel-label {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            color: var(--color-gold-soft);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .hero-quickfacts {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .hero-quickfact {
            padding: 16px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .hero-quickfact strong {
            display: block;
            color: var(--color-white);
            font-size: 18px;
            margin-bottom: 6px;
        }

        .hero-quickfact span {
            color: rgba(255, 255, 255, 0.76);
            font-size: 13px;
            line-height: 1.5;
        }

        .hero-checklist {
            list-style: none;
            display: grid;
            gap: 12px;
            margin-bottom: 20px;
        }

        .hero-checklist li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .hero-checklist i {
            color: var(--color-gold-soft);
            margin-top: 5px;
        }

        .hero-panel-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.14);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            color: rgba(255, 255, 255, 0.74);
            font-size: 14px;
        }

        /* Trust Metrics */
        .trust-metrics {
            background: var(--color-cream);
            padding: 96px 24px;
        }

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

        .trust-card {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 32px;
            text-align: center;
            transition: var(--transition);
        }

        .trust-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .trust-card i {
            font-size: 48px;
            color: var(--color-gold);
            margin-bottom: 16px;
        }

        .trust-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--color-navy);
        }

        .trust-card p {
            font-size: 14px;
            color: var(--color-muted);
            line-height: 1.6;
        }

        /* Section Styles */
        .section {
            padding: 96px 24px;
            content-visibility: auto;
            contain-intrinsic-size: 960px;
        }

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

        .eyebrow {
            display: inline-block;
            color: var(--color-gold);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 48px);
            margin-bottom: 20px;
            color: var(--color-navy);
        }

        .section-description {
            font-size: 18px;
            color: var(--color-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Cards */
        .card {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: var(--transition);
        }

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

        /* Grid */
        .grid {
            display: grid;
            gap: 24px;
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

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

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .overview-layout {
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .overview-copy {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .overview-copy p,
        .overview-card p,
        .gallery-note,
        .section-note {
            color: var(--color-muted);
        }

        .overview-points {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .overview-points li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            color: var(--color-text);
        }

        .overview-points i {
            color: var(--color-gold);
            margin-top: 4px;
        }

        .overview-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .overview-stat {
            background: linear-gradient(180deg, rgba(200, 169, 106, 0.14), rgba(11, 31, 51, 0.02));
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            padding: 18px;
        }

        .overview-stat strong {
            display: block;
            color: var(--color-navy);
            font-size: 20px;
            margin-bottom: 6px;
        }

        .overview-stat span {
            color: var(--color-muted);
            font-size: 14px;
        }

        .card.overview-visual {
            padding: 0;
            overflow: hidden;
            position: relative;
            min-height: 100%;
        }

        .overview-visual .image-trigger {
            height: 100%;
        }

        .overview-visual img {
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
            display: block;
        }

        .overview-visual-copy {
            position: absolute;
            inset: auto 24px 24px 24px;
            background: linear-gradient(180deg, rgba(6, 17, 31, 0.2), rgba(6, 17, 31, 0.88));
            color: var(--color-white);
            border-radius: var(--radius-md);
            padding: 24px;
            backdrop-filter: blur(12px);
        }

        .overview-visual-copy h3 {
            margin-bottom: 12px;
            font-size: 24px;
        }

        .overview-grid {
            margin-top: 24px;
        }

        .overview-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,245,239,0.98));
        }

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 28px;
        }

        .overview-fact {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 22px;
            display: flex;
            gap: 16px;
            min-height: 100%;
        }

        .overview-fact-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(200, 169, 106, 0.16);
            color: var(--color-gold);
            font-size: 18px;
        }

        .overview-fact-copy span {
            display: block;
            color: var(--color-muted);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .overview-fact-copy strong {
            display: block;
            color: var(--color-navy);
            font-size: 18px;
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .overview-fact-copy p {
            color: var(--color-muted);
            font-size: 14px;
        }

        .section-callout {
            margin-top: 24px;
            padding: 22px 24px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, rgba(11, 31, 51, 0.98), rgba(16, 42, 67, 0.96));
            color: rgba(255, 255, 255, 0.84);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .section-callout strong {
            color: var(--color-gold-soft);
        }

        .stack-top-24 {
            margin-top: 24px;
        }

        .section-card-heading {
            color: var(--color-navy);
            margin-bottom: 20px;
        }

        .section-card-heading-lg {
            margin-bottom: 24px;
        }

        .section-card-heading-sm {
            margin-bottom: 12px;
        }

        .section-card-heading-xs {
            margin-bottom: 14px;
        }

        .section-intro-copy {
            margin-bottom: 20px;
        }

        .section-note-tight {
            margin-top: 12px;
            font-size: 14px;
            color: var(--color-muted);
        }

        .icon-inline {
            margin-right: 12px;
        }

        .section-subhead {
            margin: 36px 0 24px;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 24px;
        }

        .section-subhead h3 {
            color: var(--color-navy);
            font-size: 30px;
            margin-top: 8px;
        }

        .section-subhead p {
            max-width: 540px;
            color: var(--color-muted);
        }

        .project-grid-shell {
            margin-top: 24px;
        }

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

        .reason-card h3,
        .infra-card h3,
        .external-amenity-card h3 {
            color: var(--color-navy);
            margin-bottom: 12px;
        }

        .infra-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .infra-icon {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(200, 169, 106, 0.18);
            color: var(--color-gold);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .bullet-list {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .bullet-list li {
            position: relative;
            padding-left: 18px;
            color: var(--color-muted);
        }

        .bullet-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 11px;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-gold);
        }

        .placeholder-visual {
            min-height: 100%;
            background:
                radial-gradient(circle at top left, rgba(200, 169, 106, 0.24), transparent 42%),
                linear-gradient(135deg, rgba(11, 31, 51, 0.96), rgba(16, 42, 67, 0.96));
            color: var(--color-white);
        }

        .placeholder-visual h3 {
            color: var(--color-white);
            margin: 14px 0 10px;
        }

        .placeholder-visual p {
            color: rgba(255, 255, 255, 0.76);
        }

        .placeholder-visual-note {
            margin-top: 18px;
            padding: 14px 16px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.08);
            color: var(--color-gold-soft);
            font-size: 14px;
            font-weight: 600;
        }

        .chip-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }

        .chip-list span {
            display: inline-flex;
            align-items: center;
            padding: 9px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.16);
            color: var(--color-white);
            font-size: 13px;
        }

        .location-layout {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 24px;
        }

        .travel-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin: 18px 0;
        }

        .travel-chip {
            border-radius: var(--radius-md);
            border: 1px solid var(--border-soft);
            background: linear-gradient(180deg, rgba(200, 169, 106, 0.1), rgba(255, 255, 255, 0.98));
            padding: 16px;
        }

        .travel-chip strong,
        .external-amenity-card strong {
            display: block;
            color: var(--color-navy);
            margin-bottom: 6px;
        }

        .travel-chip span {
            display: inline-flex;
            margin-bottom: 8px;
            color: var(--color-gold);
            font-weight: 700;
            font-size: 14px;
        }

        .travel-chip small {
            color: var(--color-muted);
            line-height: 1.6;
        }

        .map-placeholder {
            min-height: 100%;
        }

        .section-mini-title {
            color: var(--color-navy);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .section-mini-title i {
            color: var(--color-gold);
        }

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

        .amenity-group-card {
            padding: 0;
            overflow: hidden;
        }

        .amenity-group-media {
            height: 230px;
            display: block;
        }

        .amenity-group-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .amenity-group-body {
            padding: 24px;
        }

        .amenity-group-body h3 {
            color: var(--color-navy);
            margin-bottom: 12px;
        }

        .amenity-bullets {
            margin-top: 14px;
        }

        .amenity-reference-card {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 24px;
            align-items: center;
            padding: 0;
            overflow: hidden;
        }

        .amenity-reference-media {
            min-height: 320px;
            height: 100%;
            background: linear-gradient(135deg, var(--color-navy), var(--color-navy-2));
        }

        .amenity-reference-media img {
            width: 100%;
            height: 100%;
            min-height: 320px;
            object-fit: cover;
            display: block;
        }

        .amenity-reference-copy {
            padding: 28px 28px 28px 0;
        }

        .amenity-reference-copy h3 {
            color: var(--color-navy);
            margin-bottom: 12px;
        }

        .amenity-reference-copy p {
            color: var(--color-muted);
        }

        .tabs-shell {
            margin-top: 8px;
        }

        .tab-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 22px;
        }

        .tab-button {
            appearance: none;
            border: 1px solid rgba(11, 31, 51, 0.14);
            background: var(--color-white);
            color: var(--color-navy);
            padding: 11px 16px;
            border-radius: 999px;
            font: inherit;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-button:hover,
        .tab-button.is-active {
            background: rgba(200, 169, 106, 0.18);
            border-color: rgba(200, 169, 106, 0.32);
        }

        .tab-panel {
            display: none;
        }

        .tab-panel.is-active {
            display: block;
        }

        .design-profile {
            display: grid;
            grid-template-columns: 0.95fr 1.05fr;
            gap: 24px;
        }

        .design-profile-copy h3 {
            color: var(--color-navy);
            margin: 8px 0 12px;
        }

        .media-figure-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .media-figure-card {
            margin: 0;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-soft);
            background: var(--color-white);
            display: flex;
            flex-direction: column;
        }

        .media-figure-button {
            height: 220px;
        }

        .media-figure-button img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .media-figure-copy {
            padding: 16px;
        }

        .media-figure-copy strong {
            display: block;
            color: var(--color-navy);
            font-size: 14px;
            margin-bottom: 8px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .media-figure-copy p {
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .table-shell {
            overflow: hidden;
        }

        .data-table {
            display: grid;
            gap: 0;
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            overflow: hidden;
        }

        .unit-compare-table .data-table-row {
            grid-template-columns: 0.7fr 0.9fr 1.2fr 1.25fr 1.15fr;
        }

        .data-table-row {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr 1.7fr;
            gap: 0;
            background: var(--color-white);
        }

        .legal-table .data-table-row {
            grid-template-columns: 1fr 1.1fr 0.8fr 1.6fr 0.9fr;
        }

        .data-table-row > span {
            padding: 16px;
            border-right: 1px solid var(--border-soft);
            border-bottom: 1px solid var(--border-soft);
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .data-table-row > span:last-child {
            border-right: none;
        }

        .data-table-head {
            background: rgba(11, 31, 51, 0.96);
        }

        .data-table-head > span {
            color: var(--color-white);
            font-weight: 700;
        }

        .table-link {
            color: var(--color-navy);
            font-weight: 700;
            text-decoration: none;
        }

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

        .external-amenity-card p,
        .reason-card p,
        .infra-card p {
            color: var(--color-muted);
        }

        .faq-shell {
            max-width: 800px;
            margin: 0 auto;
        }

        .footer-disclaimer p + p {
            margin-top: 10px;
        }

        /* Text utilities */
        .text-muted {
            color: var(--color-muted);
        }

        .gold-text {
            color: var(--color-gold);
        }

        /* Loading */
        .loading {
            text-align: center;
            padding: 40px;
            display: none;
        }

        .loading-skeleton {
            height: 200px;
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
            border-radius: var(--radius-lg);
            margin: 0 auto;
            max-width: 800px;
        }

        @keyframes loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Toast */
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: var(--color-navy);
            color: var(--color-white);
            padding: 16px 20px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            border-left: 4px solid var(--color-gold);
            z-index: 10000;
            opacity: 0;
            transform: translateX(100%);
            transition: var(--transition);
            max-width: 400px;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(0);
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .floating-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--color-white);
            border: none;
            box-shadow: var(--shadow-soft);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-navy);
            font-size: 20px;
        }

        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-strong);
        }

        .floating-icon,
        .btn-icon,
        .footer-social-icon {
            display: block;
            object-fit: contain;
            flex-shrink: 0;
        }

        .floating-icon {
            width: 26px;
            height: 26px;
        }

        .btn-icon {
            width: 18px;
            height: 18px;
        }

        .footer-social-icon {
            width: 22px;
            height: 22px;
        }

        .zalo-text-icon {
            font-size: 11px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .floating-btn.zalo {
            background: #0068ff;
            color: var(--color-white);
        }

        .floating-btn.zalo:hover {
            background: #0057d8;
        }

        .footer-social-link {
            color: var(--color-gold);
            font-size: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile Bottom CTA */
        .mobile-bottom-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--color-white);
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            padding: 12px;
            z-index: 999;
        }

        .mobile-bottom-cta .container {
            display: flex;
            gap: 8px;
            padding: 0;
        }

        .mobile-bottom-cta .btn {
            flex: 1;
            justify-content: center;
            font-size: 12px;
            padding: 12px 8px;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--color-navy);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-soft);
            border-radius: var(--radius-md);
            font-size: 16px;
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-gold);
        }

        .form-group.error input {
            border-color: #dc3545;
        }

        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 4px;
        }

        .form-note {
            font-size: 14px;
            color: var(--color-muted);
            margin-top: 12px;
            font-style: italic;
        }

        .lead-form-privacy {
            font-size: 14px;
            color: var(--color-muted);
            line-height: 1.6;
        }

        .lead-form {
            display: grid;
            gap: 16px;
        }

        .lead-form .form-row {
            display: grid;
            gap: 12px;
        }

        .lead-form .form-group {
            margin-bottom: 0;
        }

        .lead-form input,
        .lead-form select,
        .lead-form textarea {
            width: 100%;
            border: 1px solid rgba(6, 17, 31, 0.14);
            border-radius: 12px;
            padding: 14px 16px;
            font: inherit;
            color: var(--color-navy);
            background: var(--color-white);
        }

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

        .lead-form input:focus,
        .lead-form select:focus,
        .lead-form textarea:focus {
            outline: 2px solid rgba(212, 175, 55, 0.45);
            border-color: var(--color-gold);
        }

        .lead-form .btn {
            width: 100%;
            justify-content: center;
            gap: 10px;
        }

        .form-status {
            min-height: 22px;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .form-status.is-success {
            color: #147a3d;
        }

        .form-status.is-error {
            color: #b42318;
        }

        .lead-form button[disabled] {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .contact-guidance-grid-tight {
            margin-top: 0;
        }

        .contact-followup {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border-soft);
        }

        .contact-followup-copy {
            color: var(--color-muted);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .section-note-icon {
            color: var(--color-gold);
            margin-right: 8px;
        }

        @media (min-width: 768px) {
            .lead-form .form-row.two-columns {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        /* Project Cards */
        .project-card {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
        }

        .project-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-soft);
        }

        .project-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--color-gold);
            color: var(--color-navy);
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            z-index: 1;
        }

        .project-image {
            height: 240px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-navy), var(--color-navy-2));
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.01);
            transition: transform 400ms ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.06);
        }

        .project-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(6,17,31,0.08) 0%, rgba(6,17,31,0.72) 100%);
        }

        .project-image-copy {
            position: absolute;
            left: 18px;
            bottom: 18px;
            right: 18px;
            z-index: 1;
            color: var(--color-white);
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 12px;
        }

        .project-image-copy span {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.78);
        }

        .project-image-copy strong {
            font-size: 16px;
        }

        .project-content {
            padding: 24px;
        }

        .project-content h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--color-navy);
        }

        .project-meta {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 16px;
        }

        .project-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--color-muted);
        }

        .project-meta i {
            color: var(--color-gold);
        }

        /* FAQ */
        .faq-item {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--color-navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: var(--color-cream);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer.active {
            padding: 0 24px 20px;
            max-height: 500px;
        }

        /* Gallery */
        .gallery-block {
            padding: 24px;
        }

        .gallery-block + .gallery-block {
            margin-top: 24px;
        }

        .gallery-block-header {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .gallery-block-header h3 {
            color: var(--color-navy);
            font-size: 28px;
            margin-bottom: 10px;
        }

        .gallery-block-header p {
            max-width: 520px;
            color: var(--color-muted);
        }

        .gallery-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 169, 106, 0.16);
            color: var(--color-navy);
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 14px;
        }

        .gallery-swiper {
            height: 460px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-navy-dark);
        }

        .gallery-slide {
            position: relative;
            background: var(--color-navy-dark);
        }

        .gallery-figure {
            position: relative;
            width: 100%;
            height: 100%;
            margin: 0;
        }

        .image-trigger {
            appearance: none;
            border: none;
            background: transparent;
            cursor: zoom-in;
            padding: 0;
            width: 100%;
            text-align: left;
            display: block;
        }

        .gallery-figure img,
        .amenity-media img,
        .layout-thumb img,
        .panorama-highlight img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(6,17,31,0) 0%, rgba(6,17,31,0.9) 100%);
            color: var(--color-white);
            padding: 18px 20px;
        }

        .gallery-caption strong {
            display: block;
            font-size: 14px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 6px;
            color: var(--color-gold-soft);
        }

        .gallery-caption p {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.88);
        }

        .gallery-note,
        .section-note {
            margin-top: 16px;
            font-size: 14px;
            line-height: 1.7;
        }

        .panorama-shell,
        .amenity-gallery-shell {
            padding: 24px;
        }

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

        .panorama-highlight {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .panorama-highlight .image-trigger {
            height: 220px;
        }

        .panorama-highlight-copy {
            padding: 18px;
        }

        .panorama-highlight-copy h3 {
            color: var(--color-navy);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .panorama-highlight-copy p {
            color: var(--color-muted);
            font-size: 14px;
        }

        .card.amenity-card {
            padding: 0;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .amenity-media {
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-navy), var(--color-navy-2));
        }

        .amenity-icon {
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 54px;
            color: var(--color-gold);
            background: radial-gradient(circle at top, rgba(200,169,106,0.28), rgba(11,31,51,0.98));
        }

        .amenity-body {
            padding: 24px;
        }

        .amenity-body h3 {
            color: var(--color-navy);
            margin-bottom: 14px;
        }

        .amenity-body p {
            color: var(--color-muted);
        }

        .layout-groups {
            display: grid;
            gap: 32px;
        }

        .layout-group-header {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            align-items: center;
            margin-bottom: 16px;
        }

        .layout-group-header h3 {
            color: var(--color-navy);
            font-size: 28px;
        }

        .layout-group-header p {
            color: var(--color-muted);
            max-width: 560px;
        }

        .layout-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .layout-card {
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-white);
            box-shadow: var(--shadow-soft);
        }

        .layout-thumb {
            height: 360px;
            background: linear-gradient(180deg, rgba(11,31,51,0.04), rgba(11,31,51,0.12));
        }

        .layout-thumb img {
            object-fit: contain;
            background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
        }

        .layout-caption {
            padding: 20px;
        }

        .layout-caption h4 {
            color: var(--color-navy);
            font-size: 19px;
            margin-bottom: 10px;
        }

        .layout-caption p {
            color: var(--color-muted);
            font-size: 14px;
        }

        .layout-chip {
            display: inline-flex;
            margin-bottom: 12px;
            border-radius: 999px;
            border: 1px solid rgba(200, 169, 106, 0.35);
            color: var(--color-gold);
            padding: 6px 12px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(6, 17, 31, 0.72);
            color: var(--color-white);
            backdrop-filter: blur(8px);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 18px;
            font-weight: 700;
        }

        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.48);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--color-gold);
        }

        body.modal-open {
            overflow: hidden;
            overscroll-behavior: contain;
            touch-action: none;
        }

        .image-modal {
            position: fixed;
            inset: 0;
            z-index: 10001;
            display: none;
        }

        .image-modal.is-open {
            display: block;
        }

        .image-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(6, 17, 31, 0.88);
            cursor: zoom-out;
        }

        .image-modal-dialog {
            position: relative;
            z-index: 1;
            width: min(1100px, calc(100vw - 32px));
            height: min(760px, calc(100vh - 32px));
            margin: 16px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            outline: none;
        }

        .image-modal-content {
            margin: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .image-modal-content img {
            max-width: 100%;
            max-height: calc(100vh - 140px);
            object-fit: contain;
            border-radius: 16px;
            display: block;
            background: rgba(255, 255, 255, 0.04);
        }

        .image-modal-caption {
            margin-top: 12px;
            max-width: 860px;
            color: rgba(255, 255, 255, 0.92);
            text-align: center;
            font-size: 15px;
            line-height: 1.6;
            padding: 0 24px;
        }

        .image-modal-close,
        .image-modal-nav {
            border: 0;
            cursor: pointer;
            color: #fff;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(8px);
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .image-modal-close:hover,
        .image-modal-nav:hover {
            background: rgba(255, 255, 255, 0.28);
        }

        .image-modal-close {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 44px;
            height: 44px;
            border-radius: 999px;
            font-size: 32px;
            line-height: 1;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .image-modal-close:hover {
            transform: scale(1.04);
        }

        .image-modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 64px;
            border-radius: 999px;
            font-size: 32px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .image-modal-nav:hover {
            transform: translateY(-50%) scale(1.04);
        }

        .image-modal-prev {
            left: 12px;
        }

        .image-modal-next {
            right: 12px;
        }

        .image-modal-counter {
            position: absolute;
            left: 50%;
            bottom: 12px;
            transform: translateX(-50%);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            background: rgba(0, 0, 0, 0.45);
            border-radius: 999px;
            padding: 6px 12px;
            z-index: 3;
        }

        .image-modal-nav[hidden],
        .image-modal-counter[hidden] {
            display: none;
        }

        /* Process Timeline */
        .process-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: var(--color-gold);
            z-index: 0;
        }

        .process-step:last-child::before {
            display: none;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--color-gold);
            color: var(--color-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }

        .step-content h4 {
            color: var(--color-navy);
            margin-bottom: 8px;
        }

        .legal-section {
            background:
                linear-gradient(180deg, rgba(248, 245, 239, 0.98), rgba(255, 255, 255, 0.42)),
                var(--color-cream);
        }

        .legal-notice {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            padding: 22px 24px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, rgba(232, 215, 168, 0.52), rgba(255, 255, 255, 0.94));
            border: 1px solid rgba(200, 169, 106, 0.42);
            color: var(--color-navy);
            box-shadow: 0 18px 48px rgba(11, 31, 51, 0.06);
            margin-bottom: 24px;
        }

        .legal-notice i {
            color: var(--color-gold);
            font-size: 22px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .legal-notice p {
            margin: 0;
            color: var(--color-text);
        }

        .legal-grid {
            display: grid;
            gap: 18px;
            margin-bottom: 24px;
        }

        .legal-category-card {
            min-height: 100%;
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: 0 14px 42px rgba(11, 31, 51, 0.05);
        }

        .legal-category-icon {
            width: 52px;
            height: 52px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(200, 169, 106, 0.16);
            color: var(--color-gold);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .legal-category-card h3 {
            color: var(--color-navy);
            font-size: 21px;
            margin-bottom: 12px;
        }

        .legal-category-card p {
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .legal-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 24px;
            align-items: stretch;
            margin-top: 24px;
        }

        .legal-image-card {
            margin: 0;
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
        }

        .legal-image-button {
            min-height: 520px;
            background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
        }

        .legal-image-button img {
            width: 100%;
            max-height: 620px;
            object-fit: contain;
            display: block;
        }

        .legal-image-card figcaption {
            padding: 18px 20px;
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.7;
            border-top: 1px solid var(--border-soft);
        }

        .legal-image-copy {
            background:
                radial-gradient(circle at top right, rgba(200, 169, 106, 0.18), transparent 42%),
                var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 16px;
        }

        .legal-image-copy h3 {
            color: var(--color-navy);
            font-size: 30px;
        }

        .legal-image-copy p {
            color: var(--color-muted);
        }

        .legal-document-panel,
        .legal-process,
        .legal-questions {
            margin-top: 24px;
            padding: 28px;
            border-radius: var(--radius-lg);
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            box-shadow: 0 14px 42px rgba(11, 31, 51, 0.05);
        }

        .legal-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 20px;
        }

        .legal-panel-header h3 {
            color: var(--color-navy);
            font-size: 28px;
            margin-top: 6px;
        }

        .legal-panel-header p {
            max-width: 520px;
            color: var(--color-muted);
        }

        .legal-document-list {
            display: grid;
            gap: 14px;
        }

        .legal-document-card {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            gap: 18px;
            align-items: center;
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            padding: 18px;
            background: linear-gradient(180deg, rgba(248, 245, 239, 0.7), rgba(255, 255, 255, 0.98));
        }

        .legal-document-icon {
            width: 54px;
            height: 54px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(200, 169, 106, 0.16);
            color: #b42318;
            font-size: 24px;
            flex-shrink: 0;
        }

        .legal-document-copy {
            min-width: 0;
        }

        .legal-document-group {
            display: inline-flex;
            margin-bottom: 8px;
            color: var(--color-gold);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .legal-document-copy h4 {
            color: var(--color-navy);
            font-size: 20px;
            margin-bottom: 8px;
        }

        .legal-document-copy p {
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .legal-document-copy small {
            display: block;
            color: var(--color-text);
            font-size: 13px;
            line-height: 1.6;
        }

        .legal-document-actions {
            display: flex;
            justify-content: flex-end;
        }

        .legal-process-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 14px;
        }

        .legal-process-step {
            position: relative;
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            padding: 18px;
            background: linear-gradient(180deg, rgba(200, 169, 106, 0.11), rgba(255, 255, 255, 0.98));
            min-height: 100%;
        }

        .legal-process-step span {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--color-navy);
            color: var(--color-gold-soft);
            font-weight: 800;
            margin-bottom: 14px;
        }

        .legal-process-step h4 {
            color: var(--color-navy);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .legal-process-step p {
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.7;
        }

        .legal-question-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .legal-question-list li {
            position: relative;
            padding: 14px 16px 14px 42px;
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            background: rgba(248, 245, 239, 0.72);
            color: var(--color-text);
            line-height: 1.7;
        }

        .legal-question-list li::before {
            content: '?';
            position: absolute;
            left: 14px;
            top: 15px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(200, 169, 106, 0.22);
            color: var(--color-navy);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 800;
        }

        .legal-cta {
            margin-top: 24px;
            padding: 28px;
            border-radius: var(--radius-lg);
            background:
                radial-gradient(circle at top right, rgba(200, 169, 106, 0.18), transparent 44%),
                linear-gradient(135deg, rgba(11, 31, 51, 0.98), rgba(16, 42, 67, 0.98));
            color: rgba(255, 255, 255, 0.82);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .legal-cta h3 {
            color: var(--color-white);
            font-size: 30px;
            margin-bottom: 10px;
        }

        .legal-cta p {
            color: rgba(255, 255, 255, 0.76);
        }

        .legal-cta-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 12px;
            flex-shrink: 0;
        }

        .legal-empty-state {
            text-align: center;
            padding: 36px 24px;
            border: 1px dashed rgba(200, 169, 106, 0.5);
            border-radius: var(--radius-lg);
            background: rgba(248, 245, 239, 0.72);
        }

        .legal-empty-state i {
            color: var(--color-gold);
            font-size: 42px;
            margin-bottom: 16px;
        }

        .legal-empty-state h4 {
            color: var(--color-navy);
            font-size: 22px;
            margin-bottom: 10px;
        }

        .legal-empty-state p {
            color: var(--color-muted);
            max-width: 560px;
            margin: 0 auto 18px;
        }

        /* Legal Alert */
        .legal-alert {
            background: var(--color-gold-soft);
            border: 1px solid var(--color-gold);
            border-radius: var(--radius-lg);
            padding: 24px;
            margin-bottom: 24px;
        }

        .legal-alert h3 {
            color: var(--color-navy);
            margin-bottom: 12px;
        }

        /* Contact Info */
        .contact-info {
            background: var(--color-white);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-lg);
            padding: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-item i {
            font-size: 20px;
            color: var(--color-gold);
            width: 40px;
        }

        .contact-item h4 {
            color: var(--color-navy);
            margin-bottom: 4px;
            font-size: 16px;
        }

        .contact-item p {
            color: var(--color-muted);
            font-size: 14px;
        }

        .contact-guidance-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 24px;
        }

        .contact-guidance-card {
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-md);
            padding: 20px;
            background: linear-gradient(180deg, rgba(200, 169, 106, 0.12), rgba(255, 255, 255, 0.98));
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-height: 100%;
        }

        .contact-guidance-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(11, 31, 51, 0.08);
            color: var(--color-gold);
            font-size: 18px;
        }

        .contact-guidance-card h3 {
            color: var(--color-navy);
            font-size: 18px;
            margin: 0;
        }

        .contact-guidance-card p {
            color: var(--color-muted);
            font-size: 14px;
            line-height: 1.7;
            margin: 0;
        }

        .gallery-block-header-compact {
            margin-bottom: 18px;
        }

        .end-message {
            display: none;
            text-align: center;
            padding: 60px 20px;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            margin-top: 40px;
        }

        .end-message-title {
            color: var(--color-navy);
            margin-bottom: 16px;
        }

        .end-message-copy {
            color: var(--color-muted);
        }

        .end-message-cta {
            margin-top: 20px;
        }

        /* Footer */
        .footer {
            background: var(--color-navy-dark);
            color: rgba(255, 255, 255, 0.72);
            padding: 64px 24px 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--color-white);
        }

        .footer-summary {
            margin-bottom: 20px;
        }

        .footer-socials {
            display: flex;
            gap: 16px;
        }

        .footer-heading {
            color: var(--color-white);
            margin-bottom: 20px;
        }

        .footer-menu {
            list-style: none;
        }

        .footer-menu li {
            margin-bottom: 12px;
        }

        .footer-menu a {
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            transition: var(--transition);
        }

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

        .footer-bottom {
            border-top: 1px solid var(--border-light);
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
        }

        .footer-disclaimer {
            margin-bottom: 16px;
            font-style: italic;
        }

        .contact-item-compact {
            margin-bottom: 16px;
        }

        .contact-item-top {
            margin-top: 16px;
        }

        /* Responsive */
        @media (max-width: 1440px) {
            .logo-tagline {
                display: none;
            }
            .header-contact-text small {
                display: none;
            }
            .header-contact-text strong {
                margin-top: 0;
            }
        }

        @media (max-width: 1360px) {
            .nav-link,
            .nav-dropdown-toggle {
                font-size: 13px;
            }
            .header-cta-button {
                min-width: 136px;
                padding: 12px 16px;
            }
        }

        @media (max-width: 1024px) {
            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .facts-grid,
            .comparison-grid,
            .infra-layout,
            .amenity-groups,
            .media-figure-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .location-layout,
            .design-profile,
            .legal-layout,
            .amenity-reference-card {
                grid-template-columns: 1fr;
            }
            .legal-process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .legal-question-list {
                grid-template-columns: 1fr;
            }
            .amenity-reference-copy {
                padding: 0 28px 28px;
            }
            .overview-layout,
            .layout-grid,
            .panorama-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 3000px) {
            body.nav-open {
                overflow: hidden;
            }
            .header-content {
                gap: 14px;
            }
            .site-nav {
                display: none;
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                padding-left: 0;
                background: rgba(248, 245, 239, 0.98);
                border: 1px solid var(--border-soft);
                border-radius: var(--radius-lg);
                box-shadow: var(--shadow-soft);
                padding: 18px;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                z-index: 1002;
            }
            .site-nav.active {
                display: flex;
            }
            .nav-search {
                display: flex;
                align-items: center;
                gap: 10px;
                background: var(--color-white);
                border: 1px solid var(--border-soft);
                border-radius: 18px;
                padding: 8px 10px;
                margin-bottom: 14px;
            }
            .nav-search i {
                color: var(--color-gold);
                font-size: 15px;
            }
            .nav-search input {
                flex: 1;
                min-width: 0;
                border: none;
                background: transparent;
                color: var(--color-navy);
                font-size: 14px;
            }
            .nav-search input:focus {
                outline: none;
            }
            .nav-search button {
                border: none;
                border-radius: 999px;
                background: linear-gradient(135deg, #C8A96A, #E8D7A8);
                color: var(--color-navy);
                font-weight: 700;
                padding: 10px 14px;
                cursor: pointer;
            }
            .nav-menu {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
            }
            .nav-link,
            .nav-dropdown-toggle {
                width: 100%;
                justify-content: space-between;
                background: var(--color-white);
                border: 1px solid var(--border-soft);
                padding: 15px 18px;
            }
            .nav-dropdown-menu {
                position: static;
                min-width: 0;
                padding: 8px 0 0;
                background: transparent;
                border: none;
                box-shadow: none;
                display: none;
                opacity: 1;
                visibility: visible;
                transform: none;
            }
            .nav-item:hover > .nav-dropdown-menu,
            .nav-item:focus-within > .nav-dropdown-menu {
                display: none;
            }
            .nav-item.is-open > .nav-dropdown-menu {
                display: grid;
            }
            .nav-submenu-link {
                background: rgba(255, 255, 255, 0.9);
                border-color: var(--border-soft);
            }
            .nav-mobile-meta {
                display: grid;
                gap: 12px;
                margin-top: 16px;
                padding-top: 16px;
                border-top: 1px solid var(--border-soft);
            }
            .nav-mobile-contact {
                display: grid;
                gap: 8px;
            }
            .nav-mobile-contact a {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 12px 14px;
                border-radius: 16px;
                background: var(--color-white);
                border: 1px solid var(--border-soft);
                text-decoration: none;
                color: var(--color-navy);
                font-weight: 600;
            }
            .nav-mobile-contact i {
                color: var(--color-gold);
            }
            .nav-mobile-cta {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .nav-mobile-cta .btn {
                justify-content: center;
                width: 100%;
            }
            .mobile-menu-toggle {
                display: inline-flex;
            }
            .nav-cta {
                display: none;
            }
            .header-actions {
                margin-left: auto;
            }
        }

        @media (min-width: 1440px) {
            .nav-cta {
                display: flex;
            }
        }

        @media (max-width: 900px) {
            .header-contact-link {
                padding: 10px 14px;
            }
            .header-contact-text strong {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            .header-actions {
                display: none;
            }
            .hero {
                padding: 80px 20px 64px;
                min-height: auto;
            }
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero h1 {
                font-size: clamp(38px, 8vw, 44px);
            }
            .hero-cta {
                flex-direction: column;
            }
            .trust-grid,
            .grid-2,
            .grid-3 {
                grid-template-columns: 1fr;
            }
            .facts-grid,
            .comparison-grid,
            .infra-layout,
            .travel-grid,
            .amenity-groups,
            .media-figure-grid,
            .location-layout,
            .contact-guidance-grid,
            .design-profile {
                grid-template-columns: 1fr;
            }
            .overview-layout,
            .overview-stats,
            .layout-grid,
            .panorama-grid {
                grid-template-columns: 1fr;
            }
            .section-callout,
            .section-subhead,
            .hero-panel-footer,
            .legal-panel-header,
            .legal-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            .legal-document-card {
                grid-template-columns: 1fr;
                align-items: flex-start;
            }
            .legal-document-actions {
                width: 100%;
                justify-content: flex-start;
            }
            .legal-cta-actions {
                width: 100%;
                justify-content: flex-start;
            }
            .section-subhead {
                margin-top: 28px;
            }
            .section {
                padding: 64px 20px;
            }
            .section-title {
                font-size: clamp(26px, 6vw, 32px);
            }
            .floating-cta {
                display: none;
            }
            .mobile-bottom-cta {
                display: block;
            }
            body {
                padding-bottom: 78px;
            }
            .process-timeline {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .gallery-swiper {
                height: 360px;
            }
            .layout-thumb {
                height: 300px;
            }
            .gallery-block-header,
            .layout-group-header {
                flex-direction: column;
            }
            .gallery-block-header h3,
            .section-subhead h3 {
                font-size: 24px;
            }
            .overview-visual img {
                min-height: 320px;
            }
            .tab-button {
                flex: 1 1 calc(50% - 10px);
                justify-content: center;
            }
            .table-shell {
                padding: 20px;
            }
            .data-table {
                border: none;
                gap: 14px;
            }
            .data-table-head {
                display: none;
            }
            .data-table-row,
            .legal-table .data-table-row {
                grid-template-columns: 1fr;
                border: 1px solid var(--border-soft);
                border-radius: var(--radius-md);
                overflow: hidden;
            }
            .data-table-row > span {
                border-right: none;
                display: grid;
                gap: 6px;
                padding: 14px 16px;
            }
            .data-table-row > span::before {
                content: attr(data-label);
                color: var(--color-navy);
                font-size: 11px;
                font-weight: 700;
                letter-spacing: 0.08em;
                text-transform: uppercase;
            }
            .header-content {
                gap: 10px;
                justify-content: space-between;
            }
            .logo-mark {
                width: 46px;
                height: 46px;
                border-radius: 15px;
            }
            .logo-mark i {
                font-size: 20px;
            }
            .logo-title {
                font-size: 19px;
            }
            .header-contact-link {
                min-height: 46px;
                padding: 9px 12px;
            }
            .header-contact-text strong {
                font-size: 13px;
            }
            .image-modal-dialog {
                width: calc(100vw - 16px);
                height: calc(100vh - 16px);
                margin: 8px auto;
                padding: 56px 12px 48px;
            }
            .image-modal-content img {
                max-height: calc(100vh - 180px);
                border-radius: 12px;
            }
            .image-modal-nav {
                width: 42px;
                height: 54px;
                font-size: 26px;
            }
            .image-modal-prev {
                left: 8px;
            }
            .image-modal-next {
                right: 8px;
            }
            .image-modal-caption {
                font-size: 14px;
                padding: 0 12px;
            }
        }

        @media (max-width: 640px) {
            .grid-4,
            .legal-process-grid {
                grid-template-columns: 1fr;
            }
            .legal-document-card {
                grid-template-columns: 1fr;
            }
            .legal-notice,
            .legal-document-panel,
            .legal-process,
            .legal-questions,
            .legal-cta {
                padding: 20px;
            }
            .legal-image-button {
                min-height: 360px;
                padding: 12px;
            }
            .legal-panel-header h3,
            .legal-image-copy h3,
            .legal-cta h3 {
                font-size: 24px;
            }
            .legal-document-actions .btn,
            .legal-cta-actions .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 520px) {
            .hero h1 {
                font-size: clamp(32px, 10vw, 38px);
            }
            .section-title {
                font-size: clamp(24px, 8vw, 28px);
            }
            .hero-quickfacts,
            .facts-grid {
                grid-template-columns: 1fr;
            }
            .trust-card {
                padding: 24px;
            }
            .card {
                padding: 20px;
            }
            .gallery-swiper {
                height: 300px;
            }
            .gallery-caption {
                padding: 14px 16px;
            }
            .project-image {
                height: 210px;
            }
            .tab-button {
                flex-basis: 100%;
            }
            .image-modal-close {
                top: 8px;
                right: 8px;
            }
            .logo-title {
                font-size: 17px;
            }
            .header-contact-link {
                padding: 8px 11px;
            }
            .header-contact-link i {
                font-size: 14px;
            }
            .header-contact-text strong {
                font-size: 12px;
            }
            .nav-mobile-cta {
                grid-template-columns: 1fr;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        :focus-visible {
            outline: 3px solid rgba(200, 169, 106, 0.55);
            outline-offset: 2px;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
