:root {
    --navy: #012154;
    --navy-2: #031a42;
    --navy-3: #0a2a68;
    --gold: #deaa3c;
    --gold-2: #ecc56a;
    --cream: #fbfbf9;
    --white: #ffffff;
    --text: #012154;
    --muted: #4b5b78;
    --line: rgba(1, 33, 84, 0.12);
    --line-gold: rgba(222, 170, 60, 0.45);
    --ok: #2f8a5b;
    --danger: #c24747;
    --shadow: 0 22px 50px rgba(1, 33, 84, 0.12);
    --radius: 12px;
    --control-h: 38px;
    --max: 1200px;
    --header-h: 86px;
    --font: "Tajawal", "Segoe UI", Tahoma, Arial, sans-serif;
}

@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/tajawal-400-ar.woff2") format("woff2");
    unicode-range:
        U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
        U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
        U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/tajawal-400-lat.woff2") format("woff2");
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/tajawal-500-ar.woff2") format("woff2");
    unicode-range:
        U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
        U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
        U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/tajawal-500-lat.woff2") format("woff2");
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/tajawal-700-ar.woff2") format("woff2");
    unicode-range:
        U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
        U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
        U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/tajawal-700-lat.woff2") format("woff2");
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/tajawal-800-ar.woff2") format("woff2");
    unicode-range:
        U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1,
        U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF,
        U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
    font-family: "Tajawal";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/tajawal-800-lat.woff2") format("woff2");
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.7;
    min-height: 100vh;
}
a {
    color: inherit;
    text-decoration: none;
}
img,
svg {
    display: block;
    max-width: 100%;
}
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}
h1,
h2,
h3 {
    line-height: 1.25;
    margin: 0 0 0.7rem;
    font-weight: 700;
}
p {
    margin: 0 0 1rem;
}
.page-shell {
    min-height: 100vh;
}

.container {
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
}

.kicker {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.lede {
    color: var(--muted);
    font-size: 1.06rem;
    max-width: 46rem;
}
.max-title {
    max-width: 18ch;
    margin-bottom: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--control-h);
    height: var(--control-h);
    padding: 0 1.1rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: 0.2s ease;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-gold:hover {
    background: var(--gold-2);
    transform: translateY(-1px);
}
.btn-ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-2);
}
.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-ghost-light {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: transparent;
}
.btn-ghost-light:hover {
    border-color: var(--gold);
    color: var(--gold-2);
}
.text-link {
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    font-weight: 700;
}
.text-link.light {
    color: var(--gold-2);
    border-bottom-color: transparent;
}
.text-link:hover {
    color: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.site-header::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 72%);
}
.site-header.is-scrolled {
    box-shadow: 0 12px 32px rgba(1, 33, 84, 0.1);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    min-height: 82px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    flex: 0 0 auto;
}
.brand-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    flex: 0 0 auto;
}
.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    line-height: 1.2;
}
.brand-copy strong {
    display: block;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.01em;
}
.brand-copy em {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.78;
    margin-top: 1px;
}
.brand-copy small {
    display: block;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 4px;
}

.desk-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    flex: 1;
}
.desk-nav > a,
.nav-fly-link {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius);
    position: relative;
}
.nav-fly-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}
.desk-nav > a:hover,
.nav-fly-link:hover,
.nav-fly:hover .nav-fly-link {
    background: rgba(222, 170, 60, 0.14);
    color: var(--navy);
}
.desk-nav > a.is-active,
.nav-fly-link.is-active {
    color: var(--gold);
    background: transparent;
    font-weight: 800;
}
.desk-nav > a.is-active:hover,
.nav-fly:hover .nav-fly-link.is-active,
.nav-fly-link.is-active:hover {
    background: rgba(222, 170, 60, 0.14);
    color: var(--gold);
}
.desk-nav > a.is-active::before,
.nav-fly-link.is-active::before {
    content: "";
    position: absolute;
    inset-inline: 1.15rem;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 99px;
}
.nav-caret {
    width: 11px;
    height: 11px;
    display: inline-flex;
    color: var(--gold);
    transition: transform 0.2s ease;
}
.nav-caret svg {
    width: 11px;
    height: 11px;
}
.nav-fly:hover .nav-caret,
.nav-fly:focus-within .nav-caret {
    transform: rotate(180deg);
}
.nav-fly-link::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 50%;
    height: calc(var(--header-h) * 0.55);
    z-index: 2;
}
.nav-fly {
    position: static;
}
.nav-mega {
    position: absolute;
    top: 100%;
    inset-inline: 0;
    z-index: 40;
    padding-top: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}
