@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-ThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-SemiBoldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'PorscheNext';
    src: url('../fonts/PorscheNext-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

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

:root {
    --red: #E3000F;
    --black: #000000;
    --white: #FFFFFF;
    --cream: #F0EBE0;
    --font: 'PorscheNext', sans-serif;
}

html, body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── HERO DESKTOP ──────────────────────────────── */
/* PSD canvas: 1920×1080. Все % позиции точные по PSD-координатам. */
.hero-d {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: block;
}

.hero-d__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Title (805×134): PSD x=100, y=223 on 1920×1080 */
.hero-d__title {
    position: absolute;
    left: 5.21%;
    top: 20.65%;
    width: 41.93%;
    height: auto;
}

/* Logo (264×18): PSD x=1584, y=77 → right=72px from edge */
.hero-d__logo {
    position: absolute;
    right: 3.75%;
    top: 7.13%;
    width: 13.75%;
    height: auto;
}

/* Date badge (327×79): PSD x=1600, y=223 → flush right */
.hero-d__date {
    position: absolute;
    right: 0;
    top: 20.65%;
    width: 17.03%;
    height: auto;
}

/* ─── HERO MOBILE ───────────────────────────────── */
/* Полный flattened KV Stories (1080×1920) + кликабельная кнопка */
.hero-m {
    display: none;
}

.hero-m__canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 1080 / 1920;
    overflow: hidden;
    line-height: 0;
}

.hero-m__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-m__cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 77%;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8.43% 4%;
    gap: 3%;
}

.hero-m__price {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.hero-m__price-label {
    font-size: 3.8vw;
    color: #444;
    font-weight: 400;
    line-height: 1.3;
}

.hero-m__price-value {
    font-size: 7.5vw;
    color: var(--red);
    font-weight: 700;
    line-height: 1.1;
}

.hero-m__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--white);
    font-family: var(--font);
    font-size: 5.5vw;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    padding: 5.5vw 0;
    gap: 2vw;
    cursor: pointer;
}

/* Free registration: no price — button positioned at same location as paid */
.hero-m__cta--free {
    justify-content: flex-end;
    padding-bottom: 12%;
}

/* Sold out states */
.hero-m__btn--sold-out {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #666;
    color: rgba(255,255,255,0.5);
    font-family: var(--font);
    font-size: 5.5vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5.5vw 0;
    cursor: not-allowed;
}

.card--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── CITY BANNER ─────────────────────────────── */
.city-banner {
    background: var(--red);
    line-height: 0;
}

.city-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── DESCRIPTION ────────────────────────────── */
.description {
    background: #DB0A29 url('../images/city_bg.png') bottom/100% auto no-repeat;
    padding: 50px 10% 260px;
    text-align: center;
}

.description__intro {
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.55;
    max-width: 860px;
    margin: 0 auto 28px;
}

.description__intro strong {
    font-weight: 700;
}

.description__text {
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
    max-width: 860px;
    margin: 0 auto 28px;
}

.description__welcome {
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 32px;
}

.description__meta {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 60px;
}

.description__date,
.description__time {
    font-size: clamp(18px, 1.6vw, 26px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .description {
        padding: 40px 24px 48px;
    }
}

/* ─── CARDS SECTION ───────────────────────────── */
.cards-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--red);
}

.card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.card__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 480 / 725;
    overflow: hidden;
}

.card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card:hover .card__photo img {
    transform: scale(1.04);
}

