﻿:root {
    --ink: #071a2f;
    --muted: #526174;
    --quiet: #798696;
    --black: #eef3f8;
    --navy: #07101f;
    --graphite: #d9e1ea;
    --steel: #8b98a8;
    --silver: #f7f9fc;
    --gold: #b89b5e;
    --green: #1d6a58;
    --line: rgba(7, 26, 47, 0.14);
    --glass: rgba(255, 255, 255, 0.72);
    --glass-strong: rgba(255, 255, 255, 0.9);
    --shadow: 0 26px 90px rgba(7, 26, 47, 0.16);
    --header-h: 88px;
    --ease: cubic-bezier(0.77, 0, 0.175, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background: var(--black);
    color: var(--ink);
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    scroll-behavior: auto;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.92), transparent 30rem),
        radial-gradient(circle at 12% 74%, rgba(184, 194, 204, 0.42), transparent 34rem),
        linear-gradient(135deg, #f8fafc 0%, #edf3f8 46%, #dce6ef 100%);
    color: var(--ink);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(7, 26, 47, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 26, 47, 0.035) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body.is-menu-open,
body.is-preloading {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

::selection {
    background: rgba(200, 169, 104, 0.35);
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    transform: translateY(-180%);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    background: #fff;
    color: #050608;
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9), transparent 24rem),
        linear-gradient(135deg, #f8fafc, #e6edf5 54%, #cfd9e5);
}

.preloader__frame {
    position: absolute;
    inset: 7vw;
    border: 1px solid rgba(7, 26, 47, 0.14);
    box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.45);
}

.preloader__frame::before,
.preloader__frame::after {
    position: absolute;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.preloader__frame::before {
    top: 0;
    left: 0;
    width: 44%;
}

.preloader__frame::after {
    right: 0;
    bottom: 0;
    width: 58%;
}

.preloader__inner {
    position: relative;
    display: grid;
    gap: 1rem;
    justify-items: center;
    width: min(86vw, 720px);
    text-align: center;
}

.preloader__logo {
    display: block;
    width: min(280px, 70vw);
    height: auto;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(7, 26, 47, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 60px rgba(7, 26, 47, 0.1);
}

.preloader p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.preloader strong {
    max-width: 520px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
}

.preloader__bar {
    position: relative;
    display: block;
    width: min(340px, 72vw);
    height: 2px;
    overflow: hidden;
    background: rgba(7, 26, 47, 0.14);
}

.preloader__bar i {
    position: absolute;
    inset: 0;
    display: block;
    transform-origin: left center;
    background: linear-gradient(90deg, var(--gold), var(--silver));
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    min-height: var(--header-h);
    padding: 1.2rem 3.4rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.68), rgba(248, 250, 252, 0));
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    width: fit-content;
}

.brand__logo {
    display: block;
    width: clamp(150px, 14vw, 230px);
    height: auto;
}

.brand__mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.065);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
}

.brand__word {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
}

.top-nav {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.top-nav a,
.language-link {
    position: relative;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.68rem 0.85rem;
    color: #33455b;
    font-size: 0.78rem;
    font-weight: 650;
    transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.top-nav a::after {
    position: absolute;
    right: 0.82rem;
    bottom: 0.42rem;
    left: 0.82rem;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    content: "";
    background: var(--gold);
    transition: transform 260ms ease;
}

.top-nav a:hover,
.top-nav a.is-active,
.language-link:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(7, 26, 47, 0.11);
}

.top-nav a.is-active::after,
.top-nav a:hover::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.language-link {
    border-color: rgba(7, 26, 47, 0.12);
    background: rgba(255, 255, 255, 0.52);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(7, 26, 47, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform 260ms ease;
}

body.is-menu-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
}

body.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: grid;
    place-items: stretch;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(238, 243, 248, 0.92);
    backdrop-filter: blur(18px);
}

.mobile-menu__panel {
    position: relative;
    display: grid;
    align-content: center;
    gap: 0.6rem;
    padding: 6rem 2rem 2rem;
    transform: translateY(-1rem);
    opacity: 0;
}

.mobile-menu__panel p {
    margin: 0 0 1.1rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-menu a {
    border-bottom: 1px solid rgba(7, 26, 47, 0.1);
    padding: 1rem 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.05rem;
}

.mobile-menu__lang {
    color: var(--muted) !important;
    font-family: "Inter", "Segoe UI", Arial, sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 700;
    text-transform: uppercase;
}

body.is-menu-open .mobile-menu {
    pointer-events: auto;
    visibility: visible;
}

.experience {
    position: relative;
    z-index: 1;
    height: 100vh;
    height: 100svh;
    overflow: hidden;
}

.particle-field {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.7;
}

.scene {
    position: absolute;
    inset: 0;
    z-index: 2;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
}

.scene.is-active {
    pointer-events: auto;
    visibility: visible;
}

.scene__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 14% 20%, var(--theme-soft, rgba(7, 26, 47, 0.08)), transparent 24rem),
        radial-gradient(circle at 84% 70%, rgba(255, 255, 255, 0.86), transparent 26rem),
        linear-gradient(130deg, rgba(255, 255, 255, 0.55), transparent 50%);
}

.scene__grid {
    position: absolute;
    right: -12%;
    bottom: -28%;
    width: 72vw;
    height: 72vw;
    transform: rotateX(62deg) rotateZ(-14deg);
    transform-origin: center;
    border: 1px solid rgba(7, 26, 47, 0.06);
    background-image:
        linear-gradient(rgba(7, 26, 47, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 26, 47, 0.052) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, black 28%, black 70%, transparent);
}

.scene__beam {
    position: absolute;
    width: 42vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--theme-line, rgba(7, 26, 47, 0.34)), transparent);
    filter: drop-shadow(0 0 18px var(--theme-line, rgba(7, 26, 47, 0.16)));
}

.scene__beam--one {
    top: 28%;
    left: -10%;
    transform: rotate(-18deg);
}

.scene__beam--two {
    right: -8%;
    bottom: 24%;
    transform: rotate(-18deg);
}

.scene--hold,
.scene--trust {
    --theme-soft: rgba(7, 26, 47, 0.09);
    --theme-line: rgba(7, 26, 47, 0.34);
}

.scene--portfolio,
.scene--partner {
    --theme-soft: rgba(184, 194, 204, 0.28);
    --theme-line: rgba(7, 26, 47, 0.26);
}

.scene--fiber {
    --theme-soft: rgba(7, 26, 47, 0.12);
    --theme-line: rgba(20, 74, 108, 0.34);
}

.scene--estate {
    --theme-soft: rgba(184, 194, 204, 0.34);
    --theme-line: rgba(7, 26, 47, 0.28);
}

.scene--security,
.scene--career,
.scene--contact {
    --theme-soft: rgba(7, 26, 47, 0.08);
    --theme-line: rgba(7, 26, 47, 0.32);
}

.scene__inner {
    position: relative;
    z-index: 3;
    display: grid;
    width: min(1500px, calc(100vw - 7rem));
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: 7.8rem 0 6.8rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(7, 26, 47, 0.32) transparent;
}

.scene__inner::-webkit-scrollbar {
    width: 6px;
}

.scene__inner::-webkit-scrollbar-thumb {
    background: rgba(7, 26, 47, 0.32);
    border-radius: 999px;
}

.scene__inner--hero {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 2rem 5rem;
}

.scene__inner--split,
.scene__inner--service,
.scene__inner--contact {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    align-items: center;
    gap: 4rem;
}

.scene__inner--wide {
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
    align-items: center;
    gap: 3rem;
}

.scene-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0 0 1.25rem;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.eyebrow::before {
    display: block;
    width: 44px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, var(--gold), transparent);
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2 {
    margin-bottom: 1.35rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.9rem;
    line-height: 0.98;
    font-weight: 400;
}

h3 {
    margin-bottom: 0.7rem;
    font-size: 1.05rem;
}

h4 {
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.lead {
    max-width: 690px;
    color: #24384f;
    font-size: 1.18rem;
    line-height: 1.72;
}

.scene-copy p:not(.eyebrow):not(.lead):not(.motto) {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.motto {
    max-width: 560px;
    margin-bottom: 2rem;
    color: #071a2f;
    font-size: 1rem;
    font-weight: 650;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.7rem;
}

.magnetic-btn {
    --btn-border: rgba(7, 26, 47, 0.18);
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    overflow: hidden;
    border: 1px solid var(--btn-border);
    border-radius: 999px;
    padding: 0.95rem 1.25rem;
    color: var(--ink);
    cursor: pointer;
    isolation: isolate;
    transition: border-color 240ms ease, transform 240ms ease;
}

.magnetic-btn span {
    position: relative;
    z-index: 1;
    font-size: 0.82rem;
    font-weight: 800;
}

.magnetic-btn i {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(7, 26, 47, 0.18);
    border-radius: 50%;
}

.magnetic-btn i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-60%, -50%) rotate(45deg);
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
}

.magnetic-btn::before {
    position: absolute;
    inset: -1px;
    z-index: 0;
    content: "";
    background: linear-gradient(135deg, rgba(184, 155, 94, 0.92), rgba(255, 255, 255, 0.6), rgba(7, 26, 47, 0.18));
    opacity: 0;
    transition: opacity 260ms ease;
}

.magnetic-btn--primary {
    background: rgba(184, 155, 94, 0.16);
    box-shadow: 0 18px 50px rgba(7, 26, 47, 0.12);
}

.magnetic-btn--secondary {
    background: rgba(255, 255, 255, 0.74);
}

.magnetic-btn:hover,
.magnetic-btn:focus-visible {
    border-color: rgba(7, 26, 47, 0.28);
    transform: translateY(-2px);
}

.magnetic-btn:hover::before,
.magnetic-btn:focus-visible::before {
    opacity: 0.72;
}

.headquarters-visual {
    position: relative;
    min-height: 540px;
    perspective: 1200px;
}

.hq__glass,
.hq__table,
.hq__city,
.hq__reflection {
    position: absolute;
    display: block;
}

.hq__glass {
    inset: 12% 8% 10%;
    border: 1px solid rgba(7, 26, 47, 0.12);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(232, 239, 247, 0.36)),
        radial-gradient(circle at 72% 16%, rgba(7, 26, 47, 0.08), transparent 12rem);
    box-shadow: var(--shadow), inset 0 0 90px rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
}

.hq__glass--left {
    transform: rotateY(-28deg) rotateX(4deg) translateX(-9%);
    clip-path: polygon(0 6%, 88% 0, 100% 88%, 12% 100%);
}

.hq__glass--right {
    transform: rotateY(24deg) rotateX(-3deg) translateX(13%) translateY(6%);
    clip-path: polygon(12% 0, 100% 9%, 84% 100%, 0 92%);
    opacity: 0.72;
}

.hq__table {
    right: 4%;
    bottom: 9%;
    left: 0;
    height: 28%;
    transform: rotateX(65deg) rotateZ(-8deg);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(7, 26, 47, 0.12), rgba(255, 255, 255, 0.38) 58%, transparent 70%);
    filter: blur(0.2px);
}

.hq__city {
    right: 10%;
    bottom: 19%;
    left: 8%;
    height: 30%;
    background:
        linear-gradient(to top, rgba(7, 26, 47, 0.1), transparent 22%),
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(7, 26, 47, 0.26) 18px 20px, transparent 20px 34px),
        linear-gradient(180deg, transparent 28%, rgba(7, 26, 47, 0.12));
    mask-image: linear-gradient(to top, black, black 60%, transparent);
}

