:root {
    --orange: #ff5a1f;
    --orange-hover: #ff743d;
    --ink: #111111;
    --muted: #5c5c5c;
    --line: #ececec;
    --bg: #ffffff;
    --bg-soft: #f5f5f5;
    --dark: #0b0b0d;
    --dark-2: #161618;
    --header-h: 72px;
    --radius-pill: 999px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    --font: "Inter", system-ui, sans-serif;
    --display: "League Gothic", "Arial Narrow", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.display {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.92;
    text-transform: uppercase;
    font-size: clamp(42px, 6vw, 72px);
    margin: 0 0 20px;
}

.display-xl {
    font-size: clamp(52px, 8vw, 104px);
}

.lead {
    max-width: 640px;
    color: var(--muted);
    font-size: 17px;
    margin: 0 0 28px;
}

.section-kicker {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 12px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 40px;
}

.text-link {
    font-weight: 600;
    white-space: nowrap;
}

.text-link:hover {
    color: var(--orange);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 14px 26px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 30px;
    font-size: 16px;
}

.btn-orange {
    background: var(--orange);
    color: #fff;
}

.btn-orange:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: #000;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header-h);
    background: #fff;
    transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
    height: 100%;
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    width: 22px;
    height: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.brand-mark i {
    background: var(--orange);
    border-radius: 2px;
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(3) {
    background: #111;
}

.brand-text {
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 18px;
}

.header-nav {
    display: flex;
    gap: 22px;
}

.header-nav a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333;
}

.header-nav a.is-active,
.header-nav a:hover {
    color: var(--orange);
}

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

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    display: grid;
    place-content: center;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #fff;
}

/* Overlay menu */
.site-menu[hidden] {
    display: none;
}

