﻿:root {
    --navy: #101928;
    --navy-2: #152238;
    --orange: #eb5836;
    --orange-bright: #ff643d;
    --white: #ffffff;
    --muted: #c9d2df;
    --card: rgba(255,255,255,.07);
    --stroke: rgba(255,255,255,.16);
    --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--white);
    background: radial-gradient(circle at 75% 20%, rgba(235,88,54,.28), transparent 28rem), radial-gradient(circle at 15% 85%, rgba(235,88,54,.18), transparent 32rem), var(--navy);
}

a {
    color: inherit;
}

.page {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.text-section {
    padding: 76px 0;
}

.text-panel p {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
    margin: 0 0 18px;
}

    .text-panel p:last-child {
        margin-bottom: 0;
    }

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    letter-spacing: .02em;
}

    .brand img {
        width: 56px;
        height: 56px;
        object-fit: contain;
    }

nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 15px;
}

    nav a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        text-decoration: none;
        transition: color .2s ease, opacity .2s ease;
    }

        nav a:hover {
            color: var(--white);
        }

.language-picker {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .25rem;
    margin-left: 4px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 999px;
    color: var(--white);
    line-height: 1;
}

.language-picker__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 34px;
    padding: 0 .65rem;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

    .language-picker__link:hover,
    .language-picker__link:focus-visible {
        color: var(--white);
        opacity: .9;
    }

    .language-picker__link.is-active {
        color: var(--white);
        background: rgba(255,255,255,.14);
    }

    .language-picker__link img {
        display: block;
        width: 1.25rem;
        height: 1.25rem;
        border-radius: 50%;
        flex: 0 0 auto;
    }

.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
    padding: 44px 0 72px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid var(--stroke);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
}

    .eyebrow::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--orange);
        box-shadow: 0 0 0 6px rgba(235,88,54,.16);
    }

h1 {
    margin: 26px 0 20px;
    font-size: clamp(44px, 8vw, 92px);
    line-height: .92;
    letter-spacing: -.07em;
}

.accent {
    color: var(--orange-bright);
}

.intro {
    max-width: 640px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    margin: 0 0 34px;
}

.meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 34px;
}

.meta-card, .panel {
    border: 1px solid var(--stroke);
    border-radius: 26px;
    background: var(--card);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.meta-card {
    padding: 20px;
}

.label {
    display: block;
    color: var(--orange-bright);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
}

.value {
    display: block;
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

.primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(235,88,54,.36);
}

.secondary {
    border: 1px solid var(--stroke);
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.visual {
    position: relative;
    display: grid;
    place-items: center;
}

.logo-card {
    position: relative;
    width: min(440px, 100%);
    aspect-ratio: 1 / 1;
    border-radius: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    overflow: hidden;
}

    .logo-card::before {
        content: "";
        position: absolute;
        inset: -40%;
        background: conic-gradient(from 140deg, transparent, rgba(235,88,54,.42), transparent 34%);
        animation: spin 14s linear infinite;
    }

    .logo-card img {
        position: relative;
        width: 82%;
        height: 82%;
        object-fit: contain;
        filter: drop-shadow(0 18px 28px rgba(0,0,0,.28));
    }

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

section {
    padding: 76px 0;
}

.section-title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.05em;
}

.location-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
    align-items: stretch;
}

.panel {
    padding: 28px;
}

.address {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    margin: 0 0 24px;
}

iframe {
    width: 100%;
    min-height: 410px;
    border: 0;
    border-radius: 26px;
    filter: saturate(.88) contrast(1.02);
}

footer {
    padding: 32px 0 54px;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 860px) {
    header {
        align-items: center;
        gap: 16px;
    }

    nav {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

        nav > a {
            display: none;
        }

    .language-picker {
        display: inline-flex;
        margin-left: 0;
    }

    .hero, .location-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 24px;
    }

    .visual {
        order: -1;
    }

    .logo-card {
        width: min(360px, 100%);
    }
}

@media (max-width: 560px) {
    .page {
        width: min(100% - 28px, 1120px);
    }

    .brand {
        gap: 10px;
    }

        .brand img {
            width: 48px;
            height: 48px;
        }

        .brand span {
            font-size: 14px;
        }

    .language-picker__link {
        padding: 0 .55rem;
    }

    .meta {
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    iframe {
        min-height: 320px;
    }
}