@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Raleway:wght@400;500;600&display=swap");

:root {
    --bg: #030303;
    --ink: #f4efe6;
    --beige: #d4b78d;
    --beige-soft: rgba(212, 183, 141, 0.68);
    --muted: rgba(244, 239, 230, 0.66);
    --quiet: rgba(244, 239, 230, 0.42);
    --line: rgba(244, 239, 230, 0.23);
    --line-strong: rgba(244, 239, 230, 0.42);
    --neon: #647bff;
    --neon-soft: rgba(100, 123, 255, 0.32);
    --max: 1120px;
    --side: 28px;
}

* {
    box-sizing: border-box;
}

html {
    background: #000;
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #000;
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0 !important;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    font: inherit;
}

img,
video {
    display: block;
    max-width: 100%;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    gap: 18px;
    align-content: center;
    background: #050505;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__mark {
    position: relative;
    width: 84px;
    height: 84px;
    border: 1px solid rgba(212, 183, 141, 0.42);
    border-radius: 999px;
    box-shadow: inset 0 0 30px rgba(212, 183, 141, 0.06), 0 0 32px rgba(100, 123, 255, 0.09);
}

.preloader__mark::before {
    content: "";
    position: absolute;
    inset: 11px;
    border: 1px solid rgba(244, 239, 230, 0.08);
    border-radius: inherit;
}

.preloader__mark span {
    position: absolute;
    left: 39px;
    top: 16px;
    width: 6px;
    height: 52px;
    border-radius: 999px;
    background: var(--beige);
    transform-origin: 50% 82%;
}

.preloader__mark span::before {
    content: "";
    position: absolute;
    left: -4px;
    top: -5px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--beige);
}

.preloader__mark span:first-child {
    transform: rotate(-28deg);
    animation: stick-left 0.72s ease-in-out infinite;
}

.preloader__mark span:last-child {
    transform: rotate(28deg);
    animation: stick-right 0.72s ease-in-out infinite;
    animation-delay: 0.13s;
}

.preloader__text {
    font-family: "Raleway", Arial, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--beige);
}

.page-shell {
    position: relative;
    width: 100%;
    min-height: 100vh;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 11%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.6px),
        radial-gradient(circle at 17% 31%, rgba(255, 255, 255, 0.34) 0 1px, transparent 1.4px),
        radial-gradient(circle at 28% 7%, rgba(255, 255, 255, 0.44) 0 1px, transparent 1.5px),
        radial-gradient(circle at 37% 22%, rgba(255, 255, 255, 0.26) 0 1px, transparent 1.5px),
        radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.50) 0 1px, transparent 1.6px),
        radial-gradient(circle at 58% 27%, rgba(255, 255, 255, 0.30) 0 1px, transparent 1.5px),
        radial-gradient(circle at 69% 9%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.5px),
        radial-gradient(circle at 80% 21%, rgba(255, 255, 255, 0.30) 0 1px, transparent 1.5px),
        radial-gradient(circle at 92% 13%, rgba(255, 255, 255, 0.56) 0 1px, transparent 1.5px),
        linear-gradient(180deg, #050505 0%, #000 44%, #030303 100%);
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.page-shell::before {
    opacity: 0.94;
    background:
        radial-gradient(circle at 12% 48%, rgba(255, 255, 255, 0.62) 0 1.2px, transparent 1.9px),
        radial-gradient(circle at 22% 66%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.7px),
        radial-gradient(circle at 34% 82%, rgba(255, 255, 255, 0.70) 0 1.3px, transparent 2px),
        radial-gradient(circle at 45% 58%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.7px),
        radial-gradient(circle at 61% 74%, rgba(255, 255, 255, 0.54) 0 1.1px, transparent 1.8px),
        radial-gradient(circle at 76% 54%, rgba(255, 255, 255, 0.60) 0 1.2px, transparent 1.9px),
        radial-gradient(circle at 88% 81%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.7px);
}

.page-shell::after {
    background:
        radial-gradient(ellipse at 73% 22%, rgba(100, 123, 255, 0.09), transparent 26%),
        radial-gradient(ellipse at 27% 28%, rgba(212, 183, 141, 0.07), transparent 22%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 38%, rgba(0, 0, 0, 0.28));
}

.site-header {
    position: fixed;
    left: 50%;
    top: 0;
    z-index: 80;
    width: min(100%, var(--max));
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 var(--side);
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.90);
}

