        :root {
            --navy: #0b1628;
            --navy-mid: #132238;
            --gold: #c4a35a;
            --gold-light: #d4b76a;
            --cream: #f7f4ef;
            --white: #ffffff;
            --text: #2a3544;
            --muted: #5c6b7a;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--cream);
            line-height: 1.65;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            letter-spacing: 0.01em;
        }
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
            background: rgba(11, 22, 40, 0.96);
            backdrop-filter: blur(14px);
            padding: 1.1rem 0;
            transition: padding 0.3s ease;
        }
        .nav.scrolled { padding: 0.7rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
        .nav-container {
            max-width: 1200px; margin: 0 auto; padding: 0 1.75rem;
            display: flex; justify-content: space-between; align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--white);
        }
        .logo-icon {
            width: 48px;
            height: 48px;
            object-fit: contain;
            flex-shrink: 0;
            border-radius: 4px;
        }
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.15;
        }
        .logo-text .brand {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            color: var(--white);
        }
        .logo-text .brand span { color: var(--gold); }
        .logo-text .sub {
            font-size: 0.62rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(196,163,90,0.9);
            font-weight: 500;
            margin-top: 1px;
        }
        .nav-links { display: flex; gap: 2.25rem; list-style: none; }
        .nav-links a {
            color: rgba(255,255,255,0.88); text-decoration: none;
            font-size: 0.82rem; font-weight: 450; letter-spacing: 0.09em;
            text-transform: uppercase; transition: color 0.25s;
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-cta {
            background: var(--gold) !important; color: var(--navy) !important;
            padding: 0.55rem 1.3rem; border-radius: 2px; font-weight: 600 !important;
        }
        .nav-cta:hover { background: var(--gold-light) !important; }
        .mobile-toggle {
            display: none; background: none; border: none;
            color: white; font-size: 1.45rem; cursor: pointer;
        }
        .hero {
            min-height: 100vh;
            background: linear-gradient(160deg, rgba(11,22,40,0.94) 0%, rgba(11,22,40,0.82) 55%, rgba(11,22,40,0.88) 100%);
            display: flex; align-items: center; position: relative; padding-top: 88px;
        }
        .hero-content {
            max-width: 1200px; margin: 0 auto; padding: 0 1.75rem;
            color: white; text-align: center;
        }
        .hero-badge {
            display: inline-block; border: 1px solid rgba(196,163,90,0.55);
            color: var(--gold); padding: 0.38rem 1.15rem;
            font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
            margin-bottom: 1.75rem;
        }
        .hero h1 {
            font-size: clamp(2.6rem, 5.5vw, 4.1rem);
            line-height: 1.12; margin-bottom: 1.35rem; font-weight: 600;
        }
        .hero h1 span { color: var(--gold); }
        .hero-sub {
            font-size: 1.18rem; font-weight: 300; max-width: 680px;
            margin: 0 auto 2.4rem; color: rgba(255,255,255,0.82); line-height: 1.7;
        }
        .hero-buttons { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }
        .btn {
            display: inline-block; padding: 0.95rem 2rem; text-decoration: none;
            font-size: 0.84rem; font-weight: 500; letter-spacing: 0.09em;
            text-transform: uppercase; transition: all 0.28s ease; border: 1px solid transparent;
        }
        .btn-primary { background: var(--gold); color: var(--navy); }
        .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
        .btn-outline { border-color: rgba(196,163,90,0.7); color: var(--gold); }
        .btn-outline:hover { background: var(--gold); color: var(--navy); }
        .hero-stats {
            display: flex; justify-content: center; gap: 3.5rem;
            margin-top: 4.5rem; flex-wrap: wrap;
        }
        .stat { text-align: center; }
        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem; color: var(--gold); font-weight: 600; line-height: 1;
        }
        .stat-label {
            font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase;
            color: rgba(255,255,255,0.65); margin-top: 0.35rem;
        }
        section { padding: 5.5rem 0; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 1.75rem; }
        .section-header { text-align: center; margin-bottom: 3.5rem; }
        .section-label {
            color: var(--gold); font-size: 0.76rem; letter-spacing: 0.2em;
            text-transform: uppercase; margin-bottom: 0.9rem; display: block;
        }
        .section-header h2 {
            font-size: clamp(2.05rem, 3.8vw, 2.95rem);
            color: var(--navy); margin-bottom: 1.1rem;
        }
        .section-header p {
            max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 1.05rem;
        }
        .trust-bar {
            background: var(--navy); color: white; padding: 1.6rem 0;
        }
        .trust-items {
            display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
            font-size: 0.88rem; letter-spacing: 0.04em;
        }
        .trust-items span { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.85); }
        .trust-items strong { color: var(--gold); font-weight: 500; }
        .about { background: white; }
        .about-grid {
            display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: start;
        }
        .about-content h3 {
            font-size: 1.85rem; color: var(--navy); margin-bottom: 1.3rem;
        }
        .about-content p {
            margin-bottom: 1.15rem; color: var(--muted); font-size: 1.02rem;
        }
        .about-content p strong { color: var(--text); }
        .capability-list {
            margin-top: 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem;
        }
        .capability-list li {
            list-style: none; font-size: 0.92rem; color: var(--text);
            padding-left: 1.1rem; position: relative;
        }
        .capability-list li::before {
            content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: 0.55rem; top: 0.35rem;
        }
        .about-side {
            background: var(--navy); color: white; padding: 2.6rem; border-radius: 3px;
            position: relative; overflow: hidden;
        }
        .about-side::before {
            content: ''; position: absolute; top: -40%; right: -25%;
            width: 70%; height: 140%;
            background: radial-gradient(circle, rgba(196,163,90,0.12) 0%, transparent 70%);
        }
        .about-side h3 {
            font-size: 1.55rem; margin-bottom: 1.3rem; position: relative;
        }
        .about-side ul { list-style: none; position: relative; }
        .about-side li {
            padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
            font-size: 0.93rem; display: flex; gap: 0.7rem; align-items: flex-start;
        }
        .about-side li:last-child { border-bottom: none; }
        .about-side li::before { content: "—"; color: var(--gold); flex-shrink: 0; }
        .process { background: var(--cream); }
        .process-steps {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
        }
        .step {
            background: white; padding: 1.9rem 1.5rem; border-radius: 3px;
            border-top: 3px solid var(--gold); position: relative;
        }
        .step-num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.1rem; color: var(--gold); font-weight: 600; line-height: 1;
            margin-bottom: 0.7rem;
        }
        .step h3 {
            font-size: 1.15rem; color: var(--navy); margin-bottom: 0.6rem;
            font-family: 'Inter', sans-serif; font-weight: 600;
        }
        .step p { font-size: 0.9rem; color: var(--muted); }
        .services { background: white; }
        .services-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.6rem;
        }
        .service-card {
            background: var(--cream); padding: 2.1rem; border-radius: 3px;
            transition: all 0.28s ease; border: 1px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 16px 36px rgba(11,22,40,0.07);
            border-color: rgba(196,163,90,0.25);
            background: white;
        }
        .service-card h3 {
            font-size: 1.35rem; color: var(--navy); margin-bottom: 0.85rem;
        }
        .service-card p {
            color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem;
        }
        .service-card ul { list-style: none; }
        .service-card li {
            font-size: 0.88rem; color: var(--text); padding: 0.28rem 0;
            padding-left: 1.05rem; position: relative;
        }
        .service-card li::before {
            content: "—"; position: absolute; left: 0; color: var(--gold);
        }
        .safety { background: var(--navy); color: white; }
        .safety .section-header h2 { color: white; }
        .safety .section-header p { color: rgba(255,255,255,0.7); }
        .safety-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem;
        }
        .safety-card {
            background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
            padding: 1.9rem; border-radius: 3px;
        }
        .safety-card h3 {
            font-size: 1.2rem; color: var(--gold); margin-bottom: 0.75rem;
            font-family: 'Inter', sans-serif; font-weight: 600;
        }
        .safety-card p { color: rgba(255,255,255,0.75); font-size: 0.93rem; }
        .areas { background: white; }
        .areas-list {
            display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem;
            max-width: 880px; margin: 0 auto;
        }
        .area-tag {
            background: var(--cream); border: 1px solid rgba(196,163,90,0.22);
            padding: 0.6rem 1.3rem; border-radius: 2px; font-size: 0.9rem;
            color: var(--navy); font-weight: 500; transition: all 0.25s;
        }
        .area-tag:hover {
            background: var(--navy); color: white; border-color: var(--navy);
        }
        .faq { background: var(--cream); }
        .faq-list { max-width: 780px; margin: 0 auto; }
        .faq-item {
            background: white; margin-bottom: 0.85rem; border-radius: 3px;
            overflow: hidden; border: 1px solid rgba(0,0,0,0.04);
        }
        .faq-item summary {
            padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 550;
            color: var(--navy); font-size: 1.02rem; list-style: none;
            display: flex; justify-content: space-between; align-items: center;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.3rem; }
        .faq-item[open] summary::after { content: "−"; }
        .faq-item p {
            padding: 0 1.5rem 1.3rem; color: var(--muted); font-size: 0.96rem;
        }
        .cta {
            background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
            text-align: center; color: white; padding: 4.5rem 0;
        }
        .cta h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
        .cta p {
            max-width: 560px; margin: 0 auto 2.2rem;
            color: rgba(255,255,255,0.78); font-size: 1.08rem;
        }
        .contact { background: white; }
        .contact-grid {
            display: grid; grid-template-columns: 0.95fr 1.15fr; gap: 3.5rem;
        }
        .contact-info h3 {
            font-size: 1.7rem; color: var(--navy); margin-bottom: 1.2rem;
        }
        .contact-info > p { color: var(--muted); margin-bottom: 1.8rem; }
        .contact-point { margin-bottom: 1.35rem; }
        .contact-point strong {
            display: block; color: var(--navy); font-size: 0.88rem;
            letter-spacing: 0.04em; margin-bottom: 0.25rem;
        }
        .contact-point span { color: var(--muted); font-size: 0.95rem; }
        .contact-form {
            background: var(--cream); padding: 2.3rem; border-radius: 3px;
        }
        .form-group { margin-bottom: 1.25rem; }
        .form-group label {
            display: block; font-size: 0.8rem; font-weight: 550;
            color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.03em;
        }
        .form-group input, .form-group select, .form-group textarea {
            width: 100%; padding: 0.82rem 0.95rem;
            border: 1px solid #d8e0e8; border-radius: 2px;
            font-family: inherit; font-size: 0.96rem; background: white;
            transition: border-color 0.25s;
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none; border-color: var(--gold);
        }
        .form-group textarea { min-height: 110px; resize: vertical; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        footer {
            background: var(--navy); color: rgba(255,255,255,0.68);
            padding: 3.5rem 0 1.8rem;
        }
        .footer-grid {
            display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-brand .logo { margin-bottom: 1.1rem; }
        .footer-brand p { font-size: 0.92rem; line-height: 1.65; max-width: 300px; }
        .footer-col h4 {
            color: white; font-size: 0.95rem; margin-bottom: 1rem;
            font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.05em;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.5rem; }
        .footer-col a {
            color: rgba(255,255,255,0.62); text-decoration: none;
            font-size: 0.88rem; transition: color 0.25s;
        }
        .footer-col a:hover { color: var(--gold); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.09);
            padding-top: 1.6rem; display: flex; justify-content: space-between;
            align-items: center; flex-wrap: wrap; gap: 0.8rem; font-size: 0.82rem;
        }
        @media (max-width: 960px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .about-grid, .contact-grid { grid-template-columns: 1fr; }
            .process-steps { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .capability-list { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
            .process-steps { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .hero-stats { gap: 1.8rem; }
            .trust-items { gap: 1.4rem; font-size: 0.82rem; }
        }
