    <style>
        :root {
            --navy: #0A1628;
            --gold: #C9A84C;
            --cream: #f7f5f0;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', Calibri, sans-serif; color: #1a1a1a; background: #fff; }
        h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Cambria, serif; }

        /* Splash Screen */
        #splash-screen {
            position: fixed; inset: 0; z-index: 9999;
            background: #0A1628;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        #splash-screen.hide { opacity: 0; visibility: hidden; }
        #splash-screen .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem; font-weight: 700; color: #C9A84C;
            letter-spacing: 0.15em;
            animation: fadeInUp 1s ease forwards;
        }
        #splash-screen .tagline {
            color: rgba(255,255,255,0.6); font-size: 0.85rem;
            margin-top: 0.75rem; letter-spacing: 0.08em;
            animation: fadeInUp 1s 0.3s ease forwards; opacity: 0;
        }
        #splash-screen .loader {
            width: 48px; height: 3px; background: rgba(255,255,255,0.1);
            margin-top: 2rem; border-radius: 2px; overflow: hidden;
        }
        #splash-screen .loader::after {
            content: ''; display: block; width: 50%; height: 100%;
            background: #C9A84C; border-radius: 2px;
            animation: loading 3.7s ease-in-out infinite;
        }
        .tagline {
            text-align: center;
            width: 100%;
}

        @keyframes loading {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(300%); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
}
        .animate-in { animation: fadeIn 0.7s ease forwards; }
        .animate-delay-1 { animation-delay: 0.15s; opacity: 0; }
        .animate-delay-2 { animation-delay: 0.3s; opacity: 0; }
        .animate-delay-3 { animation-delay: 0.45s; opacity: 0; }

        /* Navigation */
        #main-nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.15);
            transition: all 0.3s ease;
        }
        #main-nav.scrolled {
            background: rgba(10, 22, 40, 0.98);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        .nav-link {
            color: rgba(255,255,255,0.75);
            font-size: 0.8rem; font-weight: 500;
            letter-spacing: 0.06em; text-transform: uppercase;
            padding: 0.5rem 0; cursor: pointer;
            transition: color 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .nav-link:hover, .nav-link.active {
            color: #C9A84C;
            border-bottom-color: #C9A84C;
        }

        /* Hero */
        .hero-diagonal {
            position: relative; overflow: hidden;
        }
        .hero-diagonal {
            min-height: 100dvh;
        }

        .hero-diagonal::before {
            content: '';
            position: absolute; inset: 0;
            background: repeating-linear-gradient(
                135deg,
                transparent,
                transparent 40px,
                rgba(201, 168, 76, 0.03) 40px,
                rgba(201, 168, 76, 0.03) 80px
            );
        }
        .hero-diagonal::after {
            content: '';
            position: absolute; bottom: 0; left: 0; right: 0;
            height: 120px;
            background: linear-gradient(to top, #fff, transparent);
        }

        .hero-diagonal {
            background: rgba(10, 22, 40, 0.55); /* was probably 0.85 or solid */
}

        /* Cards */
        .service-card {
            background: #fff;
            border: 1px solid rgba(201, 168, 76, 0.15);
            border-radius: 12px;
            transition: all 0.35s ease;
            cursor: pointer;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(201, 168, 76, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.3);
        }
        .gold-icon-circle {
            width: 56px; height: 56px;
            background: linear-gradient(135deg, #C9A84C, #e0c96e);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #0A1628;
        }

        /* Tables */
        .luxury-table { width: 100%; border-collapse: collapse; }
        .luxury-table thead th {
            background: #0A1628; color: #C9A84C;
            padding: 14px 18px; text-align: left;
            font-family: 'Playfair Display', serif;
            font-weight: 600; font-size: 0.85rem;
            letter-spacing: 0.04em;
        }
        .luxury-table tbody td {
            padding: 12px 18px; border-bottom: 1px solid #eae6dc;
            font-size: 0.875rem;
        }
        .luxury-table tbody tr:nth-child(even) { background: #f7f5f0; }
        .luxury-table tbody tr:hover { background: #eae6dc; }

        /* Buttons */
        .btn-gold {
            background: linear-gradient(135deg, #C9A84C, #a88a3a);
            color: #0A1628; font-weight: 600;
            padding: 14px 32px; border-radius: 8px;
            font-size: 0.875rem; letter-spacing: 0.04em;
            text-transform: uppercase; border: none; cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-gold:hover {
            background: linear-gradient(135deg, #e0c96e, #C9A84C);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
        }
        .btn-outline-gold {
            background: transparent;
            border: 2px solid #C9A84C;
            color: #C9A84C; font-weight: 600;
            padding: 12px 30px; border-radius: 8px;
            font-size: 0.875rem; letter-spacing: 0.04em;
            text-transform: uppercase; cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex; align-items: center; gap: 8px;
        }
        .btn-outline-gold:hover {
            background: #C9A84C; color: #0A1628;
            transform: translateY(-2px);
        }

        /* Section styling */
        .page-section { display: none; }
        .page-section.active { display: block; }

        /* Quote card */
        .quote-card {
            position: relative;
            background: #fff;
            border: 1px solid rgba(201, 168, 76, 0.2);
            border-radius: 12px;
            padding: 2rem;
        }
        .quote-card::before {
            content: '"';
            position: absolute; top: -8px; left: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 4rem; color: #C9A84C; line-height: 1;
        }

        /* FAQ Accordion */
        .faq-item { border-bottom: 1px solid #eae6dc; }
        .faq-question {
            display: flex; align-items: center; justify-content: space-between;
            padding: 1.25rem 0; cursor: pointer;
            font-weight: 600; color: #0A1628;
        }
        .faq-answer {
            max-height: 0; overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
            padding: 0;
        }
        .faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }

        /* Gold check */
        .gold-check { color: #C9A84C; }

        /* Back to top */
        #back-to-top {
            position: fixed; bottom: 24px; right: 24px;
            width: 48px; height: 48px; border-radius: 50%;
            background: #0A1628; border: 2px solid #C9A84C;
            color: #C9A84C; cursor: pointer;
            display: none; align-items: center; justify-content: center;
            z-index: 900; transition: all 0.3s ease;
        }
        #back-to-top:hover {
            background: #C9A84C; color: #0A1628;
        }

        /* Form inputs */
        .form-input {
            width: 100%; padding: 12px 16px; border-radius: 8px;
            border: 1px solid #d1d1d1; font-size: 0.9375rem;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background: #fff;
        }
        .form-input:focus {
            outline: none;
            border-color: #C9A84C;
            box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
        }
        .form-input.error { border-color: #dc2626; }
        .form-label {
            font-size: 0.8125rem; font-weight: 600; color: #0A1628;
            margin-bottom: 6px; display: block; letter-spacing: 0.02em;
        }

        /* Gold divider */
        .gold-divider {
            width: 60px; height: 3px;
            background: linear-gradient(90deg, #C9A84C, #e0c96e);
            margin: 1rem auto;
        }

        /* Expandable cards */
        .expand-content {
            max-height: 0; overflow: hidden;
            transition: max-height 0.4s ease;
        }
        .expand-content.open { max-height: 2000px; }

        /* Process step */
        .process-step {
            position: relative;
            padding-left: 3.5rem;
        }
        .process-step .step-number {
            position: absolute; left: 0; top: 0;
            width: 2.5rem; height: 2.5rem;
            background: linear-gradient(135deg, #C9A84C, #a88a3a);
            color: #0A1628; font-weight: 700;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif;
        }

        /* Subtle pulse */
        @keyframes subtlePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Mobile menu */
        #mobile-menu {
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateX(100%);
            opacity: 0;
        }
        #mobile-menu.open {
            transform: translateX(0);
            opacity: 1;
        }

        /* Tab styling */
        .tab-btn {
            padding: 12px 24px; font-weight: 600;
            font-size: 0.8125rem; text-transform: uppercase;
            letter-spacing: 0.06em; cursor: pointer;
            border-bottom: 3px solid transparent;
            color: rgba(10,22,40,0.5);
            transition: all 0.3s ease;
            background: transparent; border-top: none; border-left: none; border-right: none;
        }
        .tab-btn.active {
            color: #0A1628;
            border-bottom-color: #C9A84C;
        }

        /* Value card */
        .value-card {
            text-align: center;
            padding: 2rem 1.5rem;
            border: 1px solid rgba(201,168,76,0.15);
            border-radius: 12px;
            background: #fff;
            transition: all 0.3s ease;
        }
        .value-card:hover {
            border-color: #C9A84C;
            box-shadow: 0 8px 30px rgba(201,168,76,0.1);
        }

        /* Timeline */
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            padding-bottom: 2rem;
            border-left: 2px solid rgba(201,168,76,0.3);
        }
        .timeline-item::before {
            content: '';
            position: absolute; left: -6px; top: 4px;
            width: 10px; height: 10px;
            background: #C9A84C; border-radius: 50%;
        }
        .timeline-item:last-child { border-left-color: transparent; }
        
    </style>