.nav-mega-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.35rem 1.3rem 1.4rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    pointer-events: auto;
}
.nav-mega-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.75rem;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}
.nav-mega-label::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 2px;
}
.nav-mega-items {
    display: grid;
    gap: 0;
}
.nav-mega-item {
    display: block;
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid var(--line);
    transition: background 0.25s ease;
}
.nav-mega-item:last-child {
    border-bottom: none;
}
.nav-mega-item strong {
    display: block;
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}
.nav-mega-item span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.55;
}
.nav-mega-item:hover {
    background: rgba(222, 170, 60, 0.14);
}
.nav-mega-item:hover strong,
.nav-mega-item.is-current strong {
    color: var(--gold);
}
.nav-mega-item.is-current {
    background: transparent;
    border-inline-start: 3px solid var(--gold);
    padding-inline-start: 0.55rem;
}
.nav-mega-all {
    display: inline-flex;
    margin-top: 0.95rem;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom: 1px solid transparent;
}
.nav-mega-all:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.nav-mega-showcase {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.nav-mega-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
}
.nav-mega-card img {
    display: block;
    width: 100%;
    height: auto;
}
.nav-mega-card-meta {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 2.2rem 1rem 1rem;
    background: linear-gradient(180deg, transparent, rgba(1, 33, 84, 0.88));
}
.nav-mega-card-meta strong {
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.35;
}
.nav-mega-card-meta p {
    color: rgba(251, 251, 249, 0.75);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0.3rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nav-mega-card-meta span {
    flex: 0 0 auto;
    color: rgba(251, 251, 249, 0.88);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}
.nav-mega-card:hover .nav-mega-card-meta span {
    color: var(--gold-2);
}
.nav-fly:hover .nav-mega,
.nav-fly:focus-within .nav-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-fly.is-shut .nav-mega,
.nav-fly.is-shut:hover .nav-mega,
.nav-fly.is-shut:focus-within .nav-mega {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
}
.nav-fly.is-shut .nav-caret {
    transform: none;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-inline-start: auto;
    flex: 0 0 auto;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: var(--control-h);
    height: var(--control-h);
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
}
.lang-switch:hover {
    border-color: var(--gold);
    background: var(--white);
}
.lang-icon {
    width: 18px;
    height: 18px;
    color: var(--navy);
    display: inline-flex;
}
.lang-icon svg {
    width: 18px;
    height: 18px;
}
.header-quote {
    display: none;
}
.header-office {
    display: none;
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.header-office:hover {
    background: var(--navy-3);
    color: var(--white);
}
.menu-toggle {
    width: var(--control-h);
    height: var(--control-h);
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    display: grid;
    place-content: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 16px;
    height: 1.8px;
    background: var(--navy);
    transition: 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.8px) rotate(-45deg);
}
.mobile-nav {
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 0.4rem 0 1.2rem;
}
.mobile-nav[hidden] {
    display: none;
}
.mobile-nav-inner {
    display: grid;
    gap: 0.2rem;
    padding-top: 0.6rem;
}
.mobile-nav a {
    color: var(--navy);
    font-weight: 650;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
}
.mobile-nav .mobile-office {
    margin-top: 0.8rem;
    border-bottom: none;
    justify-content: center;
}
.mobile-nav .mobile-quote {
    margin-top: 0.5rem;
    border-bottom: none;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0 6rem;
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(222, 170, 60, 0.2),
            transparent 32%
        ),
        radial-gradient(
            circle at 8% 85%,
            rgba(222, 170, 60, 0.08),
            transparent 28%
        ),
        linear-gradient(165deg, var(--navy) 0%, var(--navy-2) 55%, #02102a 100%);
    color: var(--white);
}
.hero-home {
    display: grid;
    align-items: center;
    min-height: calc(100dvh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    padding: 4.4rem 0 5rem;
    background: var(--navy);
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.04) contrast(1.08) brightness(0.58);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            to inline-end,
            rgba(1, 33, 84, 0.96) 0%,
            rgba(1, 33, 84, 0.88) 24%,
            rgba(1, 33, 84, 0.72) 52%,
            rgba(1, 33, 84, 0.55) 78%,
            rgba(222, 170, 60, 0.28) 100%
        ),
        linear-gradient(
            165deg,
            rgba(1, 33, 84, 0.55) 0%,
            rgba(1, 33, 84, 0.22) 48%,
            rgba(222, 170, 60, 0.16) 100%
        ),
        radial-gradient(
            ellipse at 88% 18%,
            rgba(222, 170, 60, 0.2),
            transparent 46%
        );
}
.hero-home .hero-split {
    z-index: 2;
}
.hero-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    border: 1px solid rgba(222, 170, 60, 0.14);
}
.hero-ring-1 {
    width: 560px;
    height: 560px;
    inset-inline-end: -180px;
    top: -120px;
    border-width: 16px;
}
.hero-ring-2 {
    width: 320px;
    height: 320px;
    inset-inline-start: -80px;
    bottom: -60px;
    border-color: rgba(255, 255, 255, 0.06);
}
.hero-split {
    position: relative;
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
}
.hero-badges span {
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius);
    border: 1px solid rgba(222, 170, 60, 0.45);
    background: rgba(222, 170, 60, 0.1);
    color: var(--gold-2);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.2rem, 5.2vw, 4.15rem);
    color: var(--white);
    letter-spacing: -0.02em;
}
.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--gold);
    margin-top: 0.15rem;
}
.hero-lead {
    color: rgba(251, 251, 249, 0.84);
    font-size: 1.1rem;
    margin-top: 1rem;
}
.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.45rem;
}
.hero-highlights li {
    position: relative;
    padding-inline-start: 1.1rem;
    color: rgba(251, 251, 249, 0.72);
    font-size: 0.95rem;
}
.hero-highlights li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.62rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.8rem;
}
.hero-trust {
    margin-top: 1.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: 0.88rem;
    color: rgba(251, 251, 249, 0.55);
}
.hero-trust a {
    color: var(--gold-2);
    font-weight: 700;
}
.hero-trust a:hover {
    color: var(--white);
}
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
}

.capabilities-block {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.capabilities-head {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.pillars-grid {
    display: grid;
    gap: 1rem;
}
.pillar-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1.35rem;
    box-shadow: 0 8px 28px rgba(1, 33, 84, 0.06);
    transition: 0.25s ease;
}
.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-gold);
    box-shadow: var(--shadow);
}
.pillar-line {
    display: block;
    width: 42px;
    height: 4px;
    background: var(--gold);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.pillar-card h3 {
    color: var(--navy);
    font-size: 1.08rem;
}
.pillar-card p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
}

.process-section {
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: "";
    position: absolute;
    inset-inline-end: -120px;
    top: 20%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(222, 170, 60, 0.12),
        transparent 68%
    );
    pointer-events: none;
}
.process-timeline {
    display: grid;
    gap: 0;
    position: relative;
}
.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.process-step:last-child {
    border-bottom: none;
}
.process-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    background: rgba(222, 170, 60, 0.08);
}
.process-body h3 {
    color: var(--white);
    margin-bottom: 0.35rem;
}
.process-body p {
    color: rgba(251, 251, 249, 0.72);
    margin: 0;
}

.services-showcase {
    background: transparent;
    padding-top: 4.6rem;
    padding-bottom: 5rem;
}
.services-showcase-head,
.home-industries-head,
.home-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.35rem;
}
.services-showcase-head h2,
.home-industries-head h2,
.home-gallery-head h2 {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.35;
}
.home-gallery-head {
    align-items: start;
}
.home-gallery-head p {
    color: var(--muted);
    margin: 0.55rem 0 0;
    max-width: 40rem;
    line-height: 1.75;
}
.btn-aside {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    height: 2.15rem;
    padding: 0 0.95rem;
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    background: transparent;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.84rem;
    line-height: 1;
    white-space: nowrap;
    transition: 0.2s ease;
}
.btn-aside:hover {
    background: var(--gold);
    color: var(--navy);
}
.home-about {
    padding-top: 4.4rem;
    padding-bottom: 4.6rem;
}
.home-about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
.home-about-copy h2 {
    color: var(--navy);
    font-size: clamp(1.4rem, 2.6vw, 1.95rem);
    font-weight: 800;
    max-width: 18ch;
    margin: 0 0 0.9rem;
    line-height: 1.3;
}
.home-about-copy p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 0 1.2rem;
    max-width: 38rem;
}
.home-about-more {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1;
}
.home-about-more svg {
    width: 0.82em;
    height: 0.82em;
    transition: transform 0.2s ease;
}
html[dir="rtl"] .home-about-more svg {
    transform: scaleX(-1);
}
.home-about-more:hover {
    color: var(--gold);
}
.home-about-more:hover svg {
    transform: translateX(3px);
}
html[dir="rtl"] .home-about-more:hover svg {
    transform: scaleX(-1) translateX(3px);
}
.home-about-media {
    position: relative;
}
.home-about-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 16rem;
    max-height: 24rem;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.home-about-media::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-start: 1.25rem;
    inset-block-end: 1.25rem;
    width: 5px;
    background: var(--gold);
    border-radius: 4px;
    z-index: 2;
}
.home-capabilities {
    padding-top: 4.2rem;
    padding-bottom: 4.6rem;
}
.home-process {
    border-top: 1px solid var(--line);
}
.home-industries {
    background: var(--white);
    padding-top: 4.6rem;
    padding-bottom: 5rem;
}
.home-industries-head {
    align-items: start;
    margin-bottom: 1.5rem;
}
.home-industries-head p {
    color: var(--muted);
    max-width: 36rem;
    margin: 0.55rem 0 0;
    font-size: 0.98rem;
    line-height: 1.8;
}
.home-industries-board {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.1rem;
}
.home-industry-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    min-width: 0;
    height: 100%;
    padding: 0 0 1.2rem;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 10px 26px rgba(1, 33, 84, 0.06);
    text-align: start;
    text-decoration: none;
    color: inherit;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}
