:root {
    color-scheme: dark;
    --midnight: #050b18;
    --petroleum: #081421;
    --charcoal: #0d1a2a;
    --ink: #030711;
    --ivory: #f2e8d5;
    --sand: #b9aa91;
    --copper: #b66a3c;
    --ember: #c84f32;
    --bronze: #6f5438;
    --green: #12382f;
    --line: rgba(182, 106, 60, 0.24);
    --soft-line: rgba(242, 232, 213, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--midnight);
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 999;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    color: var(--midnight);
    background: var(--ivory);
}

.container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(242, 232, 213, 0.08);
    background: rgba(5, 11, 24, 0.36);
    backdrop-filter: blur(16px);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(182, 106, 60, 0.28);
    background: rgba(3, 7, 17, 0.86);
}

.nav-shell {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-logo-panel {
    display: inline-flex;
    width: 300px;
    height: 62px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(182, 106, 60, 0.72);
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
}

.brand-text {
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 1.42rem;
    font-weight: 700;
    line-height: 1;
}

.custom-logo-link img {
    width: auto;
    max-height: 58px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu a {
    position: relative;
    color: rgba(242, 232, 213, 0.78);
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--copper);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu a:hover,
.menu a:focus {
    color: var(--ivory);
}

.menu a:hover::after,
.menu a:focus::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--ivory);
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
}

.hero-section {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    padding: 128px 0 58px;
    background: var(--ink);
}

.hero-media,
.hero-video,
.hero-industrial-fallback,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    z-index: 0;
}

