:root {
    --violet-700: #6d28d9;
    --violet-500: #8b5cf6;
    --fuchsia-500: #c026d3;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --blue-600: #1d7ff0;
    --navy-900: #0f2b46;
    --slate-600: #5a6b7c;
    --slate-300: #cbd5e1;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    --danger: #dc2626;
    --success: #059669;

    --grad-primary: linear-gradient(135deg, var(--fuchsia-500) 0%, var(--violet-700) 100%);
    --grad-muted: linear-gradient(135deg, #d4d4d8 0%, #a1a1aa 100%);

    --radius: 10px;
    --shell: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-900);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-600); }

.shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- header ---------- */

.site-header {
    border-bottom: 1px solid var(--slate-300);
    background: var(--white);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 20px;
    max-width: var(--shell);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand__emblem {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
}

.brand__text {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: .02em;
    max-width: 260px;
    text-transform: uppercase;
}

.lang-switch {
    display: flex;
    gap: 6px;
}

.lang-switch a {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: var(--slate-600);
    background: var(--slate-100);
}

.lang-switch a.is-active {
    color: var(--white);
    background: var(--violet-700);
}

/* ---------- hero ---------- */

.hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 0;
}

.hero__blob {
    position: absolute;
    left: -8%;
    bottom: -30%;
    width: 620px;
    max-width: 90%;
    z-index: 0;
    pointer-events: none;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 72px;
}

.hero__trophy { justify-self: center; }

.hero__body { max-width: 560px; }

.hero__title {
    font-size: clamp(26px, 3.6vw, 38px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: var(--navy-900);
    margin: 0 0 30px;
    max-width: 22ch;
    text-wrap: balance;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* ---------- placeholders (replace with real art) ---------- */

.ph {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--slate-300);
    border-radius: var(--radius);
    color: var(--slate-600);
    font-size: 12px;
    line-height: 1.4;
    padding: 8px;
    background: var(--slate-100);
}

.ph--emblem { width: 52px; height: 52px; border-radius: 50%; font-size: 9px; }
.ph--trophy { width: 240px; height: 420px; }

/* ---------- buttons ---------- */

.btn {
    display: inline-block;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--grad-primary);
    transition: filter .15s ease;
}

.btn:hover { filter: brightness(1.08); }

.btn:focus-visible {
    outline: 3px solid var(--navy-900);
    outline-offset: 2px;
}

.btn[disabled], .btn.is-disabled {
    background: var(--grad-muted);
    cursor: not-allowed;
    filter: none;
}

.btn--ghost {
    background: var(--slate-100);
    color: var(--navy-900);
}

.btn--lg { font-size: 19px; padding: 16px 44px; }
.btn--sm { font-size: 14px; padding: 9px 18px; }
.btn--block { display: block; width: 100%; }

/* ---------- generic sections ---------- */

.section { padding: 56px 0; }
.section--muted { background: var(--slate-100); }

.section__title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    margin: 0 0 10px;
}

.section__lead {
    color: var(--slate-600);
    max-width: 62ch;
    margin: 0 0 28px;
}

/* ---------- forms ---------- */

.form { max-width: 760px; }

.field { margin-bottom: 22px; }

.field__label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}

.field__label .req { color: var(--danger); }

.field__hint {
    font-size: 13px;
    color: var(--slate-600);
    margin: 5px 0 0;
}

.field__error {
    font-size: 13px;
    color: var(--danger);
    margin: 5px 0 0;
    font-weight: 600;
}

.input, .select, .textarea {
    width: 100%;
    font: inherit;
    color: inherit;
    padding: 11px 13px;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius);
    background: var(--white);
}

.input:focus, .select:focus, .textarea:focus {
    outline: 2px solid var(--violet-500);
    outline-offset: 0;
    border-color: var(--violet-500);
}

.textarea { min-height: 260px; resize: vertical; line-height: 1.65; }

.input--file { padding: 9px; background: var(--slate-100); }

.counter { font-variant-numeric: tabular-nums; font-weight: 700; }
.counter.is-short { color: var(--danger); }
.counter.is-ok { color: var(--success); }

.check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
}

