:root {
    --ink: #102b39;
    --ink-deep: #071e2a;
    --blue: #104058;
    --blue-mid: #286888;
    --cyan: #10a0d8;
    --orange: #dc7d24;
    --paper: #f4f2ec;
    --paper-warm: #e9e4d9;
    --white: #ffffff;
    --muted: #697981;
    --line: rgba(16, 64, 88, 0.16);
    --serif: "Source Serif 4", Georgia, serif;
    --sans: "Inter", "Helvetica Neue", sans-serif;
    --container: min(1240px, calc(100vw - 80px));
    --pointer-x: 50vw;
    --pointer-y: 50vh;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: 30;
    top: var(--pointer-y);
    left: var(--pointer-x);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 160, 216, 0.08), transparent 66%);
    content: "";
    pointer-events: none;
    transform: translate(-50%, -50%);
}

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

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

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

button {
    color: inherit;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 130px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--blue-mid);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.72);
}

.section-heading h2,
.capability-panel h2,
.legacy-copy h2,
.contact-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 5.8rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.96;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 64px;
}

.section-heading-row > p {
    width: min(350px, 100%);
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.98rem;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 250ms ease, background-color 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button i {
    font-size: 1rem;
}

.button-primary {
    color: var(--white);
    background: var(--orange);
}

.button-primary:hover {
    background: #ef9135;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.42);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.button-light {
    color: var(--ink-deep);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--ink);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.text-link i {
    font-size: 1.3rem;
    transition: transform 250ms ease;
}

.text-link:hover i {
    transform: translateX(6px);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 850ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 850ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.division-grid [data-reveal]:nth-child(2),
.gallery-grid [data-reveal]:nth-child(2) {
    transition-delay: 90ms;
}

.division-grid [data-reveal]:nth-child(3),
.gallery-grid [data-reveal]:nth-child(3) {
    transition-delay: 180ms;
}

.division-grid [data-reveal]:nth-child(4),
.gallery-grid [data-reveal]:nth-child(4) {
    transition-delay: 270ms;
}

.division-grid [data-reveal]:nth-child(5) {
    transition-delay: 360ms;
}

.division-grid [data-reveal]:nth-child(6) {
    transition-delay: 450ms;
}

.loader-area {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    background: var(--ink-deep);
    transition: opacity 600ms ease, visibility 600ms ease;
}

.loader-area.is-hidden {
    visibility: hidden;
    opacity: 0;
}

.loader-mark {
    display: flex;
    gap: 8px;
}

.loader-mark span {
    width: 8px;
    height: 44px;
    background: var(--white);
    animation: loaderPulse 900ms ease-in-out infinite alternate;
}

.loader-mark span:nth-child(2) {
    background: var(--cyan);
    animation-delay: 150ms;
}

.loader-mark span:nth-child(3) {
    background: var(--orange);
    animation-delay: 300ms;
}

@keyframes loaderPulse {
    to { transform: scaleY(0.25); }
}

.scroll-progress {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    height: 92px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 48px;
    color: var(--white);
    transition: height 300ms ease, color 300ms ease, background-color 300ms ease, box-shadow 300ms ease;
}

.site-header::after {
    position: absolute;
    right: 48px;
    bottom: 0;
    left: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    content: "";
}

.site-header.is-scrolled {
    height: 76px;
    color: var(--ink);
    background: rgba(244, 242, 236, 0.91);
    box-shadow: 0 8px 40px rgba(7, 30, 42, 0.08);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
    right: 0;
    left: 0;
    background: var(--line);
}

.brand {
    position: relative;
    z-index: 2;
    width: 158px;
    padding: 7px 10px;
    border-radius: 2px;
    /* background: rgba(255, 255, 255, 0.96); 
    box-shadow: 0 7px 24px rgba(7, 30, 42, 0.12);*/
}

.brand img {
    width: 100%;
    filter: none;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.desktop-nav a {
    position: relative;
    padding: 14px 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms ease;
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-tools {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 28px;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.language-switch span {
    opacity: 0.42;
}

.language-switch a {
    opacity: 0.48;
    transition: opacity 200ms ease, color 200ms ease;
}

.language-switch a:hover,
.language-switch a.is-active {
    color: var(--orange);
    opacity: 1;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-cta i {
    width: 30px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 250ms ease, background-color 250ms ease, color 250ms ease;
}

.header-cta:hover i {
    color: var(--ink);
    background: var(--white);
    transform: translateX(3px);
}

.site-header.is-scrolled .header-cta:hover i {
    color: var(--white);
    background: var(--ink);
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 820px;
    height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--ink-deep);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.82) contrast(1.05);
    animation: heroScale 14s ease-out both;
}

@keyframes heroScale {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 30, 42, 0.96) 0%, rgba(7, 30, 42, 0.73) 42%, rgba(7, 30, 42, 0.25) 72%, rgba(7, 30, 42, 0.48) 100%),
        linear-gradient(0deg, rgba(7, 30, 42, 0.75) 0%, transparent 46%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 12.5vw 12.5vw;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 56px;
    padding-bottom: 150px;
}

.hero-eyebrow {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.75);
}

.hero h1 {
    width: 100%;
    max-width: 940px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4.5rem, 8.7vw, 9.2rem);
    font-weight: 500;
    letter-spacing: -0.065em;
    line-height: 0.78;
}

.hero h1 em {
    color: transparent;
    font-weight: 500;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.78);
}

