:root {
    --bg-950: #06070b;
    --bg-900: #0a0c13;
    --bg-850: #101522;
    --card-1: rgba(17, 21, 33, 0.92);
    --card-2: rgba(11, 14, 24, 0.84);
    --line: rgba(255, 255, 255, 0.16);
    --line-soft: rgba(255, 255, 255, 0.1);
    --text-main: #f5f1e8;
    --text-muted: #afb4c0;
    --gold: #d7a24b;
    --cyan: #79d9d1;
    --coral: #ff7c63;
    --radius-xl: 30px;
    --radius-lg: 18px;
    --radius-sm: 12px;
    --shadow-strong: 0 36px 80px rgba(3, 4, 8, 0.62);
    --shadow-soft: 0 14px 30px rgba(6, 8, 14, 0.46);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.site-shell {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Sora, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at 10% 10%, rgba(215, 162, 75, 0.18), transparent 34%),
        radial-gradient(circle at 88% 10%, rgba(121, 217, 209, 0.16), transparent 30%),
        radial-gradient(circle at 70% 95%, rgba(255, 124, 99, 0.14), transparent 32%),
        linear-gradient(148deg, var(--bg-950), var(--bg-900) 52%, var(--bg-850));
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: Teko, sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 0.92;
}

.stage-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.stage-grid {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), #000 30%, rgba(0, 0, 0, 0.65));
}

.stage-light {
    position: absolute;
    width: 42vw;
    height: 42vw;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.27;
}

.stage-light--a {
    top: -12vw;
    left: -11vw;
    background: radial-gradient(circle, rgba(215, 162, 75, 0.92), transparent 70%);
    animation: driftA 15s ease-in-out infinite alternate;
}

.stage-light--b {
    top: -10vw;
    right: -13vw;
    background: radial-gradient(circle, rgba(121, 217, 209, 0.9), transparent 70%);
    animation: driftB 13s ease-in-out infinite alternate;
}

.stage-light--c {
    bottom: -17vw;
    left: 24%;
    background: radial-gradient(circle, rgba(255, 124, 99, 0.88), transparent 72%);
    animation: driftA 17s ease-in-out infinite alternate-reverse;
}

.frame {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px;
}

.topbar {
    margin-bottom: 14px;
}

.topbar__inner {
    position: sticky;
    top: 10px;
    z-index: 40;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(10, 13, 21, 0.9), rgba(12, 16, 27, 0.78));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    padding: 10px 12px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.identity {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    text-decoration: none;
}

.identity__logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: Teko, sans-serif;
    font-size: 2rem;
    color: #16110a;
    background: linear-gradient(140deg, #e2b367, #cf8e4c 55%, #b57943 100%);
    box-shadow: 0 8px 20px rgba(215, 162, 75, 0.32);
}

.identity__text strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
}

.identity__text small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.menu,
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.menu {
    justify-content: center;
}

.menu a,
.lang-switch a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.79rem;
    font-weight: 700;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    padding: 8px 10px;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.menu a:hover,
.lang-switch a:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.05);
}

.menu .menu__cta {
    color: #1a140e;
    border-color: transparent;
    background: linear-gradient(140deg, #e3b568, #c88848);
}

.menu .menu__cta:hover {
    background: linear-gradient(140deg, #edbf73, #c87f45);
}

.lang-switch .active {
    color: #fff;
    border-color: rgba(121, 217, 209, 0.62);
    box-shadow: inset 0 0 0 1px rgba(121, 217, 209, 0.2);
}

.lang-switch .admin-entry {
    color: #f8deb6;
    border-color: rgba(215, 162, 75, 0.54);
    background: rgba(215, 162, 75, 0.14);
}

.content-stack {
    display: grid;
    gap: 14px;
}

.card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01) 30%),
        linear-gradient(145deg, var(--card-1), var(--card-2));
    box-shadow: var(--shadow-strong);
    padding: clamp(1rem, 2.5vw, 2rem);
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(121, 217, 209, 0.7), rgba(255, 255, 255, 0));
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    color: #f1d39c;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 0.78rem 1.15rem;
    font-size: 0.81rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
    border: 0;
    color: #17120c;
    background: linear-gradient(140deg, #e2b468, #cc8747);
    box-shadow: 0 10px 24px rgba(215, 162, 75, 0.34);
}

.btn-outline {
    color: #d7dbe4;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.flash {
    border-radius: 11px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    padding: 10px 12px;
    font-weight: 600;
}

.flash-success {
    background: rgba(79, 180, 145, 0.2);
    border-color: rgba(79, 180, 145, 0.45);
}

.flash-error {
    background: rgba(255, 124, 99, 0.22);
    border-color: rgba(255, 124, 99, 0.45);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 14px;
}