.hq__reflection {
    top: 24%;
    left: 8%;
    width: 72%;
    height: 1px;
    transform: rotate(-16deg);
    background: linear-gradient(90deg, transparent, rgba(7, 26, 47, 0.34), transparent);
    filter: drop-shadow(0 0 22px rgba(7, 26, 47, 0.12));
}

.hero-stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(7, 26, 47, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
}

.hero-stats div {
    padding: 1.1rem 1.35rem;
}

.hero-stats div + div {
    border-left: 1px solid rgba(7, 26, 47, 0.1);
}

.hero-stats strong {
    display: block;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-system {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-panel,
.info-panel,
.company-card,
.why-grid article,
.partner-matrix article,
.role-board article,
.service-list,
.contact-form,
.contact-details div {
    border: 1px solid rgba(7, 26, 47, 0.12);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 241, 248, 0.64));
    box-shadow: 0 18px 60px rgba(7, 26, 47, 0.12);
    backdrop-filter: blur(14px);
}

.mission-panel {
    grid-column: 1 / -1;
    min-height: 190px;
    padding: 1.45rem;
    background:
        radial-gradient(circle at 88% 10%, rgba(7, 26, 47, 0.08), transparent 12rem),
        rgba(255, 255, 255, 0.84);
}

.mission-panel span,
.company-card__sector,
.role-board span,
.contact-details span,
.form-head p,
.file-field small {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mission-panel p,
.info-panel p,
.why-grid p,
.partner-matrix p,
.role-board p,
.service-list p {
    color: var(--muted);
    line-height: 1.62;
}

.info-panel {
    min-height: 188px;
    padding: 1.3rem;
}

.value-strip {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.value-chip {
    border: 1px solid rgba(7, 26, 47, 0.12);
    border-radius: 999px;
    padding: 0.72rem 0.9rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    cursor: help;
}

.value-chip span {
    font-size: 0.78rem;
    font-weight: 800;
}

.company-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.company-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    padding: 1.35rem;
    transform-style: preserve-3d;
}

.company-card__logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    min-height: 82px;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(7, 26, 47, 0.1);
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
}