.home-industry-card:hover,
.home-industry-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--line-gold);
    box-shadow: 0 16px 32px rgba(1, 33, 84, 0.1);
}
.home-industry-media {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    aspect-ratio: 16 / 11;
    border-radius: 10px 10px 0 0;
    background: var(--navy);
}
.home-industry-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}
.home-industry-card:hover .home-industry-media img,
.home-industry-card:focus-visible .home-industry-media img {
    transform: scale(1.04);
}
.home-industry-card strong {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
    margin-top: 0.35rem;
    padding-inline: 0.85rem;
}
.home-industry-card p {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1.75;
    margin: 0;
    padding-inline: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-difference .facility-quality-copy h2 {
    max-width: 16ch;
}
.home-gallery {
    background: var(--white);
    padding-top: 4.6rem;
    padding-bottom: 5rem;
    overflow: hidden;
}
.home-gallery-head {
    align-items: start;
    margin-bottom: 1.5rem;
}
.home-gallery-nav {
    display: flex;
    gap: 0.5rem;
    flex: 0 0 auto;
}
.home-gallery-carousel {
    min-width: 0;
}
.home-gallery-viewport {
    position: relative;
    overflow: hidden;
    min-width: 0;
}
.home-gallery-track {
    display: flex;
    gap: 1.15rem;
    will-change: transform;
    transition: transform 0.45s ease;
}
.home-gallery-track.is-jump {
    transition: none;
}
.home-gallery-slide {
    display: flex;
    flex: 0 0 calc((100% - 3.45rem) / 4);
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    min-width: 0;
}
.home-gallery-frame {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    aspect-ratio: 4 / 5;
    border: 1.5px solid var(--gold);
    border-radius: 10px;
    background: var(--gold);
    color: inherit;
    font: inherit;
    text-align: start;
    cursor: zoom-in;
    box-shadow: 0 8px 20px rgba(1, 33, 84, 0.08);
}
.home-gallery-frame img,
.home-gallery-frame .gallery-shot-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}
.home-gallery-frame:hover img {
    transform: scale(1.04);
}
.home-gallery-copy {
    display: grid;
    gap: 0.35rem;
    padding-inline: 0.1rem;
}
.home-gallery-label {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}
.home-gallery-caption {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-gallery-arrow {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: 0.2s ease;
}
.home-gallery-arrow svg {
    width: 18px;
    height: 18px;
}
.home-gallery-arrow.is-next svg {
    transform: scaleX(-1);
}
html[dir="rtl"] .home-gallery-arrow.is-prev svg {
    transform: scaleX(-1);
}
html[dir="rtl"] .home-gallery-arrow.is-next svg {
    transform: none;
}
.home-gallery-arrow.is-accent,
.home-gallery-arrow:hover:not(:disabled) {
    border-color: rgba(222, 170, 60, 0.55);
    background: rgba(222, 170, 60, 0.2);
    color: var(--navy);
}
.home-gallery-arrow:disabled {
    opacity: 0.38;
    cursor: default;
}
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1.4rem;
    background: rgba(1, 33, 84, 0.88);
}
.gallery-lightbox[hidden] {
    display: none;
}
.gallery-lightbox-figure {
    margin: 0;
    max-width: min(92vw, 1080px);
    text-align: center;
}
.gallery-lightbox-figure img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 78vh;
    margin-inline: auto;
    object-fit: contain;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}
.gallery-lightbox-figure figcaption {
    margin-top: 0.85rem;
}
.gallery-lightbox-figure figcaption strong {
    display: block;
    color: var(--cream);
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.gallery-lightbox-figure figcaption span {
    display: block;
    color: rgba(251, 251, 249, 0.78);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.65;
}
.gallery-lightbox-close {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
}
.gallery-lightbox-close svg {
    width: 18px;
    height: 18px;
}
.gallery-lightbox-close:hover {
    background: var(--gold);
}
.gallery-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    transform: translateY(-50%);
}
.gallery-lightbox-arrow.is-prev {
    inset-inline-start: 1rem;
}
.gallery-lightbox-arrow.is-next {
    inset-inline-end: 1rem;
}
.gallery-lightbox-arrow svg {
    width: 18px;
    height: 18px;
}
.gallery-lightbox-arrow.is-next svg {
    transform: scaleX(-1);
}
html[dir="rtl"] .gallery-lightbox-arrow.is-prev svg {
    transform: scaleX(-1);
}
html[dir="rtl"] .gallery-lightbox-arrow.is-next svg {
    transform: none;
}
.gallery-lightbox-arrow:hover {
    background: var(--gold);
}
.services-page,
.service-page {
    padding-top: 2.4rem;
    padding-bottom: 4.6rem;
}
.services-catalog {
    display: grid;
    gap: 0;
}
.service-item {
    display: grid;
    grid-template-columns: 3.6rem 1fr;
    gap: 0.85rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.3s ease;
}
.service-item:hover {
    background: rgba(1, 33, 84, 0.03);
}
.service-item > span {
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
}
.service-item .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.7rem;
}
.service-item h3 {
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
}
.service-item p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}
.service-item:hover h3 {
    color: var(--gold);
}
.services-catalog-home {
    gap: 0.85rem;
}
.services-catalog-home .service-item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.7rem;
    align-items: start;
    height: 100%;
    padding: 1.1rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}
.services-catalog-home .service-item:hover {
    background: var(--cream);
    border-color: var(--line-gold);
}
.services-catalog-home .service-item > span {
    font-size: 1.15rem;
}
.services-catalog-home .service-item .icon {
    width: 22px;
    height: 22px;
    margin-bottom: 0.4rem;
}
.services-catalog-home .service-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}
.services-catalog-home .service-item p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.service-detail {
    display: grid;
    gap: 2.4rem;
    align-items: start;
}
.service-body {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 0 1.8rem;
    max-width: 46rem;
}
.service-detail article h2,
.service-detail aside h2 {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 1rem;
}
.service-points {
    list-style: none;
    margin: 0 0 1.6rem;
    padding: 0;
}
.service-points li {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}
.service-points li:last-child {
    border-bottom: none;
}
.service-points span {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 800;
}
.service-points p {
    color: var(--navy);
    font-weight: 600;
    margin: 0;
}
.service-related {
    list-style: none;
    margin: 0;
    padding: 0;
}
.service-related a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}
.service-related li:last-child a {
    border-bottom: none;
}
.service-related .icon {
    width: 22px;
    height: 22px;
    margin: 0;
    flex: 0 0 auto;
}
.service-related strong {
    color: var(--navy);
    font-weight: 700;
}
.service-related a:hover strong {
    color: var(--gold);
}
.about-story {
    background: var(--white);
    padding-top: 3.4rem;
    padding-bottom: 4.4rem;
}
.about-split {
    display: grid;
    gap: 2.2rem;
    align-items: center;
}
.about-story-copy h2 {
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 0.85rem;
}
.about-story-copy p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin: 0;
}
.about-media {
    position: relative;
    isolation: isolate;
    width: min(100%, 26rem);
    justify-self: center;
}
.about-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 24rem;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-media::before {
    content: "";
    position: absolute;
    inset-block-start: 1.15rem;
    inset-block-end: -1.15rem;
    inset-inline-start: 1.15rem;
    inset-inline-end: -1.15rem;
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    z-index: 0;
}
.about-vmv {
    display: grid;
    gap: 1rem;
    margin-top: 2.8rem;
}
.about-vmv article {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 1.4rem;
    min-height: 100%;
    border-radius: var(--radius);
}
.about-vmv h3 {
    color: var(--gold-2);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.7rem;
}
.about-vmv p {
    color: rgba(251, 251, 249, 0.82);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}
.about-values {
    padding-top: 4.2rem;
    padding-bottom: 4.4rem;
}
.about-values-head {
    margin-bottom: 1.6rem;
}
.about-values-head h2 {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
}
.about-values-head p {
    color: var(--muted);
    margin: 0.65rem 0 0;
    max-width: 42rem;
    line-height: 1.75;
}
.about-values-list {
    display: grid;
    gap: 0;
    align-items: stretch;
}
.about-values-list article {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 0.85rem;
    align-items: start;
    height: 100%;
    padding: 1.35rem 1.1rem;
    margin-inline: -1.1rem;
    border: 1px solid transparent;
    border-bottom-color: var(--line);
    transition: background 0.3s ease;
}
.about-values-list article:last-child {
    border-bottom-color: transparent;
}
.about-values-list article:hover {
    background: rgba(1, 33, 84, 0.03);
}
.about-values-list span {
    color: var(--gold);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}