.mobile-break {
    display: none;
}

.hero-copy {
    width: 530px;
    max-width: 100%;
    margin: 36px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.hero-facts {
    position: absolute;
    z-index: 3;
    right: 48px;
    bottom: 0;
    display: grid;
    width: min(850px, calc(100% - 96px));
    min-height: 122px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    color: var(--ink);
    background: rgba(244, 242, 236, 0.95);
    backdrop-filter: blur(15px);
}

.hero-facts div {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 11px;
    padding: 24px 18px;
    border-right: 1px solid var(--line);
    min-width: 0;
}

.hero-facts div:last-child {
    border-right: 0;
}

.hero-facts strong {
    color: var(--blue);
    font-family: var(--serif);
    font-size: 2.35rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
}

.hero-facts span {
    color: #435a65;
    font-size: 0.69rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 38px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-cue span {
    position: relative;
    width: 44px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
}

.scroll-cue span::after {
    position: absolute;
    inset: 0;
    background: var(--white);
    content: "";
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.service-ticker {
    overflow: hidden;
    color: var(--white);
    background: var(--orange);
}

.ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    padding: 14px 0;
    animation: ticker 30s linear infinite;
}

.ticker-track span {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ticker-track i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.intro {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 0%, rgba(16, 160, 216, 0.08), transparent 25%),
        var(--paper);
}

.intro::after {
    position: absolute;
    top: 9%;
    right: -5%;
    width: 280px;
    height: 280px;
    border: 1px solid var(--line);
    border-radius: 50%;
    content: "";
}

.intro-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 65px 90px;
}

.intro-copy {
    align-self: end;
    padding-bottom: 12px;
}

.intro-copy > p {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.intro-image {
    position: relative;
    min-height: 490px;
    margin: 0;
    overflow: hidden;
    background: var(--blue);
}

.intro-image::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    content: "";
    transform: scale(0.94);
    pointer-events: none;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.intro-image:hover img {
    transform: scale(1.04);
}

.intro-image figcaption {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(360px, 78%);
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 25px;
    color: var(--white);
    background: rgba(7, 30, 42, 0.9);
    backdrop-filter: blur(12px);
}

.intro-image figcaption span {
    color: var(--cyan);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1;
}

.intro-image figcaption p {
    margin: 0;
    font-size: 0.77rem;
    line-height: 1.5;
}

.intro-note {
    display: flex;
    align-items: flex-start;
    align-self: center;
    gap: 28px;
    padding: 35px 0;
}

.intro-note .note-line {
    flex: 0 0 62px;
    height: 1px;
    margin-top: 12px;
    background: var(--orange);
}

.intro-note p {
    max-width: 440px;
    margin: 0;
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.35;
}

.divisions {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(16, 160, 216, 0.06), transparent 35%),
        var(--ink-deep);
}

.divisions .eyebrow {
    color: var(--cyan);
}

.divisions .section-heading-row > p {
    color: rgba(255, 255, 255, 0.6);
}

.division-grid {
    display: grid;
    grid-auto-rows: 370px;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.division-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: var(--white);
    background: var(--blue);
    cursor: pointer;
    text-align: left;
}

.division-card-wide {
    grid-column: span 2;
}

.division-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.88);
    transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.division-card[data-division="logistica"] img {
    object-fit: cover;
    background: var(--blue);
}

.division-card[data-division="gas"] img {
    object-position: 74% center;
}

.division-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 30, 42, 0.1), rgba(7, 30, 42, 0.88));
    transition: background 400ms ease;
}

.division-number {
    position: absolute;
    top: 25px;
    left: 26px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    font-size: 0.69rem;
    font-weight: 700;
}

.division-copy {
    position: absolute;
    right: 78px;
    bottom: 28px;
    left: 28px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.division-copy small {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.division-copy strong {
    max-width: 470px;
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.2vw, 2.3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.07;
}

.card-arrow {
    position: absolute;
    right: 26px;
    bottom: 26px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    transition: transform 350ms ease, color 350ms ease, background-color 350ms ease;
}

.card-arrow i {
    font-size: 1.2rem;
    transform: rotate(45deg);
}

.division-card:hover img {
    filter: saturate(1) brightness(0.95);
    transform: scale(1.06);
}

.division-card:hover .division-shade {
    background: linear-gradient(180deg, rgba(7, 30, 42, 0.03), rgba(7, 30, 42, 0.74));
}

.division-card:hover .card-arrow {
    color: var(--white);
    background: var(--orange);
    transform: rotate(90deg);
}

.capabilities {
    display: grid;
    min-height: 820px;
    grid-template-columns: 1.12fr 0.88fr;
    padding: 0;
    background: var(--blue);
}

.capability-visual {
    position: relative;
    min-height: 740px;
    overflow: hidden;
    background: #222c31;
}

.capability-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 70%, rgba(16, 64, 88, 0.5));
    content: "";
}