.site-menu {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.menu-panel {
    position: absolute;
    inset: 16px 16px 16px auto;
    width: min(720px, calc(100% - 32px));
    background: #fff;
    border-radius: 28px;
    padding: 48px 48px 40px;
    box-shadow: var(--shadow);
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--bg-soft);
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

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

.menu-eco,
.menu-main,
.footer-cols ul,
.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-eco a,
.menu-main a {
    display: block;
    padding: 8px 0;
}

.menu-eco a {
    font-size: 18px;
    font-weight: 600;
}

.menu-main a {
    font-family: var(--display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1;
    text-transform: uppercase;
}

.menu-main a.is-active,
.menu-eco a:hover,
.menu-main a:hover {
    color: var(--orange);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    margin-top: var(--header-h);
    overflow: hidden;
    background: var(--dark);
}

.page-home .hero {
    margin-top: 0;
    height: 100vh;
}

.page-home .site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background: #111 var(--bg) center / cover no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.62) 100%);
}

.hero-copy {
    position: relative;
    z-index: 2;
    height: 100%;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.hero-kicker {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.hero-copy h1 {
    font-family: var(--display);
    font-size: clamp(64px, 11vw, 140px);
    line-height: 0.86;
    margin: 0 0 18px;
    font-weight: 400;
}

.hero-copy h1 span {
    color: var(--orange);
}

.hero-desc {
    max-width: 480px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots button {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--orange);
    width: 22px;
    border-radius: 99px;
}

/* Universe */
.universe {
    padding: 100px 0 0;
    text-align: center;
    overflow: hidden;
}

.universe .lead,
.universe .display,
.partners .lead,
.partners .display,
.adventure .lead,
.adventure .display {
    margin-left: auto;
    margin-right: auto;
}

.accent-icon {
    color: var(--orange);
}

.pills {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.pill {
    border: 0;
    background: var(--bg-soft);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pill.is-active {
    background: var(--ink);
    color: #fff;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot.gold { background: #f5c14a; }
.dot.purple { background: #8b5cf6; }
.dot.cyan { background: #22d3ee; }

.universe-visual {
    position: relative;
    height: 520px;
    margin-top: 40px;
}

.orbit {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 280px;
    height: 280px;
    transform: translateX(-50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #ff8a4c, var(--orange) 55%, #c73a00);
    box-shadow: 0 30px 80px rgba(255, 90, 31, 0.35);
}

.orbit-photo {
    position: absolute;
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.orbit-photo.p1 { left: 12%; top: 80px; }
.orbit-photo.p2 { right: 12%; top: 40px; }
.orbit-photo.p3 { left: 22%; bottom: 40px; }
.orbit-photo.p4 { right: 20%; bottom: 70px; }

.adventure {
    padding: 40px 0 80px;
    text-align: center;
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}

/* Features / stats */
.features,
.news,
.partners,
.talent-cta,
.eco,
.about-intro,
.team,
.testimonials,
.culture,
.events,
.moments,
.contact {
    padding: 90px 0;
}

.feature-grid,
.team-grid,
.testimonial-grid,
.culture-grid,
.event-grid,
.moment-grid {
    display: grid;
    gap: 22px;
}

.feature-grid,
.culture-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.culture-grid article,
.quote-card,
.contact-form-wrap,
.award-stack article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3ec;
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-card h3,
.culture-grid h3,
.award-stack h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.feature-card p,
.culture-grid p,
.award-stack p,
.event-card p,
.moment-card p {
    margin: 0;
    color: var(--muted);
}

.stats {
    background: var(--dark);
    color: #fff;
    padding: 72px 0;
}

.stats-grid,
.partner-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stats-grid strong,
.partner-stats strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
}

.stats-grid span,
.partner-stats span {
    color: rgba(255, 255, 255, 0.7);
}

.partner-stats {
    margin: 36px 0 28px;
    text-align: left;
}

.partner-stats span {
    color: var(--muted);
}

.partners {
    text-align: center;
    background: var(--bg-soft);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 32px;
}

.partner-logos span {
    background: #fff;
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    font-weight: 700;
    border: 1px solid var(--line);
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
}

.news-card {
    display: block;
    color: inherit;
}

.news-card img,
.event-card img,
.moment-card img,
.person-card img,
.about-media img,
.eco-visual img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.news-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    margin: 14px 0 8px;
}

.news-meta span {
    color: var(--orange);
    font-weight: 700;
}

.news-card h3,
.news-item h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
}

.news-item img {
    width: 120px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
}

.news-item h3 {
    font-size: 17px;
}

/* Talent / eco / finale */
.award-stack {
    display: grid;
    gap: 14px;
}

.eco {
    background: var(--bg-soft);
}

.eco-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    padding: 0 0 24px 18px;
    color: var(--muted);
}

.finale {
    background: var(--dark);
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

.finale.compact {
    padding: 90px 0;
}

.finale .display {
    color: #fff;
}

.finale-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.finale-links a {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.finale-links a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* Inner pages */
.page-hero {
    padding: calc(var(--header-h) + 80px) 0 40px;
}

.about-media img {
    height: 520px;
    border-radius: 28px;
}

.team-grid {
    grid-template-columns: repeat(4, 1fr);
}

.person-card h3 {
    margin: 14px 0 0;
}

.person-card p,
.quote-author span {
    margin: 4px 0 0;
    color: var(--muted);
}

.person-card img {
    height: 340px;
    border-radius: 22px;
}

.testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
}

.quote-card p {
    font-size: 18px;
    margin: 0 0 22px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.event-grid {
    grid-template-columns: repeat(3, 1fr);
}

.event-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.event-card img {
    height: 200px;
    border-radius: 0;
}

.event-card div {
    padding: 20px 22px 24px;
}

.event-card span,
.moment-card .badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.event-card h3 {
    margin: 0 0 8px;
}

.moment-grid {
    grid-template-columns: repeat(3, 1fr);
}

.moment-card {
    position: relative;
    display: block;
}

.moment-card img {
    height: 280px;
}

.moment-card h3 {
    margin: 14px 0 6px;
}

.badge.hot {
    color: #fff;
    background: var(--orange);
    border-radius: 99px;
    padding: 4px 10px;
}

/* Contact */
.contact-form,
.info-list {
    display: grid;
    gap: 16px;
}

.info-list li span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}

.info-list a:hover {
    color: var(--orange);
}

.map-wrap {
    margin-top: 24px;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
    border: 1px solid var(--line);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrap h2 {
    margin: 0 0 20px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(255, 90, 31, 0.25);
    border-color: var(--orange);
}

.contact-form small {
    color: #c2410c;
    font-weight: 500;
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
}

.form-success {
    background: #ecfdf3;
    border: 1px solid #abefc6;
    color: #067647;
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 18px;
}

.form-success p {
    margin: 6px 0 0;
}

/* Footer */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: 48px;
    padding-bottom: 36px;
}

.footer-brand p {
    color: var(--muted);
    max-width: 360px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-cols h3 {
    margin: 0 0 14px;
    font-size: 14px;
}

.footer-cols li {
    margin-bottom: 8px;
    color: var(--muted);
}

.footer-cols a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 8px;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .header-nav {
        display: flex;
        gap: 14px;
    }

    .header-nav a {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    .split,
    .news-grid,
    .feature-grid,
    .culture-grid,
    .testimonial-grid,
    .team-grid,
    .event-grid,
    .moment-grid,
    .stats-grid,
    .partner-stats,
    .footer-top,
    .footer-cols,
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .universe-visual {
        height: 380px;
    }

    .orbit {
        width: 200px;
        height: 200px;
    }

    .orbit-photo {
        width: 120px;
        height: 90px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 14vw, 84px);
    }

    .news-card img,
    .about-media img,
    .eco-visual img {
        height: 240px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .menu-panel {
        inset: 12px;
        width: auto;
        padding: 36px 24px;
    }
}

@media (max-width: 720px) {
    .header-nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }
}