.about-values-list h3 {
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}
.about-values-list p {
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}
.about-stats {
    background: var(--white);
    padding-top: 3.4rem;
    padding-bottom: 3.6rem;
}
.about-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 1rem;
}
.about-stats-row article {
    text-align: center;
}
.about-stats-row strong {
    display: block;
    color: var(--gold);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.about-stats-row span {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}
.service-showcase-grid {
    display: grid;
    gap: 1rem;
}
.service-card-v2 {
    position: relative;
    display: block;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    transition: 0.25s ease;
    overflow: hidden;
}
.service-card-v2::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.service-card-v2:hover {
    transform: translateY(-5px);
    border-color: var(--line-gold);
    box-shadow: var(--shadow);
    background: var(--white);
}
.service-card-v2:hover::after {
    opacity: 1;
}
.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}
.service-num {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.service-card-v2 .icon {
    margin-bottom: 0;
}
.service-card-v2 h3 {
    color: var(--navy);
    font-size: 1.05rem;
}
.service-card-v2 p {
    color: var(--muted);
    font-size: 0.94rem;
    margin-bottom: 0.75rem;
}
.service-link {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.service-link::after {
    content: "→";
    color: var(--gold);
    transition: transform 0.2s ease;
}
.service-card-v2:hover .service-link::after {
    transform: translateX(4px);
}
html[dir="rtl"] .service-card-v2:hover .service-link::after {
    transform: translateX(-4px);
}

.industries-showcase {
    position: relative;
}
.industries-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}
.industries-intro h2 {
    max-width: 16ch;
    margin-bottom: 1.4rem;
}
.industry-cards {
    display: grid;
    gap: 0.65rem;
}
.industry-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    transition: 0.2s ease;
}
.industry-card:hover {
    background: rgba(222, 170, 60, 0.12);
    border-color: rgba(222, 170, 60, 0.45);
    transform: translateX(4px);
}
html[dir="rtl"] .industry-card:hover {
    transform: translateX(-4px);
}
.industry-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.08em;
}
.industry-title {
    font-weight: 600;
}
.industry-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.industry-arrow::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
}
html[dir="rtl"] .industry-arrow::after {
    transform: rotate(-135deg);
}

.difference-block {
    background: var(--cream);
}
.difference-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}
.difference-aside {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.difference-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1rem;
}
.difference-list {
    display: grid;
    gap: 1rem;
}
.difference-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem 1.3rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: 0.2s ease;
}
.difference-item:hover {
    border-color: var(--line-gold);
    box-shadow: 0 10px 30px rgba(1, 33, 84, 0.08);
}
.difference-mark {
    width: 14px;
    height: 14px;
    margin-top: 0.35rem;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.difference-item h3 {
    color: var(--navy);
    font-size: 1.02rem;
}
.difference-item p {
    color: var(--muted);
    margin: 0;
    font-size: 0.94rem;
}

.gallery-showcase {
    padding-bottom: 5.5rem;
}
.gallery-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.bento-item {
    transition: transform 0.25s ease;
}
.bento-item:hover {
    transform: translateY(-4px);
}
.bento-feature .shot-art {
    min-height: 260px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section {
    padding: 5rem 0;
}
.section-soft {
    background: var(--white);
}
.section-navy {
    background: var(--navy);
    color: var(--white);
}
.section-navy .kicker {
    color: var(--gold-2);
}
.section-navy h2 {
    color: var(--white);
}
.section-head,
.split,
.detail-layout,
.prose-grid,
.cards-2,
.cards-3,
.gallery-grid,
.footer-grid,
.form-grid,
.process-grid {
    display: grid;
    gap: 1.2rem;
}
.section-head,
.split {
    align-items: end;
}
.section-head h2 {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
}

.service-card,
.plain-card,
.shot,
.process-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
}
.section-navy .process-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}
.process-card span {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}
.process-card p,
.service-card p,
.plain-card p,
.shot-meta p,
.muted {
    color: var(--muted);
}
.section-navy .process-card p {
    color: rgba(251, 251, 249, 0.74);
}

.service-card {
    display: block;
    transition: 0.2s ease;
    min-height: 100%;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-gold);
    box-shadow: var(--shadow);
}
.service-card span {
    color: var(--gold);
    font-weight: 700;
}
.icon {
    width: 42px;
    height: 42px;
    color: var(--gold);
    margin-bottom: 1rem;
}
.icon-lg {
    width: 56px;
    height: 56px;
}

.industry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}
.industry-grid a {
    padding: 1.1rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font-weight: 600;
}
.industry-grid a:hover {
    border-color: var(--gold);
    color: var(--gold-2);
}

.page-hero {
    padding: 4.5rem 0 2.6rem;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    color: var(--white);
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    max-width: 18ch;
    color: var(--white);
}
.page-hero .lede {
    color: rgba(251, 251, 249, 0.78);
}
.page-hero-compact {
    padding: 2.6rem 0 2rem;
}
.page-hero-compact h1 {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    max-width: 45ch;
    font-weight: 800;
    line-height: 1.35;
}
.page-hero-compact .lede {
    font-size: 1rem;
    max-width: 40rem;
    margin-bottom: 0;
}

.faq-section {
    padding-top: 2.2rem;
    padding-bottom: 4.2rem;
}
.faq-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}
.faq-aside {
    padding: 1.45rem 1.35rem 1.4rem;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    color: var(--white);
    border-radius: var(--radius);
}
.faq-aside h2 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.45rem;
}
.faq-aside p {
    color: rgba(251, 251, 249, 0.78);
    margin: 0 0 1.1rem;
    line-height: 1.75;
}
.faq-aside-hours {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 0;
    margin-bottom: 1.1rem;
    border-top: 1px solid rgba(251, 251, 249, 0.12);
    border-bottom: 1px solid rgba(251, 251, 249, 0.12);
}
.faq-aside-hours small {
    color: var(--gold-2);
    font-size: 0.78rem;
    font-weight: 700;
}
.faq-aside-hours strong {
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 700;
}
.faq-aside-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-item[open] {
    border-color: var(--line-gold);
}
.faq-item summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1.05rem;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-num {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.faq-q {
    flex: 1 1 auto;
    color: var(--navy);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.45;
}
.faq-mark {
    position: relative;
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
}
.faq-mark::before,
.faq-mark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 0.72rem;
    height: 1.5px;
    background: var(--navy);
    transform: translate(-50%, -50%);
}
.faq-mark::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
.faq-item[open] .faq-mark::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq-a {
    padding-block: 0 1.05rem;
    padding-inline: 2.65rem 1.05rem;
}
.faq-a p {
    color: var(--muted);
    margin: 0;
    line-height: 1.8;
}