.check input { margin-top: 4px; flex: 0 0 auto; width: 18px; height: 18px; }

.radio-row { display: flex; gap: 22px; flex-wrap: wrap; }
.radio-row label { display: flex; gap: 7px; align-items: center; }

/* ---------- alerts ---------- */

.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-weight: 600;
    border-left: 4px solid;
}

.alert--error { background: #fef2f2; border-color: var(--danger); color: #991b1b; }
.alert--success { background: #ecfdf5; border-color: var(--success); color: #065f46; }
.alert--info { background: #eff6ff; border-color: var(--blue-600); color: #1e40af; }

/* ---------- category grid ---------- */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    background: var(--white);
}

.cat-card:hover { border-color: var(--violet-500); }

.cat-card__name { font-weight: 700; line-height: 1.35; }

.cat-card__meta { font-size: 13px; color: var(--slate-600); }

/* ---------- nominee list ---------- */

.nominee {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--slate-300);
}

.nominee__name { font-size: 19px; font-weight: 700; margin: 0 0 4px; }

.nominee__meta { font-size: 14px; color: var(--slate-600); margin: 0 0 10px; }

.nominee__text { margin: 0; }

.nominee__text[data-collapsed="true"] {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nominee__more {
    background: none;
    border: 0;
    padding: 0;
    margin-top: 6px;
    font: inherit;
    font-weight: 700;
    color: var(--blue-600);
    cursor: pointer;
    text-decoration: underline;
}

.nominee__side { text-align: center; min-width: 150px; }

.nominee__count {
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.nominee__count-label { font-size: 13px; color: var(--slate-600); margin-bottom: 12px; }

.nominee__lang-note {
    font-size: 12px;
    color: var(--slate-600);
    font-style: italic;
    margin: 8px 0 0;
}

.voted-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: var(--radius);
    background: #ecfdf5;
    color: #065f46;
    font-weight: 700;
    font-size: 14px;
}

/* ---------- footer ---------- */

.site-footer {
    background: var(--navy-900);
    color: #cbd5e1;
    padding: 34px 0;
    margin-top: 64px;
    font-size: 14px;
}

.site-footer a { color: var(--teal-300); }

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
    .hero { padding-top: 28px; }
    .hero__grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 56px; }
    .hero__trophy { order: 2; }
    .hero__body { order: 1; text-align: center; margin: 0 auto; }
    .hero__title { max-width: none; }
    .hero__actions { justify-content: center; }
    .ph--trophy { width: 190px; height: 330px; }
    .brand__text { font-size: 10px; max-width: 180px; }
    .nominee { grid-template-columns: 1fr; }
    .nominee__side { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

/* ---------- real assets (added 2026-09-04) ---------- */

.brand__emblem { border-radius: 50%; object-fit: contain; }

.hero__trophy img {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 18px 30px rgba(15, 43, 70, .18));
}

.hero__iyv {
    width: 120px;
    height: auto;
    margin-bottom: 18px;
}

.law-box {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 4px solid var(--violet-700);
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.law-box__text { margin: 0; max-width: 60ch; }

@media (max-width: 860px) {
    .hero__trophy img { width: 180px; }
    .hero__iyv { width: 96px; margin: 0 auto 14px; }
}

/* ---------- schedule ---------- */

.schedule {
    width: 100%;
    border-collapse: collapse;
    max-width: 900px;
}

.schedule th, .schedule td {
    text-align: left;
    vertical-align: top;
    padding: 14px 12px;
    border-bottom: 1px solid var(--slate-300);
}

.schedule th {
    font-size: 13px;
    color: var(--slate-600);
    font-weight: 700;
}

.schedule td:first-child {
    white-space: nowrap;
    font-weight: 800;
    color: var(--violet-700);
    width: 150px;
}

@media (max-width: 640px) {
    .schedule thead { display: none; }
    .schedule tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--slate-300); }
    .schedule td { display: block; padding: 2px 0; border: 0; width: auto; }
    .schedule td:last-child { font-size: 13px; color: var(--slate-600); }
}

.contact-phones {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.contact-phones a { color: var(--navy-900); text-decoration: none; }
.contact-phones a:hover { color: var(--violet-700); }