.site-header::after {
    content: "";
    position: absolute;
    left: var(--side);
    right: var(--side);
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.26);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 198px;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 18px;
    color: #fff7eb;
    white-space: nowrap;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.78);
}

.desktop-nav a,
.lang-link,
.contact-link {
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.lang-link:hover {
    color: var(--beige);
}

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

.lang-link {
    font-size: 11px;
    color: var(--muted);
}

.contact-link {
    height: 42px;
    min-width: 142px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--line-strong);
    color: #fff7eb;
    font-size: 11px;
    text-transform: uppercase;
}

.contact-link:hover {
    transform: translateY(-1px);
    border-color: var(--beige);
    color: var(--beige);
}

.contact-link span,
.button span {
    font-size: 15px;
    line-height: 1;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.02);
}

.menu-button span {
    width: 17px;
    height: 1px;
    background: var(--ink);
}

main {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 0 var(--side) 30px;
}

.section-panel {
    position: relative;
    border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.hero {
    min-height: 690px;
    padding-top: 136px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 76px 0 auto 0;
    height: 250px;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.8px),
        radial-gradient(circle at 58% 31%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.7px),
        radial-gradient(circle at 63% 13%, rgba(255, 255, 255, 0.72) 0 1.1px, transparent 1.9px),
        radial-gradient(circle at 69% 26%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.7px),
        radial-gradient(circle at 74% 17%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.8px),
        radial-gradient(circle at 81% 35%, rgba(255, 255, 255, 0.44) 0 1px, transparent 1.7px),
        radial-gradient(circle at 87% 22%, rgba(255, 255, 255, 0.56) 0 1px, transparent 1.8px),
        radial-gradient(circle at 91% 41%, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.7px);
    opacity: 0.88;
    animation: stars-fade 3.8s ease-in-out infinite alternate;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 540px;
}

.eyebrow,
.section-kicker,
.motto {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
    color: rgba(244, 239, 230, 0.72);
}

.eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.eyebrow span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--beige);
}

h1,
h2,
.contacts h2 {
    margin: 0;
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    color: #fff8ee;
}

h1 {
    font-size: 62px !important;
    line-height: 1.08 !important;
}

.hero-facts {
    display: grid;
    gap: 7px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(244, 239, 230, 0.76);
    font-size: 15px;
    line-height: 1.35;
}

.hero-facts li {
    position: relative;
    padding-left: 17px;
}

.hero-facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--beige);
    box-shadow: 0 0 10px rgba(212, 183, 141, 0.36);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.hero-note span,
.section-head p span,
.page-footer span,
.contacts span,
.motto span {
    color: var(--beige);
}

.hero__visual {
    position: absolute;
    right: -10px;
    top: 118px;
    width: 620px;
    height: 438px;
    overflow: hidden;
    opacity: 0.94;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 84%, transparent 100%), linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 84%, transparent 100%), linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.hero-play {
    position: absolute;
    left: 48.8%;
    top: 76.5%;
    z-index: 5;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(244, 239, 230, 0.62);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hero-play:hover {
    transform: translate(-50%, -50%) scale(1.04);
    border-color: var(--beige);
    box-shadow: 0 0 26px rgba(100, 123, 255, 0.16);
}

.hero-play span {
    position: absolute;
    left: 26px;
    top: 21px;
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid var(--beige);
}

.hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 38%;
    filter: contrast(1.04) saturate(0.88) brightness(0.72);
}

.hero__visual picture,
.contacts__grid picture {
    display: block;
    width: 100%;
    height: 100%;
}

.stats {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 44px;
    border-top: 1px solid rgba(244, 239, 230, 0.13);
    border-bottom: 1px solid rgba(244, 239, 230, 0.13);
}

.stat {
    min-height: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px 14px;
    text-align: center;
    border-left: 1px solid rgba(244, 239, 230, 0.16);
}

.stat:first-child {
    border-left: 0;
}

.stat strong {
    font-family: "Raleway", Arial, sans-serif;
    font-size: 31px;
    font-weight: 400;
    color: #fff6ea;
}

.stat span {
    max-width: 118px;
    color: rgba(244, 239, 230, 0.66);
    font-size: 13px;
    line-height: 1.18;
}

.stat--neon strong {
    color: #f5efff;
    text-shadow: 0 0 16px var(--neon-soft), 0 0 30px rgba(100, 123, 255, 0.24);
}

.stat--neon span {
    color: rgba(224, 229, 255, 0.80);
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 34px;
}