.capability-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
    transition: transform 1.2s ease;
}

.capabilities:hover .capability-visual img {
    transform: scale(1.025);
}

.capability-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 90px clamp(45px, 7vw, 110px);
    color: var(--white);
    background:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        var(--blue);
    background-size: 80px 80px;
}

.capability-panel h2 {
    max-width: 620px;
    font-size: clamp(3rem, 4.8vw, 5.3rem);
}

.capability-list {
    width: 100%;
    margin: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-list div {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-list span {
    color: var(--cyan);
    font-family: var(--serif);
    font-size: 1.3rem;
}

.capability-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

.presence {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 60%, rgba(16, 160, 216, 0.1), transparent 35%),
        var(--paper);
}

.presence::before {
    position: absolute;
    top: 0;
    left: 8%;
    width: 1px;
    height: 100%;
    background: var(--line);
    content: "";
}

.presence-stage {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
    margin-top: 70px;
    overflow: hidden;
    background: #e6eaec;
}

.presence-stage::before {
    position: absolute;
    z-index: 0;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(16, 64, 88, 0.12);
    border-radius: 50%;
    content: "";
}

.presence-stage img {
    position: relative;
    z-index: 2;
    width: min(900px, 88%);
    filter: drop-shadow(0 30px 35px rgba(7, 30, 42, 0.16));
    transition: transform 800ms ease;
}

.presence-stage:hover img {
    transform: scale(1.025);
}

.presence-orbit {
    position: absolute;
    z-index: 1;
    width: 530px;
    height: 530px;
    border: 1px dashed rgba(16, 64, 88, 0.25);
    border-radius: 50%;
    animation: orbit 36s linear infinite;
}

.presence-orbit::before,
.presence-orbit::after {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 8px rgba(220, 125, 36, 0.16);
    content: "";
}

.presence-orbit::before {
    top: 68px;
    right: 68px;
}

.presence-orbit::after {
    bottom: 35px;
    left: 110px;
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

.presence-label {
    position: absolute;
    z-index: 3;
    right: 34px;
    bottom: 34px;
    display: flex;
    width: 180px;
    height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 20px 45px rgba(7, 30, 42, 0.22);
}

.presence-label::before {
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    content: "";
}

.presence-label span {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.presence-label strong {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
}

.gallery {
    color: var(--white);
    background: #0a2635;
}

.gallery::before {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: radial-gradient(circle at 90% 5%, rgba(16, 160, 216, 0.2), transparent 30%);
    content: "";
}

.gallery-heading {
    margin-bottom: 60px;
}

.gallery-heading .eyebrow {
    color: var(--cyan);
}

.gallery-grid {
    position: relative;
    display: grid;
    grid-auto-rows: 280px;
    grid-template-columns: 0.85fr 1.15fr 1fr;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: var(--white);
    background: var(--blue);
    cursor: zoom-in;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.gallery-item-tall img {
    object-position: 47% center;
}

.gallery-item span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
    background: linear-gradient(0deg, rgba(7, 30, 42, 0.95), transparent);
}

.gallery-item span i {
    font-size: 1.2rem;
}

.gallery-item:hover img {
    filter: saturate(1.05) brightness(1.05);
    transform: scale(1.055);
}

.legacy {
    background: var(--paper-warm);
}

.legacy-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: clamp(55px, 9vw, 130px);
}

.legacy-image {
    position: relative;
    min-height: 590px;
    margin: 0;
    overflow: hidden;
}

.legacy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) sepia(0.18) contrast(1.05);
    transition: filter 500ms ease, transform 800ms ease;
}

.legacy-image:hover img {
    filter: grayscale(0.45) sepia(0.12);
    transform: scale(1.025);
}

.legacy-image span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 18px 22px;
    color: var(--white);
    background: var(--orange);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.legacy-copy h2 {
    max-width: 700px;
}

.legacy-copy > p:not(.eyebrow) {
    max-width: 580px;
    margin: 35px 0 45px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.legacy-signature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.legacy-signature span {
    color: var(--orange);
}

.contact {
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 30, 42, 0.96), rgba(16, 64, 88, 0.87)),
        url("../img/site/shutterstock_2761771221.jpg") center / cover;
}

.contact-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: rotate(-8deg) scale(1.2);
}

.contact::after {
    position: absolute;
    right: -130px;
    bottom: -130px;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.03), 0 0 0 140px rgba(255, 255, 255, 0.02);
    content: "";
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    align-items: end;
    gap: 110px;
}