.blog-section {
    padding-top: 2.2rem;
    padding-bottom: 4rem;
}
.blog-feature {
    display: grid;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    color: var(--white);
    border-radius: var(--radius);
    text-decoration: none;
}
.blog-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.55rem 1.4rem 1.5rem;
}
.blog-feature-copy h2 {
    color: var(--white);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
    max-width: 16ch;
}
.blog-feature-copy p {
    color: rgba(251, 251, 249, 0.78);
    margin: 0;
    line-height: 1.75;
    max-width: 36rem;
}
.blog-feature .blog-read {
    color: var(--white);
    justify-self: start;
    align-self: start;
}
.blog-feature-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy);
}
.blog-feature-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}
.blog-feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(1, 33, 84, 0.28));
    pointer-events: none;
}
.blog-feature:hover .blog-feature-media img {
    transform: scale(1.04);
}
.blog-grid {
    display: grid;
    gap: 0.9rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    min-height: 100%;
    transition: border-color 0.2s ease;
}
.blog-card:hover {
    border-color: var(--line-gold);
}
.blog-card-media {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy);
}
.blog-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}
.blog-card-copy {
    display: grid;
    gap: 0.42rem;
    flex: 1;
    padding: 1.05rem 1.1rem 1.15rem;
}
.blog-card h2 {
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}
.blog-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 800;
    border-bottom: 1px solid var(--gold);
    justify-self: start;
    margin-top: 0.25rem;
}
.blog-article-section {
    padding-top: 2.2rem;
    padding-bottom: 3.6rem;
}
.blog-article {
    display: grid;
    gap: 2rem;
}
.blog-cover {
    position: relative;
    overflow: hidden;
    margin: 0 0 1.5rem;
    aspect-ratio: 16 / 8;
    border-radius: var(--radius);
    background: var(--navy);
}
.blog-cover img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}
.blog-prose p {
    color: var(--muted);
    margin: 0 0 1.05rem;
    line-height: 1.9;
    max-width: 42rem;
    font-weight: 400;
}
.blog-prose strong,
.blog-prose b {
    color: var(--navy);
    font-weight: 700;
}
.blog-prose p:first-child {
    color: var(--navy);
    font-size: 1.06rem;
}
.blog-prose .text-link {
    display: inline-block;
    margin-top: 0.35rem;
}
.blog-more {
    padding-top: 1.4rem;
    border-top: 1px solid var(--line);
}
.blog-more h2 {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.95rem;
}
.blog-more ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}
.blog-more a {
    display: grid;
    grid-template-columns: 5.4rem 1fr;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.blog-more-media {
    position: relative;
    width: 5.4rem;
    height: 4rem;
    overflow: hidden;
    border-radius: calc(var(--radius) - 4px);
    background: var(--navy);
}
.blog-more-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}
.blog-more a span {
    display: grid;
    gap: 0.2rem;
}
.blog-more a strong {
    color: var(--navy);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.4;
}
.blog-more a:hover strong {
    color: var(--gold);
}

.check-list {
    padding: 0;
    margin: 0 0 1.4rem;
    list-style: none;
}
.check-list li {
    position: relative;
    padding-inline-start: 1.3rem;
    margin-bottom: 0.65rem;
    color: var(--muted);
}
.check-list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55rem;
    width: 0.55rem;
    height: 0.55rem;
    border: 1.5px solid var(--gold);
    transform: rotate(45deg);
}
.side-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}
.side-link:hover {
    color: var(--gold);
}

.gallery-grid {
    grid-template-columns: 1fr;
}
.gallery-page {
    padding-top: 2.4rem;
    padding-bottom: 4.6rem;
}
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.35rem;
    margin-bottom: 1.6rem;
}
.gallery-filters button {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    cursor: pointer;
    border-radius: 999px;
}
.gallery-filters button:hover {
    color: var(--navy);
}
.gallery-filters button.is-active {
    color: var(--navy);
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--line);
}
.gallery-wall {
    display: grid;
    gap: 0.9rem;
}
.gallery-shot {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 240px;
}
.gallery-shot-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.gallery-shot:hover .gallery-shot-photo {
    transform: scale(1.04);
}
.gallery-shot-art {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(222, 170, 60, 0.32),
            transparent 28%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 18px,
            rgba(1, 33, 84, 0.06) 18px 19px
        ),
        linear-gradient(135deg, #16366f, #012154);
}
.gallery-shot.shot-b .gallery-shot-art {
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0 12px,
            rgba(222, 170, 60, 0.14) 12px 13px
        ),
        linear-gradient(160deg, #1a3b77, #012154);
}
.gallery-shot.shot-c .gallery-shot-art {
    background:
        conic-gradient(
            from 120deg,
            rgba(222, 170, 60, 0.22),
            transparent 40%,
            rgba(222, 170, 60, 0.22)
        ),
        linear-gradient(180deg, #0d2a5e, #012154);
}
.gallery-shot.shot-d .gallery-shot-art {
    background:
        linear-gradient(
            90deg,
            transparent 46%,
            rgba(222, 170, 60, 0.4) 46% 54%,
            transparent 54%
        ),
        linear-gradient(180deg, #12306b, #012154);
}
.gallery-shot.shot-e .gallery-shot-art {
    background:
        radial-gradient(
            circle,
            transparent 34%,
            rgba(255, 255, 255, 0.12) 35% 36%,
            transparent 37%
        ),
        linear-gradient(210deg, #20427f, #012154);
}
.gallery-shot.shot-f .gallery-shot-art {
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0 22px,
            rgba(222, 170, 60, 0.16) 22px 23px
        ),
        linear-gradient(180deg, #12306b, #012154);
}
.gallery-shot-meta {
    position: absolute;
    z-index: 1;
    inset-inline: 0;
    bottom: 0;
    padding: 2.4rem 1.15rem 1.15rem;
    background: linear-gradient(180deg, transparent, rgba(1, 33, 84, 0.88));
    color: var(--white);
}
.gallery-shot-meta span {
    display: block;
    color: var(--gold-2);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
}
.gallery-shot-meta h3 {
    color: var(--white);
    font-size: 1.08rem;
    margin: 0 0 0.25rem;
}
.gallery-shot-meta p {
    color: rgba(251, 251, 249, 0.78);
    font-size: 0.9rem;
    margin: 0;
}
.gallery-shot[hidden] {
    display: none;
}
.gallery-note {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 1.6rem 0 0;
    max-width: 42rem;
}
.industries-page,
.industry-page {
    padding-top: 2.4rem;
    padding-bottom: 4.6rem;
}
.industries-scope {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0 0 1.8rem;
    display: grid;
    gap: 1.15rem;
    border-bottom: 1px solid var(--line);
}
.industries-scope li {
    min-width: 0;
}
.industries-scope span {
    display: block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}
.industries-scope strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
    margin-bottom: 0.35rem;
}
.industries-scope p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0;
}
.industry-detail {
    display: grid;
    gap: 2.4rem;
    align-items: start;
}
.industry-main {
    display: grid;
    gap: 2rem;
}
.industry-cover {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 16 / 8;
    border-radius: var(--radius);
    background: var(--navy);
}
.industry-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}
.industry-prose p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.9;
    margin: 0 0 1.05rem;
    max-width: 44rem;
}
.industry-prose p:first-child {
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 600;
}
.industry-works h2,
.industry-path h2,
.industry-check h2,
.industry-aside h2 {
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 800;
    margin: 0 0 1rem;
}
.industry-works-grid {
    display: grid;
    gap: 0.8rem;
}
.industry-works-grid article {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: 0.75rem;
    padding: 1rem 1.05rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.industry-works-grid span {
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
}
.industry-works-grid h3 {
    color: var(--navy);
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.3rem;
}
.industry-works-grid p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    font-size: 0.92rem;
}
.industry-path ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}
.industry-path li {
    padding: 1rem 1.05rem 1.05rem;
    background: var(--cream);
    border-radius: var(--radius);
}
.industry-path li span {
    display: block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}