.card__label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(14px, 1.3vw, 20px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.card__cta {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
}

.card:hover .card__cta {
    background: rgba(0,0,0,0.12);
}

.card__cta-text {
    font-size: clamp(11px, 1vw, 15px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.35;
    text-align: center;
    flex: 1;
}

.card__cta-arrow {
    flex-shrink: 0;
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
}

/* ─── FORMS ───────────────────────────────────── */
.form-page {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    color: var(--black);
}

.form-page__back {
    position: fixed;
    top: 28px;
    left: 40px;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.form-page__back:hover {
    color: var(--red);
}

.form-page__logo {
    position: fixed;
    top: 28px;
    right: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--black);
    text-transform: uppercase;
    z-index: 10;
}

.form-card {
    width: 100%;
    max-width: 780px;
}

.form-card__title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 12px;
    color: var(--black);
}

.form-card__subtitle {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: #444;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.btn-download {
    display: inline-block;
    margin-bottom: 32px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: var(--black);
    text-decoration: underline;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.btn-download:hover {
    color: var(--red);
}

.form-field textarea {
    width: 100%;
    border: 1.5px solid var(--black);
    border-radius: 0;
    background: transparent;
    font-family: var(--font);
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    color: var(--black);
    resize: vertical;
    transition: border-color 0.2s;
}

.form-field textarea:focus {
    border-color: var(--red);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 13px;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="number"] {
    width: 100%;
    height: 52px;
    border: 1.5px solid var(--black);
    border-radius: 0;
    background: transparent;
    font-family: var(--font);
    font-size: 15px;
    padding: 0 16px;
    outline: none;
    color: var(--black);
    transition: border-color 0.2s;
}

.form-field input:focus {
    border-color: var(--red);
}

.form-consent {
    margin-top: 16px;
    grid-column: 1 / -1;
}

.form-consent p {
    font-size: 13px;
    color: #333;
    margin-bottom: 14px;
}

.form-consent__options {
    display: flex;
    gap: 36px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 1.5px solid var(--black);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--red);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--red);
    border-radius: 50%;
}

.form-submit {
    grid-column: 1 / -1;
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
}

.btn-submit {
    background: var(--red);
    color: var(--white);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    padding: 18px 48px;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-submit:hover {
    background: #c5000d;
}

.btn-submit:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.btn-submit:disabled:hover {
    background: #aaa;
}

.form-message {
    margin-top: 20px;
    grid-column: 1 / -1;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
}

.form-message--success {
    background: #f0fff4;
    color: #1a7a2e;
    border-left: 4px solid #1a7a2e;
}

.form-message--error {
    background: #fff5f5;
    color: var(--red);
    border-left: 4px solid var(--red);
}

/* ─── SUCCESS PAGE ────────────────────────────── */
.success-page {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    color: var(--black);
}

.success-page__icon {
    font-size: 60px;
    margin-bottom: 24px;
    color: var(--red);
}

.success-page__title {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.success-page__text {
    font-size: 16px;
    color: #444;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-home:hover {
    background: var(--red);
}

/* ─── REGISTER CTA ───────────────────────────────── */
.register-cta {
    background: var(--red);
    padding: 80px 24px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    color: var(--red);
    font-family: var(--font);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 24px 64px;
    text-decoration: none;
    transition: all 0.2s;
}

.register-cta__btn:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 480px) {
    .register-cta {
        padding: 60px 20px 80px;
    }
    .register-cta__btn {
        padding: 20px 36px;
        font-size: 16px;
    }
}

/* ─── TABLET ──────────────────────────────────── */
@media (max-width: 900px) {
    .cards-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── MOBILE: переключение hero ───────────────── */
@media (max-width: 768px) {
    .hero-d { display: none; }
    .hero-m { display: block; }
}

/* ─── MOBILE FORMS ────────────────────────────── */
@media (max-width: 600px) {
    .cards-section {
        grid-template-columns: 1fr 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-grid--full { grid-column: 1; }
    .form-consent    { grid-column: 1; }
    .form-submit     { grid-column: 1; }
    .form-page__back,
    .form-page__logo {
        position: static;
        margin-bottom: 8px;
    }
    .form-page {
        padding: 24px 20px 40px;
        justify-content: flex-start;
    }
}

/* ─── FOOTER ──────────────────────────────────── */
.site-footer {
    background: #080808;
    border-top: 2px solid var(--red);
    font-family: var(--font);
    color: var(--white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 56px 8% 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    gap: 32px;
}

.footer-brand__name {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 10px;
}

.footer-brand__tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--red);
    text-transform: uppercase;
}

.footer-datebox {
    text-align: right;
    flex-shrink: 0;
}

.footer-datebox__val {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--white);
}

.footer-datebox__val span {
    color: var(--red);
    margin: 0 4px;
}

.footer-datebox__sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 8px;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0 8%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-col {
    padding: 44px 0;
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.07);
}