.contact-heading h2 {
    font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.contact-heading > p:last-child {
    max-width: 560px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 35px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 30px 80px rgba(7, 30, 42, 0.25);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-form label span {
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select {
    width: 100%;
    height: 48px;
    padding: 0 4px;
    border: 0;
    border-bottom: 1px solid rgba(16, 64, 88, 0.25);
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

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

.form-wide {
    grid-column: 1 / -1;
}

.button-contact {
    width: 100%;
    margin-top: 10px;
    border: 0;
    color: var(--white);
    background: var(--orange);
    cursor: pointer;
}

.button-contact i {
    font-size: 1.25rem;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink-deep);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
    gap: 70px;
    padding: 78px 0 60px;
}

.footer-brand img {
    width: 170px;
    padding: 7px 10px;
    border-radius: 2px;
    /* background: var(--white); */
}

.footer-brand p {
    max-width: 340px;
    margin: 17px 0 0;
    font-size: 0.82rem;
}

.footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 28px;
}

.footer-main nav a {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 250ms ease;
}

.footer-main nav a:hover {
    color: var(--white);
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 16px;
}

.footer-whatsapp > i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: #20a863;
    font-size: 1.5rem;
}

.footer-whatsapp span {
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    line-height: 1.55;
    text-transform: uppercase;
}

.footer-whatsapp strong {
    color: var(--white);
    font-size: 0.84rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 28px;
}

dialog {
    max-width: none;
    max-height: none;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: var(--paper);
}

dialog::backdrop {
    background: rgba(7, 30, 42, 0.84);
    backdrop-filter: blur(12px);
}

.division-modal {
    width: min(1060px, calc(100vw - 48px));
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    box-shadow: 0 35px 120px rgba(0, 0, 0, 0.35);
}

.division-modal[open] {
    display: grid;
    animation: modalIn 400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(25px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    background: var(--blue);
}

.modal-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 30, 42, 0.7), transparent 60%);
    content: "";
}

.modal-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-visual > span {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 30px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 5rem;
    line-height: 1;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px clamp(40px, 6vw, 80px);
}

.modal-close {
    position: absolute;
    z-index: 4;
    top: 22px;
    right: 22px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: var(--paper);
    cursor: pointer;
    transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.modal-close:hover {
    color: var(--white);
    background: var(--orange);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.modal-content > p:not(.eyebrow) {
    margin: 26px 0 30px;
    color: var(--muted);
}

.modal-content h3 {
    margin: 0 0 12px;
    color: var(--orange);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.modal-content ul {
    display: grid;
    gap: 8px;
    margin: 0 0 35px;
    padding: 0;
    list-style: none;
}

.modal-content li {
    position: relative;
    padding-left: 20px;
    color: #435a65;
    font-size: 0.88rem;
}

.modal-content li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 7px;
    height: 1px;
    background: var(--cyan);
    content: "";
}

.modal-content .text-link {
    align-self: flex-start;
}

.gallery-modal {
    width: min(1180px, calc(100vw - 48px));
    color: var(--white);
    background: transparent;
    overflow: visible;
}

.gallery-modal[open] {
    animation: modalIn 400ms ease both;
}

.gallery-modal img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-modal p {
    margin: 14px 0 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-align: center;
    text-transform: uppercase;
}

.gallery-close {
    top: -54px;
    right: 0;
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(7, 30, 42, 0.65);
}

.purpose {
    display: grid;
    min-height: 720px;
    grid-template-columns: 1.12fr 0.88fr;
    padding: 0;
    background: var(--paper-warm);
}

.purpose-visual {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.purpose-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 30, 42, 0.9), rgba(7, 30, 42, 0.08) 68%);
    content: "";
}

.purpose-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.purpose-visual:hover img {
    transform: scale(1.035);
}

.purpose-visual > div {
    position: absolute;
    z-index: 2;
    right: clamp(28px, 6vw, 90px);
    bottom: 60px;
    left: clamp(28px, 6vw, 90px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--white);
}

.purpose-visual span {
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.purpose-visual strong {
    max-width: 760px;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.purpose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px clamp(38px, 6vw, 95px);
}

.purpose-content article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.purpose-content article:first-child {
    border-top: 1px solid var(--line);
}

.purpose-content article > span {
    color: var(--orange);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.purpose-content h3 {
    margin: 0 0 9px;
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.purpose-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.governance {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 0%, rgba(16, 160, 216, 0.09), transparent 28%),
        var(--paper);
}

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

.governance-grid article {
    position: relative;
    min-height: 510px;
    overflow: hidden;
    background: var(--ink-deep);
}

.governance-grid article::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 30, 42, 0.96), rgba(7, 30, 42, 0.05) 72%);
    content: "";
}

.governance-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82);
    transition: transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 500ms ease;
}

.governance-grid article:hover img {
    filter: saturate(1);
    transform: scale(1.055);
}

