:root {
    --bg: #f1f1f1;
    --panel: rgba(255,255,255,0.82);
    --panel-strong: rgba(255,255,255,0.92);
    --text: #222;
    --muted: #666;
    --line: rgba(0,0,0,0.08);
    --accent: #c11b1b;
    --shadow: 0 16px 45px rgba(0,0,0,0.08);
    --radius: 24px;
    --drawer-width: min(360px, 88vw);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.65), transparent 36%),
        linear-gradient(180deg, #f7f7f7 0%, #e8e8e8 100%);
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: var(--panel);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: clamp(1.35rem, 1rem + 1.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}
.brand-red { color: var(--accent); }
.brand-black { color: #111; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-switcher,
.menu-switcher {
    position: relative;
}

.icon-button {
    border: 1px solid var(--line);
    background: var(--panel-strong);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.icon-globe { font-size: 1.15rem; }
.hamburger { display: inline-flex; flex-direction: column; gap: 5px; }
.hamburger span {
    width: 20px;
    height: 2px;
    background: #111;
    display: block;
    border-radius: 999px;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 84px;
    padding: 8px;
    background: var(--panel-strong);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
}

.dropdown-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
}
.dropdown-link:hover,
.dropdown-link.is-active {
    background: rgba(0,0,0,0.05);
    color: #111;
}

.menu-drawer {
    position: fixed;
    top: 96px;
    right: 24px;
    width: var(--drawer-width);
    max-height: calc(100vh - 128px);
    overflow: auto;
    padding: 22px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
    transition: 0.28s ease;
    z-index: 25;
}
.menu-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-item {
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item > a {
    display: block;
    font-size: 1rem;
    padding: 8px 0;
}
.menu-item.is-active > a {
    color: var(--accent);
    font-weight: 700;
}
.menu-item .menu-list {
    padding-left: 16px;
    margin-top: 4px;
}
.menu-item.has-children > a::after {
    content: '▾';
    float: right;
    color: var(--muted);
}

.content-area {
    display: grid;
    gap: 24px;
}

.hero-block,
.content-block {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-block {
    padding: clamp(28px, 5vw, 72px);
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: var(--muted);
}

h1 {
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 2rem + 2vw, 4.9rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.lead {
    margin: 0;
    max-width: 820px;
    font-size: clamp(1rem, 0.9rem + 0.45vw, 1.35rem);
    line-height: 1.75;
    color: var(--muted);
}

.content-block {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: stretch;
    padding: 26px;
}

.text-column h2 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 1.1rem + 0.7vw, 2rem);
    letter-spacing: -0.03em;
}
.text-column p {
    margin: 0;
    color: #404040;
    line-height: 1.8;
}

.media-column {
    min-height: 320px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(220,220,220,0.8));
    border: 1px dashed rgba(0,0,0,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
}
.media-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-placeholder {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-width: 190px;
    padding: 14px 22px;
    border-radius: 999px;
    background: #111;
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 900px) {
    .site-shell { padding: 14px; }
    .site-header {
        top: 8px;
        padding: 14px 16px;
        border-radius: 24px;
        margin-bottom: 18px;
    }
    .menu-drawer {
        top: 82px;
        right: 14px;
        max-height: calc(100vh - 106px);
    }
    .content-block {
        grid-template-columns: 1fr;
    }
    .media-column {
        min-height: 220px;
    }
}