.company-card__logo {
    display: block;
    max-width: min(235px, 92%);
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

.company-card__sector {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.company-card::before {
    position: absolute;
    inset: auto -20% -34% -20%;
    height: 62%;
    content: "";
    background: radial-gradient(ellipse, var(--theme-line, rgba(7, 26, 47, 0.22)), transparent 66%);
    opacity: 0.42;
}

.company-card p {
    position: relative;
    margin-top: 0.85rem;
    color: var(--muted);
    line-height: 1.62;
}

.company-card i {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(7, 26, 47, 0.18);
    border-radius: 50%;
}

.company-card i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    transform: translate(-62%, -50%) rotate(45deg);
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
}

.why-grid {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.why-grid article {
    min-height: 144px;
    padding: 1rem;
}

.why-grid h3,
.partner-matrix h3,
.service-list h4,
.role-board span {
    color: var(--ink);
}

.service-visual {
    position: relative;
    min-height: 260px;
    align-self: stretch;
    overflow: hidden;
    border: 1px solid rgba(7, 26, 47, 0.1);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 50%, var(--theme-soft), transparent 16rem),
        rgba(255, 255, 255, 0.72);
}

.service-visual--with-photo {
    min-height: 460px;
    background: #f7f9fc;
}

.service-photo {
    position: absolute;
    inset: 0.9rem;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(7, 26, 47, 0.1);
    border-radius: 8px;
    background: #dfe7ef;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.service-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(7, 26, 47, 0.08), transparent 42%),
        linear-gradient(0deg, rgba(7, 26, 47, 0.42), transparent 36%);
    pointer-events: none;
}

.service-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.service-photo figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 0.62rem 0.85rem;
    background: rgba(7, 26, 47, 0.72);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.section-company-logo {
    display: block;
    max-width: min(260px, 70%);
    max-height: 82px;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 1.4rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(7, 26, 47, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 18px 52px rgba(7, 26, 47, 0.1);
}

.service-visual__logo {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 2;
    display: block;
    max-width: min(230px, 58%);
    max-height: 78px;
    object-fit: contain;
    object-position: left center;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(7, 26, 47, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 52px rgba(7, 26, 47, 0.1);
}

.service-visual--with-photo .service-visual__logo {
    background: rgba(255, 255, 255, 0.9);
}

.service-visual--with-photo > span {
    display: none;
}

.service-visual span {
    position: absolute;
    display: block;
    background: var(--theme-line);
    box-shadow: 0 0 22px var(--theme-line);
}

.service-visual--tech span {
    height: 2px;
    transform-origin: left;
}

.service-visual--tech span:nth-child(1) {
    top: 22%;
    left: 14%;
    width: 70%;
    transform: rotate(12deg);
}

.service-visual--tech span:nth-child(2) {
    top: 48%;
    left: 8%;
    width: 82%;
    transform: rotate(-7deg);
}

.service-visual--tech span:nth-child(3) {
    top: 72%;
    left: 18%;
    width: 64%;
    transform: rotate(5deg);
}

.service-visual--tech span:nth-child(4) {
    top: 12%;
    left: 50%;
    width: 2px;
    height: 78%;
    opacity: 0.55;
}

.service-visual--eck span {
    bottom: 18%;
    width: 18%;
    border: 1px solid rgba(7, 26, 47, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(7, 26, 47, 0.09));
}

.service-visual--eck span:nth-child(1) {
    left: 14%;
    height: 42%;
}

.service-visual--eck span:nth-child(2) {
    left: 36%;
    height: 64%;
}

.service-visual--eck span:nth-child(3) {
    left: 58%;
    height: 52%;
}

.service-visual--eck span:nth-child(4) {
    left: 78%;
    height: 34%;
}

.service-visual--diamant span {
    top: 50%;
    left: 50%;
    width: 62%;
    height: 62%;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid rgba(7, 26, 47, 0.18);
    background: transparent;
}

.service-visual--diamant span:nth-child(2) {
    width: 46%;
    height: 46%;
}

.service-visual--diamant span:nth-child(3) {
    width: 30%;
    height: 30%;
}

.service-visual--diamant span:nth-child(4) {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--theme-line);
}

.service-list {
    display: grid;
    align-self: stretch;
    gap: 0.55rem;
    padding: 1.2rem;
}

.service-list h3 {
    margin: 0 0 0.35rem;
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.service-list article {
    display: grid;
    gap: 0.1rem;
    border-top: 1px solid rgba(7, 26, 47, 0.09);
    padding-top: 0.62rem;
}

.service-list h4,
.service-list p {
    margin: 0;
}

.partner-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.partner-matrix article {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    padding: 1.15rem;
}

.partner-matrix article > span {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(7, 26, 47, 0.14);
    border-radius: 50%;
}

.partner-matrix article > span::before,
.partner-matrix article > span::after {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 22px;
    height: 1px;
    transform-origin: left center;
    content: "";
    background: var(--theme-line);
}

.partner-matrix article > span::after {
    transform: rotate(90deg);
}

.role-board {
    display: grid;
    gap: 0.9rem;
}

.role-board article {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 100px;
    padding: 1rem 1.2rem;
}

.role-board p {
    margin: 0;
}

.scene__inner--contact {
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
}

.contact-details {
    display: grid;
    gap: 0.8rem;
    margin-top: 2rem;
}

.contact-details div {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
}

.contact-details strong {
    color: var(--ink);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-form {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
}

.form-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(7, 26, 47, 0.09);
    padding-bottom: 0.9rem;
}

.form-head h3,
.form-head p {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(7, 26, 47, 0.13);
    border-radius: 8px;
    padding: 0.82rem 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    color: var(--ink);
    outline: none;
    transition: border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}

.contact-form textarea {
    min-height: 126px;
    resize: vertical;
}

.contact-form select {
    cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(200, 169, 104, 0.8);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 0 3px rgba(200, 169, 104, 0.12);
}

.contact-form ::placeholder {
    color: rgba(82, 97, 116, 0.7);
}

.form-wide,
.file-field {
    grid-column: 1 / -1;
}

.file-field input {
    padding: 0.7rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.has-error input,
.has-error select,
.has-error textarea {
    border-color: rgba(255, 103, 103, 0.92);
}

.contact-form em {
    color: #ff9999;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
}

.form-status {
    border: 1px solid rgba(7, 26, 47, 0.12);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.form-status--success {
    border-color: rgba(73, 161, 134, 0.6);
    background: rgba(29, 106, 88, 0.22);
}

.form-status--error,
.form-status--mail,
.form-status--spam {
    border-color: rgba(255, 103, 103, 0.55);
    background: rgba(120, 30, 30, 0.22);
}

.form-submit {
    justify-self: start;
}

.side-nav {
    position: fixed;
    top: 50%;
    right: 2.2rem;
    z-index: 40;
    display: grid;
    gap: 0.62rem;
    transform: translateY(-50%);
}

.side-nav__track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: rgba(7, 26, 47, 0.12);
}

.side-nav__track span {
    display: block;
    width: 1px;
    height: 0;
    background: linear-gradient(var(--gold), rgba(7, 26, 47, 0.38));
    transition: height 520ms var(--ease);
}

.side-nav button {
    position: relative;
    z-index: 1;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(7, 26, 47, 0.13);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--quiet);
    cursor: pointer;
    transition: border-color 220ms ease, color 220ms ease, transform 220ms ease, background 220ms ease;
}

.side-nav button span {
    font-size: 0.64rem;
    font-weight: 800;
}

.side-nav button.is-active,
.side-nav button:hover {
    border-color: rgba(200, 169, 104, 0.8);
    background: rgba(200, 169, 104, 0.16);
    color: var(--ink);
    transform: scale(1.08);
}

.section-controls {
    position: fixed;
    right: 2.2rem;
    bottom: 1.6rem;
    z-index: 42;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.section-controls__button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(7, 26, 47, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.section-controls__button:hover {
    border-color: rgba(200, 169, 104, 0.7);
    color: var(--ink);
    transform: translateY(-1px);
}

#section-counter {
    min-width: 68px;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
}

.site-footer {
    position: fixed;
    bottom: 1.4rem;
    left: 3.4rem;
    z-index: 30;
    display: grid;
    max-width: 640px;
    gap: 0.35rem;
    pointer-events: none;
    color: rgba(7, 26, 47, 0.72);
    opacity: 0.58;
}

.site-footer div:first-child {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.site-footer strong {
    color: var(--ink);
    font-size: 0.82rem;
}

.site-footer span,
.site-footer p,
.site-footer a {
    font-size: 0.72rem;
}

.site-footer p {
    margin: 0;
    color: rgba(82, 97, 116, 0.82);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    pointer-events: auto;
}

.site-footer__links a {
    color: rgba(7, 26, 47, 0.72);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: color 180ms ease, text-decoration-color 180ms ease;
}

.site-footer__links a:hover {
    color: var(--gold);
    text-decoration-color: currentColor;
}

.no-js .scene {
    position: relative;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1280px) {
    .site-header {
        padding-inline: 2rem;
    }

    .scene__inner {
        width: min(1160px, calc(100vw - 4rem));
    }

    h1,
    h2 {
        font-size: 4rem;
    }

    .top-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 980px) {
    body {
        overflow: hidden;
    }

    .site-header {
        min-height: 74px;
        padding: 0.95rem 1rem;
    }

    .language-link {
        display: none;
    }

    .scene__inner,
    .scene__inner--hero,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--contact,
    .scene__inner--wide {
        grid-template-columns: 1fr;
        align-content: start;
        align-items: start;
        width: min(100vw - 2rem, 720px);
        padding: 6rem 0 7rem;
        gap: 1.4rem;
    }

    .hero-copy {
        padding-top: 1rem;
    }

    h1,
    h2 {
        font-size: 3rem;
        line-height: 1.03;
    }

    .lead {
        font-size: 1rem;
        line-height: 1.62;
    }

    .headquarters-visual {
        min-height: 300px;
        order: -1;
    }

    .hero-stats,
    .company-deck,
    .why-grid,
    .partner-matrix,
    .form-grid,
    .about-system {
        grid-template-columns: 1fr;
    }

    .hero-stats div + div {
        border-top: 1px solid rgba(7, 26, 47, 0.1);
        border-left: 0;
    }

    .company-card {
        min-height: 220px;
    }

    .company-card__logo-wrap {
        min-height: 68px;
    }

    .company-card__logo,
    .section-company-logo,
    .service-visual__logo {
        max-height: 54px;
    }

    .service-visual {
        min-height: 200px;
    }

    .service-visual--with-photo {
        min-height: 280px;
    }

    .role-board article {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .side-nav {
        right: 0.65rem;
        gap: 0.4rem;
    }

    .side-nav button {
        width: 26px;
        height: 26px;
    }

    .side-nav button span {
        font-size: 0;
    }

    .side-nav button::after {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        content: "";
        background: currentColor;
    }

    .section-controls {
        right: 1rem;
        bottom: 1rem;
    }

    .site-footer {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        max-width: none;
        opacity: 0;
        pointer-events: none;
    }

    body[data-active-section="contact"] .site-footer {
        opacity: 0.7;
        pointer-events: auto;
    }
}

@media (max-width: 620px) {
    .brand__logo {
        width: 148px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu a {
        font-size: 1.65rem;
    }

    .scene__inner,
    .scene__inner--hero,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--contact,
    .scene__inner--wide {
        width: calc(100vw - 1.4rem);
        padding-top: 5.4rem;
    }

    h1,
    h2 {
        font-size: 2.45rem;
    }

    .eyebrow {
        font-size: 0.7rem;
    }

    .eyebrow::before {
        width: 28px;
    }

    .cta-row {
        align-items: stretch;
    }

    .magnetic-btn {
        width: 100%;
        min-height: 50px;
        justify-content: space-between;
    }

    .form-head {
        display: grid;
    }

    .contact-form {
        padding: 0.8rem;
    }

    .section-controls {
        display: none;
    }

    .preloader__frame {
        inset: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .preloader {
        display: none !important;
    }

    .scene {
        transition: none !important;
    }
}

/* Premium minimal direction inspired by high-end holding websites. */
:root {
    --ink: #f6f8fb;
    --muted: rgba(236, 241, 247, 0.72);
    --quiet: rgba(236, 241, 247, 0.48);
    --black: #17181b;
    --navy: #071a2f;
    --graphite: #22252a;
    --steel: #96a3b3;
    --silver: #eef3f8;
    --gold: #b89b5e;
    --line: rgba(255, 255, 255, 0.11);
    --glass: rgba(26, 28, 33, 0.78);
    --glass-strong: rgba(29, 31, 37, 0.92);
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    --header-h: 92px;
}

html {
    background: #17181b;
    color: var(--ink);
}

body {
    background:
        linear-gradient(180deg, rgba(44, 47, 53, 0.9), rgba(22, 23, 27, 1) 42%, rgba(18, 19, 22, 1)),
        #17181b;
    color: var(--ink);
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 112px 112px;
    opacity: 0.5;
    mask-image: linear-gradient(180deg, black, transparent 86%);
}

.particle-field {
    opacity: 0.2;
    mix-blend-mode: screen;
}

.preloader {
    background:
        linear-gradient(180deg, #25272b, #17181b 64%, #111216);
}

.preloader__frame {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.035);
}

.preloader__logo {
    width: min(250px, 66vw);
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    background: rgba(246, 248, 251, 0.95);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.preloader p,
.preloader strong {
    color: rgba(246, 248, 251, 0.82);
}

.preloader__bar {
    background: rgba(255, 255, 255, 0.13);
}

.preloader__bar i {
    background: linear-gradient(90deg, var(--gold), #ffffff);
}

.site-header {
    grid-template-columns: auto 1fr auto;
    min-height: var(--header-h);
    padding: 1.5rem 3.1rem;
    background: linear-gradient(180deg, rgba(28, 30, 34, 0.94), rgba(28, 30, 34, 0.7), rgba(28, 30, 34, 0));
}

.brand {
    border-radius: 4px;
    padding: 0.34rem 0.58rem;
    background: rgba(246, 248, 251, 0.96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.brand__logo {
    width: clamp(140px, 11vw, 188px);
}

.top-nav {
    justify-content: flex-end;
    gap: 1.35rem;
}

.top-nav a,
.language-link {
    border-radius: 0;
    padding: 0.4rem 0;
    background: transparent;
    color: rgba(246, 248, 251, 0.86);
    font-size: 0.92rem;
    font-weight: 650;
}

.top-nav a::after {
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--gold);
}

.top-nav a:hover,
.top-nav a.is-active,
.language-link:hover {
    border-color: transparent;
    background: transparent;
    color: #fff;
}

.language-link {
    display: grid;
    min-width: 72px;
    min-height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 0.7rem 1rem;
    background: rgba(20, 21, 25, 0.78);
}

.menu-toggle {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(20, 21, 25, 0.78);
}

.menu-toggle span {
    background: #fff;
}

.mobile-menu::before {
    background: rgba(19, 20, 23, 0.96);
}

.mobile-menu a {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 500;
}

.experience,
.scene {
    background: transparent;
}

.scene__ambient {
    background:
        radial-gradient(circle at 76% 36%, rgba(120, 139, 158, 0.18), transparent 30rem),
        linear-gradient(180deg, rgba(45, 47, 52, 0.62), rgba(20, 21, 24, 0.94) 74%);
}

.scene__grid {
    border-color: rgba(255, 255, 255, 0.045);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px);
    opacity: 0.22;
}

.scene__beam {
    background: linear-gradient(90deg, transparent, rgba(184, 155, 94, 0.5), transparent);
    opacity: 0.2;
}

.scene__inner {
    width: min(1824px, calc(100vw - 5rem));
    padding: 7rem 0 2.6rem;
    overflow-y: auto;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.scene__inner--hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    align-content: stretch;
    gap: 1.4rem;
}

.hero-copy {
    position: relative;
    z-index: 5;
    align-self: center;
    max-width: min(960px, 58vw);
    padding-top: 3.5vh;
}

.scene-copy {
    max-width: 700px;
}

.eyebrow {
    margin-bottom: 1rem;
    color: rgba(184, 155, 94, 0.95);
    font-size: 0.72rem;
    letter-spacing: 0;
}

.eyebrow::before {
    width: 36px;
    background: var(--gold);
}

h1,
h2 {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: #f7f8fa;
}

h1 {
    margin-bottom: 1.2rem;
    color: rgba(246, 248, 251, 0.24);
    font-size: clamp(4.6rem, 6.7vw, 8.2rem);
    line-height: 1.08;
    white-space: pre-line;
}

h2 {
    font-size: clamp(3.2rem, 5.3vw, 6.7rem);
    line-height: 1.02;
}

h3 {
    color: #fff;
    font-size: clamp(1.6rem, 2vw, 2.45rem);
    font-weight: 500;
    letter-spacing: 0;
}

.lead {
    max-width: 560px;
    color: rgba(246, 248, 251, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.35rem);
    line-height: 1.55;
}

.scene-copy p:not(.eyebrow):not(.lead):not(.motto) {
    color: rgba(236, 241, 247, 0.62);
    font-size: 0.96rem;
    line-height: 1.55;
}

.headquarters-visual {
    position: absolute;
    top: 10vh;
    right: -1vw;
    bottom: 4vh;
    z-index: 2;
    width: min(56vw, 920px);
    min-height: 0;
    opacity: 0.72;
    pointer-events: none;
}

.headquarters-visual::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(23, 24, 27, 0), rgba(23, 24, 27, 0.24) 64%, rgba(23, 24, 27, 0.78)),
        url("../img/4eck-real-estate-development.jpg") center 10% / cover no-repeat;
    filter: grayscale(0.22) saturate(0.75) contrast(1.06);
    mask-image: linear-gradient(90deg, transparent 0, black 17%, black 78%, transparent 100%);
}

.hq__glass,
.hq__table,
.hq__city,
.hq__reflection {
    display: none;
}

.hero-panels {
    position: relative;
    z-index: 7;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 14px;
    background: rgba(22, 23, 27, 0.76);
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(24px);
}

.hero-panel {
    position: relative;
    display: grid;
    min-height: clamp(230px, 27vh, 340px);
    align-content: start;
    gap: 1.35rem;
    padding: clamp(1.5rem, 2.55vw, 3rem);
    color: #fff;
    isolation: isolate;
    transition: background 260ms ease, transform 260ms ease;
}

.hero-panel + .hero-panel {
    border-left: 1px solid rgba(255, 255, 255, 0.085);
}

.hero-panel::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: radial-gradient(circle at 75% 35%, rgba(124, 143, 160, 0.22), transparent 42%);
    opacity: 0;
    transition: opacity 260ms ease;
}

.hero-panel:hover,
.hero-panel:focus-visible {
    background: rgba(38, 42, 49, 0.82);
}

.hero-panel:hover::before,
.hero-panel:focus-visible::before {
    opacity: 1;
}

.hero-panel h3 {
    margin: 0;
}

.mission-panel h3,
.info-panel h3,
.why-grid h3,
.service-list h3,
.service-list h4,
.role-board span,
.contact-details strong,
.form-head h3 {
    font-size: 1rem;
    line-height: 1.25;
}

.service-list h3,
.role-board span,
.contact-details span,
.form-head p {
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-panel p {
    max-width: 330px;
    margin: 0;
    color: rgba(246, 248, 251, 0.78);
    font-size: clamp(0.95rem, 1vw, 1.12rem);
    line-height: 1.35;
}

.hero-panel span {
    align-self: end;
    margin-top: auto;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-panel span::after,
.company-card i::after {
    content: " ->";
}

.scene__inner--split,
.scene__inner--service,
.scene__inner--contact {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(2rem, 5vw, 6rem);
}

.scene__inner--wide {
    grid-template-columns: minmax(0, 0.68fr) minmax(580px, 1.32fr);
    gap: clamp(2rem, 4vw, 5rem);
}

.mission-panel,
.info-panel,
.company-card,
.why-grid article,
.partner-matrix article,
.role-board article,
.service-list,
.contact-form,
.contact-details div {
    border-color: rgba(255, 255, 255, 0.085);
    border-radius: 14px;
    background: rgba(27, 29, 34, 0.78);
    box-shadow: var(--shadow);
}

.mission-panel,
.info-panel {
    min-height: 170px;
}

.mission-panel span,
.company-card__sector,
.role-board span,
.contact-details span,
.form-head p,
.file-field small,
.service-list h3 {
    color: var(--gold);
}

.mission-panel p,
.info-panel p,
.why-grid p,
.partner-matrix p,
.role-board p,
.service-list p,
.company-card p {
    color: rgba(236, 241, 247, 0.68);
    line-height: 1.45;
}

.value-chip {
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
}

.company-deck {
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 14px;
}

.company-card {
    min-height: clamp(330px, 45vh, 480px);
    border: 0;
    border-radius: 0;
    padding: clamp(1.5rem, 2.5vw, 2.6rem);
    background: rgba(24, 25, 29, 0.84);
}

.company-card + .company-card {
    border-left: 1px solid rgba(255, 255, 255, 0.085);
}

.company-card__logo-wrap {
    min-height: 92px;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.company-card__logo {
    max-height: 76px;
}

.company-card p {
    max-width: 330px;
    margin-top: 1rem;
    font-size: 1.02rem;
}

.company-card i {
    right: 2rem;
    bottom: 1.8rem;
    width: auto;
    height: auto;
    border: 0;
    color: var(--gold);
    font-size: 0;
}

.company-card i::after {
    position: static;
    display: block;
    width: auto;
    height: auto;
    transform: none;
    border: 0;
    color: var(--gold);
    font-size: 1.15rem;
}

.service-visual {
    min-height: clamp(360px, 57vh, 620px);
    border-color: rgba(255, 255, 255, 0.085);
    border-radius: 14px;
    background: rgba(24, 25, 29, 0.82);
    box-shadow: var(--shadow);
}

.service-photo {
    inset: 0;
    border: 0;
    border-radius: 14px;
    background: #1c1f24;
}

.service-photo::after {
    background:
        linear-gradient(180deg, rgba(16, 17, 20, 0.08), transparent 40%),
        linear-gradient(0deg, rgba(14, 15, 18, 0.68), transparent 54%);
}

.service-visual__logo,
.section-company-logo {
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 7px;
    background: rgba(246, 248, 251, 0.94);
}

.service-visual__logo {
    top: 1.25rem;
    left: 1.25rem;
    max-width: min(220px, 58%);
}

.service-photo figcaption {
    right: 1.25rem;
    bottom: 1.25rem;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 19, 22, 0.78);
}

.service-list {
    padding: 1.4rem;
    gap: 0;
}

.service-list article {
    border-top-color: rgba(255, 255, 255, 0.075);
    padding: 0.82rem 0;
}

.partner-matrix {
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.085);
    border-radius: 14px;
}

.partner-matrix article {
    min-height: 210px;
    border: 0;
    border-radius: 0;
    padding: 1.55rem;
}

.partner-matrix article + article {
    border-left: 1px solid rgba(255, 255, 255, 0.085);
}

.role-board article {
    min-height: 116px;
}

.contact-details strong {
    color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
}

.contact-form label,
.form-head h3 {
    color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(184, 155, 94, 0.8);
    background: rgba(255, 255, 255, 0.085);
}

.magnetic-btn {
    min-height: 48px;
    border-radius: 100px;
    color: #fff;
}

.magnetic-btn--primary {
    border-color: rgba(184, 155, 94, 0.5);
    background: rgba(184, 155, 94, 0.14);
}

.magnetic-btn--secondary {
    background: rgba(255, 255, 255, 0.055);
}

.magnetic-btn i {
    border-color: rgba(255, 255, 255, 0.18);
}

.side-nav {
    right: 1.55rem;
}

.side-nav__track {
    background: rgba(255, 255, 255, 0.08);
}

.side-nav__track span {
    background: linear-gradient(var(--gold), rgba(255, 255, 255, 0.32));
}

.side-nav button {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(22, 23, 27, 0.66);
    color: rgba(246, 248, 251, 0.52);
}

.side-nav button.is-active,
.side-nav button:hover {
    background: rgba(184, 155, 94, 0.14);
    color: #fff;
}

.section-controls {
    color: rgba(246, 248, 251, 0.58);
}

.section-controls__button {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(22, 23, 27, 0.66);
    color: #fff;
}

#section-counter {
    color: rgba(246, 248, 251, 0.78);
}

.site-footer {
    display: none;
}

@media (max-width: 1280px) {
    .top-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-copy {
        max-width: min(900px, 70vw);
    }

    .hero-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panel:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.085);
    }

    .hero-panel:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.085);
    }
}

@media (max-width: 980px) {
    .site-header {
        min-height: 72px;
        padding: 0.85rem 1rem;
    }

    .brand__logo {
        width: 142px;
    }

    .scene__inner,
    .scene__inner--hero,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--contact,
    .scene__inner--wide {
        grid-template-columns: 1fr;
        width: min(100vw - 1.4rem, 760px);
        padding: 5.7rem 0 5.2rem;
        gap: 1.3rem;
    }

    .hero-copy {
        max-width: 100%;
        padding-top: 0;
    }

    h1 {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    h2 {
        font-size: clamp(2.55rem, 10vw, 4.4rem);
    }

    .headquarters-visual {
        top: 7rem;
        right: -30vw;
        width: 96vw;
        height: 48vh;
        opacity: 0.24;
    }

    .hero-panels,
    .company-deck,
    .partner-matrix {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .company-card,
    .partner-matrix article {
        min-height: 168px;
        border-left: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.085);
    }

    .hero-panel:first-child,
    .company-card:first-child,
    .partner-matrix article:first-child {
        border-top: 0;
    }

    .company-card {
        padding: 1.25rem;
    }

    .service-visual {
        min-height: 300px;
    }

    .side-nav {
        right: 0.5rem;
    }
}

@media (max-width: 620px) {
    .brand {
        padding: 0.25rem 0.42rem;
    }

    .brand__logo {
        width: 128px;
    }

    .language-link {
        min-width: 58px;
        min-height: 44px;
        border-radius: 10px;
    }

    .hero-panel {
        padding: 1.2rem;
    }

    .hero-panel h3 {
        font-size: 1.55rem;
    }

    .scene__inner,
    .scene__inner--hero,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--contact,
    .scene__inner--wide {
        width: calc(100vw - 1rem);
        padding-top: 5.2rem;
    }

    .side-nav {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .headquarters-visual,
    .service-visual,
    .tilt-card,
    .magnetic-btn {
        transform: none !important;
    }
}

/* Light architectural hero with scroll-driven shadow veil. */
:root {
    --hero-progress: 0;
    --hero-veil-y: 72%;
    --hero-dark-opacity: 0;
    --hero-bright-opacity: 1;
    --hero-title-opacity: 1;
    --hero-title-y: 0px;
    --hero-title-color: rgba(18, 20, 24, 1);
    --hero-video-brightness: 1;
    --hero-video-saturation: 1;
    --hero-card-opacity: 0;
    --hero-card-y: 44px;
}

body {
    background: #f7f8fa;
    color: #071a2f;
}

body::before {
    opacity: 0.18;
}

.site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    backdrop-filter: none;
}

.brand {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.brand__logo {
    width: clamp(154px, 10vw, 210px);
}

.top-nav a,
.language-link {
    color: rgba(7, 26, 47, 0.86);
}

.language-link {
    border-color: rgba(7, 26, 47, 0.08);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.menu-toggle {
    border-color: rgba(7, 26, 47, 0.14);
    background: rgba(255, 255, 255, 0.48);
}

.menu-toggle span {
    background: #071a2f;
}

body[data-active-section="hero"].is-hero-dark .site-header {
    background: linear-gradient(180deg, rgba(19, 20, 23, 0.42), rgba(19, 20, 23, 0));
}

body[data-active-section="hero"].is-hero-dark .top-nav a,
body[data-active-section="hero"].is-hero-dark .language-link {
    color: rgba(255, 255, 255, 0.9);
}

body[data-active-section="hero"].is-hero-dark .language-link,
body[data-active-section="hero"].is-hero-dark .menu-toggle {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(18, 19, 22, 0.55);
}

body[data-active-section="hero"].is-hero-dark .menu-toggle span {
    background: #fff;
}

body[data-active-section="overview"] .site-header {
    background: linear-gradient(180deg, rgba(17, 18, 22, 0.5), rgba(17, 18, 22, 0));
}

body[data-active-section="overview"] .top-nav a,
body[data-active-section="overview"] .language-link {
    color: rgba(255, 255, 255, 0.9);
}

body[data-active-section="overview"] .language-link,
body[data-active-section="overview"] .menu-toggle {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(18, 19, 22, 0.55);
}

body[data-active-section="overview"] .menu-toggle span {
    background: #fff;
}

#hero {
    background: #f7f8fa;
}

#hero .scene__ambient {
    opacity: 0;
}

.hero-media,
.hero-brightness,
.hero-veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-media {
    z-index: 0;
    overflow: hidden;
    background: #dfe7ef;
}

.hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.015);
    filter: brightness(var(--hero-video-brightness)) saturate(var(--hero-video-saturation)) contrast(1.02);
    will-change: filter, opacity, transform;
}

.hero-brightness {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(255, 255, 255, 0.16));
    opacity: var(--hero-bright-opacity);
}

.hero-veil {
    z-index: 2;
    transform: translateY(var(--hero-veil-y));
    background:
        linear-gradient(180deg, rgba(18, 19, 22, 0) 0%, rgba(18, 19, 22, 0.82) 18%, rgba(18, 19, 22, 0.98) 48%, #111216 100%),
        radial-gradient(circle at 74% 34%, rgba(108, 124, 140, 0.12), transparent 25rem);
    opacity: var(--hero-dark-opacity);
    will-change: transform, opacity;
}

#hero::after {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    content: "";
    background: linear-gradient(180deg, rgba(20, 21, 24, 0), rgba(20, 21, 24, 0.86));
    opacity: var(--hero-dark-opacity);
}

#hero .scene__inner--hero {
    z-index: 4;
    width: min(1820px, calc(100vw - 5.2rem));
    padding: clamp(6.8rem, 11vh, 9rem) 0 clamp(1.4rem, 3vh, 2.6rem);
}