.governance-grid article > div {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 30px;
    left: 28px;
    color: var(--white);
}

.governance-grid article span {
    display: block;
    margin-bottom: 12px;
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.governance-grid h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.governance-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.78rem;
    line-height: 1.6;
}

.news-section {
    background: var(--paper-warm);
}

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

.news-card {
    overflow: hidden;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: var(--paper);
    cursor: pointer;
    text-align: left;
    transition: transform 350ms ease, box-shadow 350ms ease;
}

.news-card:hover {
    box-shadow: 0 25px 65px rgba(7, 30, 42, 0.15);
    transform: translateY(-8px);
}

.news-card-image {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
}

.news-card-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 30, 42, 0.42), transparent 55%);
    content: "";
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.055);
}

.news-card-image i {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--white);
    font-size: 1.2rem;
    transform: rotate(45deg);
    transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.news-card:hover .news-card-image i {
    color: var(--white);
    background: var(--orange);
    transform: rotate(90deg);
}

.news-card-content {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 28px;
}

.news-card-content small {
    margin-bottom: 16px;
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-card-content strong {
    display: block;
    margin-bottom: 16px;
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.news-card-content > span {
    display: -webkit-box;
    overflow: hidden;
    margin-top: auto;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-empty {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    background: var(--ink-deep);
}

.news-empty::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 30, 42, 0.96), rgba(7, 30, 42, 0.22));
    content: "";
}

.news-empty img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-empty > div {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(30px, 7vw, 95px);
    width: min(560px, calc(100% - 60px));
    color: var(--white);
    transform: translateY(-50%);
}

.news-empty span {
    color: var(--cyan);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.news-empty h3 {
    margin: 18px 0 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 5vw, 5.2rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.news-modal {
    width: min(1120px, calc(100vw - 48px));
    max-height: calc(100svh - 48px);
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--paper);
    box-shadow: 0 35px 120px rgba(0, 0, 0, 0.38);
}

.news-modal[open] {
    animation: modalIn 400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.news-modal-close {
    position: sticky;
    z-index: 5;
    top: 18px;
    float: right;
    margin: 18px 18px -62px 0;
    color: var(--white);
    background: rgba(7, 30, 42, 0.76);
}

.news-detail figure {
    height: 470px;
    margin: 0;
    background: var(--blue);
}

.news-detail figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    padding: 70px clamp(32px, 8vw, 105px) 90px;
}

.news-detail-content h2 {
    max-width: 880px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6.2rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.94;
}

.news-detail-text {
    max-width: 760px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.9;
}

.news-share {
    display: flex;
    max-width: 760px;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.news-share-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    gap: 11px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.news-share-button:hover {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-2px);
}

.news-share-button i {
    color: var(--orange);
    font-size: 1.15rem;
}

.news-share small {
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-faqs {
    max-width: 820px;
    margin-top: 64px;
    padding-top: 35px;
    border-top: 1px solid var(--line);
}

.news-faqs h3 {
    margin: 0 0 20px;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
}

.news-faqs details {
    border-bottom: 1px solid var(--line);
}

.news-faqs summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.news-faqs summary::-webkit-details-marker {
    display: none;
}

.news-faqs summary i {
    color: var(--orange);
    font-size: 1.1rem;
    transition: transform 250ms ease;
}

.news-faqs details[open] summary i {
    transform: rotate(45deg);
}

.news-faqs details p {
    max-width: 700px;
    margin: 0;
    padding: 0 0 24px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.75;
}

.admin-page {
    min-height: 100vh;
    color: var(--ink);
    background: #e9e4d9;
}

.admin-page::before {
    display: none;
}

.admin-auth {
    display: grid;
    min-height: 100vh;
    grid-template-columns: 0.95fr 1.05fr;
    background:
        linear-gradient(90deg, rgba(7, 30, 42, 0.93), rgba(7, 30, 42, 0.3)),
        url("../img/site/shutterstock_402800527.jpg") center / cover;
}

.admin-auth-brand {
    position: absolute;
    top: 36px;
    left: 42px;
    width: 168px;
    padding: 8px 10px;
    background: var(--white);
}

.admin-auth-card {
    display: flex;
    min-height: 100vh;
    grid-column: 2;
    flex-direction: column;
    justify-content: center;
    padding: clamp(45px, 9vw, 130px);
    background: var(--paper);
}

.admin-auth-card h1 {
    max-width: 620px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5.7rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.94;
}

.admin-auth-card > p:not(.eyebrow) {
    max-width: 520px;
    margin: 26px 0 34px;
    color: var(--muted);
}

.admin-auth-card code {
    align-self: flex-start;
    padding: 13px 16px;
    color: var(--white);
    background: var(--ink-deep);
    font-size: 0.78rem;
}

.admin-auth-form {
    display: grid;
    max-width: 520px;
    gap: 20px;
}

.admin-auth-form label,
.admin-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin-auth-form label span,
.admin-field > span,
.admin-faq-row label span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-auth-form input,
.admin-field input,
.admin-field select,
.admin-field textarea,
.admin-faq-row input,
.admin-faq-row textarea {
    width: 100%;
    border: 1px solid rgba(16, 64, 88, 0.2);
    border-radius: 0;
    outline: 0;
    color: var(--ink);
    background: var(--white);
}

.admin-auth-form input,
.admin-field input,
.admin-field select,
.admin-faq-row input {
    min-height: 50px;
    padding: 0 14px;
}

.admin-field textarea,
.admin-faq-row textarea {
    resize: vertical;
    padding: 14px;
    line-height: 1.65;
}

.admin-auth-form input:focus,
.admin-field input:focus,
.admin-field select:focus,
.admin-field textarea:focus,
.admin-faq-row input:focus,
.admin-faq-row textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(16, 160, 216, 0.1);
}

.admin-auth-form button,
.admin-save-button {
    min-height: 54px;
    padding: 0 24px;
    border: 0;
    color: var(--white);
    background: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
}

.admin-alert {
    margin: 0 0 24px;
    padding: 14px 17px;
    border-left: 3px solid;
    font-size: 0.82rem;
}

.admin-alert-error {
    border-color: #b72727;
    color: #791a1a;
    background: #f8dddd;
}

.admin-alert-success {
    border-color: #1d9163;
    color: #145f43;
    background: #dff4e8;
}

.admin-topbar {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 14px 34px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink-deep);
}