.hero-video {
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-industrial-fallback {
    z-index: 0;
    background:
        linear-gradient(120deg, rgba(5, 11, 24, 0.34), rgba(3, 7, 17, 0.8)),
        repeating-linear-gradient(90deg, transparent 0 76px, rgba(242, 232, 213, 0.035) 76px 77px),
        repeating-linear-gradient(0deg, transparent 0 76px, rgba(242, 232, 213, 0.026) 76px 77px),
        radial-gradient(circle at 74% 34%, rgba(200, 79, 50, 0.28), transparent 26%),
        radial-gradient(circle at 18% 70%, rgba(18, 56, 47, 0.46), transparent 28%),
        linear-gradient(145deg, #07111e 0%, #0c1a2a 46%, #030711 100%);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(3, 7, 17, 0.82) 0%, rgba(5, 11, 24, 0.64) 46%, rgba(5, 11, 24, 0.18) 100%),
        linear-gradient(0deg, rgba(5, 11, 24, 0.82) 0%, transparent 34%, rgba(5, 11, 24, 0.32) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--copper);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ivory);
    font-family: var(--serif);
    font-weight: 600;
    line-height: 0.98;
}

h1 {
    max-width: 760px;
    font-size: 7.4rem;
}

.hero-title {
    overflow: hidden;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(105%) rotate(2deg);
    transform-origin: left bottom;
    animation: heroTitleReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-title span:nth-child(1) {
    animation-delay: 0.22s;
}

.hero-title span:nth-child(2) {
    animation-delay: 0.42s;
}

.hero-title span:nth-child(3) {
    animation-delay: 0.62s;
}

.hero-title span:nth-child(4) {
    animation-delay: 0.82s;
}

.hero-reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: heroElementReveal 0.8s ease forwards;
}

.hero-content > .eyebrow {
    animation-delay: 0.08s;
}

.hero-lede.hero-reveal {
    animation-delay: 0.92s;
}

.button.hero-reveal {
    animation-delay: 1.1s;
}

h2 {
    font-size: 4.7rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin: 0;
}

.hero-lede {
    max-width: 590px;
    margin: 26px 0 34px;
    color: rgba(242, 232, 213, 0.82);
    font-size: 1.22rem;
    line-height: 1.65;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid var(--copper);
    color: var(--ivory);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button:hover,
.button:focus {
    border-color: var(--ember);
    background: var(--ember);
    color: #fff7ef;
    transform: translateY(-2px);
}

.button-primary {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
}

.button-secondary {
    background: rgba(5, 11, 24, 0.16);
}

.sector-line {
    margin-top: 76px;
    color: rgba(242, 232, 213, 0.7);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation-delay: 1.24s;
}

.scroll-cue {
    position: absolute;
    z-index: 4;
    top: calc(100svh - 116px);
    bottom: auto;
    left: 50%;
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 136px;
    padding: 12px 14px 10px;
    border: 1px solid rgba(182, 106, 60, 0.5);
    background: rgba(3, 7, 17, 0.42);
    backdrop-filter: blur(10px);
    color: rgba(242, 232, 213, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-50%);
    animation: scrollCueReveal 0.7s ease 1.45s forwards;
}

.scroll-cue-line {
    position: relative;
    display: block;
    width: 1px;
    height: 34px;
    overflow: hidden;
    background: rgba(242, 232, 213, 0.3);
}

.scroll-cue-line::after {
    position: absolute;
    top: -32px;
    left: 0;
    width: 1px;
    height: 32px;
    background: var(--copper);
    box-shadow: 0 0 14px rgba(182, 106, 60, 0.8);
    content: "";
    animation: scrollLine 1.65s ease-in-out infinite;
}

.section {
    position: relative;
    padding: 116px 0;
    background: var(--midnight);
}

.intro-section {
    border-top: 1px solid var(--line);
    background:
        linear-gradient(180deg, #050b18 0%, #081421 100%);
}

.section-heading {
    max-width: 830px;
    margin-bottom: 56px;
}

.section-heading.wide {
    max-width: 980px;
}

.section-heading p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 22px;
    color: var(--sand);
    font-size: 1.02rem;
}

.two-column-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
}

.two-column-copy article {
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.two-column-copy h3,
.two-column-copy h2 {
    margin-bottom: 22px;
    color: var(--copper);
    font-size: 2.14rem;
}

.two-column-copy p {
    color: rgba(242, 232, 213, 0.76);
}

.two-column-copy p + p {
    margin-top: 22px;
}

.capital-section {
    background:
        linear-gradient(180deg, #081421 0%, #050b18 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    min-height: 330px;
    padding: 30px;
    border: 1px solid rgba(182, 106, 60, 0.22);
    border-radius: 8px;
    background: rgba(13, 26, 42, 0.72);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card:hover {
    border-color: rgba(182, 106, 60, 0.68);
    background: rgba(13, 26, 42, 0.92);
    transform: translateY(-6px);
}

.card-index {
    display: inline-flex;
    margin-bottom: 64px;
    color: var(--ember);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 2.15rem;
}

.service-card p {
    color: rgba(242, 232, 213, 0.72);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.pillar-card {
    min-height: 360px;
    padding: 34px 32px;
    background: rgba(13, 26, 42, 0.48);
}

.pillar-card + .pillar-card {
    border-left: 1px solid rgba(182, 106, 60, 0.38);
}

.pillar-card h3 {
    margin-bottom: 18px;
    font-size: 2.08rem;
}

.pillar-card p {
    color: rgba(242, 232, 213, 0.72);
}

.sector-strip {
    border-block: 1px solid var(--line);
    background: #030711;
}

.sector-strip-inner {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--sand);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cta-section {
    background:
        linear-gradient(135deg, rgba(18, 56, 47, 0.44), rgba(5, 11, 24, 0.92)),
        var(--midnight);
}

.cta-panel {
    max-width: 960px;
}

.cta-panel h2 {
    margin-bottom: 34px;
}

.inner-hero,
.contact-section {
    min-height: 66svh;
    padding: 164px 0 88px;
    background:
        linear-gradient(135deg, rgba(5, 11, 24, 0.86), rgba(8, 20, 33, 0.94)),
        repeating-linear-gradient(90deg, transparent 0 88px, rgba(242, 232, 213, 0.032) 88px 89px),
        var(--petroleum);
}

.inner-hero .container {
    max-width: 920px;
}

.expertise-hero-art,
.sectors-hero-art,
.commitment-hero-art {
    position: relative;
    display: grid;
    min-height: 78svh;
    align-items: stretch;
    overflow: hidden;
    padding: 0;
    background: #030711;
}

.expertise-hero-bg,
.sectors-hero-bg,
.commitment-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        url("../images/expertise-solutions-hero.png") 62% center / cover no-repeat;
    filter: brightness(1.16) saturate(1.08) contrast(1.06);
}

.sectors-hero-bg {
    background:
        url("../images/sectors-hero.png") 63% center / cover no-repeat;
    filter: brightness(1.12) saturate(1.06) contrast(1.06);
}

.commitment-hero-bg {
    background:
        url("../images/commitment-hero.png") 64% center / cover no-repeat;
    filter: brightness(1.08) saturate(1.08) contrast(1.08);
}

.expertise-hero-bg::after,
.sectors-hero-bg::after,
.commitment-hero-bg::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #030711 0%, #030711 40%, rgba(3, 7, 17, 0.96) 48%, rgba(3, 7, 17, 0.72) 57%, rgba(3, 7, 17, 0.34) 67%, transparent 78%),
        linear-gradient(0deg, rgba(3, 7, 17, 0.38) 0%, transparent 36%, rgba(3, 7, 17, 0.18) 100%),
        radial-gradient(ellipse at 57% 60%, rgba(182, 106, 60, 0.18), transparent 28rem);
    content: "";
}

.sectors-hero-bg::after {
    background:
        linear-gradient(90deg, #030711 0%, #030711 39%, rgba(3, 7, 17, 0.96) 47%, rgba(3, 7, 17, 0.72) 56%, rgba(3, 7, 17, 0.32) 67%, transparent 79%),
        linear-gradient(0deg, rgba(3, 7, 17, 0.34) 0%, transparent 40%, rgba(3, 7, 17, 0.2) 100%),
        radial-gradient(ellipse at 60% 58%, rgba(182, 106, 60, 0.14), transparent 30rem);
}

.commitment-hero-bg::after {
    background:
        linear-gradient(90deg, #030711 0%, #030711 40%, rgba(3, 7, 17, 0.96) 48%, rgba(3, 7, 17, 0.72) 57%, rgba(3, 7, 17, 0.32) 68%, transparent 80%),
        linear-gradient(0deg, rgba(3, 7, 17, 0.36) 0%, transparent 40%, rgba(3, 7, 17, 0.2) 100%),
        radial-gradient(ellipse at 62% 52%, rgba(182, 106, 60, 0.2), transparent 29rem);
}

.expertise-hero-content,
.sectors-hero-content,
.commitment-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 78svh;
    align-items: center;
    margin-inline: 0;
    width: 50%;
    max-width: none;
    padding: 152px max(32px, calc((100vw - 1180px) / 2)) 92px;
    background: transparent;
    box-shadow: none;
}

.expertise-hero-copy,
.sectors-hero-copy,
.commitment-hero-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    padding: 0;
    border-left: 1px solid rgba(182, 106, 60, 0.52);
    padding-left: 30px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    transform: translateY(28px);
    animation: expertiseHeroLift 1.05s cubic-bezier(0.19, 1, 0.22, 1) 0.18s forwards;
}

.expertise-hero-copy h1,
.sectors-hero-copy h1,
.commitment-hero-copy h1 {
    max-width: 620px;
    font-size: 4.85rem;
    line-height: 1.02;
    text-shadow:
        0 2px 0 rgba(3, 7, 17, 0.8),
        0 18px 56px rgba(3, 7, 17, 0.95);
}

.sectors-hero-copy h1 {
    max-width: 590px;
    font-size: 4.3rem;
}

.expertise-hero-copy p:not(.eyebrow),
.sectors-hero-copy p:not(.eyebrow),
.commitment-hero-copy p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 24px;
    color: rgba(242, 232, 213, 0.84);
    font-size: 1.12rem;
    text-shadow: 0 14px 34px rgba(3, 7, 17, 0.95);
}

.expertise-hero-copy .eyebrow,
.sectors-hero-copy .eyebrow,
.commitment-hero-copy .eyebrow {
    text-shadow: 0 10px 24px rgba(3, 7, 17, 0.85);
}

.inner-hero p:not(.eyebrow),
.contact-grid > div > p {
    max-width: 680px;
    margin-top: 24px;
    color: var(--sand);
    font-size: 1.08rem;
}

.expertise-list {
    display: grid;
    gap: 18px;
}

.expertise-list article {
    display: grid;
    grid-template-columns: 80px minmax(220px, 0.7fr) minmax(260px, 1fr);
    gap: 28px;
    align-items: start;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.expertise-list span {
    color: var(--ember);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.expertise-list h2 {
    font-size: 2.2rem;
}

.expertise-list p,
.page-content,
.post-card p {
    color: rgba(242, 232, 213, 0.76);
}

.solution-list {
    display: grid;
    gap: 20px;
}

.solution-panel {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 30px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 26, 42, 0.62);
}

.solution-panel > span {
    color: var(--ember);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.solution-panel h2 {
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.solution-panel h3 {
    margin: 24px 0 12px;
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution-panel p,
.solution-panel li {
    color: rgba(242, 232, 213, 0.76);
}

.solution-panel ul,
.capability-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.solution-panel li,
.capability-list li {
    padding: 12px 14px;
    border-left: 1px solid rgba(182, 106, 60, 0.45);
    background: rgba(5, 11, 24, 0.28);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.solution-panel li:hover,
.capability-list li:hover {
    border-color: var(--copper);
    background: rgba(182, 106, 60, 0.14);
    color: var(--ivory);
}

.sector-domain-section {
    padding-top: 58px;
    background:
        linear-gradient(180deg, #081421 0%, #050b18 100%);
}

.sector-tabs {
    display: grid;
    gap: 28px;
}

.sector-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(182, 106, 60, 0.22);
}

.sector-tab {
    position: relative;
    display: inline-flex;
    flex: 1 1 150px;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 18px;
    border: 1px solid rgba(182, 106, 60, 0.22);
    border-radius: 8px;
    background: rgba(3, 7, 17, 0.3);
    color: rgba(242, 232, 213, 0.72);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1.35;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.sector-tab:nth-child(3) {
    flex-basis: 240px;
}

.sector-tab:nth-child(5) {
    flex-basis: 190px;
}

.sector-tab span {
    margin-right: 10px;
    color: var(--copper);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0;
}

.sector-tab::after {
    position: absolute;
    right: 18px;
    bottom: -13px;
    left: 18px;
    height: 2px;
    background: transparent;
    content: "";
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.sector-tab:hover,
.sector-tab:focus-visible,
.sector-tab.is-active {
    transform: translateY(-4px);
    border-color: rgba(182, 106, 60, 0.68);
    background: rgba(182, 106, 60, 0.1);
    color: var(--ivory);
}

.sector-tab.is-active::after {
    background: var(--copper);
    box-shadow: 0 0 18px rgba(182, 106, 60, 0.46);
}

.sector-tab-panels {
    position: relative;
}

.sector-domain-stack {
    display: grid;
    gap: 28px;
}

.sector-domain-card {
    overflow: hidden;
    border: 1px solid rgba(182, 106, 60, 0.28);
    border-radius: 8px;
    background: rgba(13, 26, 42, 0.58);
    box-shadow: var(--shadow);
}

.sector-tab-panel {
    animation: sectorPanelRise 0.48s ease both;
}

.sector-domain-hero {
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(3, 7, 17, 0.76), rgba(8, 20, 33, 0.88)),
        repeating-linear-gradient(135deg, rgba(242, 232, 213, 0.06) 0 1px, transparent 1px 22px),
        radial-gradient(circle at 80% 20%, rgba(182, 106, 60, 0.24), transparent 24%);
}

.sector-domain-hero h2 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: 3.2rem;
}

.sector-domain-hero p,
.advantage-panel p {
    max-width: 780px;
    color: rgba(242, 232, 213, 0.76);
}

.sector-domain-body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.72fr);
    gap: 28px;
    padding: 32px 42px 42px;
}

.sector-domain-body h3 {
    margin: 0 0 16px;
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.advantage-panel {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(182, 106, 60, 0.25);
    background: rgba(3, 7, 17, 0.34);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}

.stats-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 26, 42, 0.72);
}

.stats-grid strong {
    display: block;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 12px;
    color: var(--sand);
}

.commitment-section {
    background:
        linear-gradient(135deg, rgba(5, 11, 24, 0.86), rgba(8, 20, 33, 0.92)),
        repeating-linear-gradient(90deg, transparent 0 88px, rgba(242, 232, 213, 0.035) 88px 89px),
        var(--petroleum);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}

.glass-card,
.conduit-card {
    border: 1px solid rgba(182, 106, 60, 0.38);
    border-radius: 8px;
    background: rgba(8, 20, 33, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.glass-card {
    padding: 30px;
}

.glass-card strong {
    color: var(--ember);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}

.glass-card h2 {
    margin: 18px 0 14px;
    font-size: 2.3rem;
}

.glass-card p,
.conduit-card p {
    color: rgba(242, 232, 213, 0.76);
}

.conduit-card {
    margin-top: 64px;
    padding: 38px;
}

.conduit-card h2 {
    margin-bottom: 18px;
    font-size: 3rem;
}

.cinematic-home {
    background: #030711;
}

.cinematic-scroll {
    position: relative;
    min-height: 420vh;
    background:
        radial-gradient(circle at 78% 40%, rgba(182, 106, 60, 0.16), transparent 25rem),
        radial-gradient(circle at 34% 12%, rgba(242, 232, 213, 0.08), transparent 22rem),
        linear-gradient(180deg, #02050c 0%, #07101e 52%, #030711 100%);
}

.cinematic-sticky {
    position: sticky;
    top: 0;
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(350px, 0.82fr) minmax(500px, 1.18fr);
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 88px max(28px, calc((100vw - 1180px) / 2)) 36px;
}

.cinematic-copy {
    position: relative;
    z-index: 3;
    min-height: min(560px, calc(100svh - 150px));
}

.cinematic-panel {
    position: absolute;
    inset: 62px auto auto 0;
    max-width: 540px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.cinematic-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cinematic-panel h1,
.cinematic-panel h2 {
    max-width: 680px;
    margin-bottom: 20px;
}

.cinematic-panel h1 {
    font-size: clamp(3.45rem, 4.65vw, 4.38rem);
    line-height: 0.94;
}

.cinematic-panel h2 {
    font-size: clamp(3.1rem, 4.3vw, 4rem);
    line-height: 0.96;
}

.cinematic-panel p {
    max-width: 500px;
    margin-bottom: 24px;
    color: rgba(242, 232, 213, 0.78);
    font-size: 1.08rem;
}

.cinematic-earth {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.cinematic-earth::before,
.cinematic-earth::after {
    position: absolute;
    z-index: 3;
    content: "";
    pointer-events: none;
}

.cinematic-earth::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 17, 0.98) 0%, rgba(3, 7, 17, 0.88) 18%, rgba(3, 7, 17, 0.34) 42%, transparent 68%),
        linear-gradient(180deg, #030711 0%, rgba(3, 7, 17, 0.68) 13%, transparent 34%, transparent 75%, rgba(3, 7, 17, 0.74) 91%, #030711 100%);
}

.cinematic-earth::after {
    inset: 0;
    background:
        radial-gradient(ellipse at 76% 51%, transparent 0 34%, rgba(3, 7, 17, 0.16) 58%, rgba(3, 7, 17, 0.92) 90%),
        linear-gradient(90deg, rgba(3, 7, 17, 0.2), transparent 45%, rgba(3, 7, 17, 0.34));
}

.earth-glow {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: 6vw;
    width: min(58vw, 760px);
    height: min(58vw, 760px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 106, 60, 0.22), rgba(242, 232, 213, 0.08) 34%, transparent 68%);
    filter: blur(24px);
    opacity: var(--earth-glow, 0.28);
    transform: translateY(-50%);
    transition: opacity 0.35s ease;
}

.earth-video {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    mix-blend-mode: screen;
    -webkit-mask-image: none;
    mask-image: none;
    filter: saturate(1.02) contrast(1.03) brightness(var(--earth-brightness, 0.86));
    opacity: 0.96;
}

.cinematic-after {
    border-top: 1px solid var(--line);
    background:
        radial-gradient(circle at 86% 12%, rgba(182, 106, 60, 0.12), transparent 22rem),
        linear-gradient(180deg, #030711 0%, #07101e 100%);
}

.cinematic-pillars {
    background:
        linear-gradient(90deg, rgba(182, 106, 60, 0.08), transparent 28%),
        linear-gradient(180deg, #07101e 0%, #030711 100%);
}

.network-copy h2 {
    font-size: 2.6rem;
}

.contact-section {
    min-height: 100svh;
    display: grid;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
    gap: 66px;
    align-items: start;
}

.contact-notes {
    display: grid;
    gap: 10px;
    margin-top: 42px;
    color: var(--sand);
    font-weight: 600;
}

.contact-notes a {
    color: var(--ivory);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 30px;
    border: 1px solid rgba(182, 106, 60, 0.28);
    border-radius: 8px;
    background: rgba(13, 26, 42, 0.74);
    box-shadow: var(--shadow);
}

.form-note {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(182, 106, 60, 0.26);
    background: rgba(3, 7, 17, 0.34);
    color: rgba(242, 232, 213, 0.72);
}

.form-note strong {
    color: var(--ivory);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--sand);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-embed .wpcf7 form {
    display: grid;
    gap: 16px;
}

.contact-form-embed .wpcf7 p {
    margin: 0;
}

.contact-form-embed .wpcf7 br {
    display: none;
}

.contact-form-embed .wpcf7-submit {
    width: fit-content;
    min-height: 50px;
    cursor: pointer;
    border-color: var(--copper);
    background: transparent;
    color: var(--ivory);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-embed .wpcf7-not-valid-tip,
.contact-form-embed .wpcf7-response-output {
    color: var(--sand);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(242, 232, 213, 0.16);
    border-radius: 0;
    outline: none;
    background: rgba(3, 7, 17, 0.48);
    color: var(--ivory);
    padding: 13px 14px;
}

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

.content-narrow {
    max-width: 860px;
}

.page-main,
.archive-main {
    padding-top: 168px;
}

.page-content h1,
.archive-main h1 {
    margin-bottom: 32px;
}

.entry-content > * + * {
    margin-top: 20px;
}

.entry-content a,
.post-card a {
    color: var(--copper);
}

.post-list {
    display: grid;
    gap: 22px;
}

.post-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 26, 42, 0.62);
}

.post-meta {
    margin-bottom: 8px;
    color: var(--sand);
    font-size: 0.82rem;
}

.site-footer {
    padding: 76px 0 28px;
    border-top: 1px solid rgba(182, 106, 60, 0.35);
    background: #030711;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(140px, 0.7fr));
    gap: 36px;
}

.footer-brand p {
    max-width: 330px;
    margin-top: 18px;
    color: var(--sand);
}

.footer-brand > h2 {
    width: 210px;
    margin-top: 10px;
    margin-left: 108px;
    text-align: left;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.footer-logo .brand-logo-panel {
    width: 320px;
    height: 76px;
}

.footer-subhead {
    margin-top: 24px !important;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer .footer-brand > h2 {
    width: 210px;
    margin: 10px 0 0 108px;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    color: rgba(242, 232, 213, 0.68);
    list-style: none;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--copper);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 34px;
    margin-top: 54px;
    border-top: 1px solid rgba(242, 232, 213, 0.08);
    color: rgba(242, 232, 213, 0.52);
    font-size: 0.78rem;
}

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

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(105%) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

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

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

@keyframes scrollCueReveal {
    from {
        opacity: 0;
        transform: translate(-50%, -8px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(66px);
        opacity: 0;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: 5.4rem;
    }

    h2 {
        font-size: 3.6rem;
    }

    .service-grid,
    .pillar-grid,
    .glass-grid,
    .two-column-copy,
    .stats-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card + .pillar-card {
        border-top: 1px solid rgba(182, 106, 60, 0.38);
        border-left: 0;
    }

    .sector-domain-body,
    .solution-panel {
        grid-template-columns: 1fr;
    }

    .cinematic-sticky {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 84px;
    }

    .cinematic-copy {
        min-height: 360px;
    }

    .cinematic-panel {
        inset: 52px auto auto 0;
    }

    .cinematic-panel h1 {
        font-size: 3.36rem;
    }

    .cinematic-panel h2 {
        font-size: 3.2rem;
    }

    .cinematic-earth {
        inset: 0;
        opacity: 0.86;
    }

    .earth-video {
        inset: 0;
        width: 100%;
        height: 100%;
        object-position: 58% center;
    }

    .earth-glow {
        top: auto;
        right: -6vw;
        bottom: 2svh;
        width: min(82vw, 520px);
        height: min(82vw, 520px);
        transform: none;
    }

    .sector-strip-inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 26px 0;
    }

    .expertise-list article {
        grid-template-columns: 54px 1fr;
    }

    .expertise-list p {
        grid-column: 2;
    }
}

@media (max-width: 900px) {
    .sectors-hero-copy h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-shell {
        min-height: 72px;
    }

    .nav-toggle {
        display: inline-block;
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        padding: 22px 20px 28px;
        border-bottom: 1px solid var(--line);
        background: rgba(3, 7, 17, 0.98);
    }

    .primary-nav.is-open {
        display: block;
    }

    .menu {
        display: grid;
        gap: 18px;
    }

    .hero-section {
        min-height: 92svh;
        padding-top: 112px;
    }

    .hero-content {
        margin-left: auto;
    }

    h1 {
        font-size: 4.2rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero-lede {
        font-size: 1.06rem;
    }

    .sector-line {
        margin-top: 48px;
        font-size: 0.76rem;
    }

    .scroll-cue {
        right: auto;
        left: 50%;
        top: calc(100svh - 98px);
        bottom: auto;
    }

    .scroll-cue-line {
        height: 44px;
    }

    .section {
        padding: 84px 0;
    }

    .service-card {
        min-height: 280px;
    }

    .sector-domain-hero,
    .sector-domain-body,
    .solution-panel {
        padding: 28px;
    }

    .sector-tab-list {
        gap: 8px;
        padding-bottom: 10px;
    }

    .sector-tab {
        min-height: 54px;
        padding: 12px 14px;
        font-size: 0.72rem;
    }

    .card-index {
        margin-bottom: 40px;
    }

    .inner-hero,
    .contact-section {
        padding: 126px 0 72px;
    }

    .expertise-hero-art,
    .sectors-hero-art,
    .commitment-hero-art {
        min-height: 74svh;
        padding: 0;
    }

    .expertise-hero-bg,
    .sectors-hero-bg,
    .commitment-hero-bg {
        top: 38%;
        left: 0;
    }

    .expertise-hero-bg::after,
    .sectors-hero-bg::after,
    .commitment-hero-bg::after {
        background:
            linear-gradient(180deg, #030711 0%, rgba(3, 7, 17, 0.98) 26%, rgba(3, 7, 17, 0.7) 48%, rgba(3, 7, 17, 0.18) 76%, rgba(3, 7, 17, 0.56) 100%),
            radial-gradient(ellipse at 50% 64%, rgba(182, 106, 60, 0.16), transparent 20rem);
    }

    .expertise-hero-content,
    .sectors-hero-content,
    .commitment-hero-content {
        width: 100%;
        min-height: 74svh;
        padding: 132px 28px 72px;
        background: transparent;
        box-shadow: none;
    }

    .expertise-hero-copy,
    .sectors-hero-copy,
    .commitment-hero-copy {
        padding-left: 24px;
    }

    .expertise-hero-copy h1,
    .sectors-hero-copy h1,
    .commitment-hero-copy h1 {
        font-size: 3.75rem;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.08rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-logo-panel {
        width: 210px;
        height: 48px;
    }

    h1 {
        font-size: 3.34rem;
    }

    .expertise-hero-copy h1,
    .sectors-hero-copy h1,
    .commitment-hero-copy h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.48rem;
    }

    h3,
    .service-card h3,
    .two-column-copy h3,
    .two-column-copy h2 {
        font-size: 1.86rem;
    }

    .button {
        width: 100%;
    }

    .cinematic-scroll {
        min-height: 500vh;
    }

    .cinematic-panel h1 {
        font-size: 2.76rem;
    }

    .cinematic-panel h2 {
        font-size: 2.45rem;
    }

    .cinematic-panel p {
        font-size: 1rem;
    }

    .cinematic-copy {
        min-height: 380px;
    }

    .scroll-cue {
        display: none;
    }

    .expertise-list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .expertise-list p {
        grid-column: auto;
    }
}