#hero .hero-copy {
    position: absolute;
    bottom: clamp(5.6rem, 13vh, 9rem);
    left: 0;
    max-width: min(720px, 48vw);
    transform: translateY(var(--hero-title-y));
    opacity: var(--hero-title-opacity);
    will-change: transform, opacity;
}

#hero .eyebrow {
    color: rgba(7, 26, 47, 0.76);
}

body.is-hero-dark #hero .eyebrow {
    color: rgba(184, 155, 94, 0.9);
}

#hero h1 {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--hero-title-color);
    font-size: clamp(2.85rem, 4.55vw, 5.25rem);
    line-height: 1.12;
    font-weight: 450;
}

#hero .lead {
    max-width: 500px;
    color: rgba(7, 26, 47, 0.72);
    font-size: clamp(0.98rem, 1.08vw, 1.18rem);
    line-height: 1.55;
}

#overview {
    background: #111216;
}

#overview .scene__ambient {
    display: none;
}

.overview-media,
.overview-dark {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.overview-media {
    z-index: 0;
    overflow: hidden;
    background: #111216;
}

.overview-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.58;
    filter: brightness(0.42) saturate(0.56) contrast(0.92);
    transform: scale(1.015);
}

.overview-dark {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(17, 18, 22, 0.64), rgba(17, 18, 22, 0.94) 48%, #111216 100%),
        linear-gradient(90deg, rgba(17, 18, 22, 0.3), rgba(17, 18, 22, 0.18) 54%, rgba(17, 18, 22, 0.7));
}

.scene__inner--overview {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-content: end;
    gap: clamp(2rem, 5vh, 4rem);
    padding-top: clamp(7.5rem, 13vh, 10rem);
    padding-bottom: clamp(1.4rem, 3vh, 2.6rem);
}