.industry-path li strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.industry-path li p {
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
    font-size: 0.92rem;
}
.industry-check {
    padding: 1.3rem 1.25rem 1.35rem;
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    border-radius: var(--radius);
}
.industry-check h2 {
    color: var(--white);
}
.industry-check ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.95rem;
}
.industry-check strong {
    display: block;
    color: var(--gold-2);
    font-size: 0.98rem;
    margin-bottom: 0.25rem;
}
.industry-check p {
    color: rgba(251, 251, 249, 0.78);
    margin: 0;
    line-height: 1.7;
    font-size: 0.92rem;
}
.industry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.industry-aside {
    display: grid;
    gap: 1.2rem;
}
.industry-aside-card {
    padding: 1.3rem 1.2rem 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
}
.industry-aside-card p {
    color: var(--muted);
    margin: 0 0 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}
.industry-aside-links .text-link {
    display: inline-block;
    margin-top: 0.85rem;
}
.industry-related {
    list-style: none;
    margin: 0;
    padding: 0;
}
.industry-related a {
    display: grid;
    grid-template-columns: 4.6rem 1fr;
    gap: 0.7rem;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
}
.industry-related li:last-child a {
    border-bottom: none;
}
.industry-related-media {
    position: relative;
    display: block;
    width: 4.6rem;
    height: 3.4rem;
    overflow: hidden;
    border-radius: calc(var(--radius) - 4px);
    background: var(--navy);
}
.industry-related-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}
.industry-related a span:last-child {
    display: grid;
    gap: 0.18rem;
}
.industry-related small {
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 800;
}
.industry-related strong {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.industry-related a:hover small {
    color: var(--gold);
}
.shot {
    overflow: hidden;
    padding: 0;
}
.shot-art {
    min-height: 190px;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(222, 170, 60, 0.32),
            transparent 28%
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0 18px,
            rgba(1, 33, 84, 0.06) 18px 19px
        ),
        linear-gradient(135deg, #12306b, #012154);
}
.shot-b .shot-art {
    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(251, 251, 249, 0.18),
            transparent 26%
        ),
        repeating-linear-gradient(
            45deg,
            transparent 0 14px,
            rgba(222, 170, 60, 0.12) 14px 15px
        ),
        linear-gradient(160deg, #16366f, #012154);
}
.shot-c .shot-art {
    background:
        conic-gradient(
            from 120deg,
            rgba(222, 170, 60, 0.22),
            transparent 40%,
            rgba(222, 170, 60, 0.22)
        ),
        linear-gradient(180deg, #0d2a5e, #012154);
}
.shot-d .shot-art {
    background:
        linear-gradient(
            90deg,
            transparent 46%,
            rgba(222, 170, 60, 0.45) 46% 54%,
            transparent 54%
        ),
        linear-gradient(180deg, #1a3b77, #012154);
}
.shot-e .shot-art {
    background:
        radial-gradient(
            circle,
            transparent 36%,
            rgba(255, 255, 255, 0.1) 37% 38%,
            transparent 39%
        ),
        linear-gradient(210deg, #20427f, #012154);
}
.shot-f .shot-art {
    background:
        repeating-linear-gradient(
            0deg,
            transparent 0 22px,
            rgba(222, 170, 60, 0.16) 22px 23px
        ),
        linear-gradient(180deg, #12306b, #012154);
}
.shot-meta {
    padding: 1rem 1.15rem 1.2rem;
}

.contact-card p {
    display: grid;
    gap: 0.15rem;
}
.contact-card span {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
}
.contact-section {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
}
.contact-grid {
    display: grid;
    gap: 1.6rem;
    align-items: start;
    margin-bottom: 1.8rem;
}
.contact-aside {
    display: flex;
    flex-direction: column;
}
.contact-aside h2,
.contact-form-head h2 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}
.contact-form-head {
    margin-bottom: 1rem;
}
.contact-form-head p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}
.contact-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    width: 100%;
}
.contact-row:last-child {
    border-bottom: none;
}
a.contact-row:hover strong {
    color: var(--gold);
}
.contact-ico {
    width: 34px;
    height: 34px;
    border-radius: var(--radius);
    border: 1px solid rgba(222, 170, 60, 0.28);
    background: rgba(222, 170, 60, 0.1);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 1px;
}
.contact-ico svg {
    width: 16px;
    height: 16px;
}
.contact-row small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.contact-row strong {
    display: block;
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}
.contact-form {
    box-shadow: none;
}
.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
    margin-top: 1.15rem;
}
.req {
    color: var(--danger);
    font-weight: 800;
    margin-inline-start: 0.15em;
}
.contact-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.contact-map-head h2 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
}
.contact-map-frame {
    --map-radius: 20px;
    position: relative;
    min-height: 23rem;
    height: 23rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    isolation: isolate;
    background: var(--cream);
}
.contact-map-frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-map-hint {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.2rem 1.25rem 1.15rem;
    background: linear-gradient(
        to top,
        rgb(255 255 255 / 0.96),
        rgb(255 255 255 / 0.78) 72%,
        transparent
    );
}
.contact-map-name {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
    font-size: 1rem;
}
.contact-map-address {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}
.contact-map-hint a {
    display: inline-block;
    margin-top: 0.55rem;
    color: var(--navy);
    font-weight: 800;
    font-size: 0.9rem;
}
.contact-map-hint a:hover {
    color: var(--gold);
}
.contact-form label {
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 700;
}
.quote-form.contact-form input,
.quote-form.contact-form select,
.quote-form.contact-form textarea {
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 34px;
    height: 34px;
    padding: 0.4rem 0.75rem;
}
.quote-form.contact-form textarea {
    height: auto;
    min-height: 110px;
    padding: 0.55rem 0.75rem;
    resize: vertical;
}
.quote-form.contact-form input::placeholder,
.quote-form.contact-form textarea::placeholder {
    color: #8b97a8;
    font-weight: 500;
}
.quote-section {
    padding-top: 2.4rem;
    padding-bottom: 4.6rem;
}
.quote-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}
.quote-aside h2 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
}
.quote-aside > p {
    color: var(--muted);
    margin: 0 0 1.4rem;
    max-width: 34rem;
}
.quote-needs {
    list-style: none;
    margin: 0;
    padding: 0;
}
.quote-needs li {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    gap: 0.85rem;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
}
.quote-needs li:first-child {
    padding-top: 0;
}
.quote-needs li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.quote-needs span {
    color: var(--gold);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.quote-needs strong {
    display: block;
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}
.quote-needs p {
    color: var(--muted);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}
.quote-form-wrap .quote-form {
    box-shadow: none;
}

.facility-flow-section {
    background: var(--white);
    padding-top: 4.6rem;
    padding-bottom: 5rem;
}
.facility-section {
    padding-top: 4.6rem;
    padding-bottom: 5rem;
}
.facility-flow-section .facility-head {
    text-align: center;
    margin-inline: auto;
    margin-bottom: 2.2rem;
}
.facility-flow-section .facility-head p {
    margin-inline: auto;
}
.facility-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    max-width: 34rem;
    margin-inline: auto;
}
.facility-flow::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 1.55rem;
    width: 1px;
    background: rgba(1, 33, 84, 0.14);
    z-index: 0;
}
.facility-flow li {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem 1.15rem;
    padding: 0 0 1.75rem;
}
.facility-flow li:last-child {
    padding-bottom: 0;
}
.facility-flow-marker {
    display: grid;
    place-items: center;
    width: 3.15rem;
    height: 3.15rem;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(1, 33, 84, 0.16);
    box-shadow: 0 0 0 8px var(--white);
    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}