.hero-main h1 {
    margin: 10px 0 12px;
    font-size: clamp(2.8rem, 7.2vw, 5.9rem);
    max-width: 11ch;
}

.hero-main__lead {
    margin: 0;
    color: var(--text-muted);
    max-width: 62ch;
}

.hero-pills {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-pills span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 11px;
    font-size: 0.74rem;
    color: #dfe3ec;
    font-weight: 700;
}

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

.program-panel {
    background:
        linear-gradient(132deg, rgba(121, 217, 209, 0.12), rgba(215, 162, 75, 0.12)),
        linear-gradient(145deg, rgba(18, 22, 34, 0.94), rgba(12, 16, 27, 0.86));
}

.program-panel h2 {
    margin: 10px 0 8px;
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
}

.program-panel > p {
    margin: 0;
    color: var(--text-muted);
}

.program-list {
    margin-top: 14px;
    display: grid;
    gap: 9px;
}

.program-item {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
    padding: 12px;
    display: grid;
    gap: 5px;
}

.program-item span {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f4d9ab;
}

.program-item strong {
    font-family: Teko, sans-serif;
    font-size: clamp(1.55rem, 2.8vw, 2.25rem);
    letter-spacing: 0.04em;
}

.program-item p {
    margin: 0;
    color: #cfd6e4;
}

.slider-stage {
    padding: 14px;
}

.section-title {
    margin-bottom: 12px;
}

.section-title--inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title h2 {
    margin: 8px 0 8px;
    font-size: clamp(2rem, 4.6vw, 3.8rem);
}

.section-title p {
    margin: 0;
    color: var(--text-muted);
    max-width: 66ch;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    cursor: pointer;
    transition: 0.2s ease;
}

.slider-controls button:hover {
    border-color: rgba(121, 217, 209, 0.65);
    background: rgba(121, 217, 209, 0.15);
}

.slider-track {
    position: relative;
    min-height: 530px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.58s ease;
}

.slider-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.slider-slide img,
.slider-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-fallback {
    background: conic-gradient(from 40deg, #e2b569, #7ad9d1, #d98f52, #ff7c63, #e2b569);
}

.slider-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 8, 12, 0.14), rgba(6, 8, 12, 0.74));
}

.slider-slide__content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(130deg, rgba(8, 11, 18, 0.92), rgba(8, 11, 18, 0.68));
    padding: 14px;
}

.slider-slide__content h3 {
    margin-bottom: 6px;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.slider-slide__content p {
    margin: 0 0 10px;
    color: #d3dae7;
}

.slider-empty {
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    padding: 30px;
    text-align: center;
}

.slider-empty h3 {
    margin: 0 0 7px;
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
}

.slider-empty p {
    margin: 0;
    color: var(--text-muted);
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.metric {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(215, 162, 75, 0.42);
    background: linear-gradient(145deg, rgba(243, 233, 215, 0.96), rgba(229, 216, 194, 0.92));
    color: #1e1d1a;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.metric p {
    margin: 0;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: #635847;
    font-weight: 700;
}

.metric strong {
    display: block;
    margin-top: 8px;
    font-family: Teko, sans-serif;
    font-size: clamp(2.2rem, 4.4vw, 3.2rem);
    letter-spacing: 0.04em;
    line-height: 0.9;
}

.section-block {
    padding: clamp(1rem, 2.5vw, 1.9rem);
}

.service-grid,
.news-grid,
.lineup-panel__grid,
.timeline-grid,
.about-grid {
    display: grid;
    gap: 12px;
}

.service-grid,
.news-grid,
.lineup-panel__grid,
.timeline-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-tile,
.news-card,
.lineup-panel__grid article,
.timeline-grid article,
.service-lane,
.article-body,
.quote-aside {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(142deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.service-tile {
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.service-tile::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -26px;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(121, 217, 209, 0.28), transparent 72%);
}

.service-index {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-family: Teko, sans-serif;
    font-size: 1.02rem;
    letter-spacing: 0.07em;
    color: #16110a;
    background: linear-gradient(140deg, #e2b568, #c88545);
}

.service-tile h3,
.lineup-panel__grid h3,
.news-card h3,
.service-lane h3 {
    margin: 10px 0 8px;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
}

.service-tile p,
.lineup-panel__grid p,
.news-card p,
.service-lane p,
.about-grid p,
.timeline-grid p {
    margin: 0;
    color: #d2d9e7;
}

.lineup-panel {
    background:
        linear-gradient(130deg, rgba(215, 162, 75, 0.14), rgba(121, 217, 209, 0.1)),
        linear-gradient(145deg, rgba(15, 19, 30, 0.94), rgba(11, 15, 25, 0.88));
}

.lineup-panel__grid article {
    padding: 14px;
}

.lineup-panel__grid span {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid rgba(215, 162, 75, 0.5);
    background: rgba(215, 162, 75, 0.16);
    color: #f2d5a3;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
}

.action-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background:
        linear-gradient(130deg, rgba(215, 162, 75, 0.18), rgba(121, 217, 209, 0.14)),
        linear-gradient(145deg, rgba(15, 19, 31, 0.93), rgba(11, 14, 24, 0.89));
}

.action-band h2 {
    margin: 8px 0;
    font-size: clamp(2rem, 4.4vw, 3.6rem);
}

.action-band p {
    margin: 0;
    color: var(--text-muted);
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.news-card img,
.article-cover {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.news-card__body {
    padding: 14px;
    display: grid;
    gap: 8px;
}

.news-card a {
    width: fit-content;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
    color: #f6ddb0;
    font-weight: 700;
    font-size: 0.8rem;
}

.empty-note {
    margin: 0;
    color: var(--text-muted);
}

.page-header h1 {
    margin: 8px 0 10px;
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    max-width: 14ch;
}

.page-header p {
    margin: 0;
    color: var(--text-muted);
    max-width: 68ch;
}

.page-header--compact h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 4.6vw, 3.9rem);
}

.service-stack {
    display: grid;
    gap: 11px;
}

.service-lane {
    padding: 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 12px;
}

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

.about-grid .card,
.timeline-grid .card {
    padding: 16px;
}

.manifesto {
    background:
        linear-gradient(135deg, rgba(215, 162, 75, 0.22), rgba(121, 217, 209, 0.18)),
        linear-gradient(145deg, rgba(14, 18, 30, 0.94), rgba(11, 15, 25, 0.88));
}

.manifesto p {
    margin: 0;
    font-family: Teko, sans-serif;
    font-size: clamp(2rem, 4.9vw, 3.9rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
}

.timeline-grid h3 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 3.9vw, 3rem);
    color: #f2d3a0;
}

.article-body {
    padding: 16px;
}

.article-content {
    margin-top: 14px;
    color: #d6ddeb;
    line-height: 1.72;
}

.quote-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 12px;
}

.quote-aside {
    padding: 16px;
}

.quote-aside h3 {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 3.3vw, 2.8rem);
}