.overview-copy {
    align-self: end;
    max-width: min(780px, 52vw);
}

.overview-copy h2 {
    margin: 0;
    color: rgba(231, 234, 239, 0.26);
    font-size: clamp(3rem, 4.8vw, 5.8rem);
    line-height: 1.1;
    font-weight: 500;
    white-space: pre-line;
}

.overview-panels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(16, 17, 21, 0.78);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.overview-card {
    position: relative;
    display: grid;
    min-height: clamp(210px, 27vh, 320px);
    align-content: start;
    gap: 1.2rem;
    padding: clamp(1.35rem, 2.35vw, 2.75rem);
    color: #fff;
}

.overview-card + .overview-card {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.overview-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 1.9vw, 2.25rem);
    line-height: 1.15;
    font-weight: 520;
}

.overview-card p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    line-height: 1.4;
}

.overview-card span {
    align-self: end;
    margin-top: auto;
    color: #e35a5f;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.overview-card span::after {
    content: " ->";
}

body.is-hero-dark #hero .lead {
    color: rgba(255, 255, 255, 0.58);
}

#hero .hero-panels {
    position: absolute;
    right: 0;
    bottom: clamp(1rem, 2.2vh, 2rem);
    left: 0;
    z-index: 7;
    opacity: var(--hero-card-opacity);
    transform: translateY(var(--hero-card-y));
    pointer-events: none;
    will-change: opacity, transform;
}

body.is-hero-dark #hero .hero-panels {
    pointer-events: auto;
}

#hero .hero-panel {
    min-height: clamp(230px, 26vh, 350px);
    background: rgba(21, 22, 26, 0.78);
    backdrop-filter: blur(18px);
}

#hero .hero-panel h3 {
    color: #fff;
    font-size: clamp(1.6rem, 1.95vw, 2.35rem);
}

#hero .hero-panel p {
    color: rgba(255, 255, 255, 0.76);
}

#hero .hero-panel span {
    color: #e35a5f;
}

.scene:not(#hero):not(#overview) .scene__ambient {
    background:
        radial-gradient(circle at 86% 16%, rgba(7, 26, 47, 0.08), transparent 27rem),
        linear-gradient(180deg, #fbfcfd, #eef3f8);
}

.scene:not(#hero):not(#overview) h2,
.scene:not(#hero):not(#overview) h3,
.scene:not(#hero):not(#overview) h4,
.scene:not(#hero):not(#overview) .contact-details strong,
.scene:not(#hero):not(#overview) .form-head h3 {
    color: #071a2f;
}

.scene:not(#hero):not(#overview) .lead,
.scene:not(#hero):not(#overview) .scene-copy p:not(.eyebrow):not(.lead):not(.motto),
.scene:not(#hero):not(#overview) .mission-panel p,
.scene:not(#hero):not(#overview) .info-panel p,
.scene:not(#hero):not(#overview) .why-grid p,
.scene:not(#hero):not(#overview) .partner-matrix p,
.scene:not(#hero):not(#overview) .role-board p,
.scene:not(#hero):not(#overview) .service-list p,
.scene:not(#hero):not(#overview) .company-card p {
    color: #526174;
}

.scene:not(#hero):not(#overview) .mission-panel,
.scene:not(#hero):not(#overview) .info-panel,
.scene:not(#hero):not(#overview) .company-card,
.scene:not(#hero):not(#overview) .why-grid article,
.scene:not(#hero):not(#overview) .partner-matrix article,
.scene:not(#hero):not(#overview) .role-board article,
.scene:not(#hero):not(#overview) .service-list,
.scene:not(#hero):not(#overview) .contact-form,
.scene:not(#hero):not(#overview) .contact-details div {
    border-color: rgba(7, 26, 47, 0.11);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 90px rgba(7, 26, 47, 0.12);
}

.scene:not(#hero):not(#overview) .contact-form label {
    color: #071a2f;
}

.scene:not(#hero):not(#overview) .contact-form input,
.scene:not(#hero):not(#overview) .contact-form select,
.scene:not(#hero):not(#overview) .contact-form textarea {
    border-color: rgba(7, 26, 47, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: #071a2f;
}

.scene:not(#hero):not(#overview) .magnetic-btn {
    color: #071a2f;
}

@media (max-width: 1280px) {
    #hero .hero-copy {
        max-width: min(690px, 76vw);
    }
}

@media (max-width: 980px) {
    .site-header {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
    }

    #hero .scene__inner--hero {
        width: calc(100vw - 1.3rem);
        padding-top: 5.6rem;
    }

    #hero .hero-copy {
        bottom: clamp(4.8rem, 11vh, 7rem);
        max-width: min(92vw, 620px);
    }

    #hero h1 {
        font-size: clamp(2.45rem, 8vw, 4rem);
    }

    .scene__inner--overview {
        width: calc(100vw - 1.3rem);
        grid-template-rows: auto auto;
        align-content: end;
        padding-top: 5.8rem;
        gap: 1.4rem;
    }

    .overview-copy {
        max-width: min(92vw, 620px);
    }

    .overview-copy h2 {
        font-size: clamp(2.35rem, 8vw, 4rem);
    }

    .overview-panels {
        grid-template-columns: 1fr;
        max-height: 48vh;
        overflow-y: auto;
    }

    .overview-card {
        min-height: 158px;
    }
}

@media (max-width: 620px) {
    .brand__logo {
        width: 138px;
    }

    #hero .hero-copy {
        bottom: clamp(4.5rem, 10vh, 6rem);
    }

    #hero h1 {
        font-size: clamp(2.05rem, 10vw, 3.25rem);
    }

    .overview-copy h2 {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

    .overview-card {
        padding: 1.2rem;
    }
}

/* Premium shared opening scene: Sections 1-3 use one continuous visual background. */
.experience {
    isolation: isolate;
}

.shared-bg-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0f1115;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 520ms ease, visibility 520ms ease;
}

body.is-shared-scene .shared-bg-scene {
    opacity: 1;
    visibility: visible;
}

.shared-scene-title {
    position: fixed;
    left: clamp(1.4rem, 2.8vw, 3.4rem);
    bottom: clamp(5.4rem, 12vh, 8.6rem);
    z-index: 5;
    width: min(700px, 48vw);
    color: var(--hero-title-color);
    font-size: clamp(2.72rem, 4.35vw, 5.05rem);
    line-height: 1.12;
    font-weight: 450;
    letter-spacing: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, var(--hero-title-y), 0);
    transition: opacity 360ms ease, color 240ms linear;
    will-change: transform, opacity, color;
}

body[data-active-section="hero"] .shared-scene-title,
body[data-active-section="overview"] .shared-scene-title {
    opacity: var(--hero-title-opacity);
}

body[data-active-section="about"] .shared-scene-title {
    opacity: 0;
}

.shared-bg-video,
.shared-bg-brightness,
.shared-bg-shadow,
.shared-bg-ink {
    position: absolute;
    inset: 0;
}

.shared-bg-video {
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.018);
    filter: brightness(var(--hero-video-brightness)) saturate(var(--hero-video-saturation)) contrast(1.02);
    will-change: filter, transform;
}

.shared-bg-brightness {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.02) 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 40%, rgba(255, 255, 255, 0.16));
    opacity: var(--hero-bright-opacity);
    will-change: opacity;
}

.shared-bg-shadow {
    z-index: 2;
    transform: translateY(var(--hero-veil-y));
    background:
        linear-gradient(180deg, rgba(13, 15, 19, 0) 0%, rgba(13, 15, 19, 0.7) 17%, rgba(13, 15, 19, 0.96) 47%, #0d0f13 100%),
        radial-gradient(circle at 72% 34%, rgba(122, 140, 158, 0.16), transparent 24rem);
    opacity: var(--hero-dark-opacity);
    will-change: transform, opacity;
}

.shared-bg-ink {
    z-index: 3;
    background:
        linear-gradient(90deg, rgba(13, 15, 19, 0.98) 0%, rgba(13, 15, 19, 0.94) 52%, rgba(13, 15, 19, 0.73) 76%, rgba(13, 15, 19, 0.58) 100%),
        linear-gradient(180deg, rgba(13, 15, 19, 0.72), #0d0f13 78%);
    opacity: calc(var(--hero-dark-opacity) * 0.98);
    will-change: opacity;
}

body.is-dark-flow .shared-bg-scene {
    background: #0d0f13;
}

body[data-active-section="overview"] .site-header,
body[data-active-section="about"] .site-header {
    background: linear-gradient(180deg, rgba(13, 15, 19, 0.56), rgba(13, 15, 19, 0));
}

body[data-active-section="overview"] .top-nav a,
body[data-active-section="overview"] .language-link,
body[data-active-section="about"] .top-nav a,
body[data-active-section="about"] .language-link {
    color: rgba(255, 255, 255, 0.9);
}

body[data-active-section="overview"] .language-link,
body[data-active-section="overview"] .menu-toggle,
body[data-active-section="about"] .language-link,
body[data-active-section="about"] .menu-toggle {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(18, 19, 22, 0.55);
}

body[data-active-section="overview"] .menu-toggle span,
body[data-active-section="about"] .menu-toggle span {
    background: #fff;
}

#hero,
#overview,
#about {
    background: transparent;
}

#hero .scene__ambient,
#overview .scene__ambient,
#about .scene__ambient {
    display: none;
}

#hero::after {
    background:
        linear-gradient(180deg, rgba(13, 15, 19, 0), rgba(13, 15, 19, 0.72)),
        linear-gradient(90deg, rgba(13, 15, 19, 0.08), rgba(13, 15, 19, 0.48));
    opacity: calc(var(--hero-dark-opacity) * 0.82);
}

#hero .scene__inner--hero {
    width: min(1820px, calc(100vw - 5.4rem));
    padding-top: clamp(6rem, 10vh, 8rem);
}

#hero .hero-copy {
    bottom: clamp(5.4rem, 12vh, 8.6rem);
    max-width: min(700px, 48vw);
}

#hero .hero-copy,
#overview .overview-copy {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

#hero h1 {
    font-size: clamp(2.72rem, 4.35vw, 5.05rem);
    letter-spacing: 0;
}

.scene__inner--overview {
    width: min(1820px, calc(100vw - 5.4rem));
    grid-template-rows: auto auto;
    align-content: end;
    gap: clamp(1.6rem, 3.2vh, 2.8rem);
    padding-top: clamp(7.2rem, 12vh, 9rem);
    padding-bottom: clamp(1.2rem, 2.8vh, 2rem);
}

.overview-copy {
    max-width: min(760px, 52vw);
}

.overview-copy h2 {
    color: rgba(236, 239, 244, 0.28);
    font-size: clamp(3rem, 4.55vw, 5.45rem);
    line-height: 1.1;
}

.overview-panels {
    border-color: rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(14, 15, 19, 0.82);
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.36);
}

.overview-card {
    min-height: clamp(205px, 26vh, 300px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
        rgba(17, 18, 22, 0.48);
}

.overview-card:hover,
.overview-card:focus-visible {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
        rgba(24, 26, 31, 0.72);
}

.overview-card h3 {
    font-weight: 520;
}

.overview-card span {
    color: #c7a363;
}

#about {
    color: #f6f8fb;
}

#about .scene__inner--split {
    width: min(1500px, calc(100vw - 7rem));
    grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
    gap: clamp(2rem, 6vw, 7rem);
}

#about .eyebrow {
    color: #c7a363;
}

#about h2,
#about h3,
#about h4,
#about .mission-panel span {
    color: #f7f9fc;
}

#about.scene:not(#hero):not(#overview) h2 {
    color: #f8fafc;
}

#about.scene:not(#hero):not(#overview) .lead {
    color: rgba(248, 250, 252, 0.74);
}

#about .lead,
#about .scene-copy p:not(.eyebrow):not(.lead):not(.motto),
#about .mission-panel p,
#about .info-panel p {
    color: rgba(236, 241, 247, 0.68);
}

#about .mission-panel,
#about .info-panel {
    border-color: rgba(255, 255, 255, 0.105);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        rgba(16, 17, 21, 0.76);
    box-shadow: 0 30px 110px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
}

#about .value-chip {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 980px) {
    #hero .scene__inner--hero,
    .scene__inner--overview,
    #about .scene__inner--split {
        width: calc(100vw - 1.4rem);
        padding-top: 5.7rem;
    }

    #hero .hero-copy {
        bottom: clamp(4.6rem, 10vh, 6.6rem);
        max-width: min(92vw, 620px);
    }

    #hero h1,
    .overview-copy h2,
    .shared-scene-title {
        font-size: clamp(2.3rem, 8.6vw, 4rem);
    }

    .shared-scene-title {
        left: 0.7rem;
        bottom: clamp(4.6rem, 10vh, 6.6rem);
        width: min(92vw, 620px);
    }

    .scene__inner--overview {
        max-height: 100svh;
        overflow-y: auto;
    }

    .overview-copy {
        max-width: min(92vw, 620px);
    }

    .overview-panels {
        grid-template-columns: 1fr;
        max-height: 48vh;
        overflow-y: auto;
    }

    .overview-card {
        min-height: 152px;
    }

    #about .scene__inner--split {
        grid-template-columns: 1fr;
        gap: 1.3rem;
    }
}

