:root {
            --bg: #000000;
            --bg-deep: #000000;
            --steel-dark: #000000;
            --steel-mid: #1a1a1a;
            --steel-light: #2a2a2a;
            --steel-bright: #ffffff;
            --panel: rgba(0, 0, 0, 0.78);
            --text: #ffffff;
            --body: #ffffff;
            --muted: rgba(255, 255, 255, 0.72);
            --silver: #ffffff;
            --silver-light: #f2f2f2;
            --steel-shine: linear-gradient(135deg, #0a0a0a 0%, #ffffff 48%, #000000 100%);
            --charcoal: #000000;
            --steel: rgba(0, 0, 0, 0.72);
            --line: rgba(255, 255, 255, 0.14);
            --accent-warm: #ffffff;
            --accent-light: #f5f5f5;
            --accent-glow: rgba(255, 255, 255, 0.18);
            --text-glow: 0 1px 10px rgba(0, 0, 0, 0.75);
            --text-glow-strong: 0 1px 12px rgba(0, 0, 0, 0.85);
            --text-shadow: var(--text-glow);
            --header-h: 88px;
            --content-w: 760px;
            --logo-w: clamp(240px, 38vw, 400px);
            --video-opacity: 1;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: "DM Sans", Arial, sans-serif;
            background-color: var(--bg-deep);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .video-layer {
            position: fixed;
            inset: 0;
            z-index: 5;
            pointer-events: none;
            overflow: hidden;
            isolation: isolate;
            background: var(--bg-deep);
        }

        .video-layer video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            opacity: var(--video-opacity);
            filter: grayscale(100%) contrast(1.05) brightness(0.78);
            transform: translateZ(0);
            backface-visibility: hidden;
        }

        .video-scrim {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                radial-gradient(ellipse at 50% 42%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.62) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 28%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.65) 100%);
            pointer-events: none;
        }

        .cinematic-brand {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 6;
            display: flex;
            flex-direction: column;
            align-items: center;
            pointer-events: none;
            transition: opacity 0.35s ease, visibility 0.35s ease;
            will-change: opacity;
        }

        body.has-video .panel {
            background: rgba(0, 0, 0, 0.82);
        }

        body.has-video .hero-intro {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
        }

        body.has-video .hero-intro:hover,
        body.has-video .panel:hover {
            background: rgba(0, 0, 0, 0.9);
        }

        @media (prefers-reduced-motion: reduce) {
            .video-layer video { display: none; }
        }

        .ambient-grid {
            position: fixed;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            background:
                linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
            background-size: 80px 80px;
            opacity: 0.5;
        }

        .steel-shine {
            position: fixed;
            inset: 0;
            z-index: 4;
            pointer-events: none;
            overflow: hidden;
        }

        .steel-shine::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 28%, rgba(255, 255, 255, 0.03), transparent 50%);
        }

        .steel-shine::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.45), transparent 55%);
        }

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

        .floating-logo {
            position: relative;
            width: var(--logo-w);
            padding: 0;
        }

        body[data-page="home"] .video-scrim {
            background:
                radial-gradient(ellipse at 50% 42%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.68) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.22) 26%, rgba(0, 0, 0, 0.22) 74%, rgba(0, 0, 0, 0.68) 100%);
        }

        .floating-logo img,
        .brand-mark img,
        .footer-brand img {
            image-rendering: -webkit-optimize-contrast;
            image-rendering: auto;
        }

        .floating-logo img {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 400px;
            height: auto;
            display: block;
            opacity: 1;
            background: transparent;
            filter:
                drop-shadow(0 1px 2px rgba(0, 0, 0, 0.707))
                drop-shadow(0 4px 14px rgba(0, 0, 0, 0.558))
                drop-shadow(0 0 28px rgba(0, 0, 0, 0.26));
        }

        .brand-mark img,
        .footer-brand img {
            background: transparent;
            border-radius: 0;
            filter:
                drop-shadow(0 1px 2px rgba(0, 0, 0, 0.633))
                drop-shadow(0 3px 10px rgba(0, 0, 0, 0.41));
        }

        .bg-tagline {
            margin-top: 1.25rem;
            padding: 0.4rem 1.4rem;
            font-family: "Oswald", sans-serif;
            font-size: clamp(0.68rem, 1.2vw, 0.82rem);
            font-weight: 500;
            letter-spacing: 0.38em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.875);
            text-shadow: var(--text-glow);
            background: rgba(255, 255, 255, 0.058);
            border: 1px solid rgba(255, 255, 255, 0.19);
            border-radius: 2px;
            user-select: none;
        }

        .side-wordmark {
            position: fixed;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            font-family: "Oswald", sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.332);
            z-index: 4;
            pointer-events: none;
            white-space: nowrap;
            opacity: 0.55;
        }

        .side-wordmark.left { left: -4rem; }
        .side-wordmark.right { right: -4rem; }

        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-h);
            z-index: 30;
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
        }

        header::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.12) 30%,
                rgba(255, 255, 255, 0.35) 50%,
                rgba(255, 255, 255, 0.12) 70%,
                transparent 100%
            );
        }

        .header-inner {
            max-width: 1200px;
            height: 100%;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }

        .brand-mark {
            justify-self: start;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            text-decoration: none;
            height: 100%;
            padding: 0.4rem 0;
        }

        .brand-logo-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.2rem;
            flex-shrink: 0;
        }

        .brand-mark img {
            height: 48px;
            width: auto;
            display: block;
            object-fit: contain;
            transform: translateZ(0);
        }

        .scripture-verse {
            font-family: "DM Sans", sans-serif;
            font-weight: 400;
            font-style: italic;
            text-transform: none;
            letter-spacing: 0.01em;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.742);
            text-shadow: var(--text-shadow);
        }

        .scripture-verse .verse-ref,
        .scripture-verse cite {
            font-style: normal;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.551);
        }

        .header-verse {
            font-size: 0.56rem;
            font-style: normal;
            font-weight: 500;
            max-width: 13rem;
            line-height: 1.3;
            margin: 0;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: var(--text-glow);
        }

        .header-verse .verse-ref {
            display: block;
            margin-top: 0.12rem;
            font-size: 0.92em;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.78);
        }

        .floating-verse {
            width: 100%;
            max-width: 38rem;
            margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
            padding: 0 1.5rem;
            text-align: center;
            font-size: clamp(1.5rem, 4.5vw, 2.2rem);
            font-weight: 600;
            font-style: italic;
            color: #ffffff;
            text-shadow:
                0 2px 10px rgba(0, 0, 0, 0.95),
                0 4px 24px rgba(0, 0, 0, 0.8);
            background: none;
            border: none;
            box-shadow: none;
        }

        .floating-verse .verse-ref {
            display: block;
            margin-top: 0.55rem;
            font-size: 0.72em;
            font-style: normal;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.88);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
        }

        .content-verse .verse-ref {
            display: block;
            margin-top: 0.45rem;
            font-size: 0.82em;
            font-style: normal;
            font-weight: 500;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.88);
            text-shadow: var(--text-glow);
        }

        .hero-scripture {
            font-family: "DM Sans", sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.75rem);
            font-weight: 400;
            font-style: italic;
            text-transform: none;
            letter-spacing: 0.02em;
            line-height: 1.45;
            margin-bottom: 1.1rem;
            color: rgba(255, 255, 255, 0.893);
            text-shadow: var(--text-shadow);
        }

        .hero-scripture cite {
            display: block;
            margin-top: 0.55rem;
            font-size: 0.68em;
            font-style: normal;
            font-weight: 400;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.647);
        }

        .hero-sub-verse {
            font-size: clamp(0.92rem, 2vw, 1.05rem);
            max-width: 34rem;
            margin: 0 auto 1.2rem;
            text-align: center;
        }

        .hero-sub-verse .verse-ref {
            display: block;
            margin-top: 0.35rem;
            font-size: 0.9em;
            letter-spacing: 0.06em;
        }

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

        .brand-text strong {
            font-family: "Oswald", sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: var(--text-shadow);
        }

        .brand-text span {
            font-size: 0.65rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: var(--text-shadow);
        }

        nav {
            justify-self: center;
            display: flex;
            gap: 2rem;
        }

        nav a {
            color: #ffffff;
            text-decoration: none;
            font-family: "Oswald", sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            text-shadow: var(--text-shadow);
            transition: text-shadow 0.2s;
        }

        nav a:hover,
        nav a.active { text-shadow: var(--text-shadow), 0 0 16px rgba(255, 255, 255, 0.57); }

        .header-actions {
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .mobile-menu-btn {
            display: none;
            width: 42px;
            height: 42px;
            padding: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            background: transparent;
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .mobile-menu-btn__bar {
            display: block;
            width: 18px;
            height: 2px;
            background: #ffffff;
            border-radius: 1px;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }

        .mobile-menu-btn.is-open .mobile-menu-btn__bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-btn.is-open .mobile-menu-btn__bar:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.is-open .mobile-menu-btn__bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .header-call {
            padding: 0.65rem 1.15rem;
            background: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.28);
            box-shadow: none;
            text-decoration: none;
            font-family: "Oswald", sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            text-shadow: none;
            transition: background 0.2s, border-color 0.2s;
            white-space: nowrap;
        }

        .header-call:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.55);
            box-shadow: none;
        }

        .header-cta {
            padding: 0.65rem 1.3rem;
            background: #ffffff;
            color: #000000;
            border: 1px solid #ffffff;
            box-shadow: none;
            text-decoration: none;
            font-family: "Oswald", sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }

        .header-cta:hover {
            background: #f5f5f5;
            box-shadow: none;
        }

        .scroll-progress {
            position: fixed;
            top: calc(var(--header-h) + 3px);
            left: 0;
            height: 2px;
            width: 0;
            background: linear-gradient(90deg, transparent, var(--accent-warm), #ffffff, var(--steel-bright), transparent);
            z-index: 31;
            box-shadow: 0 0 10px var(--accent-glow);
        }

        .page-shell { position: relative; z-index: 10; }

        main {
            padding-top: calc(var(--header-h) + 2.5rem);
            padding-bottom: 4rem;
        }

        .content-flow {
            width: 100%;
            max-width: var(--content-w);
            margin: 0 auto;
            padding: 0 1.25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.75rem;
        }

        .panel {
            position: relative;
            width: 100%;
            text-align: center;
            padding: clamp(2rem, 4vw, 2.75rem);
            background: var(--panel);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .hero-intro {
            margin-top: clamp(220px, 34vh, 360px);
            padding: clamp(2.25rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.75rem);
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.78) 100%);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 0 0 12px 12px;
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
        }

        .hero-intro::before {
            display: none;
        }

        .hero-intro::after {
            display: none;
        }

        .hero-intro .hero-divider {
            width: min(280px, 70%);
            height: 2px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(90deg, transparent, var(--steel-bright), #ffffff, var(--steel-bright), transparent);
        }

        .hero-lead {
            font-size: 1.12rem;
            line-height: 1.75;
            max-width: 540px;
            color: rgba(255, 255, 255, 0.902);
        }

        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.55rem;
            margin-top: 1.6rem;
        }

        .meta-pill {
            padding: 0.4rem 0.95rem;
            font-family: "Oswald", sans-serif;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #ffffff;
            background: rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 100px;
            text-shadow: none;
        }

        .section-tag {
            display: inline-block;
            padding: 0.35rem 1rem;
            margin-bottom: 1rem;
            font-family: "Oswald", sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.88);
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-radius: 2px;
            text-shadow: none;
        }

        .panel .accent-trim {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.45),
                transparent
            );
            z-index: 2;
            pointer-events: none;
        }

        .panel .panel-shine {
            display: none;
        }

        .panel > *:not(.panel-shine):not(.accent-trim) { position: relative; z-index: 1; }

        .panel::after {
            content: "MVM";
            position: absolute;
            right: 1rem;
            bottom: 0.5rem;
            font-family: "Oswald", sans-serif;
            font-size: 4.5rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.038);
            line-height: 1;
            pointer-events: none;
            user-select: none;
        }

        .panel:hover {
            background: rgba(0, 0, 0, 0.9);
            border-color: rgba(255, 255, 255, 0.14);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
        }

        .hero-intro:hover {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.88) 100%);
        }

        .panel.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .panel::before {
            content: "";
            display: block;
            width: 64px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--steel-bright), #ffffff, var(--accent-warm), transparent);
            margin: 0 auto 1.25rem;
        }

        h1, h2, h3 {
            font-family: "Oswald", sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #ffffff;
            text-shadow: var(--text-glow-strong);
        }

        .hero-intro h1 {
            font-size: clamp(2.4rem, 6vw, 3.8rem);
            line-height: 1.1;
            margin-bottom: 1.1rem;
        }

        .hero-intro h1.hero-scripture {
            font-family: "DM Sans", sans-serif;
            font-size: clamp(1.2rem, 3vw, 1.75rem);
            font-weight: 400;
            font-style: italic;
            text-transform: none;
            letter-spacing: 0.02em;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.893);
            text-shadow: var(--text-shadow);
        }

        .panel p {
            color: #ffffff;
            font-size: 1.08rem;
            font-weight: 500;
            max-width: 580px;
            margin: 0 auto;
            text-shadow: var(--text-shadow);
        }

        .license-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 1.25rem;
        }

        .license-tag {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(0, 0, 0, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.18);
            font-family: "Oswald", sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            color: #ffffff;
            text-shadow: none;
        }

        .license-tag strong { color: #ffffff; font-weight: 700; }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            margin-bottom: 0.85rem;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .stat {
            padding: 1.1rem 0.5rem;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 2px solid #ffffff;
            box-shadow: none;
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .stat:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.22);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
        }

        .stat strong {
            display: block;
            font-family: "Oswald", sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: var(--text-shadow);
            margin-bottom: 0.15rem;
        }

        .stat span {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: var(--text-shadow);
        }

        .service-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }

        .service-item {
            padding: 1.25rem 1.5rem;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-left: 2px solid #ffffff;
            text-align: left;
            transition: border-color 0.2s, background 0.2s;
        }

        .service-item:hover {
            background: rgba(0, 0, 0, 0.85);
            border-color: rgba(255, 255, 255, 0.16);
            border-left-color: #ffffff;
            box-shadow: none;
        }

        .service-num {
            display: inline-block;
            font-family: "Oswald", sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            color: #ffffff;
            text-shadow: var(--text-shadow);
            margin-bottom: 0.4rem;
        }

        .service-item h3 {
            font-size: 1.15rem;
            margin-bottom: 0.3rem;
            text-align: left;
        }

        .service-item p {
            font-size: 0.98rem;
            font-weight: 500;
            text-align: left;
            margin: 0;
            color: #ffffff;
            text-shadow: var(--text-shadow);
        }

        .quote-block {
            margin: 1.25rem auto 0;
            max-width: 520px;
            padding: 1.25rem 1.5rem;
            background: rgba(0, 0, 0, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: none;
            color: #ffffff;
            font-family: "Oswald", sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 0.03em;
            line-height: 1.45;
            text-transform: uppercase;
            text-shadow: none;
        }

        .quote-block--standalone {
            width: 100%;
            max-width: 36rem;
            margin: clamp(2.5rem, 7vw, 4rem) auto;
            padding: clamp(1.5rem, 4vw, 2rem) 1.5rem;
            text-align: center;
            font-size: clamp(1.15rem, 3.2vw, 1.45rem);
            background: none;
            border: none;
            box-shadow: none;
            text-shadow:
                0 2px 10px rgba(0, 0, 0, 0.95),
                0 4px 24px rgba(0, 0, 0, 0.8);
        }

        .contact-stack {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-top: 1.25rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-line {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            padding: 1rem 1.25rem;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-line strong {
            font-family: "Oswald", sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: var(--text-shadow);
        }

        .contact-line span,
        .contact-line a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 700;
            text-shadow: var(--text-shadow);
        }

        .contact-line a:hover { color: #ffffff; text-shadow: var(--text-shadow), 0 0 12px rgba(255, 255, 255, 0.475); }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .primary-btn {
            display: inline-flex;
            margin-top: 1.5rem;
            padding: 1rem 2.25rem;
            background: #ffffff;
            color: #000000;
            border: 1px solid #ffffff;
            box-shadow: none;
            text-decoration: none;
            font-family: "Oswald", sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: background 0.2s, transform 0.2s, color 0.2s;
        }

        .primary-btn:hover {
            background: #f5f5f5;
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
        }

        .spacer-block { min-height: 8vh; width: 100%; }

        footer {
            position: relative;
            z-index: 5;
            text-align: center;
            padding: 2rem 1.5rem 2.5rem;
            background: rgba(0, 0, 0, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: none;
            color: #ffffff;
            font-size: 0.88rem;
            font-weight: 500;
            text-shadow: none;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.65rem;
            margin-bottom: 1rem;
        }

        .footer-brand img {
            height: 64px;
            width: auto;
            opacity: 1;
        }

        .footer-brand strong {
            font-family: "Oswald", sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: #ffffff;
            text-shadow: var(--text-shadow);
        }

        footer strong { color: #ffffff; font-weight: 700; }

        .mobile-only {
            display: none;
        }

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

        @media (max-width: 768px) {
            :root {
                --content-w: 100%;
                --logo-w: clamp(180px, 50vw, 280px);
            }

            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: block;
            }

            .nav-link--desktop {
                display: none;
            }

            .site-nav .nav-link--mobile {
                display: block;
            }

            .mobile-flow {
                width: 100%;
                display: flex;
                flex-direction: column;
                gap: 1.25rem;
            }

            .mobile-section {
                padding: clamp(1.5rem, 4vw, 2rem);
            }

            .mobile-section::before {
                width: 48px;
                margin-bottom: 0.85rem;
            }

            .mobile-section::after {
                display: none;
            }

            .mobile-verse--bottom {
                position: relative;
                z-index: 2;
                width: 100%;
                max-width: 36rem;
                margin: clamp(2.25rem, 6vw, 3.25rem) auto;
                padding: 1.25rem 1.5rem clamp(2.5rem, 6vw, 3.5rem);
                font-size: clamp(1.35rem, 5.5vw, 1.8rem);
                font-weight: 600;
                font-style: italic;
                text-align: center;
                color: #ffffff;
                background: none;
                border: none;
                box-shadow: none;
                text-shadow:
                    0 1px 3px rgba(0, 0, 0, 0.95),
                    0 3px 14px rgba(0, 0, 0, 0.9),
                    0 6px 28px rgba(0, 0, 0, 0.75);
            }

            .mobile-verse--bottom::before {
                content: "";
                position: absolute;
                inset: -8px 4%;
                z-index: -1;
                border-radius: 12px;
                background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 72%);
                pointer-events: none;
            }

            .mobile-verse--bottom .verse-ref {
                display: block;
                margin-top: 0.55rem;
                font-size: 0.72em;
                font-style: normal;
                font-weight: 600;
                letter-spacing: 0.12em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.88);
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
            }

            .mobile-flow .stats-row {
                margin-top: 1.25rem;
            }

            .mobile-flow .quote-block {
                margin-top: 1.25rem;
            }

            .mobile-flow .service-list {
                margin-top: 0.5rem;
            }

            .hero-lead.mobile-only {
                max-width: 100%;
            }

            .hero-intro { margin-top: clamp(180px, 28vh, 260px); }
            .floating-logo img { opacity: 1; }
            .brand-mark img { height: 32px; }
            .header-verse {
                display: none;
            }

            :root {
                --header-h: 76px;
            }
            .brand-text { display: none; }
            .floating-verse {
                font-size: clamp(1.35rem, 6.5vw, 1.75rem);
            }
            .side-wordmark { display: none; }
            .header-inner {
                grid-template-columns: 1fr auto;
                padding: 0 1rem;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .header-actions {
                gap: 0.4rem;
            }

            .header-call {
                padding: 0.5rem 0.65rem;
                font-size: 0.68rem;
            }

            .header-cta {
                padding: 0.5rem 0.75rem;
                font-size: 0.68rem;
            }

            .site-nav {
                display: none;
                position: fixed;
                top: var(--header-h);
                left: 0;
                right: 0;
                z-index: 29;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0.5rem 0;
                background: rgba(0, 0, 0, 0.97);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
            }

            .site-nav.is-open {
                display: flex;
            }

            .site-nav a {
                padding: 0.95rem 1.25rem;
                font-size: 0.95rem;
                letter-spacing: 0.14em;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .site-nav a:last-child {
                border-bottom: none;
            }

            .site-nav-call {
                color: #ffffff;
                background: rgba(255, 255, 255, 0.1);
            }

            body.mobile-nav-open {
                overflow: hidden;
            }
            .panel::after { font-size: 3rem; }
            .stats-row { grid-template-columns: 1fr; }
            .spacer-block { min-height: 12vh; }
        }
        body[data-page="sub"] .hero-intro {
            margin-top: clamp(140px, 22vh, 220px);
        }

        body[data-page="sub"] .spacer-block { min-height: 4vh; }

        nav a.active {
            text-shadow: var(--text-shadow), 0 0 16px rgba(255, 255, 255, 0.57);
        }

        .page-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .page-links a {
            padding: 0.55rem 1.1rem;
            font-family: "Oswald", sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 2px;
        }

        .quote-modal {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem;
        }

        .quote-modal[hidden] { display: none; }

        .quote-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.82);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .quote-modal__panel {
            position: relative;
            z-index: 1;
            width: min(100%, 520px);
            max-height: 90vh;
            overflow-y: auto;
            padding: clamp(1.5rem, 4vw, 2rem);
            background: #050505;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
            text-align: left;
        }

        .quote-modal__panel h2 {
            font-family: "Oswald", sans-serif;
            font-size: 1.6rem;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .quote-modal__lead {
            color: rgba(255, 255, 255, 0.808);
            margin-bottom: 1.25rem;
        }

        .quote-modal__close {
            position: absolute;
            top: 0.75rem;
            right: 0.85rem;
            border: none;
            background: transparent;
            color: #fff;
            font-size: 1.75rem;
            line-height: 1;
            cursor: pointer;
        }

        .quote-form {
            display: grid;
            gap: 1rem;
        }

        .quote-field {
            display: grid;
            gap: 0.35rem;
        }

        .quote-field span {
            font-family: "Oswald", sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.856);
        }

        .quote-field input,
        .quote-field select,
        .quote-field textarea {
            width: 100%;
            padding: 0.7rem 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 4px;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            font: inherit;
        }

        .quote-field input:focus,
        .quote-field select:focus,
        .quote-field textarea:focus {
            outline: 2px solid rgba(255, 255, 255, 0.427);
            outline-offset: 1px;
        }

        .quote-field select option {
            color: #000;
            background: #fff;
        }

        .quote-form__submit {
            width: 100%;
            margin-top: 0.25rem;
            cursor: pointer;
            border: none;
        }

        .quote-form__error {
            color: #ffb4b4;
            font-size: 0.92rem;
        }

        .quote-form__success {
            text-align: center;
        }

        .quote-form__success h3 {
            font-family: "Oswald", sans-serif;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        body.quote-modal-open { overflow: hidden; }