.footer-col:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 40px;
}

.footer-col:nth-child(2) {
    padding-left: 40px;
}

/* Countdown column */
.footer-cd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 8px;
    margin-top: 4px;
}

.footer-cd-unit {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-cd-val {
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--white);
    font-variant-numeric: tabular-nums;
}

.footer-cd-lbl {
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.footer-col__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.footer-col__main {
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.footer-col__sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}

.footer-map-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-map-link {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 16px;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer-map-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.2s;
    line-height: 1;
}

.footer-contact-link:hover {
    color: var(--white);
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-contact-link:hover .footer-contact-icon {
    opacity: 1;
}


/* Bottom bar */
.footer-bottom {
    padding: 22px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    gap: 20px;
    flex-wrap: wrap;
}

.footer-privacy-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.25);
    font-family: var(--font);
    font-size: 11px;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.footer-privacy-btn:hover {
    color: rgba(255,255,255,0.6);
}

/* Privacy modal */
.privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.privacy-modal.open {
    display: flex;
}

.privacy-box {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    padding: 44px;
    position: relative;
}

.privacy-box__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.6);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.privacy-box__close:hover {
    background: rgba(255,255,255,0.14);
}

.privacy-box__title {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.privacy-box__text {
    font-family: var(--font);
    font-size: 0.83rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

/* Whitelist check status */
.wa-status {
    margin-top: 6px;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 6px;
    line-height: 1.3;
}
.wa-status--checking { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.wa-status--ok       { background: rgba(40,180,80,0.15);  color: #6ee09a; border-left: 3px solid #3cb96a; }
.wa-status--error    { background: rgba(220,50,50,0.15);  color: #ff9090; border-left: 3px solid #e03030; }
.wa-status--warn     { background: rgba(200,168,75,0.15); color: #e8c96a; border-left: 3px solid #c8a84b; }

/* Footer responsive */
@media (max-width: 900px) {
    .footer-info {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col--cd {
        grid-column: 1 / -1;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.07);
        padding-left: 0;
        padding-top: 36px;
    }
    .footer-col:nth-child(2) {
        border-right: none;
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px 36px;
        gap: 24px;
    }
    .footer-datebox { text-align: left; }
    .footer-info {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .footer-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 32px 0;
        padding-right: 0;
    }
    .footer-col:nth-child(2) { padding-left: 0; }
    .footer-col:last-child {
        border-bottom: none;
        padding-left: 0;
    }
    .footer-col--cd { grid-column: auto; border-top: none; padding-top: 32px; }
    .footer-col--cd .footer-cd-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-countdown { padding: 44px 24px; }
    .countdown-unit { padding: 0 14px; min-width: 60px; }
    .countdown-unit__val { font-size: 36px; }
    .footer-bottom { padding: 20px 24px; flex-direction: column; text-align: center; gap: 8px; }
    .privacy-box { padding: 32px 24px; }
}

/* ─── Language Switcher ──────────────────────────────────────────────── */
.lang-switcher {
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 5px 10px;
    border-radius: 4px;
}
.lang-btn {
    color: rgba(255,255,255,0.6);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    font-family: inherit;
    transition: color 0.2s;
    padding: 2px 0;
    line-height: 1;
}
.lang-btn:hover { color: rgba(255,255,255,0.9); }
.lang-btn--active {
    color: #c8a84b;
    border-bottom: 1px solid #c8a84b;
}
.lang-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.65rem;
    line-height: 1;
}
