@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebas-neue.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-400.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-500.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-700.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/manrope-800.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

:root {
    --bg: #060b14;
    --bg-soft: #0e1624;
    --panel: rgba(10, 18, 31, 0.82);
    --panel-strong: rgba(13, 24, 42, 0.94);
    --line: rgba(137, 186, 255, 0.18);
    --text: #eef4ff;
    --muted: #9eb1cb;
    --blue: #4ea3ff;
    --blue-strong: #1e6fd8;
    --accent: #8ed8ff;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(78, 163, 255, 0.22), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(142, 216, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #08101b 0%, #060b14 52%, #04070d 100%);
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
    pointer-events: none;
    opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.site-shell {
    width: min(calc(100% - 32px), var(--max));
    margin: 18px auto 0;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 11, 20, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 0.9;
    letter-spacing: 0.04em;
}
.brand small { color: var(--muted); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}
.main-nav a {
    color: var(--muted);
    transition: color 180ms ease, transform 180ms ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.lang-switch a.is-active {
    color: var(--text);
    transform: translateY(-1px);
}
.lang-switch {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
}
.lang-switch a { padding: 8px 12px; border-radius: 999px; }
.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 4px 0;
    background: var(--text);
}

.section {
    padding: 72px 0;
}

.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    min-height: calc(100vh - 160px);
    align-items: center;
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    font-weight: 800;
}
.hero h1,
.section-heading h2,
.legal-card h1 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
}
.hero-text,
.section-heading p,
.info-card p,
.timeline-step p,
.contact-copy p,
.legal-card p,
.map-placeholder p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}
.hero-actions,
.cookie-actions,
.footer-links,
.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--blue), var(--blue-strong));
    color: white;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(30, 111, 216, 0.28);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(30, 111, 216, 0.3);
}
.button-ghost,
.cookie-actions .is-secondary {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
    box-shadow: none;
}
.contact-strip { margin-top: 24px; }
.contact-strip a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
}

.hero-card,
.info-card,
.timeline-step,
.form-wrap,
.map-card,
.gallery-card,
.legal-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(14, 22, 36, 0.94), rgba(8, 13, 24, 0.92));
    box-shadow: var(--shadow);
}
.hero-card {
    padding: 26px;
}
.hero-card::after,
.info-card::after,
.form-wrap::after,
.legal-card::after {
    content: '';
    position: absolute;
    inset: auto -20% -48% 20%;
    height: 220px;
    background: radial-gradient(circle, rgba(78, 163, 255, 0.28), transparent 70%);
}
.hero-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}
.status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 8px rgba(142, 216, 255, 0.1);
}
.hero-logo {
    width: min(100%, 460px);
    margin: 18px auto 10px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.45));
    animation: logo-float 7s ease-in-out infinite;
}
.hero-panel {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
}
.hero-panel ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.8;
}

.section-heading {
    max-width: 640px;
    margin-bottom: 28px;
}
.card-grid,
.gallery-grid {
    display: grid;
    gap: 18px;
}
.card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.info-card {
    padding: 22px;
    min-height: 220px;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.timeline-step,
.gallery-card,
.form-wrap,
.map-card {
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.info-card:hover,
.info-card:focus-within,
.timeline-step:hover,
.gallery-card:hover,
.form-wrap:hover,
.map-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 186, 255, 0.28);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.42);
}
.info-card h3,
.timeline-step h3,
.legal-card h2 { margin-top: 0; }

.timeline {
    display: grid;
    gap: 16px;
}
.timeline-step {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    padding: 20px;
    align-items: start;
}
.timeline-index {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--accent);
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.gallery-card { aspect-ratio: 4 / 3; }
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}
.gallery-card:hover img { transform: scale(1.06); }

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}
.contact-details {
    display: grid;
    gap: 10px;
    margin: 22px 0 26px;
}
.contact-details a,
.contact-details span {
    color: var(--text);
}
.form-wrap,
.legal-card { padding: 24px; }
.contact-form {
    display: grid;
    gap: 16px;
}
.contact-form label,
.checkbox-row {
    display: grid;
    gap: 8px;
}
.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--text);
    background: rgba(255,255,255,0.04);
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form small { color: #ffb7b7; }
.checkbox-row {
    grid-template-columns: 18px 1fr;
    align-items: start;
}
.honeypot {
    position: absolute;
    left: -9999px;
}
.form-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
}
.form-message.success { background: rgba(79, 201, 154, 0.12); color: #b2ffd8; }
.form-message.error { background: rgba(255, 117, 117, 0.12); color: #ffd0d0; }

.map-card { min-height: 320px; }
.map-placeholder,
.map-frame {
    display: grid;
    place-items: center;
    min-height: 320px;
    padding: 28px;
    text-align: center;
}
.map-frame iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 0 0 28px;
    color: var(--muted);
}
.footer-links {
    justify-content: flex-end;
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    width: min(520px, calc(100% - 24px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(6, 11, 20, 0.95);
    box-shadow: var(--shadow);
}
.cookie-banner p { color: var(--muted); }

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

.legal-section { min-height: calc(100vh - 220px); display: grid; place-items: center; }
.legal-card { max-width: 780px; }

@media (max-width: 1100px) {
    .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero,
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .site-shell { width: min(calc(100% - 18px), var(--max)); }
    .site-header {
        border-radius: 28px;
        align-items: flex-start;
    }
    .nav-toggle { display: inline-block; margin-left: auto; }
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(5, 11, 20, 0.96);
    }
    .main-nav.is-open { display: flex; }
    .hero h1,
    .section-heading h2,
    .legal-card h1 { font-size: clamp(2.8rem, 18vw, 4.5rem); }
    .card-grid,
    .gallery-grid { grid-template-columns: 1fr; }
    .timeline-step { grid-template-columns: 1fr; }
    .site-footer,
    .footer-links { flex-direction: column; align-items: flex-start; }
}