.button,
.video-more {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 28px;
    border: 1px solid var(--line-strong);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover,
.video-more:hover {
    transform: translateY(-2px);
    border-color: var(--beige);
    box-shadow: 0 0 28px rgba(212, 183, 141, 0.08);
}

.button--primary {
    min-width: 208px;
    background: #fff8ef;
    color: #070707;
    border-color: #fff8ef;
}

.button--ghost {
    min-width: 232px;
    color: var(--ink);
}

.competitions,
.sound,
.formats,
.video-section,
.faq,
.contacts {
    padding: 62px 0;
}

.section-head {
    max-width: 720px;
}

.section-head h2 {
    margin-top: 7px;
    font-size: 40px !important;
    line-height: 1.12 !important;
}

.section-head p:last-child {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.award-line {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 34px;
    color: rgba(244, 239, 230, 0.76);
    font-size: 13px;
}

.award-line span {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.award-line span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #fff8ef;
}

.award-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.award-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    padding: 23px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.award-card h3 {
    margin: 0;
    min-height: 74px;
    color: #f7f0e7;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.28;
}

.award-card h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 18px;
    background: rgba(244, 239, 230, 0.12);
}

.award-card strong {
    margin-top: auto;
    color: #fff8ef;
    font-size: 15px;
    font-weight: 500;
}

.award-card p {
    margin: 10px 0 0;
    color: var(--quiet);
    font-size: 12px;
    line-height: 1.38;
}

.wreath {
    width: 31px;
    height: 31px;
    margin-bottom: 12px;
    color: var(--beige);
}

.sound-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.sound-grid article,
.format-list div {
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(244, 239, 230, 0.18);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.sound-grid span,
.format-list span {
    color: var(--beige);
    font-size: 12px;
    text-transform: uppercase;
}

.sound-grid h3,
.format-list strong {
    display: block;
    margin: 18px 0 0;
    color: #fff8ef;
    font-family: "Raleway", Arial, sans-serif;
    font-size: 22px !important;
    font-weight: 400;
}

.sound-grid p,
.format-list p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.format-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.format-list div {
    min-height: 0;
    display: grid;
    grid-template-columns: 64px 220px 1fr;
    align-items: center;
    gap: 18px;
}

.format-list strong,
.format-list p {
    margin: 0;
}

.video-frame {
    position: relative;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid rgba(244, 239, 230, 0.20);
    border-radius: 4px;
    aspect-ratio: 16 / 9;
    background: #050505;
    box-shadow: 0 0 44px rgba(100, 123, 255, 0.08);
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.video-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.04) saturate(0.92);
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(244, 239, 230, 0.58);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.34);
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.video-play:hover {
    transform: translate(-50%, -50%) scale(1.04);
    border-color: var(--beige);
    box-shadow: 0 0 30px rgba(100, 123, 255, 0.18);
}

.video-play span {
    position: absolute;
    left: 33px;
    top: 27px;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid var(--beige);
}

.video-more {
    width: 100%;
    margin-top: 18px;
    background: rgba(0, 0, 0, 0.08);
    color: #fff8ef;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 180;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.94);
}

.video-modal[hidden] {
    display: none;
}

.video-modal video {
    width: min(100%, 132vh);
    max-width: 1280px;
    max-height: calc(100vh - 76px);
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
    border: 1px solid rgba(212, 183, 141, 0.35);
    box-shadow: 0 0 70px rgba(100, 123, 255, 0.14);
}

.video-modal__close {
    position: fixed;
    right: 24px;
    top: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 183, 141, 0.55);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: var(--beige);
    font-size: 32px;
    line-height: 1;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.faq-item {
    border: 1px solid rgba(244, 239, 230, 0.18);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.015);
}

.faq-item button {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 22px;
    border: 0;
    background: transparent;
    color: #fff8ef;
    text-align: left;
    cursor: pointer;
}

.faq-item button:focus {
    outline: none;
}

.faq-item button:focus-visible {
    outline: 1px solid rgba(212, 183, 141, 0.58);
    outline-offset: -4px;
}

.faq-item button span {
    font-size: 17px;
}

