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

        :root {
            --navy: #0d1b2a;
            --navy-mid: #1a2e45;
            --blue: #1b5fa8;
            --blue-light: #2d7dd2;
            --gold: #e8a020;
            --gold-light: #f0b840;
            --white: #ffffff;
            --off-white: #f4f6f9;
            --gray: #8a9ab0;
            --gray-light: #dde3ec;
            --text: #1a2535;
            --text-muted: #5a6a7e;
        }

        html {
            scroll-behavior: smooth;
            overflow-y: scroll;
            scrollbar-gutter: stable;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Lightweight first-paint signature: no canvas, no blocking intro screen. */
        body:not(.intro-active) nav {
            animation: microNavEnter .52s .04s both cubic-bezier(.22, .8, .24, 1);
        }

        body:not(.intro-active) .nav-logo img {
            animation: microLogoEnter .72s .12s both cubic-bezier(.22, .8, .24, 1), microLogoGlint 1.1s .62s ease-out both;
            transform-origin: center;
        }

        body:not(.intro-active) .hero-content {
            animation: microHeroEnter .76s .22s both cubic-bezier(.22, .8, .24, 1);
        }

        @keyframes microNavEnter {
            from { opacity: 0; transform: translateY(-12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes microLogoEnter {
            from { opacity: 0; transform: translateY(-5px) scale(.82) rotate(-5deg); filter: saturate(.75) brightness(.9); }
            to { opacity: 1; transform: translateY(0) scale(1) rotate(0); filter: saturate(1) brightness(1); }
        }

        @keyframes microLogoGlint {
            0%, 32%, 100% { filter: drop-shadow(0 0 0 rgba(240, 184, 64, 0)); }
            58% { filter: drop-shadow(0 0 9px rgba(240, 184, 64, .9)) drop-shadow(0 0 18px rgba(45, 125, 210, .34)); }
        }

        @keyframes microHeroEnter {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }

        body.intro-active { overflow: hidden; }

        /* ── PARTICLE INTRO ── */
        .site-intro {
            position: fixed;
            z-index: 1100;
            inset: 0;
            overflow: hidden;
            background: transparent;
            color: var(--white);
        }

        .site-intro::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 48%, rgba(24, 93, 135, .23), transparent 48%), linear-gradient(120deg, #061524, #0a2032 52%, #061524);
            pointer-events: none;
            opacity: 1;
            transition: opacity 1.05s .22s cubic-bezier(.22, .68, .24, 1);
        }

        .site-intro::after {
            content: '';
            position: absolute;
            z-index: 2;
            top: 38%;
            left: -12%;
            width: 124%;
            height: 22%;
            pointer-events: none;
            opacity: 0;
            filter: blur(36px) saturate(1.18);
            background: linear-gradient(100deg, transparent 4%, rgba(82,255,193,.08) 24%, rgba(82,255,193,.55) 43%, rgba(94,191,255,.48) 58%, rgba(112,255,196,.18) 74%, transparent 96%);
            transform: translateX(-12%) skewY(-4deg) scaleY(.42);
        }

        .site-intro.is-handoff::before { opacity: 0; }
        .site-intro.is-handoff::after { opacity: 0; }
        .site-intro.is-leaving { visibility: hidden; pointer-events: none; }

        .site-intro__canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .site-intro.is-handoff .site-intro__canvas { will-change: opacity; }

        body.intro-active nav { opacity: 0; transform: translateY(-8px); }
        body.intro-active .nav-logo img,
        body.intro-revealing .nav-logo img { opacity: 0; }
        body.intro-active .hero-content { opacity: 0; transform: translateY(12px); }
        body.intro-active .hero-intro-target { opacity: 0; }
        body.intro-active .hero-scroll { opacity: 0; }
        body.intro-revealing nav { opacity: 1; transform: translateY(0); transition: opacity .85s .18s ease, transform .85s .18s cubic-bezier(.22, .68, .24, 1); }
        body.intro-revealing .hero-content { opacity: 1; transform: translateY(0); transition: opacity .85s .18s ease, transform .85s .18s cubic-bezier(.22, .68, .24, 1); }
        body.intro-revealing .hero-intro-target { opacity: 0; transition: none; }
        body.intro-revealing.intro-target-ready .hero-intro-target {
            opacity: 1;
            transition: opacity .22s linear;
        }
        body.intro-revealing.intro-target-ready .nav-logo img {
            opacity: 1;
            transition: opacity .22s linear;
        }
        body.intro-revealing .hero-scroll { opacity: 1; transition: opacity .7s .38s ease; }

        @media (max-width: 600px) {
            .site-intro::after { height: 18%; filter: blur(20px) saturate(1.12); }
            .site-intro.is-handoff .site-intro__canvas { filter: none; }
        }

        /* ── AURORA ── */
        .aurora {
            position: absolute;
            z-index: 2;
            inset: -8% -10% auto;
            height: 40%;
            pointer-events: none;
            opacity: .48;
            filter: blur(22px) saturate(1.2);
            background: linear-gradient(105deg, transparent 3%, rgba(43, 246, 189, .38) 21%, rgba(22, 143, 255, .32) 40%, rgba(177, 244, 255, .26) 55%, rgba(71, 232, 145, .34) 69%, transparent 91%);
            transform: translateX(-9%) skewY(-7deg);
            animation: auroraDrift 13s ease-in-out infinite alternate;
        }

        .aurora::after {
            content: '';
            position: absolute;
            inset: 15% 7% auto;
            height: 58%;
            background: linear-gradient(76deg, transparent 8%, rgba(83, 221, 255, .24) 31%, rgba(80, 255, 176, .3) 49%, rgba(116, 145, 255, .2) 68%, transparent 91%);
            filter: blur(28px);
            transform: skewY(8deg) scaleX(1.12);
            animation: auroraPulse 8s ease-in-out infinite alternate;
        }

        @keyframes auroraDrift {
            0% { transform: translateX(-12%) translateY(0) skewY(-7deg) scaleX(1); }
            50% { transform: translateX(1%) translateY(10px) skewY(-5deg) scaleX(1.05); }
            100% { transform: translateX(10%) translateY(-7px) skewY(-8deg) scaleX(.98); }
        }

        @keyframes auroraPulse {
            from { opacity: .45; transform: translateX(-7%) skewY(8deg) scaleX(1.04); }
            to { opacity: .95; transform: translateX(8%) skewY(5deg) scaleX(1.18); }
        }

    /* ── NAV ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            background: rgba(13, 27, 42, 0.96);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: all 0.3s;
        }
        nav.is-scrolled { background: rgba(13, 27, 42, 0.99); }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .nav-logo img {
            width: 52px;
            height: 52px;
            object-fit: contain;
        }

        .nav-logo-text {
            display: flex;
            flex-direction: column;
        }

        .nav-logo-text .brand {
            font-family: 'Oswald', sans-serif;
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 0.04em;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
        }

        .brand-cursor {
            display: inline-block;
            width: 2px;
            height: 1em;
            background: var(--gold);
            margin-left: 2px;
            vertical-align: middle;
            animation: cursorBlink 0.75s step-end infinite;
        }

        @keyframes cursorBlink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .nav-logo-text .sub {
            font-size: 10px;
            color: var(--gold);
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 500;
        }

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

        .nav-links a {
            text-decoration: none;
            color: rgba(255,255,255,0.75);
            font-size: 13.5px;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: color 0.2s;
        }

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

        .nav-cta {
            background: var(--gold);
            color: var(--navy) !important;
            padding: 9px 22px;
            border-radius: 6px;
            font-weight: 600 !important;
            transition: background 0.2s !important;
        }

        .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

        .nav-account {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }

        .nav-toggle {
            display: none;
            width: 44px;
            height: 44px;
            padding: 10px;
            border: 1px solid rgba(255,255,255,.3);
            border-radius: 6px;
            background: transparent;
            cursor: pointer;
        }

        .nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--white); transition: transform .2s, opacity .2s; }

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

        .hero::after {
            content: '';
            position: absolute;
            z-index: 2;
            top: 74px;
            left: -8%;
            width: 116%;
            height: 26%;
            pointer-events: none;
            opacity: .4;
            filter: blur(30px) saturate(1.15);
            background: radial-gradient(ellipse at 18% 62%, rgba(0, 255, 188, .28) 0 8%, transparent 30%), radial-gradient(ellipse at 43% 25%, rgba(58, 167, 255, .3) 0 12%, transparent 37%), radial-gradient(ellipse at 68% 58%, rgba(115, 255, 190, .25) 0 10%, transparent 32%), linear-gradient(102deg, transparent 5%, rgba(56, 247, 192, .2) 29%, rgba(66, 139, 255, .16) 48%, rgba(85, 247, 178, .18) 68%, transparent 92%);
            transform: skewY(-5deg);
            animation: auroraVeil 11s ease-in-out infinite alternate;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/hero.webp');
            background-size: cover;
            background-position: center 40%;
            transform: none;
        }

        @keyframes heroZoom {
            from { transform: scale(1.04); }
            to   { transform: scale(1.00); }
        }

        @keyframes auroraVeil {
            from { transform: translateX(-4%) skewY(-5deg) scaleY(.92); opacity: .58; }
            to { transform: translateX(5%) skewY(-2deg) scaleY(1.08); opacity: .98; }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.48) 55%, rgba(13,27,42,0.15) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            padding-top: 72px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232,160,32,0.15);
            border: 1px solid rgba(232,160,32,0.4);
            color: var(--gold);
            font-size: 11.5px;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 4px;
            margin-bottom: 28px;
        }

        .hero-badge i { font-size: 10px; }

        .hero-intro-target {
            display: inline-block;
            padding: 0;
            border: 0;
            border-radius: 0;
            background:
                linear-gradient(
                    180deg,
                    #70430a 0%,
                    #f2c45d 24%,
                    #fff1b1 46%,
                    #c98312 68%,
                    #694008 100%
                );
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: .45px rgba(255, 244, 202, .78);
            font-family: Arial, sans-serif;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: 0;
            text-transform: none;
            text-shadow:
                0 0 7px rgba(255, 232, 155, .72),
                0 0 15px rgba(244, 182, 63, .34);
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(38px, 5.5vw, 72px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            max-width: 720px;
            margin-bottom: 24px;
            letter-spacing: 0.01em;
        }

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

        .hero-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.78);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 44px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gold);
            color: var(--navy);
            font-weight: 700;
            font-size: 14px;
            padding: 15px 32px;
            border-radius: 6px;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: background 0.2s, transform 0.2s;
        }

        .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
            padding: 15px 32px;
            border-radius: 6px;
            border: 1.5px solid rgba(255,255,255,0.35);
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: border-color 0.2s, background 0.2s;
        }

        .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

        .hero-scroll {
            position: absolute;
            bottom: 36px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.45);
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            animation: bounce 2s infinite;
            z-index: 3;
        }

        .hero-scroll i { font-size: 18px; }

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

        /* ── STATS BAR ── */
        .stats-bar {
            background: var(--navy);
            padding: 0;
        }

        .stats-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat-item {
            padding: 36px 24px;
            border-right: 1px solid rgba(255,255,255,0.07);
            text-align: center;
        }

        .stat-item:last-child { border-right: none; }

        .stat-num {
            font-family: 'Oswald', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 12.5px;
            color: rgba(255,255,255,0.55);
            letter-spacing: 0.04em;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* ── SECTION COMMONS ── */
        section { padding: 96px 0; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--blue);
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label::before {
            content: '';
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gold);
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 600;
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 560px;
            line-height: 1.7;
        }

        /* ── ABOUT ── */
        .about { background: var(--off-white); }

        .about-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 48px;
            align-items: center;
        }

        .about-img-wrap {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
        }

        .about-img-wrap img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            display: block;
            border-radius: 12px;
        }

        .about-img-wrap img.about-company-illustration {
            height: auto;
            aspect-ratio: 3 / 4;
            object-fit: cover;
        }

        .about-img-badge {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background: var(--gold);
            color: var(--navy);
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 13px;
        }

        .about-img-badge span {
            display: block;
            font-family: 'Oswald', sans-serif;
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
        }

        .about-text .section-desc { max-width: 100%; margin-bottom: 28px; }
        .about-title { white-space: nowrap; font-size: clamp(21px, 3.5vw, 44px); }
        .about-intro-extra { margin-top: 14px; }
        .about-directions { margin: 0 0 28px; padding-left: 20px; color: var(--text-muted); font-size: 16px; line-height: 1.7; }

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

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .about-feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(27,95,168,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--blue);
            font-size: 16px;
        }

        .about-feature-text strong {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 3px;
        }

        .about-feature-text p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ── SERVICES ── */
        .services { background: var(--white); }

        .services-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 56px;
            gap: 32px;
        }
        .services-summary { max-width: 340px; }

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

        .service-card {
            background: var(--off-white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--gray-light);
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 48px rgba(13,27,42,0.1);
        }

        .service-card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .service-card-body {
            padding: 28px;
        }

        .service-icon {
            width: 44px;
            height: 44px;
            background: var(--navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 18px;
            margin-bottom: 16px;
        }

        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .service-card p {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.65;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            color: var(--blue);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.2s;
        }

        .service-card-link:hover { gap: 10px; }
        .service-details { margin-top: 18px; border-top: 1px solid var(--gray-light); padding-top: 14px; }
        .service-details summary { cursor: pointer; color: var(--blue); font-size: 13px; font-weight: 700; }
        .service-details p { margin: 12px 0 0; font-size: 13px; line-height: 1.65; }

        /* ── GALLERY ── */
        .gallery { background: var(--navy); padding: 96px 0; }

        .gallery .section-title { color: var(--white); }
        .gallery .section-label { color: var(--gold-light); }

        .gallery-header { margin-bottom: 48px; }

        .gallery-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 260px 260px;
            gap: 12px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }

        .gallery-item:first-child {
            grid-row: 1 / 3;
        }

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

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

        /* ── WHY US ── */
        .why { background: var(--off-white); }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr;
        }

        .why-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .why-card {
            background: var(--white);
            border-radius: 12px;
            padding: 28px 24px;
            border: 1px solid var(--gray-light);
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .why-card:hover {
            border-color: var(--blue-light);
            box-shadow: 0 8px 24px rgba(27,95,168,0.08);
        }

        .why-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .why-card h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }
        .why-summary { margin-bottom: 40px; }
        .why-title { white-space: nowrap; font-size: clamp(23px, 3.5vw, 44px); }

        /* ── CTA ── */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
            padding: 96px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -60px; right: -60px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: rgba(232,160,32,0.06);
        }

        .cta-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 48px;
            align-items: center;
        }

        .cta-inner h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(26px, 3vw, 40px);
            font-weight: 600;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .cta-inner p {
            color: rgba(255,255,255,0.6);
            font-size: 15px;
            max-width: 540px;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }
        .cta-call { border-color: rgba(255,255,255,0.25); }

        /* ── YANDEX MAP ── */
        .ymap-wrap {
            border-radius: 12px;
            overflow: hidden;
            border: 1.5px solid var(--gray-light);
            margin-top: 32px;
            height: 220px;
        }

        .ymap-wrap iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        .map-actions {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-top: 12px;
        }

        .map-fallback,
        .map-reload {
            display: inline-flex;
            color: var(--blue);
            font-size: 14px;
            font-weight: 700;
        }

        .map-reload {
            border: 0;
            padding: 0;
            background: transparent;
            cursor: pointer;
            font-family: inherit;
        }

        .map-reload:hover,
        .map-reload:focus-visible { text-decoration: underline; }

        /* ── CONTACT ── */
        .contact { background: var(--white); }
        .contact-summary { margin-bottom: 40px; }
        .contact-title { white-space: nowrap; font-size: clamp(24px, 3.5vw, 44px); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: stretch;
        }

        .contact-grid > div { display: flex; flex-direction: column; }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 24px;
            row-gap: 18px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            min-width: 0;
        }

        .contact-item-icon {
            width: 38px;
            height: 38px;
            background: var(--navy);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 15px;
            flex-shrink: 0;
        }

        .contact-item-text strong {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 4px;
        }

        .contact-item-text span {
            font-size: 14px;
            color: var(--navy);
            font-weight: 500;
            white-space: nowrap;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex: 1;
        }

        /* Align the form lead-in with the contact description, not the section title. */
        .contact-form-column { padding-top: 102px; }

        .form-intro {
            margin: 0 0 18px;
            color: var(--text-muted);
            font-size: 16px;
            line-height: 1.65;
            max-width: 520px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 12.5px;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            background: var(--off-white);
            border: 1.5px solid var(--gray-light);
            border-radius: 8px;
            padding: 12px 16px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--text);
            outline: none;
            transition: border-color 0.2s;
            resize: none;
        }

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

        .form-group textarea { height: 110px; }

        .form-submit {
            background: var(--navy);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 14px 32px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: background 0.2s, transform 0.2s;
            letter-spacing: 0.03em;
        }

        .form-submit:hover { background: var(--blue); transform: translateY(-2px); }

        /* ── SUCCESS MSG ── */
        .form-success {
            display: none;
            background: #e8f5e9;
            border: 1px solid #a5d6a7;
            border-radius: 8px;
            padding: 16px 20px;
            color: #2e7d32;
            font-size: 14px;
            font-weight: 500;
            align-items: center;
            gap: 10px;
        }

        .form-success.show { display: flex; }

        .request-draft-modal {
            position: fixed;
            right: 24px;
            bottom: 24px;
            left: auto;
            top: auto;
            margin: 0;
            width: min(92vw, 520px);
            border: 0;
            border-radius: 8px;
            padding: 24px;
            color: var(--navy);
            box-shadow: 0 16px 44px rgba(5, 13, 24, .3);
        }

        .request-draft-modal::backdrop { background: rgba(5, 13, 24, .7); }
        .request-draft-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 6px; background: transparent; color: var(--text-muted); font-size: 28px; cursor: pointer; }
        .request-draft-close:hover { background: var(--off-white); color: var(--navy); }
        .request-draft-icon { display: none; }
        .request-draft-kicker { margin: 0 32px 8px 0; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
        .request-draft-modal h2 { margin: 0; font-family: 'Oswald', sans-serif; font-size: 25px; line-height: 1.15; }
        .request-draft-description { margin: 10px 0 14px; color: var(--text-muted); font-size: 14px; line-height: 1.55; }
        .request-draft-description a { color: var(--blue); font-weight: 700; }
        .request-draft-text { width: 100%; min-height: 150px; box-sizing: border-box; resize: vertical; border: 1px solid var(--gray-light); border-radius: 6px; padding: 12px; background: var(--off-white); color: var(--navy); font: 14px/1.55 'Inter', sans-serif; }
        .request-draft-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
        .request-draft-copy, .request-draft-dismiss { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 6px; padding: 9px 14px; font: 700 13px 'Inter', sans-serif; text-decoration: none; cursor: pointer; }
        .request-draft-copy { border: 0; background: var(--navy); color: var(--white); }
        .request-draft-dismiss { border: 1px solid var(--gray-light); background: var(--white); color: var(--navy); }
        .request-draft-copy:hover { background: var(--blue); }
        .request-draft-dismiss:hover { border-color: var(--blue); color: var(--blue); }

        /* ── FOOTER ── */
        footer {
            background: var(--navy);
            padding: 20px 0;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.07);
        }

        .footer-brand img {
            width: 64px;
            height: 64px;
            object-fit: contain;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            max-width: 260px;
        }

        .footer-col h5 {
            font-size: 12px;
            font-weight: 700;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 18px;
        }

        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

        .footer-col ul li a {
            text-decoration: none;
            color: rgba(255,255,255,0.5);
            font-size: 13.5px;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover { color: var(--white); }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 12.5px;
            color: rgba(255,255,255,0.3);
        }

        .visitor-counter { color: rgba(255,255,255,.42) !important; }
        .visitor-counter span { color: rgba(255,255,255,.72); font-variant-numeric: tabular-nums; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
            .contact-form-column { padding-top: 0; }
            .services-grid { grid-template-columns: 1fr 1fr; }
            .stats-inner { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .gallery-item:first-child { grid-row: auto; }
        }

        @media (max-width: 900px) {
            .nav-inner { height: 68px; padding: 0 18px; }
            .nav-logo { min-width: 0; gap: 9px; }
            .nav-logo img { width: 46px; height: 46px; }
            .nav-logo-text .brand { max-width: min(52vw, 230px); font-size: 13px; }
            .nav-logo-text .sub { max-width: min(52vw, 230px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
            .nav-toggle { display: block; }
            .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
            .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
            .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
            .nav-links { position: absolute; top: 68px; left: 0; right: 0; display: grid; gap: 0; padding: 10px 18px 18px; background: rgba(13,27,42,.99); border-bottom: 1px solid rgba(255,255,255,.1); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease; }
            .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
            .nav-links li { list-style: none; }
            .nav-links a { display: flex; min-height: 44px; align-items: center; padding: 10px 4px; }
            .nav-links .nav-cta { justify-content: center; margin-top: 8px; padding: 12px 18px; }
            .services-grid { grid-template-columns: 1fr; }
            .why-cards { grid-template-columns: 1fr; }
            .contact-info { grid-template-columns: 1fr; }
            .map-actions { gap: 14px; flex-wrap: wrap; }
            .cta-inner { grid-template-columns: 1fr; }
            .cta-actions { align-items: flex-start; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .request-draft-modal { right: 12px; bottom: 12px; padding: 22px 18px; }
            .gallery-grid { grid-template-columns: 1fr; }
            .services-header { flex-direction: column; align-items: flex-start; }
            section { padding: 64px 0; }
        }

        @media (max-width: 480px) {
            .about-title { font-size: 18px; }
        }

        .gallery-item { cursor: zoom-in; }
        .gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
        .gallery-modal { width: min(92vw, 1040px); max-height: 92vh; padding: 16px; border: 0; border-radius: 10px; background: var(--navy); color: var(--white); box-shadow: 0 22px 80px rgba(0,0,0,.55); }
        .gallery-modal::backdrop { background: rgba(5, 13, 24, .82); }
        .gallery-modal img { width: 100%; max-height: 76vh; object-fit: contain; }
        .gallery-modal p { margin: 10px 42px 0 0; }
        .gallery-modal-close { position: absolute; right: 10px; top: 8px; width: 34px; height: 34px; border: 0; border-radius: 6px; background: rgba(255,255,255,.15); color: var(--white); font-size: 24px; cursor: pointer; }

        .skip-link { position: fixed; z-index: 1000; left: 12px; top: 12px; transform: translateY(-180%); padding: 10px 14px; border-radius: 6px; background: var(--white); color: var(--navy); font-weight: 800; text-decoration: none; }
        .skip-link:focus { transform: translateY(0); }
        :focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
            .aurora, .hero::after, .site-intro { display: none !important; }
        }