/* Final audit polish: calmer typography, tighter rhythm, stronger mobile behavior. */
:root {
    --header-h: 78px;
}

.site-header {
    min-height: var(--header-h);
    padding: 0.95rem clamp(1.25rem, 3vw, 3rem);
}

.brand__logo {
    width: clamp(142px, 9vw, 188px);
}

.top-nav {
    gap: 0.05rem;
}

.top-nav a,
.language-link {
    padding: 0.56rem 0.74rem;
    font-size: 0.74rem;
}

.scene__inner {
    width: min(1380px, calc(100vw - 7rem));
    padding-top: clamp(6.6rem, 10vh, 8rem);
    padding-bottom: clamp(4rem, 7vh, 5.6rem);
}

.shared-scene-title {
    width: min(640px, 46vw);
    bottom: clamp(5rem, 11vh, 7.8rem);
    font-size: clamp(2.45rem, 3.85vw, 4.55rem);
}

.scene:not(#hero):not(#overview) h2 {
    max-width: 820px;
    font-size: clamp(2.55rem, 3.8vw, 4.65rem);
    line-height: 1.04;
}

.lead {
    max-width: 620px;
    font-size: clamp(0.98rem, 1.02vw, 1.08rem);
    line-height: 1.62;
}

.eyebrow {
    margin-bottom: 1rem;
    font-size: 0.72rem;
}

.overview-copy h2 {
    font-size: clamp(2.6rem, 4vw, 4.85rem);
}

.overview-card {
    min-height: clamp(188px, 24vh, 280px);
    padding: clamp(1.2rem, 2vw, 2.35rem);
}

.overview-card h3 {
    font-size: clamp(1.35rem, 1.55vw, 1.9rem);
}

.overview-card p,
.company-card p,
.mission-panel p,
.info-panel p,
.service-list p,
.partner-matrix p,
.role-board p {
    font-size: 0.95rem;
    line-height: 1.52;
}

.company-card {
    min-height: clamp(285px, 38vh, 420px);
}

.company-card__logo-wrap {
    min-height: 78px;
}

.company-card__logo {
    max-height: 62px;
}

.service-visual {
    min-height: clamp(310px, 48vh, 540px);
}

.service-visual--with-photo {
    min-height: clamp(330px, 50vh, 560px);
}

.mission-panel,
.info-panel,
.company-card,
.partner-matrix article,
.role-board article,
.service-list,
.contact-form,
.contact-details div,
.overview-panels {
    border-radius: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    min-height: 48px;
    font-size: 0.95rem;
}

.magnetic-btn {
    min-height: 46px;
}

.magnetic-btn span {
    font-size: 0.78rem;
}

@media (max-width: 1280px) {
    .scene__inner {
        width: min(1120px, calc(100vw - 3.4rem));
    }

    .shared-scene-title {
        width: min(600px, 62vw);
    }
}

@media (max-width: 980px) {
    body::before,
    .particle-field {
        display: none;
    }

    .site-header {
        min-height: 70px;
        padding: 0.78rem 0.95rem;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
        min-width: 44px;
        min-height: 44px;
    }

    .scene__inner,
    #hero .scene__inner--hero,
    .scene__inner--overview,
    #about .scene__inner--split,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--wide,
    .scene__inner--contact {
        width: min(100vw - 1.25rem, 760px);
        padding-top: 5.25rem;
        padding-bottom: 4rem;
        gap: 1.2rem;
    }

    .shared-scene-title {
        left: 0.75rem;
        bottom: clamp(4.1rem, 9vh, 5.6rem);
        width: min(90vw, 560px);
        font-size: clamp(1.92rem, 7.4vw, 3.05rem);
        line-height: 1.1;
    }

    .scene:not(#hero):not(#overview) h2 {
        font-size: clamp(2.15rem, 8vw, 3.45rem);
    }

    .overview-panels,
    .company-deck,
    .partner-matrix {
        grid-template-columns: 1fr;
    }

    .overview-panels {
        max-height: 44vh;
    }

    .overview-card,
    .company-card,
    .partner-matrix article {
        min-height: 150px;
        padding: 1.15rem;
    }

    .service-visual,
    .service-visual--with-photo {
        min-height: min(46vh, 360px);
    }

    .service-list {
        max-height: 42vh;
        overflow-y: auto;
    }
}

@media (max-width: 620px) {
    .brand__logo {
        width: 126px;
    }

    .shared-scene-title {
        bottom: 4.4rem;
        font-size: clamp(1.58rem, 8vw, 2.35rem);
    }

    .scene__inner,
    #hero .scene__inner--hero,
    .scene__inner--overview,
    #about .scene__inner--split,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--wide,
    .scene__inner--contact {
        width: calc(100vw - 1rem);
        padding-top: 5rem;
    }

    .lead,
    .overview-card p,
    .company-card p,
    .mission-panel p,
    .info-panel p,
    .service-list p,
    .partner-matrix p,
    .role-board p {
        font-size: 0.92rem;
    }

    .contact-form {
        padding: 1rem;
    }
}

/* Business service sections: horizontal activity system. */
.scene__inner--service {
    grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.4rem, 3vw, 3.4rem);
}

.scene__inner--service .service-list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 0;
    align-self: end;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.74);
}

.scene__inner--service .service-list h3 {
    grid-column: 1 / -1;
    margin: 0;
    border-bottom: 1px solid rgba(7, 26, 47, 0.08);
    padding: 0.95rem 1.15rem;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0;
}

.scene__inner--service .service-list article {
    min-height: 132px;
    border-top: 0;
    border-left: 1px solid rgba(7, 26, 47, 0.08);
    padding: 1rem 1.15rem 1.15rem;
}

.scene__inner--service .service-list article:first-of-type {
    border-left: 0;
}

.scene__inner--service .service-list h4 {
    margin-bottom: 0.45rem;
    font-size: 0.95rem;
}

.scene__inner--service .service-list p {
    max-width: 320px;
    font-size: 0.9rem;
}

@media (max-width: 1180px) {
    .scene__inner--service {
        grid-template-columns: 1fr;
        align-content: start;
    }

    .scene__inner--service .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scene__inner--service .service-list article:nth-of-type(odd) {
        border-left: 0;
    }
}

@media (max-width: 700px) {
    .scene__inner--service .service-list {
        grid-auto-flow: column;
        grid-auto-columns: minmax(230px, 78vw);
        grid-template-columns: none;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }

    .scene__inner--service .service-list h3 {
        position: sticky;
        left: 0;
        z-index: 1;
        grid-column: auto;
        border-right: 1px solid rgba(7, 26, 47, 0.08);
        border-bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }

    .scene__inner--service .service-list article {
        min-height: 150px;
        border-left: 1px solid rgba(7, 26, 47, 0.08) !important;
        scroll-snap-align: start;
    }
}

/* Transition polish: keep the shared title and overview cards separated during the dark hero handoff. */
.scene__inner--overview {
    padding-bottom: clamp(0.8rem, 1.9vh, 1.45rem);
}

.overview-panels,
.overview-card {
    will-change: opacity, transform;
}

/* Professional cookie consent. */
.cookie-consent[hidden],
.cookie-settings-trigger[hidden] {
    display: none !important;
}

.cookie-consent {
    position: fixed;
    right: clamp(1rem, 2vw, 1.6rem);
    bottom: clamp(1rem, 2vw, 1.6rem);
    z-index: 120;
    width: min(620px, calc(100vw - 2rem));
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 18px, 0);
    transition: opacity 280ms ease, transform 280ms ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.cookie-consent__panel {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: clamp(1rem, 1.7vw, 1.35rem);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
        rgba(12, 14, 18, 0.88);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    color: #fff;
    backdrop-filter: blur(22px);
}

.cookie-consent__copy {
    display: grid;
    gap: 0.45rem;
}

.cookie-consent__eyebrow {
    margin: 0;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.15rem, 1.35vw, 1.45rem);
    line-height: 1.14;
    font-weight: 560;
}

.cookie-consent p {
    margin: 0;
    color: rgba(236, 241, 247, 0.72);
    font-size: 0.9rem;
    line-height: 1.55;
}

.cookie-consent__preferences {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 1rem;
}

.cookie-consent.is-managing .cookie-consent__preferences {
    display: grid;
}

.cookie-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
    min-height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(236, 241, 247, 0.72);
    font-size: 0.8rem;
    line-height: 1.45;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 0.84rem;
}

.cookie-option input {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    accent-color: var(--gold);
}

.cookie-option--locked {
    opacity: 0.72;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 1rem;
}