.faq-item b {
    color: var(--beige);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-item.is-open b {
    transform: rotate(45deg);
}

.faq-item [data-faq-panel] {
    display: none;
}

.faq-item.is-open [data-faq-panel] {
    display: block;
}

.faq-item [data-faq-panel] p {
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.faq-item.is-open [data-faq-panel] p {
    padding-bottom: 22px;
}

.contacts {
    padding-bottom: 20px;
}

.motto {
    margin: 0 auto 42px;
    max-width: 720px;
    padding: 0 18px;
    text-align: center;
    color: var(--beige-soft);
    line-height: 1.9;
}

.contacts__grid {
    position: relative;
    display: grid;
    grid-template-columns: 330px 1fr 320px;
    align-items: center;
    gap: 44px;
    min-height: 210px;
    border-top: 1px solid rgba(244, 239, 230, 0.16);
    border-bottom: 1px solid rgba(244, 239, 230, 0.16);
    overflow: hidden;
}

.contacts h2 {
    font-size: 36px !important;
}

.contacts p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.contacts address {
    display: grid;
    gap: 16px;
    font-style: normal;
    color: rgba(244, 239, 230, 0.72);
    font-size: 14px;
}

.contacts address a:hover {
    color: var(--beige);
}

.contacts__grid picture {
    align-self: stretch;
    width: 100%;
    height: 210px;
}

.contacts__grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    opacity: 0.74;
    filter: contrast(1.06) brightness(0.76) saturate(0.78);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 100%);
}

.contact-social {
    width: fit-content;
}

.page-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    color: rgba(244, 239, 230, 0.46);
    font-size: 12px;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 183, 141, 0.55);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.46);
    color: var(--beige);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu,
.menu-backdrop {
    display: none;
}

@media (orientation: portrait) {
    .video-modal video {
        width: min(100%, 92vw);
        max-height: 72vh;
    }
}

@media (max-width: 980px) {
    :root {
        --side: 22px;
    }

    .site-header {
        height: 70px;
    }

    .brand {
        min-width: auto;
        font-size: 16px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .desktop-nav,
    .contact-link {
        display: none;
    }

    .menu-button {
        display: inline-flex;
    }

    .hero {
        min-height: 780px;
        padding-top: 114px;
    }

    .hero__content {
        width: min(100%, 430px);
    }

    h1 {
        font-size: 54px !important;
    }

    .hero__visual {
        right: -220px;
        top: 170px;
        width: 640px;
        height: 470px;
        opacity: 0.72;
    }

    .stats {
        margin-top: 260px;
    }

    .award-cards {
        grid-auto-flow: column;
        grid-auto-columns: minmax(238px, 33vw);
        grid-template-columns: none;
        overflow-x: auto;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .award-card {
        scroll-snap-align: start;
    }

    .sound-grid,
    .contacts__grid {
        grid-template-columns: 1fr;
    }

    .contacts__grid {
        gap: 24px;
        padding: 26px 0;
    }

    .contacts__grid picture {
        height: 260px;
    }

    .contacts__grid img {
        -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
    }

    .mobile-menu {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 120;
        width: min(360px, 88vw);
        display: flex;
        flex-direction: column;
        padding: 22px 22px 112px;
        background: rgba(4, 4, 4, 0.98);
        border-left: 1px solid var(--line);
        transform: translateX(105%);
        transition: transform 0.26s ease;
    }

    .mobile-menu.is-open {
        transform: translateX(0);
    }

    .mobile-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 28px;
    }

    .mobile-menu__top img {
        width: 88px;
        height: auto;
    }

    .mobile-menu__top button {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(212, 183, 141, 0.42);
        border-radius: 999px;
        background: transparent;
        color: var(--beige);
        font-size: 30px;
        line-height: 1;
    }

    .mobile-menu nav {
        display: grid;
        gap: 0;
    }

    .mobile-menu nav a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(244, 239, 230, 0.10);
        font-size: 13px;
        text-transform: uppercase;
        color: var(--ink);
    }

    .mobile-menu__footer {
        position: fixed;
        left: 22px;
        right: 22px;
        bottom: 22px;
        display: grid;
        gap: 12px;
        background: linear-gradient(180deg, rgba(4, 4, 4, 0), #040404 22%);
        padding-top: 28px;
    }

    .mobile-menu__footer a:first-child {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--beige);
        color: var(--beige);
        text-transform: uppercase;
        font-size: 12px;
    }

    .mobile-menu__footer a:last-child {
        text-align: center;
        color: var(--quiet);
        font-size: 12px;
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: block;
        background: rgba(0, 0, 0, 0.58);
    }

    .menu-backdrop[hidden] {
        display: none;
    }
}

