:root {
    --red: #bf0b12;
    --red-dark: #8f080e;
    --ink: #181719;
    --text: #2c2a2d;
    --muted: #6f6a68;
    --gold: #c9a227;
    --line: rgba(24, 23, 25, 0.12);
    --soft: #f6f4f0;
    --paper: #ffffff;
    --shadow: 0 18px 45px rgba(24, 23, 25, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

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

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    background: var(--red);
    color: white;
    font-weight: 950;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 950;
    text-transform: uppercase;
}

.brand small {
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.desktop-nav a {
    padding-block: 10px;
    border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--red);
    border-color: var(--red);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: white;
    place-items: center;
    gap: 4px;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: white;
    padding: 12px 16px 18px;
}

.mobile-nav.is-open {
    display: grid;
    gap: 4px;
}

.mobile-nav a {
    padding: 12px 4px;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.flash-stack {
    padding-top: 94px;
}

.flash {
    margin: 0 0 12px;
    border: 1px solid;
    padding: 14px 16px;
    font-size: 0.93rem;
    font-weight: 800;
}

.flash.success {
    border-color: #b8ddc6;
    background: #eef9f2;
    color: #176437;
}

.flash.danger {
    border-color: #efc2c2;
    background: #fff0f0;
    color: #9b1118;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid transparent;
    padding: 13px 20px;
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.button.primary {
    background: var(--red);
    color: white;
}

.button.primary:hover {
    background: var(--red-dark);
}

.button.ghost {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
}

.home-hero {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
    background: var(--ink);
    color: white;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(24, 23, 25, 0.94), rgba(24, 23, 25, 0.72) 43%, rgba(24, 23, 25, 0.08)),
        linear-gradient(0deg, rgba(24, 23, 25, 0.88), transparent 36%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
    gap: 52px;
    align-items: end;
    min-height: 92vh;
    padding-block: 148px 64px;
}

.hero-copy h1,
.page-hero h1,
.contact-hero h1 {
    margin: 0;
    color: inherit;
    font-size: clamp(2.7rem, 7vw, 6.9rem);
    font-weight: 950;
    line-height: 0.98;
}

.hero-copy p {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.hero-panel {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    backdrop-filter: blur(16px);
}

.hero-panel strong {
    display: block;
    font-size: 2rem;
    font-weight: 950;
}

.hero-panel span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.hero-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 22px;
}

.hero-panel-grid b {
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 12px;
    color: white;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.signal-band {
    background: var(--red);
    color: white;
}

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

.signal-grid div {
    min-height: 132px;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding: 26px 18px;
}

.signal-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.signal-grid strong {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.6rem;
    font-weight: 950;
}

.signal-grid span {
    display: block;
    margin-top: 10px;
    font-weight: 850;
}

.section {
    padding-block: 86px;
}

.section.muted,
.page-hero.light {
    background: var(--soft);
}

.section.dark,
.page-hero.dark-tone {
    background: var(--ink);
    color: white;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.55fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.split-heading h2,
.editorial-grid h2,
.objectives h2,
.webtv-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 4.4rem);
    font-weight: 950;
    line-height: 1.02;
}

.section.dark .split-heading h2,
.section.dark h2,
.page-hero.dark-tone h1 {
    color: white;
}

.split-heading p,
.editorial-grid p,
.rich-text p,
.story-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.section.dark p {
    color: rgba(255, 255, 255, 0.68);
}

.branch-grid,
.events-grid,
.stream-grid,
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.branch-card,
.event-card,
.stream-card,
.partners-grid article {
    border: 1px solid var(--line);
    background: white;
}

.branch-card img,
.event-card > img,
.stream-card > img,
.stream-card iframe {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.branch-card div,
.stream-card div,
.partners-grid article,
.event-body {
    padding: 22px;
}

.branch-card h3,
.branch-detail h2,
.event-card h2,
.stream-card h2,
.partners-grid h2 {
    margin: 0;
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.1;
}

.branch-card p,
.branch-detail p,
.event-card p,
.stream-card p,
.partners-grid p {
    margin: 12px 0 0;
    color: var(--muted);
}

.red-text,
.event-meta {
    color: var(--red) !important;
    font-size: 0.82rem;
    font-weight: 950;
    text-transform: uppercase;
}

.editorial-grid,
.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

.timeline {
    display: grid;
    gap: 12px;
}

.timeline div,
.values-grid article,
.objectives li {
    border: 1px solid var(--line);
    background: white;
    padding: 22px;
}

.timeline span {
    display: block;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
}

.timeline strong {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 1.1rem;
}

.feature-lanes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.feature-lanes a {
    min-height: 260px;
    background: var(--ink);
    padding: 32px;
}

.feature-lanes span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

.feature-lanes strong {
    display: block;
    margin-top: 18px;
    max-width: 360px;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.05;
}

.page-hero {
    padding-block: 150px 74px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
    gap: 42px;
    align-items: end;
}

.page-hero h1 {
    color: var(--ink);
    font-size: clamp(2.5rem, 6vw, 5.6rem);
}

.page-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.dark-tone p {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-mark {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.page-hero-mark span {
    border: 1px solid var(--line);
    padding: 18px;
    color: var(--red);
    font-weight: 950;
    text-transform: uppercase;
}

.dark-tone .page-hero-mark span {
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--gold);
}

.sticky-note {
    position: sticky;
    top: 104px;
    border-left: 6px solid var(--red);
    background: var(--soft);
    padding: 28px;
}

.sticky-note h2 {
    margin: 0;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1.08;
}

.rich-text {
    display: grid;
    gap: 22px;
}

.rich-text p {
    font-size: 1.15rem;
    line-height: 1.75;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.values-grid article {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.values-grid span {
    color: var(--gold);
    font-weight: 950;
}

.values-grid h3 {
    margin: 18px 0 8px;
    color: white;
    font-size: 1.4rem;
}

.values-grid p {
    color: rgba(255, 255, 255, 0.68);
}

.objectives {
    display: grid;
    grid-template-columns: minmax(260px, 0.5fr) 1fr;
    gap: 40px;
}

.objectives ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: item;
}

.objectives li {
    position: relative;
    padding-left: 72px;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 900;
}

.objectives li::before {
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 22px;
    top: 22px;
    color: var(--red);
    font-weight: 950;
}

.branch-detail-grid {
    display: grid;
    gap: 24px;
}

.branch-detail {
    display: grid;
    grid-template-columns: minmax(260px, 0.52fr) 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: white;
}

.branch-detail img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.branch-detail div {
    padding: clamp(24px, 4vw, 46px);
}

.branch-detail ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.branch-detail li {
    border: 1px solid var(--line);
    padding: 10px 12px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.branch-detail blockquote {
    margin: 0;
    border-left: 5px solid var(--red);
    padding-left: 18px;
    color: var(--ink);
    font-weight: 900;
}

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

.compact-form,
.brief-form {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

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

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 950;
    text-transform: uppercase;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0;
    background: white;
    color: var(--ink);
    padding: 13px 14px;
    font-size: 0.96rem;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(191, 11, 18, 0.1);
}

.closed-note {
    border: 1px solid var(--line);
    background: var(--soft);
    padding: 14px;
    color: var(--ink) !important;
    font-weight: 850;
}

.webtv-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 28px;
}

.stream-card iframe {
    width: 100%;
    border: 0;
}

.partners-grid article {
    min-height: 240px;
}

.contact-hero {
    min-height: 100vh;
    padding-block: 150px 80px;
    background: var(--ink);
    color: white;
}

.contact-hero h1 {
    max-width: 560px;
    font-size: clamp(2.8rem, 5.4vw, 5.4rem);
    overflow-wrap: anywhere;
}

.contact-hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.1rem;
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-lines a {
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px;
    font-weight: 950;
}

.brief-form {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    padding: 24px;
}

.brief-form label {
    color: rgba(255, 255, 255, 0.82);
}

.honey {
    position: absolute;
    left: -9999px;
}

.site-footer {
    background: #111012;
    color: white;
    padding-block: 34px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 22px;
}

.footer-grid strong {
    font-size: 1.2rem;
}

.footer-grid p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

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

    .menu-button {
        display: grid;
    }

    .hero-content,
    .page-hero-grid,
    .split-heading,
    .editorial-grid,
    .story-grid,
    .objectives,
    .branch-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        align-items: center;
        padding-top: 120px;
    }

    .hero-panel {
        max-width: 520px;
    }

    .signal-grid,
    .branch-grid,
    .values-grid,
    .feature-lanes,
    .events-grid,
    .stream-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .branch-detail img {
        min-height: 280px;
    }

    .sticky-note {
        position: static;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand small {
        display: none;
    }

    .home-hero,
    .hero-content {
        min-height: 86vh;
    }

    .hero-copy h1,
    .page-hero h1,
    .contact-hero h1 {
        font-size: 2.55rem;
    }

    .hero-actions,
    .footer-grid,
    .webtv-head {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .signal-grid,
    .branch-grid,
    .values-grid,
    .feature-lanes,
    .events-grid,
    .stream-grid,
    .partners-grid,
    .two-cols,
    .branch-detail ul {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 58px;
    }

    .page-hero,
    .contact-hero {
        padding-block: 120px 58px;
    }

    .brief-form,
    .hero-panel {
        padding: 18px;
    }
}