.cookie-consent__button,
.cookie-settings-trigger {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible,
.cookie-settings-trigger:hover,
.cookie-settings-trigger:focus-visible {
    transform: translateY(-1px);
    outline: 2px solid rgba(199, 163, 99, 0.28);
    outline-offset: 2px;
}

.cookie-consent__button--text {
    border-color: transparent;
    background: transparent;
    color: rgba(236, 241, 247, 0.72);
}

.cookie-consent__button--ghost {
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
}

.cookie-consent__button--primary {
    border-color: rgba(199, 163, 99, 0.44);
    background: #c7a363;
    color: #071a2f;
}

.cookie-consent__save {
    display: none;
}

.cookie-consent.is-managing .cookie-consent__save {
    display: inline-flex;
}

.cookie-consent.is-managing [data-cookie-action="accept-all"] {
    display: none;
}

.cookie-settings-trigger {
    position: fixed;
    right: clamp(1rem, 2vw, 1.6rem);
    bottom: clamp(4.7rem, 6vw, 5.5rem);
    z-index: 95;
    min-height: 36px;
    padding: 0.55rem 0.8rem;
    border-color: rgba(7, 26, 47, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: #071a2f;
    box-shadow: 0 16px 45px rgba(7, 26, 47, 0.13);
    backdrop-filter: blur(14px);
}

body.is-dark-flow .cookie-settings-trigger {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(18, 19, 22, 0.62);
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 700px) {
    .cookie-consent {
        right: 0.75rem;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
    }

    .cookie-consent__preferences {
        grid-template-columns: 1fr;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__button {
        flex: 1 1 100%;
    }

    .cookie-settings-trigger {
        right: 0.75rem;
        bottom: 0.75rem;
    }
}

/* Native scroll refactor: sections stay mounted and browser scrolling remains natural. */
html {
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body.is-menu-open,
body.is-preloading {
    overflow: hidden;
}

.experience {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: visible;
}

.scene {
    position: relative;
    inset: auto;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.scene__inner {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: visible;
}

.scene__inner--overview {
    gap: clamp(2rem, 5vh, 4rem);
    max-height: none;
    overflow: visible;
    padding-bottom: clamp(2.2rem, 5vh, 4.4rem);
}

.overview-panels {
    margin-top: clamp(1rem, 2.2vh, 2.1rem);
}

.scene__inner--service .service-list {
    scroll-snap-type: none;
}

.scene__inner--service .service-list article {
    scroll-snap-align: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* Fortis 2026 corporate refit: clean flow, accessible hero, responsive sections. */
:root {
    --ink: #071a2f;
    --muted: #536174;
    --navy: #071a2f;
    --navy-900: #0b1422;
    --gold: #b89b5e;
    --paper: #f7f9fc;
    --panel: #ffffff;
    --line: rgba(7, 26, 47, 0.12);
    --header-h: 76px;
    --shadow-soft: 0 18px 55px rgba(7, 26, 47, 0.10);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--paper);
    color: var(--ink);
}

body::before,
.particle-field,
.scene__beam,
.scene__grid,
.shared-scene-title {
    display: none !important;
}

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

.site-header {
    min-height: var(--header-h);
    padding: 0.85rem clamp(1rem, 3vw, 2.6rem);
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(7, 26, 47, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    padding: 0.28rem 0.44rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.92);
}

.brand__logo {
    width: 158px;
}

.top-nav {
    justify-content: flex-end;
    gap: 0.25rem;
}

.top-nav a,
.language-link {
    border-radius: 999px;
    padding: 0.62rem 0.78rem;
    color: rgba(7, 26, 47, 0.78);
    font-size: 0.82rem;
    font-weight: 750;
}

.top-nav a:hover,
.top-nav a.is-active,
.language-link:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(7, 26, 47, 0.12);
}

body[data-active-section="hero"] .site-header {
    background: linear-gradient(180deg, rgba(7, 16, 31, 0.78), rgba(7, 16, 31, 0.28));
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

body[data-active-section="hero"] .top-nav a,
body[data-active-section="hero"] .language-link {
    color: rgba(255, 255, 255, 0.88);
}

body[data-active-section="hero"] .top-nav a:hover,
body[data-active-section="hero"] .top-nav a.is-active,
body[data-active-section="hero"] .language-link:hover {
    color: #fff;
    background: rgba(184, 155, 94, 0.18);
    border-color: rgba(184, 155, 94, 0.28);
}

body[data-active-section="hero"] .menu-toggle {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(7, 16, 31, 0.58);
}

body[data-active-section="hero"] .menu-toggle span {
    background: #fff;
}

.experience,
.scene,
.scene__inner {
    height: auto;
    overflow: visible;
}

.experience {
    min-height: 100svh;
}

.scene {
    position: relative;
    min-height: auto;
    scroll-margin-top: calc(var(--header-h) + 14px);
    background: var(--paper);
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.scene__ambient {
    background:
        radial-gradient(circle at 88% 10%, rgba(184, 155, 94, 0.09), transparent 28rem),
        linear-gradient(180deg, #fbfcfd, #eef3f8);
}

.scene__inner,
#about .scene__inner--split,
#hero .scene__inner--hero,
.scene__inner--overview,
.scene__inner--split,
.scene__inner--service,
.scene__inner--wide,
.scene__inner--contact {
    width: min(1180px, calc(100vw - 3rem));
    min-height: auto;
    margin: 0 auto;
    padding: 5.7rem 0;
}

#hero {
    min-height: 88svh;
    background: var(--navy-900);
    color: #fff;
}

body[data-active-section="hero"] .shared-bg-scene,
.shared-bg-scene {
    opacity: 1;
    visibility: visible;
}

.shared-bg-scene {
    position: absolute;
    z-index: 0;
    min-height: 100%;
    background:
        linear-gradient(135deg, rgba(7, 16, 31, 0.92), rgba(7, 16, 31, 0.58)),
        url("../img/4eck-real-estate-development.jpg") center / cover no-repeat;
}

.shared-bg-video {
    opacity: 0.42;
}

.shared-bg-brightness {
    display: none;
}

.shared-bg-shadow,
.shared-bg-ink {
    opacity: 1;
    transform: none;
    background:
        linear-gradient(90deg, rgba(7, 16, 31, 0.94), rgba(7, 16, 31, 0.72) 48%, rgba(7, 16, 31, 0.32)),
        linear-gradient(180deg, rgba(7, 16, 31, 0.28), rgba(7, 16, 31, 0.82));
}

#hero .scene__ambient {
    display: none;
}

#hero .scene__inner--hero {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 88svh;
    align-items: center;
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
}

#hero .hero-copy,
#overview .overview-copy {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    max-width: 760px;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
}

#hero .eyebrow,
#hero .lead,
#hero h1 {
    color: #fff;
}

#hero h1,
.scene:not(#hero):not(#overview) h2 {
    margin-bottom: 1.1rem;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-weight: 620;
    letter-spacing: 0;
    line-height: 1.04;
}

#hero h1 {
    font-size: 5rem;
}

#hero .lead {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
    line-height: 1.58;
}

.scene:not(#hero):not(#overview) h2 {
    max-width: 780px;
    color: var(--ink);
    font-size: 3.35rem;
}

.lead {
    color: #2c4058;
    font-size: 1.06rem;
    line-height: 1.62;
}

.eyebrow {
    margin-bottom: 0.9rem;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: min(720px, 100%);
    margin: 2rem 0 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: rgba(7, 16, 31, 0.46);
    backdrop-filter: blur(16px);
}

.hero-facts div {
    padding: 1rem 1.15rem;
}

.hero-facts div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts dt,
.hero-facts dd {
    margin: 0;
}

.hero-facts dt {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
}

.hero-facts dd {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1.35;
}

.magnetic-btn {
    min-height: 46px;
    border-radius: 999px;
    padding: 0.82rem 1.05rem;
}

.magnetic-btn span {
    font-size: 0.8rem;
}

#hero .magnetic-btn {
    color: #fff;
}

#hero .magnetic-btn--primary,
.magnetic-btn--primary {
    border-color: rgba(184, 155, 94, 0.55);
    background: #b89b5e;
    color: #071a2f;
    box-shadow: 0 14px 34px rgba(7, 26, 47, 0.14);
}

#hero .magnetic-btn--secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.scene__inner--wide,
.scene__inner--split,
.scene__inner--contact {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
    align-items: center;
    gap: 3rem;
}

.scene__inner--service {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
    gap: 2.4rem;
}

.scene__inner--service .service-list {
    grid-column: 1 / -1;
}

.mission-panel,
.info-panel,
.company-card,
.partner-matrix article,
.role-board article,
.service-list,
.contact-form,
.contact-details div {
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: var(--shadow-soft) !important;
    backdrop-filter: none;
}

.about-system,
.company-deck,
.partner-matrix,
.role-board,
.contact-details {
    gap: 1rem;
}

.about-system {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mission-panel,
.info-panel {
    min-height: 0;
    padding: 1.15rem;
}

.mission-panel {
    grid-column: 1 / -1;
}

.value-strip {
    gap: 0.5rem;
}

.value-chip {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
}

.company-deck {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    border: 0;
    border-radius: 0;
}

.company-card {
    min-height: 280px;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 8px !important;
}

.company-card + .company-card {
    border-left: 1px solid var(--line) !important;
}

.company-card__logo-wrap {
    min-height: 70px;
    margin-bottom: 1rem;
}

.company-card__logo {
    max-width: 100%;
    max-height: 58px;
}

.company-card p,
.mission-panel p,
.info-panel p,
.partner-matrix p,
.role-board p,
.service-list p {
    color: var(--muted) !important;
    font-size: 0.94rem;
    line-height: 1.52;
}

.service-visual,
.service-visual--with-photo {
    min-height: 360px;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.service-photo,
.service-photo img {
    border-radius: 8px;
}

.service-visual__logo {
    display: none;
}

.section-company-logo {
    max-width: 210px;
    max-height: 64px;
    margin-bottom: 1.1rem;
    border-radius: 8px;
}

.scene__inner--service .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    max-height: none;
    overflow: visible;
    padding: 0;
}

.scene__inner--service .service-list h3 {
    grid-column: 1 / -1;
    writing-mode: horizontal-tb !important;
    transform: none !important;
    border-bottom: 1px solid rgba(7, 26, 47, 0.08);
    padding: 0.95rem 1.1rem;
    background: transparent;
}

.scene__inner--service .service-list article {
    min-height: 124px;
    border-top: 0;
    border-left: 1px solid rgba(7, 26, 47, 0.08);
    padding: 1rem 1.1rem;
}

.scene__inner--service .service-list article:first-of-type {
    border-left: 0;
}

.partner-matrix {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    border: 0;
    border-radius: 0;
}

.partner-matrix article {
    min-height: 165px;
    border-radius: 8px !important;
}

.role-board article {
    min-height: 0;
    grid-template-columns: 150px 1fr;
}

.scene__inner--contact {
    grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
    align-items: start;
}

.contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.contact-form {
    gap: 0.85rem;
    padding: 1rem;
}

.form-grid {
    gap: 0.72rem;
}

.contact-form textarea {
    min-height: 108px;
}

.contact-form em,
.field-error {
    color: #9d2424;
}

.site-footer {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    display: grid;
    max-width: none;
    gap: 0.7rem;
    padding: 2rem clamp(1rem, 3vw, 3rem);
    color: rgba(255, 255, 255, 0.74);
    background: #071a2f;
    opacity: 1;
    pointer-events: auto;
}

.site-footer strong,
.site-footer a:hover {
    color: #fff;
}

.site-footer p,
.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__links {
    gap: 0.85rem;
}

.legal-shell {
    min-height: 100svh;
    background: #f7f9fc;
    color: #071a2f;
}

.legal-main {
    width: min(920px, calc(100vw - 2rem));
    margin: 0 auto;
    padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.legal-main h1 {
    color: #071a2f;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 3rem;
    line-height: 1.05;
}

.legal-main h2 {
    color: #071a2f;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
}

.legal-main p,
.legal-main li {
    color: #536174;
    line-height: 1.65;
}

.legal-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.3rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 1280px) {
    .top-nav {
        display: flex;
    }
}

@media (max-width: 1080px) {
    .top-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .scene__inner--wide,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--contact,
    #about .scene__inner--split {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .company-deck,
    .partner-matrix {
        grid-template-columns: 1fr;
    }

    .company-card + .company-card {
        border-left: 1px solid var(--line) !important;
    }

    .service-visual,
    .service-visual--with-photo {
        min-height: 300px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-h: 64px;
    }

    .site-header {
        padding: 0.55rem 0.75rem;
        gap: 0.75rem;
    }

    .brand__logo {
        width: 118px;
    }

    .brand {
        padding: 0.2rem 0.34rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .language-link {
        display: none;
    }

    .mobile-menu__panel {
        padding: 5rem 1rem 1.5rem;
    }

    .mobile-menu a {
        padding: 0.85rem 0;
        font-size: 1.28rem;
    }

    .scene__inner,
    #hero .scene__inner--hero,
    .scene__inner--overview,
    #about .scene__inner--split,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--wide,
    .scene__inner--contact {
        width: min(100vw - 1.25rem, 640px);
        padding-top: 4.1rem;
        padding-bottom: 3rem;
    }

    #hero,
    #hero .scene__inner--hero {
        min-height: 78svh;
    }

    .shared-bg-video {
        display: none;
    }

    .shared-bg-shadow,
    .shared-bg-ink {
        background:
            linear-gradient(180deg, rgba(7, 16, 31, 0.82), rgba(7, 16, 31, 0.88)),
            linear-gradient(90deg, rgba(7, 16, 31, 0.94), rgba(7, 16, 31, 0.6));
    }

    #hero h1 {
        font-size: 2.65rem;
    }

    #hero .lead {
        font-size: 1rem;
    }

    .scene:not(#hero):not(#overview) h2 {
        font-size: 2.05rem;
        line-height: 1.1;
    }

    .lead {
        font-size: 0.98rem;
    }

    .hero-facts,
    .about-system,
    .contact-details,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-facts div + div {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .cta-row,
    .magnetic-btn {
        width: 100%;
    }

    .magnetic-btn {
        justify-content: space-between;
    }

    .company-card {
        min-height: 0;
    }

    .service-visual,
    .service-visual--with-photo {
        min-height: 220px;
        order: 2;
    }

    .scene__inner--service .service-list {
        grid-template-columns: 1fr;
        order: 3;
    }

    .scene__inner--service .service-list h3 {
        position: static;
        border-right: 0;
    }

    .scene__inner--service .service-list article {
        min-height: 0;
        border-left: 0 !important;
        border-top: 1px solid rgba(7, 26, 47, 0.08);
    }

    .role-board article {
        grid-template-columns: 1fr;
    }

    .form-head {
        display: grid;
        gap: 0.35rem;
    }

    .legal-main h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 420px) {
    .scene__inner,
    #hero .scene__inner--hero,
    .scene__inner--split,
    .scene__inner--service,
    .scene__inner--wide,
    .scene__inner--contact {
        width: calc(100vw - 1rem);
    }

    #hero h1 {
        font-size: 2.3rem;
    }
}