@media (max-width: 680px) {
    :root {
        --side: 18px;
    }

    html {
        scroll-padding-top: 76px;
    }

    main {
        padding-bottom: 18px;
    }

    .site-header {
        width: 100%;
        padding: 0 18px;
    }

    .brand span {
        max-width: 210px;
        white-space: normal;
        font-size: 14px;
        line-height: 1.25;
    }

    .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-top: 102px;
        padding-bottom: 44px;
    }

    .hero::before {
        inset: 72px 0 auto 0;
        height: 300px;
        background:
            radial-gradient(circle at 42% 9%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px),
            radial-gradient(circle at 53% 18%, rgba(255, 255, 255, 0.78) 0 1.1px, transparent 1.9px),
            radial-gradient(circle at 61% 8%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.7px),
            radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.66) 0 1px, transparent 1.8px),
            radial-gradient(circle at 81% 13%, rgba(255, 255, 255, 0.54) 0 1px, transparent 1.7px),
            radial-gradient(circle at 88% 31%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.7px),
            radial-gradient(circle at 25% 26%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.7px),
            radial-gradient(circle at 14% 42%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.7px);
    }

    .hero__content {
        order: 2;
        width: 100%;
    }

    .eyebrow {
        display: none;
    }

    h1 {
        font-size: 46px !important;
        line-height: 1.06;
    }

    .hero-facts {
        width: min(100%, 330px);
        font-size: 14px;
    }

    .hero__visual {
        order: 1;
        position: relative;
        right: auto;
        top: auto;
        width: calc(100% + 36px);
        height: 330px;
        margin: -78px -18px 22px;
        opacity: 0.9;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%), linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%), linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
    }

    .hero__visual img {
        object-position: center 10%;
    }

    .hero-play {
        left: 50%;
        top: 80%;
        width: 58px;
        height: 58px;
    }

    .hero-play span {
        left: 24px;
        top: 19px;
    }

    .stats {
        order: 3;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 24px;
    }

    .stat {
        min-height: 82px;
        border-top: 1px solid rgba(244, 239, 230, 0.10);
    }

    .stat:nth-child(odd) {
        border-left: 0;
    }

    .stat:last-child {
        grid-column: 1 / -1;
    }

    .hero-actions {
        order: 4;
        display: grid;
        gap: 12px;
        margin-top: 22px;
    }

    .button,
    .button--primary,
    .button--ghost,
    .video-more {
        width: 100%;
        min-width: 0;
    }

    .competitions,
    .sound,
    .formats,
    .video-section,
    .faq,
    .contacts {
        padding: 46px 0;
    }

    .section-head h2 {
        font-size: 34px !important;
    }

    .award-line {
        display: none;
    }

    .award-cards {
        grid-auto-columns: minmax(245px, 82vw);
        margin: 26px -18px 0;
        padding: 0 18px 14px;
    }

    .award-card {
        min-height: 238px;
    }

    .sound-grid {
        grid-template-columns: 1fr;
    }

    .format-list div {
        grid-template-columns: 44px 1fr;
        gap: 8px 14px;
    }

    .format-list p {
        grid-column: 2;
    }

    .video-frame {
        margin-top: 24px;
    }

    .video-play {
        width: 68px;
        height: 68px;
    }

    .video-play span {
        left: 28px;
        top: 22px;
    }

    .video-more {
        margin-top: 14px;
    }

    .video-modal {
        padding: 16px;
    }

    .video-modal__close {
        right: 16px;
        top: 16px;
        width: 44px;
        height: 44px;
    }

    .faq-item button {
        padding: 0 16px;
    }

    .contacts h2 {
        font-size: 34px !important;
    }

    .contacts__grid picture {
        display: none;
    }

    .contacts address {
        gap: 12px;
    }

    .contact-social {
        width: 100%;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        border: 1px solid rgba(212, 183, 141, 0.38);
        color: #fff8ef;
        font-size: 15px;
        text-transform: uppercase;
    }

    .page-footer {
        display: grid;
        gap: 10px;
    }

    .scroll-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 40px !important;
    }

    .brand span {
        max-width: 168px;
    }

    .section-head h2 {
        font-size: 30px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

@keyframes stick-left {
    0%, 100% { transform: rotate(-28deg); }
    48% { transform: rotate(-8deg); }
}

@keyframes stick-right {
    0%, 100% { transform: rotate(28deg); }
    48% { transform: rotate(8deg); }
}

@keyframes stars-fade {
    0% { opacity: 0.58; }
    100% { opacity: 0.95; }
}