.admin-topbar-brand {
    width: 150px;
    padding: 7px 9px;
    /* background: var(--white); */
}

.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-topbar-actions a,
.admin-topbar-actions button {
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.admin-main {
    width: min(1480px, calc(100% - 56px));
    margin: 0 auto;
    padding: 70px 0 100px;
}

.admin-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 45px;
}

.admin-heading h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 6vw, 6.2rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.9;
}

.admin-heading > p {
    width: min(420px, 100%);
    margin: 0;
    color: var(--muted);
}

.admin-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
    align-items: start;
    gap: 24px;
}

.admin-editor,
.admin-news-list {
    background: var(--paper);
    box-shadow: 0 18px 60px rgba(7, 30, 42, 0.08);
}

.admin-news-form {
    padding: clamp(24px, 4vw, 52px);
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.admin-field-wide {
    grid-column: 1 / -1;
}

.admin-language-section {
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.38);
}

.admin-language-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-language-heading > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    background: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.admin-language-section[lang="en"] .admin-language-heading > span {
    background: var(--orange);
}

.admin-language-heading strong,
.admin-language-heading small {
    display: block;
}

.admin-language-heading strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.admin-language-heading small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.7rem;
}

.admin-language-grid {
    display: grid;
    gap: 20px;
}

.admin-upload {
    padding: 22px;
    border: 1px dashed rgba(16, 64, 88, 0.3);
    background: rgba(16, 160, 216, 0.025);
}

.admin-upload input {
    padding: 12px 0;
    border: 0;
    background: transparent;
}

.admin-upload small {
    color: var(--muted);
    font-size: 0.7rem;
}

.admin-upload img {
    display: none;
    width: 100%;
    max-height: 340px;
    margin-top: 14px;
    object-fit: cover;
}

.admin-upload img.is-visible {
    display: block;
}

.admin-faq-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.admin-faq-heading span {
    font-family: var(--serif);
    font-size: 1.75rem;
}

.admin-faq-heading p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.admin-faq-heading button {
    padding: 10px 14px;
    border: 1px solid var(--line);
    color: var(--blue);
    background: transparent;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.admin-faq-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.admin-faq-row {
    position: relative;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 16px;
    padding: 20px 58px 20px 20px;
    border: 1px solid var(--line);
}

.admin-faq-row label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.admin-remove-faq {
    position: absolute;
    top: 20px;
    right: 18px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    color: #a22a2a;
    background: #f6dddd;
    cursor: pointer;
}

.admin-form-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.admin-form-actions a {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-news-list {
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 28px;
}

.admin-list-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.admin-list-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
}

.admin-list-heading span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-size: 0.72rem;
}

.admin-news-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.admin-news-item > img {
    width: 82px;
    height: 72px;
    object-fit: cover;
}

.admin-news-item h3 {
    overflow: hidden;
    margin: 5px 0 2px;
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-news-item small {
    color: var(--muted);
    font-size: 0.64rem;
}

.admin-status {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-status-published {
    color: #16815a;
}

.admin-status-draft {
    color: var(--orange);
}

.admin-news-actions {
    display: flex;
    gap: 6px;
}

.admin-news-actions a,
.admin-news-actions button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--blue);
    background: transparent;
    cursor: pointer;
}

.admin-language-badges {
    display: inline-flex;
    gap: 5px;
    margin-left: 8px;
}