/* Overflow guard: keep earlier experimental minimums from widening mobile pages. */
.scene__inner--wide > *,
.scene__inner--split > *,
.scene__inner--service > *,
.scene__inner--contact > *,
.company-deck > *,
.partner-matrix > *,
.about-system > * {
    min-width: 0 !important;
}

.scene-copy,
.service-visual,
.service-list,
.contact-form,
.contact-details,
.company-deck,
.partner-matrix,
.role-board,
.about-system {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

.scene__inner--service .service-list {
    grid-auto-flow: row !important;
    grid-auto-columns: auto !important;
}

@media (max-width: 760px) {
    .scene__inner--service .service-list {
        grid-template-columns: 1fr !important;
        overflow: visible !important;
    }

    .service-visual,
    .service-visual--with-photo {
        width: 100% !important;
        transform: none !important;
    }

    .service-photo,
    .service-photo img {
        width: 100% !important;
    }
}

.service-photo::after {
    background: linear-gradient(0deg, rgba(7, 16, 31, 0.24), transparent 38%) !important;
}

.service-photo img {
    opacity: 1 !important;
    filter: brightness(1.04) saturate(1.02) !important;
}

/* Desktop hero: restore the original architectural video opening, while mobile stays static. */
@media (min-width: 901px) {
    #hero {
        min-height: 92svh;
        background: transparent;
        color: var(--ink);
    }

    #hero .scene__inner--hero {
        min-height: 92svh;
        align-items: center;
        padding-top: calc(var(--header-h) + 2.2rem);
        padding-bottom: 5rem;
    }

    #hero .hero-copy {
        max-width: 620px;
        padding-top: 5vh;
        transform: translate3d(0, calc(var(--hero-title-y) * 0.28), 0);
        transition: transform 180ms linear;
    }

    #hero .eyebrow {
        color: rgba(7, 26, 47, 0.76);
    }

    #hero h1 {
        color: var(--hero-title-color);
        font-size: clamp(4.3rem, 6vw, 6.8rem);
        line-height: 1.02;
    }

    #hero .lead {
        max-width: 560px;
        color: rgba(7, 26, 47, 0.78);
        font-size: 1.12rem;
    }

    #hero .magnetic-btn {
        color: var(--ink);
    }

    #hero .magnetic-btn--secondary {
        border-color: rgba(7, 26, 47, 0.16);
        background: rgba(255, 255, 255, 0.66);
        color: var(--ink);
    }

    .shared-bg-scene {
        position: fixed;
        inset: 0;
        z-index: 0;
        overflow: hidden;
        background: #dfe7ef;
        opacity: 1;
        visibility: visible;
    }

    .shared-bg-video {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        opacity: 1;
        transform: scale(1.018);
        filter: brightness(var(--hero-video-brightness)) saturate(var(--hero-video-saturation)) contrast(1.02);
    }

    .shared-bg-brightness {
        display: block;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.04) 58%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 38%, rgba(255, 255, 255, 0.22));
        opacity: var(--hero-bright-opacity);
    }

    .shared-bg-shadow {
        transform: translateY(var(--hero-veil-y));
        background:
            linear-gradient(180deg, rgba(13, 15, 19, 0) 0%, rgba(13, 15, 19, 0.72) 18%, rgba(13, 15, 19, 0.96) 48%, #0d0f13 100%),
            radial-gradient(circle at 72% 34%, rgba(122, 140, 158, 0.16), transparent 24rem);
        opacity: var(--hero-dark-opacity);
    }

    .shared-bg-ink {
        background:
            linear-gradient(90deg, rgba(13, 15, 19, 0.92) 0%, rgba(13, 15, 19, 0.72) 48%, rgba(13, 15, 19, 0.22) 82%, rgba(13, 15, 19, 0.06) 100%),
            linear-gradient(180deg, rgba(13, 15, 19, 0.3), #0d0f13 86%);
        opacity: calc(var(--hero-dark-opacity) * 0.9);
    }

    body.is-hero-dark #hero .eyebrow {
        color: rgba(184, 155, 94, 0.96);
    }

    body.is-hero-dark #hero .lead {
        color: rgba(255, 255, 255, 0.72);
    }

    body.is-hero-dark #hero .magnetic-btn--secondary {
        border-color: rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    body[data-active-section="hero"] .site-header {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
        border-bottom-color: transparent;
    }

    body[data-active-section="hero"] .top-nav a,
    body[data-active-section="hero"] .language-link {
        color: rgba(7, 26, 47, 0.82);
    }

    body[data-active-section="hero"].is-hero-dark .site-header {
        background: linear-gradient(180deg, rgba(13, 15, 19, 0.62), rgba(13, 15, 19, 0));
    }

    body[data-active-section="hero"].is-hero-dark .top-nav a,
    body[data-active-section="hero"].is-hero-dark .language-link {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Requested final adjustment: lower hero title on desktop and transparent logos. */
.brand,
.section-company-logo,
.service-visual__logo {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.brand {
    padding: 0 !important;
}

.section-company-logo,
.service-visual__logo {
    padding: 0 !important;
}

@media (min-width: 901px) {
    body[data-active-section="hero"] .site-header {
        top: 0;
        bottom: auto;
        border-top: 0;
        border-bottom-color: transparent;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    }

    body[data-active-section="hero"].is-hero-dark .site-header {
        background: linear-gradient(180deg, rgba(13, 15, 19, 0.66), rgba(13, 15, 19, 0));
    }

    #hero {
        min-height: 100svh !important;
        min-height: 100dvh !important;
    }

    #hero .scene__inner--hero {
        width: 100%;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        align-items: flex-end;
        padding-top: calc(var(--header-h) + 2.2rem);
        padding-right: clamp(1.5rem, 4vw, 5rem);
        padding-bottom: clamp(2.4rem, 7vh, 4.8rem);
        padding-left: clamp(1.5rem, 4vw, 5rem);
    }

    #hero .hero-copy {
        top: auto !important;
        bottom: auto !important;
        align-self: flex-end !important;
        max-width: min(720px, 52vw);
        padding-top: 0;
    }

    #hero .hero-facts {
        display: none !important;
    }
}

/* Final polish: lighter About section and cleaner partnership cards. */
.scene {
    scroll-margin-top: 0 !important;
}

body[data-active-section="about"] .top-nav a,
body[data-active-section="about"] .language-link,
body[data-active-section="partnerships"] .top-nav a,
body[data-active-section="partnerships"] .language-link {
    color: rgba(7, 26, 47, 0.82) !important;
}

body[data-active-section="about"] .top-nav a:hover,
body[data-active-section="about"] .top-nav a.is-active,
body[data-active-section="about"] .language-link:hover,
body[data-active-section="partnerships"] .top-nav a:hover,
body[data-active-section="partnerships"] .top-nav a.is-active,
body[data-active-section="partnerships"] .language-link:hover {
    border-color: rgba(7, 26, 47, 0.12) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--ink) !important;
}

#about {
    background:
        radial-gradient(circle at 86% 10%, rgba(184, 155, 94, 0.12), transparent 28rem),
        linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%) !important;
    color: var(--ink) !important;
}

#about .scene__ambient {
    display: none !important;
}

#about h2,
#about h3,
#about h4,
#about .mission-panel span,
#about.scene:not(#hero):not(#overview) h2 {
    color: var(--ink) !important;
}

#about .eyebrow {
    color: var(--gold) !important;
}

#about .lead,
#about.scene:not(#hero):not(#overview) .lead,
#about .scene-copy p:not(.eyebrow):not(.lead):not(.motto),
#about .mission-panel p,
#about .info-panel p {
    color: #526174 !important;
}

#about .mission-panel,
#about .info-panel {
    border: 1px solid rgba(7, 26, 47, 0.11) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
        #fff !important;
    box-shadow: 0 18px 46px rgba(7, 26, 47, 0.08) !important;
}

#about .value-chip {
    border-color: rgba(7, 26, 47, 0.12) !important;
    background: rgba(255, 255, 255, 0.74) !important;
    color: var(--ink) !important;
}

.partner-matrix article > span {
    display: none !important;
}

.partner-matrix article {
    min-height: 168px !important;
    padding: 1.35rem !important;
}

.partner-matrix h3 {
    max-width: 100%;
    font-size: clamp(1.35rem, 1.8vw, 2rem) !important;
    line-height: 1.14 !important;
    overflow-wrap: normal;
    hyphens: none;
}

.partner-matrix p {
    font-size: 0.94rem !important;
    line-height: 1.5 !important;
}

@media (max-width: 1080px) {
    .partner-matrix h3 {
        font-size: 1.35rem !important;
    }
}

@media (max-width: 700px) {
    .partner-matrix article {
        min-height: auto !important;
        padding: 1.1rem !important;
    }
}