.facility-flow-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.04em;
    line-height: 1;
    transition: color 0.3s ease;
}
.facility-flow-body strong {
    display: block;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}
.facility-flow-body p {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
}
.facility-flow li:hover .facility-flow-marker {
    background: var(--navy);
    border-color: var(--navy);
}
.facility-flow li:hover .facility-flow-num {
    color: var(--white);
}
.facility-head {
    margin-bottom: 1.3rem;
}
.facility-head h2 {
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}
.facility-head p {
    color: var(--muted);
    margin: 0;
    max-width: 40rem;
}
.facility-stations {
    display: grid;
    gap: 1.15rem;
}
.facility-station {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 100%;
    transition: 0.22s ease;
}
.facility-station:hover {
    border-color: var(--line-gold);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.facility-station-art {
    position: relative;
    isolation: isolate;
    aspect-ratio: 16 / 9;
    min-height: 148px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 22% 40%,
            rgba(222, 170, 60, 0.28),
            transparent 32%
        ),
        linear-gradient(135deg, #16366f, #012154);
}
.facility-station-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.facility-station-art::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(1, 33, 84, 0.08) 0%,
        rgba(1, 33, 84, 0.42) 100%
    );
}
.facility-art-2 {
    background:
        repeating-linear-gradient(
            45deg,
            transparent 0 12px,
            rgba(222, 170, 60, 0.14) 12px 13px
        ),
        linear-gradient(160deg, #1a3b77, #012154);
}
.facility-art-3 {
    background:
        linear-gradient(
            90deg,
            transparent 46%,
            rgba(222, 170, 60, 0.4) 46% 54%,
            transparent 54%
        ),
        linear-gradient(180deg, #12306b, #012154);
}
.facility-art-4 {
    background:
        radial-gradient(
            circle,
            transparent 34%,
            rgba(255, 255, 255, 0.12) 35% 36%,
            transparent 37%
        ),
        linear-gradient(210deg, #20427f, #012154);
}
.facility-num {
    position: absolute;
    z-index: 2;
    inset-inline-start: 1rem;
    bottom: 0.9rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: rgba(1, 33, 84, 0.72);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.facility-station-ico {
    position: absolute;
    z-index: 2;
    inset-inline-end: 1rem;
    bottom: 0.9rem;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    border: 1px solid rgba(222, 170, 60, 0.45);
    background: rgba(251, 251, 249, 0.1);
    color: var(--gold-2);
    display: grid;
    place-items: center;
}
.facility-station-ico .icon {
    width: 22px;
    height: 22px;
    margin: 0;
}
.facility-station-body {
    padding: 1.2rem 1.2rem 1.35rem;
}
.facility-station h3 {
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 800;
    margin: 0 0 0.45rem;
}
.facility-station p:last-child {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}
.facility-equip-section {
    padding-top: 4.6rem;
    padding-bottom: 5rem;
}
.facility-equip-grid {
    display: grid;
    gap: 1rem;
}
.facility-equip {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.2rem 1.15rem 1.3rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 100%;
    transition: 0.22s ease;
}
.facility-equip:hover {
    background: var(--white);
    border-color: var(--line-gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.facility-equip-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}
.facility-equip-num {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.facility-equip-ico {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    border: 1px solid rgba(222, 170, 60, 0.35);
    background: var(--white);
    color: var(--gold);
    display: grid;
    place-items: center;
}
.facility-equip-ico .icon {
    width: 22px;
    height: 22px;
    margin: 0;
}
.facility-equip h3 {
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0;
}
.facility-equip p {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}
.facility-quality-section {
    background: var(--cream);
    padding-top: 4.6rem;
    padding-bottom: 5rem;
}
.facility-quality {
    display: grid;
    gap: 2rem;
    align-items: start;
}
.facility-quality-copy h2 {
    color: var(--navy);
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    max-width: 14ch;
    margin: 0 0 0.85rem;
}
.facility-quality-copy p {
    color: var(--muted);
    margin: 0;
    max-width: 36rem;
    line-height: 1.8;
}
.facility-quality-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    align-items: stretch;
}
.facility-quality-steps li {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 0.85rem;
    align-items: start;
    height: 100%;
    padding: 1.35rem 1.1rem;
    margin-inline: -1.1rem;
    border: 1px solid transparent;
    border-bottom-color: var(--line);
    transition: background 0.3s ease;
}
.facility-quality-steps li:last-child {
    border-bottom-color: transparent;
}
.facility-quality-steps li:hover {
    background: rgba(1, 33, 84, 0.03);
}
.facility-quality-steps span {
    color: var(--gold);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.4;
}
.facility-quality-steps strong {
    display: block;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.facility-quality-steps p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.form-wrap {
    max-width: 820px;
}
.quote-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
}
.quote-form label {
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.8rem 0.9rem;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: 2px solid rgba(222, 170, 60, 0.35);
    border-color: var(--gold);
}
.full {
    grid-column: 1 / -1;
}
.hint {
    color: #7a8699;
}
.error {
    color: var(--danger);
}
.alert {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.alert-ok {
    background: rgba(47, 138, 91, 0.12);
    color: #1d6b44;
}

.cta-band {
    padding: 5rem 0;
    background:
        linear-gradient(120deg, rgba(1, 33, 84, 0.92), rgba(3, 26, 66, 0.88)),
        url("../images/cta-workshop.png") center / cover no-repeat;
    color: var(--white);
    text-align: center;
}
.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.cta-band h2 {
    color: var(--white);
    margin: 0;
}
.cta-band p {
    color: rgba(251, 251, 249, 0.8);
    margin: 0;
    max-width: 36rem;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.55rem;
}

.site-footer {
    background: var(--navy);
    color: var(--white);
    border-top: 3px solid var(--gold);
}
.footer-main {
    display: grid;
    gap: 2.2rem;
    padding: 3.2rem 0 2.4rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
    color: var(--white);
}
.footer-logo-link {
    display: inline-flex;
    flex: 0 0 auto;
}
.footer-brand-copy:hover strong,
.footer-brand-copy:hover em {
    color: var(--gold-2);
}
.footer-logo-img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    flex: 0 0 auto;
}
.footer-brand-copy strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.footer-brand-copy em {
    display: block;
    font-style: normal;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 3px;
}
.footer-blurb {
    color: rgba(251, 251, 249, 0.68);
    font-size: 0.95rem;
    max-width: 28rem;
    margin-bottom: 1.2rem;
}
.footer-col {
    display: grid;
    align-content: start;
    gap: 0.45rem;
}
.footer-label {
    color: var(--white);
    margin: 0 0 0.55rem;
    font-weight: 800;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.55rem;
}
.footer-label::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--gold);
}
.footer-col a {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    justify-self: start;
    color: rgba(251, 251, 249, 0.72);
    font-size: 0.92rem;
    font-weight: 600;
}
.footer-col a:hover,
.footer-col a.is-current {
    color: var(--gold-2);
}
.footer-more {
    margin-top: 0.25rem;
}
.footer-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.ltr-num {
    direction: ltr;
    unicode-bidi: isolate;
    display: inline-block;
}
.footer-ico {
    width: 28px;
    height: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(222, 170, 60, 0.28);
    background: rgba(222, 170, 60, 0.08);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.footer-ico svg {
    width: 15px;
    height: 15px;
}
.footer-hours {
    margin: 0.55rem 0 0;
    color: rgba(251, 251, 249, 0.62);
    font-size: 0.88rem;
}
.footer-hours span {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 0.15rem;
}
.footer-base {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--navy-2);
}
.footer-base-inner {
    min-height: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    color: rgba(251, 251, 249, 0.5);
    font-size: 0.84rem;
}
.footer-credit {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}
.footer-credit:hover {
    color: var(--gold-2);
}

@media (min-width: 980px) {
    .desk-nav {
        display: flex;
    }
    .header-quote,
    .header-office {
        display: inline-flex;
    }
    .menu-toggle,
    .mobile-nav {
        display: none !important;
    }
    .nav-mega-panel {
        grid-template-columns: minmax(0, 1.7fr) minmax(12rem, 0.55fr);
        gap: 1.8rem;
        align-items: start;
        padding: 1.45rem 1.5rem 1.5rem;
        max-height: calc(100dvh - var(--header-h) - 0.6rem);
        overflow: auto;
    }
    .nav-mega-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 1.4rem;
    }
    .nav-mega-item:nth-last-child(-n + 3) {
        border-bottom: none;
    }
    .nav-mega-card {
        height: 18rem;
    }
    .nav-mega-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
    }
    .nav-mega-items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 1.4rem;
    }
    .nav-mega-item:nth-last-child(-n + 3) {
        border-bottom: none;
    }
    .hero-home {
        padding: 5.2rem 0 5.6rem;
    }
    .contact-grid {
        grid-template-columns: 0.92fr 1.18fr;
        gap: 1.8rem;
        align-items: stretch;
    }
    .quote-layout {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 2.4rem;
        align-items: start;
    }
    .faq-layout {
        grid-template-columns: 0.78fr 1.22fr;
        gap: 1.8rem;
        align-items: start;
    }
    .blog-feature {
        grid-template-columns: 0.92fr 1.08fr;
        height: 22.5rem;
    }
    .blog-feature-media {
        aspect-ratio: auto;
        height: 100%;
    }
    .blog-feature-copy {
        padding: 2rem 2.1rem;
    }
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blog-article {
        grid-template-columns: 1.35fr 0.7fr;
        gap: 2.4rem;
        align-items: start;
    }
    .blog-more {
        position: sticky;
        top: calc(var(--header-h) + 1rem);
        border-top: none;
        padding-top: 0.2rem;
        padding-inline-start: 0.2rem;
    }
    .faq-aside {
        position: sticky;
        top: calc(var(--header-h) + 1rem);
    }
    .contact-map-frame {
        height: 26rem;
        min-height: 26rem;
    }
    .facility-stations {
        grid-template-columns: 1fr 1fr;
    }
    .facility-equip-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .facility-quality {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3.2rem;
        align-items: center;
    }
    .facility-flow {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-width: none;
        margin-inline: 0;
    }
    .facility-flow.home-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .facility-flow::before {
        top: 1.55rem;
        bottom: auto;
        inset-inline: 10%;
        width: auto;
        height: 1px;
        background: linear-gradient(
            90deg,
            transparent,
            rgba(1, 33, 84, 0.18) 12%,
            rgba(1, 33, 84, 0.18) 88%,
            transparent
        );
    }
    .facility-flow li {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.15rem;
        padding: 0 0.7rem;
    }
    .facility-flow-body p {
        max-width: 22ch;
        margin-inline: auto;
    }
    .capabilities-head {
        grid-template-columns: 1fr 1fr;
        align-items: end;
    }
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .process-step {
        border-bottom: none;
        padding: 0;
        flex-direction: column;
        display: flex;
        gap: 1rem;
    }
    .service-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-catalog {
        grid-template-columns: 1fr 1fr;
        column-gap: 3.2rem;
    }
    .services-catalog-home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
    .service-detail {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3.2rem;
    }
    .home-about-grid {
        grid-template-columns: 1.08fr 0.92fr;
        gap: 3.6rem;
        align-items: center;
    }
    .home-about-media img {
        min-height: 22rem;
        max-height: 28rem;
    }
    .about-split {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.2rem;
        align-items: center;
    }
    .about-media {
        justify-self: end;
    }
    .about-vmv {
        grid-template-columns: 1fr 1fr;
        margin-top: 3.2rem;
    }
    .about-values-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 3.2rem;
        align-items: stretch;
    }
    .about-values-list article:nth-last-child(-n + 2) {
        border-bottom-color: transparent;
    }
    .about-stats-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .industries-layout {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 3rem;
    }
    .industry-detail {
        grid-template-columns: 1.28fr 0.72fr;
        gap: 3.2rem;
    }
    .industry-aside {
        position: sticky;
        top: calc(var(--header-h) + 1rem);
        align-self: start;
    }
    .industry-works-grid {
        grid-template-columns: 1fr 1fr;
    }
    .industry-path ol {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-scope {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
    .home-industries-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.15rem;
    }
    .difference-layout {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 2.5rem;
    }
    .gallery-bento {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 210px 210px;
    }
    .bento-feature {
        grid-row: span 2;
    }
    .bento-feature .shot-art {
        min-height: 100%;
    }
    .cta-band {
        padding: 5.6rem 0;
    }
    .split,
    .section-head,
    .prose-grid,
    .cards-2,
    .detail-layout,
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cards-3,
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
    .footer-main {
        grid-template-columns: 1.35fr 0.72fr 1.08fr 1.15fr;
        gap: 2.4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-wall {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 230px;
    }
    .gallery-wall .gallery-shot:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gallery-wall .gallery-shot:nth-child(6) {
        grid-column: span 2;
    }
    .industry-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 979px) {
    .nav-mega {
        display: none;
    }
    .services-catalog-home {
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
    }
    .blog-feature-media {
        order: -1;
        aspect-ratio: 16 / 10;
    }
}
@media (min-width: 721px) and (max-width: 979px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
    .industries-scope {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.1rem;
    }
    .home-industries-board {
        grid-template-columns: 1fr 1fr;
    }
    .home-gallery-slide {
        flex-basis: calc((100% - 1.15rem) / 2);
    }
}
@media (max-width: 720px) {
    .brand-copy strong {
        font-size: 1.05rem;
    }
    .brand-copy em {
        font-size: 0.74rem;
    }
    .brand-copy small {
        font-size: 0.62rem;
    }
    .brand-logo {
        width: 48px;
        height: 48px;
    }
    .header-inner {
        min-height: 72px;
    }
    .hero-home {
        --header-h: 76px;
        padding: 3rem 0 3.6rem;
    }
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
    .home-industries-board {
        grid-template-columns: 1fr;
    }
    .home-gallery-slide {
        flex-basis: 78%;
    }
}
@media (max-width: 520px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .services-catalog-home {
        grid-template-columns: 1fr;
    }
    .home-gallery-arrow {
        width: 38px;
        height: 38px;
    }
}

.whatsapp-float {
    position: fixed;
    inset-block-end: 25px;
    inset-inline-end: 25px;
    z-index: 1200;
    width: 62px;
    height: 62px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #25d366 0%, #16b857 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
    isolation: isolate;
    -webkit-tap-highlight-color: transparent;
}
.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 9999px;
    border: 2px solid rgba(37, 211, 102, 0.42);
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: -1;
}
.whatsapp-float::after {
    content: attr(data-label);
    position: absolute;
    inset-inline-end: calc(100% + 10px);
    inset-block-start: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(17, 24, 39, 0.93);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}
.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
    filter: saturate(1.05);
}
.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}
.whatsapp-float:active {
    transform: translateY(0) scale(0.98);
}
.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.4);
    outline-offset: 3px;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
}
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@media (max-width: 640px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        inset-block-end: 16px;
        inset-inline-end: 16px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float,
    .whatsapp-float::after {
        transition: none;
    }
    .whatsapp-float::before {
        animation: none;
    }
}