.admin-language-badges b {
    padding: 3px 5px;
    color: var(--blue);
    background: rgba(16, 160, 216, 0.1);
    font-size: 0.55rem;
    letter-spacing: 0.08em;
}

.admin-empty {
    margin: 0;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.82rem;
}

@media (max-width: 1080px) {
    :root {
        --container: min(100% - 48px, 960px);
    }

    .site-header {
        padding: 0 28px;
    }

    .site-header::after {
        right: 28px;
        left: 28px;
    }

    .desktop-nav,
    .header-tools {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        position: relative;
        z-index: 3;
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        justify-self: end;
        padding: 0;
        border: 1px solid currentColor;
        border-radius: 50%;
        color: inherit;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span {
        position: absolute;
        width: 18px;
        height: 1px;
        background: currentColor;
        transition: transform 300ms ease;
    }

    .menu-toggle span:first-child {
        transform: translateY(-4px);
    }

    .menu-toggle span:last-child {
        transform: translateY(4px);
    }

    .menu-open .menu-toggle span:first-child {
        transform: rotate(45deg);
    }

    .menu-open .menu-toggle span:last-child {
        transform: rotate(-45deg);
    }

    .mobile-nav {
        position: fixed;
        z-index: 1;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        color: var(--white);
        background: var(--ink-deep);
        opacity: 0;
        transition: opacity 350ms ease, visibility 350ms ease;
    }

    .mobile-nav a {
        font-family: var(--serif);
        font-size: clamp(2.3rem, 8vw, 4rem);
        line-height: 1;
    }

    .mobile-language-switch {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-top: 12px;
    }

    .mobile-language-switch a {
        font-family: var(--sans);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        opacity: 0.45;
    }

    .mobile-language-switch a.is-active {
        color: var(--orange);
        opacity: 1;
    }

    .mobile-language-switch i {
        font-style: normal;
        opacity: 0.35;
    }

    .menu-open .mobile-nav {
        visibility: visible;
        opacity: 1;
    }

    .menu-open .site-header {
        color: var(--white);
        background: transparent;
    }

    .menu-open .brand img {
        filter: none;
    }

    .hero-facts {
        right: 24px;
        width: min(640px, calc(100% - 48px));
    }

    .scroll-cue {
        left: 24px;
    }

    .division-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .division-card-wide {
        grid-column: span 1;
    }

    .capabilities {
        grid-template-columns: 1fr;
    }

    .capability-visual {
        min-height: 580px;
    }

    .capability-panel {
        padding: 100px max(24px, calc((100vw - 960px) / 2));
    }

    .contact-layout {
        gap: 50px;
    }

    .purpose {
        grid-template-columns: 1fr;
    }

    .purpose-visual {
        min-height: 620px;
    }

    .purpose-content {
        padding: 80px max(24px, calc((100vw - 960px) / 2));
    }

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

    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-news-list {
        position: static;
        max-height: none;
    }
}

@media (max-width: 760px) {
    :root {
        --container: calc(100% - 36px);
    }

    .section {
        padding: 90px 0;
    }

    .section-heading h2,
    .legacy-copy h2,
    .contact-heading h2 {
        font-size: clamp(2.65rem, 13vw, 4.3rem);
    }

    .section-heading-row {
        display: block;
        margin-bottom: 42px;
    }

    .section-heading-row > p {
        margin-top: 24px;
    }

    .site-header {
        height: 74px;
        padding: 0 18px;
    }

    .site-header::after {
        right: 18px;
        left: 18px;
    }

    .site-header.is-scrolled {
        height: 68px;
    }

    .brand {
        width: 142px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        width: 100vw;
        max-width: 100vw;
        min-height: 760px;
        height: 100svh;
    }

    .hero-content.container {
        width: calc(100vw - 36px);
        max-width: calc(100vw - 36px);
        margin-right: 18px;
        margin-left: 18px;
    }

    .hero-video {
        object-position: 61% center;
    }

    .hero-wash {
        background:
            linear-gradient(90deg, rgba(7, 30, 42, 0.92), rgba(7, 30, 42, 0.46)),
            linear-gradient(0deg, rgba(7, 30, 42, 0.9), transparent 50%);
    }

    .hero-grid {
        background-size: 25vw 25vw;
    }

    .hero-content {
        justify-content: flex-start;
        padding-top: 140px;
        padding-bottom: 240px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(3.45rem, 15.3vw, 4.45rem);
        line-height: 0.88;
    }

    .hero-eyebrow,
    .hero-copy {
        width: 100%;
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .mobile-break {
        display: block;
    }

    .hero h1 em {
        -webkit-text-stroke-width: 1px;
    }

    .hero-copy {
        margin-top: 28px;
        font-size: 0.93rem;
        line-height: 1.65;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 26px;
    }

    .hero-actions .button {
        min-height: 48px;
        padding: 0 19px;
        font-size: 0.68rem;
    }

    .hero-facts {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100vw;
        max-width: 100vw;
        min-height: 124px;
    }

    .hero-facts div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 18px 13px;
        min-width: 0;
    }

    .hero-facts strong {
        font-size: 2.1rem;
    }

    .hero-facts span {
        font-size: 0.54rem;
        line-height: 1.35;
    }

    .scroll-cue {
        display: none;
    }

    .intro-layout,
    .legacy-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .intro-image {
        min-height: 340px;
        grid-row: auto;
    }

    .intro-note {
        padding: 10px 0 0;
    }

    .intro-note p {
        font-size: 1.25rem;
    }

    .purpose {
        min-height: 0;
    }

    .purpose-visual {
        min-height: 500px;
    }

    .purpose-visual > div {
        right: 22px;
        bottom: 34px;
        left: 22px;
    }

    .purpose-visual strong {
        font-size: 2.65rem;
    }

    .purpose-content {
        padding: 65px 18px;
    }

    .purpose-content article {
        grid-template-columns: 38px 1fr;
        gap: 14px;
    }

    .division-grid {
        grid-auto-rows: 330px;
        grid-template-columns: 1fr;
    }

    .division-copy strong {
        font-size: 1.8rem;
    }

    .capability-visual {
        min-height: 440px;
    }

    .capability-panel {
        padding: 80px 18px;
    }

    .capability-panel h2 {
        font-size: clamp(2.75rem, 13vw, 4.3rem);
    }

    .presence-stage {
        min-height: 390px;
        margin-top: 44px;
    }

    .presence-stage img {
        width: 108%;
        max-width: none;
    }

    .presence-stage::before,
    .presence-orbit {
        width: 330px;
        height: 330px;
    }

    .presence-label {
        right: 16px;
        bottom: 16px;
        width: 118px;
        height: 118px;
    }

    .presence-label strong {
        font-size: 1.35rem;
    }

    .gallery-grid {
        grid-auto-rows: 260px;
        grid-template-columns: 1fr;
    }

    .gallery-item-tall {
        grid-row: auto;
    }

    .gallery-item-wide {
        grid-column: auto;
    }

    .governance-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .governance-grid article {
        min-height: 440px;
    }

    .news-card-image {
        height: 245px;
    }

    .news-card-content {
        min-height: 220px;
        padding: 24px;
    }

    .news-empty {
        min-height: 430px;
    }

    .news-modal {
        width: calc(100vw - 24px);
        max-height: calc(100svh - 24px);
    }

    .news-detail figure {
        height: 275px;
    }

    .news-detail-content {
        padding: 46px 22px 60px;
    }

    .news-detail-content h2 {
        font-size: 2.8rem;
    }

    .news-share {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-share-button {
        width: 100%;
        justify-content: center;
    }

    .news-faqs {
        margin-top: 45px;
    }

    .legacy-image {
        min-height: 430px;
    }

    .contact-layout {
        align-items: start;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .contact-form label,
    .form-wide {
        grid-column: 1;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 62px 0 45px;
    }

    .footer-whatsapp {
        justify-self: start;
    }

    .footer-bottom {
        align-items: flex-start;
        gap: 24px;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .division-modal {
        width: calc(100vw - 24px);
        grid-template-columns: 1fr;
    }

    .division-modal[open] {
        display: block;
        max-height: calc(100svh - 24px);
        overflow-y: auto;
    }

    .modal-visual {
        min-height: 245px;
        max-height: 245px;
    }

    .modal-visual > span {
        bottom: 18px;
        left: 22px;
        font-size: 3.3rem;
    }

    .modal-content {
        padding: 46px 24px 36px;
    }

    .modal-content h2 {
        font-size: 2.7rem;
    }

    .modal-close {
        top: 12px;
        right: 12px;
    }

    .gallery-modal {
        width: calc(100vw - 24px);
    }

    .admin-auth {
        display: block;
        min-height: 100vh;
        padding-top: 90px;
        background-position: 64% center;
    }

    .admin-auth-brand {
        top: 24px;
        left: 20px;
        width: 145px;
    }

    .admin-auth-card {
        min-height: calc(100vh - 90px);
        padding: 55px 20px;
    }

    .admin-topbar {
        align-items: flex-start;
        padding: 16px 18px;
    }

    .admin-topbar-brand {
        width: 132px;
    }

    .admin-topbar-actions {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 16px;
    }

    .admin-topbar-actions > span {
        display: none;
    }

    .admin-main {
        width: calc(100% - 32px);
        padding: 55px 0 75px;
    }

    .admin-heading {
        display: block;
        margin-bottom: 34px;
    }

    .admin-heading > p {
        margin-top: 22px;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-field-wide {
        grid-column: 1;
    }

    .admin-faq-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-faq-row {
        grid-template-columns: 1fr;
    }

    .admin-form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-news-list {
        padding: 22px 18px;
    }

    .admin-news-item {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .admin-news-item > img {
        width: 70px;
        height: 66px;
    }

    .admin-news-actions {
        grid-column: 2;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