.quote-aside p {
    margin: 0;
    color: #d5dceb;
}

.quote-aside ul {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 8px;
}

.quote-aside li {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    background: rgba(255, 255, 255, 0.04);
    padding: 9px 10px;
    font-size: 0.85rem;
    color: #dbe2ee;
    font-weight: 700;
}

.quote-form {
    display: grid;
    gap: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.field.full {
    grid-column: span 2;
}

.field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d8deea;
}

.form-control {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.76rem 0.85rem;
    font-family: inherit;
}

.form-control::placeholder {
    color: #aeb8ca;
}

.form-control:focus {
    outline: none;
    border-color: rgba(121, 217, 209, 0.72);
    box-shadow: 0 0 0 3px rgba(121, 217, 209, 0.17);
}

.field-error {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #ffb8a9;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.success-box {
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(79, 180, 145, 0.5);
    background: rgba(79, 180, 145, 0.2);
    padding: 10px 11px;
    font-weight: 700;
}

.footer-grid {
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    padding: 16px 2px 24px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #b8becc;
}

.footer-grid strong {
    color: #ece8df;
}

.footer-grid p {
    margin: 4px 0;
}

.reveal {
    animation: revealUp 0.58s cubic-bezier(0.19, 1, 0.22, 1) both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes driftA {
    from {
        transform: translateY(-3%) scale(0.9);
    }

    to {
        transform: translateY(4%) scale(1.07);
    }
}

@keyframes driftB {
    from {
        transform: translateX(-2%) scale(1.05);
    }

    to {
        transform: translateX(3%) scale(0.93);
    }
}

@media (max-width: 1180px) {
    .hero-layout,
    .service-grid,
    .news-grid,
    .timeline-grid,
    .lineup-panel__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .topbar__inner {
        grid-template-columns: 1fr;
        justify-items: flex-start;
    }

    .menu {
        justify-content: flex-start;
    }

    .slider-track {
        min-height: 460px;
    }
}

@media (max-width: 860px) {
    .frame {
        padding: 11px;
    }

    .hero-layout,
    .service-grid,
    .news-grid,
    .timeline-grid,
    .lineup-panel__grid,
    .metrics-row,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .field.full {
        grid-column: span 1;
    }

    .section-title--inline,
    .action-band,
    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-lane {
        grid-template-columns: 1fr;
    }

    .slider-track {
        min-height: 390px;
    }
}

@media (max-width: 640px) {
    .menu a,
    .lang-switch a {
        font-size: 0.73rem;
        padding: 7px 9px;
    }

    .identity {
        min-width: 0;
    }

    .hero-pills span {
        width: 100%;
        justify-content: center;
    }

    .slider-slide__content {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 11px;
    }
}
