:root {
    --brc-red: #e0000b;
    --brc-dark-red: #a90008;
    --brc-black: #050505;
    --brc-white: #ffffff;
    --menu-width: min(360px, 88vw);
    --header-height: 76px;

    font-family: Arial, Helvetica, sans-serif;
    color: var(--brc-white);
    background: var(--brc-black);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--brc-black);
    color: var(--brc-white);
}

body.menu-open {
    overflow: hidden;
}

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

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

.site-header {
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;

    width: 100%;
    min-height: var(--header-height);
    padding: 12px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    background:
        linear-gradient(
            180deg,
            rgb(0 0 0 / 62%) 0%,
            rgb(0 0 0 / 22%) 72%,
            rgb(0 0 0 / 0%) 100%
        );
}

.brand {
    position: relative;
    z-index: 122;

    min-width: 0;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 10px;
}

.brand-logo {
    display: block;
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.brand-name {
    display: none;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.desktop-nav {
    display: none;
}

.header-actions {
    position: relative;
    z-index: 124;

    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 10px;
}

.header-cta {
    display: none;
}

.menu-toggle {
    position: relative;
    z-index: 124;

    min-height: 44px;
    padding: 8px 4px 8px 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 0;
    background: transparent;
    color: var(--brc-white);
    cursor: pointer;
}

.menu-toggle::after {
    content: "";
    order: 1;
    width: 2px;
    height: 18px;
    background: var(--brc-red);
}

.burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex: 0 0 auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition:
        transform 180ms ease,
        opacity 180ms ease;
}

.menu-label {
    order: 2;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-toggle.is-open .burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open .burger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.menu-backdrop {
    position: fixed;
    z-index: 90;
    inset: 0;
    border: 0;
    background: rgb(0 0 0 / 50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
}

.menu-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;

    width: 100%;
    height: 100svh;
    padding: calc(var(--header-height) + 20px) 22px 28px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    visibility: hidden;
    pointer-events: none;
    background: rgb(5 5 5 / 98%);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition:
        transform 220ms ease,
        visibility 220ms ease;
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-menu a {
    min-height: 58px;
    padding: 18px 0;

    display: flex;
    align-items: center;

    border-bottom: 1px solid rgb(255 255 255 / 15%);
    color: var(--brc-white);

    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
    color: var(--brc-red);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--brc-black);
}

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

.hero-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgb(0 0 0 / 34%) 0%,
            rgb(0 0 0 / 4%) 38%,
            rgb(0 0 0 / 86%) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 720px;
    padding: 132px 20px 52px;

    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-title {
    margin: 0;

    display: flex;
    flex-direction: column;

    font-size: clamp(3rem, 14vw, 5.2rem);
    line-height: 0.9;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.hero-highlight {
    margin-top: 8px;
    color: var(--brc-red);
}

.hero-line {
    width: 82px;
    height: 4px;
    margin-top: 24px;
    background: var(--brc-red);
}

.hero-text {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgb(255 255 255 / 90%);
    font-size: 1rem;
    line-height: 1.55;
}

.hero-label {
    width: fit-content;
    margin-top: 20px;
    padding: 12px 14px;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    border: 1px solid rgb(255 255 255 / 28%);
    border-left: 5px solid var(--brc-red);
    border-radius: 8px;
    background: rgb(0 0 0 / 42%);
    color: var(--brc-white);
    backdrop-filter: blur(8px);
}

.hero-label span,
.hero-label strong {
    display: block;
    line-height: 1;
    text-transform: uppercase;
}

.hero-label span {
    color: rgb(255 255 255 / 70%);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.hero-label strong {
    font-size: 0.98rem;
    font-weight: 900;
}

.hero-actions {
    margin-top: 28px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.button {
    min-height: 56px;
    padding: 0 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    border: 2px solid transparent;
    color: var(--brc-white);

    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;

    transition:
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

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

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

.button-secondary {
    border-color: var(--brc-white);
    background: rgb(0 0 0 / 24%);
    backdrop-filter: blur(6px);
}

.button-secondary:hover {
    background: var(--brc-white);
    color: #111111;
}

.placeholder-section {
    min-height: 50vh;
    padding: 80px 24px;

    display: grid;
    place-items: center;

    background: var(--brc-white);
    color: #111111;
}

.placeholder-section h2 {
    margin: 0;
    font-size: clamp(2rem, 10vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.calendar-page {
    min-height: 100svh;
    padding: calc(var(--header-height) + 28px) 18px 58px;
    background: var(--brc-black);
    color: var(--brc-white);
}

.calendar-hero,
.calendar-frame-section,
.calendar-guides {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.calendar-hero {
    display: grid;
    gap: 22px;
}

.calendar-kicker,
.section-heading p {
    margin: 0 0 12px;
    color: var(--brc-red);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.calendar-hero h1,
.section-heading h2 {
    margin: 0;
    color: var(--brc-white);
    font-size: clamp(2.5rem, 12vw, 5rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.calendar-hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgb(255 255 255 / 82%);
    font-size: 1.04rem;
    line-height: 1.6;
}

.calendar-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.calendar-secondary {
    border-color: var(--brc-white);
    color: var(--brc-white);
}

.calendar-secondary:hover {
    background: var(--brc-white);
    color: #111111;
}

.calendar-note {
    padding: 16px 18px;
    border-left: 5px solid var(--brc-red);
    background: rgb(255 255 255 / 8%);
    color: rgb(255 255 255 / 78%);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.calendar-frame-section {
    margin-top: 34px;
}

.calendar-frame {
    width: 100%;
    min-height: 660px;
    display: block;
    border: 0;
    border-top: 6px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    box-shadow: 0 18px 42px rgb(0 0 0 / 42%);
}

.calendar-guides {
    margin-top: 48px;
}

.section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 4rem);
}

.guide-grid {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.guide-card {
    padding: 22px;
    border-top: 5px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    box-shadow: 0 14px 34px rgb(0 0 0 / 8%);
}

.guide-card h3 {
    margin: 0;
    color: var(--brc-black);
    font-size: 1.35rem;
    line-height: 1;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    gap: 12px;
}

.guide-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--brc-black);
    color: var(--brc-white);
}

.guide-icon svg {
    width: 25px;
    height: 25px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-icon-android {
    background: #2f7d32;
}

.guide-icon-android svg path:first-child {
    fill: currentColor;
    stroke: none;
}

.guide-card ol {
    margin: 18px 0 0;
    padding-left: 22px;
    color: rgb(17 17 17 / 78%);
    font-weight: 700;
    line-height: 1.55;
}

.guide-card li + li {
    margin-top: 8px;
}

.guide-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.guide-actions a {
    min-height: 46px;
    padding: 0 14px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--brc-red);
    border-radius: 6px;
    background: var(--brc-red);
    color: var(--brc-white);

    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.guide-actions a + a {
    border-color: rgb(17 17 17 / 20%);
    background: #ffffff;
    color: #111111;
}

.guide-card p {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgb(17 17 17 / 12%);
    color: rgb(17 17 17 / 66%);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.5;
}

.contact-page {
    min-height: 100svh;
    padding: calc(var(--header-height) + 32px) 18px 58px;
    background: var(--brc-black);
    color: var(--brc-white);
}

.contact-shell {
    width: min(1080px, 100%);
    margin: 0 auto;

    display: grid;
    gap: 28px;
}

.contact-kicker {
    margin: 0 0 14px;
    color: var(--brc-red);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-intro h1 {
    max-width: 620px;
    margin: 0;
    color: var(--brc-white);
    font-size: clamp(2.7rem, 12vw, 5.2rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-intro p {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgb(255 255 255 / 82%);
    font-size: 1.04rem;
    line-height: 1.6;
}

.contact-direct {
    margin-top: 28px;
    padding: 16px 0 16px 18px;
    border-left: 5px solid var(--brc-red);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.contact-direct span,
.contact-direct a {
    display: block;
}

.contact-direct span {
    color: rgb(255 255 255 / 62%);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.contact-direct a {
    margin-top: 8px;
    color: var(--brc-white);
    font-size: clamp(1.1rem, 5vw, 1.65rem);
    font-weight: 900;
    line-height: 1.15;
}

.contact-form {
    padding: 20px;
    border-top: 6px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    box-shadow: 0 18px 42px rgb(0 0 0 / 42%);
}

.content-page {
    min-height: 100svh;
    padding: calc(var(--header-height) + 32px) 18px 58px;
    background: var(--brc-black);
    color: var(--brc-white);
}

.content-hero,
.content-band,
.content-split,
.timeline,
.content-callout {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.content-kicker {
    margin: 0 0 14px;
    color: var(--brc-red);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.content-hero h1 {
    max-width: 920px;
    margin: 0;
    color: var(--brc-white);
    font-size: clamp(2.6rem, 12vw, 5.4rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-hero p,
.content-copy p,
.content-map-copy p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgb(255 255 255 / 82%);
    font-size: 1.04rem;
    line-height: 1.65;
}

.content-actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.content-secondary {
    border-color: var(--brc-white);
    color: var(--brc-white);
}

.content-secondary:hover {
    background: var(--brc-white);
    color: #111111;
}

.content-band,
.content-split,
.content-callout,
.content-label {
    margin-top: 52px;
}

.content-heading h2,
.content-split h2,
.content-label h2 {
    margin: 0;
    color: var(--brc-white);
    font-size: clamp(2.1rem, 10vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.feature-grid {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.feature-card {
    padding: 22px;
    border-top: 5px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    color: #111111;
    box-shadow: 0 14px 34px rgb(0 0 0 / 28%);
}

.feature-card span {
    color: var(--brc-red);
    font-size: 0.78rem;
    font-weight: 900;
}

.feature-card h3 {
    margin: 10px 0 0;
    font-size: 1.3rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.feature-card p {
    margin: 14px 0 0;
    color: rgb(17 17 17 / 72%);
    font-weight: 700;
    line-height: 1.55;
}

.content-split {
    display: grid;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgb(255 255 255 / 14%);
}

.club-address {
    margin-top: 22px;
    color: var(--brc-white);
    font-style: normal;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.45;
}

.map-button {
    width: 100%;
    margin-top: 24px;
}

.map-frame {
    width: 100%;
    min-height: 340px;
    display: block;
    border: 0;
    border-top: 6px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    box-shadow: 0 18px 42px rgb(0 0 0 / 28%);
}

.timeline {
    margin-top: 42px;
    display: grid;
    gap: 0;
}

.timeline-item {
    padding: 24px 0 24px 20px;
    border-left: 5px solid var(--brc-red);
    border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.timeline-item span {
    color: var(--brc-red);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-item h2 {
    margin: 10px 0 0;
    color: var(--brc-white);
    font-size: clamp(1.6rem, 7vw, 2.6rem);
    line-height: 1;
    text-transform: uppercase;
}

.timeline-item p {
    max-width: 780px;
    margin: 14px 0 0;
    color: rgb(255 255 255 / 78%);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.content-callout {
    padding: 24px;
    border-left: 5px solid var(--brc-red);
    background: rgb(255 255 255 / 8%);
}

.content-callout p {
    margin: 0;
    color: rgb(255 255 255 / 86%);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.55;
}

.content-callout .button {
    margin-top: 22px;
}

.content-label {
    width: min(1160px, 100%);
    margin-right: auto;
    margin-left: auto;
    padding: 24px;

    display: grid;
    gap: 22px;

    border-top: 6px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    color: #111111;
    box-shadow: 0 18px 42px rgb(0 0 0 / 28%);
}

.label-mark {
    min-height: 140px;
    padding: 18px;

    display: grid;
    align-content: center;
    gap: 10px;

    border: 1px solid rgb(17 17 17 / 12%);
    background:
        linear-gradient(135deg, rgb(224 0 11 / 14%), rgb(224 0 11 / 0%) 54%),
        #f7f7f7;
}

.label-mark span,
.label-mark strong {
    display: block;
    line-height: 1;
    text-transform: uppercase;
}

.label-mark span {
    color: var(--brc-red);
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.label-mark strong {
    color: var(--brc-black);
    font-size: clamp(2.2rem, 12vw, 4.6rem);
    font-weight: 900;
}

.label-copy h2 {
    color: var(--brc-black);
}

.label-copy p:not(.content-kicker) {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgb(17 17 17 / 74%);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.55;
}

.label-copy a {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brc-red);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.discipline-list {
    width: min(1160px, 100%);
    margin: 46px auto 0;
    display: grid;
    gap: 28px;
}

.discipline-card {
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--brc-white);
    color: #111111;
    box-shadow: 0 18px 42px rgb(0 0 0 / 38%);
}

.discipline-media {
    min-height: 420px;
    background: #151515;
}

.discipline-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.discipline-card-reverse .discipline-media img {
    object-position: center center;
}

.discipline-copy {
    padding: 24px;
}

.discipline-copy .content-kicker {
    margin-bottom: 12px;
}

.discipline-copy h2 {
    margin: 0;
    color: var(--brc-black);
    font-size: clamp(2rem, 11vw, 4.2rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-transform: uppercase;
}

.discipline-copy p {
    margin: 18px 0 0;
    color: rgb(17 17 17 / 76%);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.62;
}

.discipline-points {
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    list-style: none;
}

.discipline-points li {
    padding: 12px 0 12px 16px;
    border-left: 5px solid var(--brc-red);
    border-bottom: 1px solid rgb(17 17 17 / 12%);
    color: rgb(17 17 17 / 82%);
    font-weight: 900;
    line-height: 1.35;
}

.discipline-source {
    margin-top: 46px;
}

.trial-page {
    min-height: 100svh;
    padding: calc(var(--header-height) + 32px) 18px 56px;
    background:
        linear-gradient(
            140deg,
            rgb(224 0 11 / 14%) 0%,
            rgb(255 255 255 / 0%) 38%
        ),
        #f5f5f5;
    color: #111111;
}

.trial-shell {
    width: min(1120px, 100%);
    margin: 0 auto;

    display: grid;
    gap: 26px;
}

.trial-intro {
    padding-top: 8px;
}

.trial-kicker {
    margin: 0 0 14px;
    color: var(--brc-red);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trial-intro h1 {
    max-width: 620px;
    margin: 0;
    color: var(--brc-black);
    font-size: clamp(2.45rem, 10vw, 4.35rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.trial-intro p {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgb(17 17 17 / 78%);
    font-size: 1.02rem;
    line-height: 1.6;
}

.trial-intro .trial-lead {
    max-width: 640px;
    color: rgb(17 17 17 / 82%);
    font-size: 1.08rem;
}

.trial-benefits {
    margin-top: 28px;
    display: grid;
    gap: 12px;
}

.trial-benefits div {
    padding: 16px 0;

    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;

    border-bottom: 1px solid rgb(17 17 17 / 12%);
}

.trial-benefits span,
.trial-benefits strong {
    display: block;
}

.trial-benefits span {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;
    grid-row: 1 / span 2;

    border: 2px solid var(--brc-red);
    border-radius: 50%;
    color: var(--brc-red);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.trial-benefits strong {
    color: var(--brc-black);
    font-size: 1.12rem;
    line-height: 1.18;
    text-transform: uppercase;
}

.trial-benefits p {
    max-width: 560px;
    margin: 6px 0 0;
    color: rgb(17 17 17 / 72%);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.trial-slots {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.trial-slots div {
    min-height: 64px;
    padding: 14px 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    border-left: 5px solid var(--brc-red);
    background: var(--brc-white);
    box-shadow: 0 14px 34px rgb(0 0 0 / 8%);
}

.trial-slots strong,
.trial-slots span {
    display: block;
}

.trial-slots strong {
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
}

.trial-slots span {
    color: var(--brc-red);
    font-weight: 900;
    white-space: nowrap;
}

.trial-form {
    padding: 20px;
    border-top: 6px solid var(--brc-red);
    border-radius: 8px;
    background: var(--brc-white);
    box-shadow: 0 18px 42px rgb(0 0 0 / 12%);
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-note {
    padding: 14px 16px;
    border: 1px solid rgb(224 0 11 / 20%);
    border-radius: 6px;
    background: #fff8f8;
    color: rgb(17 17 17 / 80%);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.45;
}

.field {
    display: grid;
    align-content: start;
    align-self: start;
    gap: 8px;
}

.field span {
    color: rgb(17 17 17 / 74%);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;

    border: 1px solid rgb(17 17 17 / 22%);
    border-radius: 6px;
    background: #ffffff;
    color: #111111;

    line-height: 1.25;
    outline: none;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brc-red);
    box-shadow: 0 0 0 3px rgb(224 0 11 / 16%);
}

.field-hint {
    color: rgb(17 17 17 / 62%);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.45;
}

.form-alert p {
    margin: 0;
}

.form-alert p + p {
    margin-top: 6px;
}

.form-alert-success {
    border: 1px solid rgb(15 118 72 / 24%);
    background: #e9f8ef;
    color: #14532d;
}

.form-alert-error {
    border: 1px solid rgb(169 0 8 / 24%);
    background: #fff1f1;
    color: var(--brc-dark-red);
}

.form-submit {
    width: 100%;
    margin-top: 20px;
    border: 0;
    cursor: pointer;
}

@media screen and (min-width: 701px) {
    :root {
        --header-height: 96px;
    }

    .site-header {
        padding: 16px 24px;
        gap: 18px;
    }

    .brand-logo {
        width: 88px;
        height: 88px;
    }

    .menu-toggle {
        min-height: 48px;
        padding: 10px 10px 10px 14px;
        gap: 12px;
    }

    .menu-toggle::after {
        height: 22px;
    }

    .burger span {
        width: 28px;
    }

    .menu-label {
        font-size: 0.9rem;
        letter-spacing: 0.14em;
    }

    .mobile-menu {
        width: var(--menu-width);
        padding: calc(var(--header-height) + 20px) 28px 32px;
    }

    .hero-image {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgb(0 0 0 / 92%) 0%,
                rgb(0 0 0 / 72%) 30%,
                rgb(0 0 0 / 22%) 62%,
                rgb(0 0 0 / 6%) 100%
            ),
            linear-gradient(
                180deg,
                rgb(0 0 0 / 48%) 0%,
                rgb(0 0 0 / 4%) 44%,
                rgb(0 0 0 / 42%) 100%
            );
    }

    .hero-content {
        width: min(620px, 60vw);
        padding: 156px 0 72px;
        margin-left: 32px;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(4rem, 8.5vw, 6.4rem);
        line-height: 0.86;
    }

    .hero-highlight {
        margin-top: 12px;
    }

    .hero-line {
        margin-top: 30px;
    }

    .hero-text {
        font-size: 1.06rem;
    }

    .hero-label {
        padding: 14px 16px;
    }

    .hero-actions {
        grid-template-columns: max-content max-content;
        gap: 16px;
    }

    .button {
        min-height: 66px;
        min-width: 220px;
        padding: 0 26px;
    }

    .calendar-page {
        padding: calc(var(--header-height) + 42px) 28px 78px;
    }

    .calendar-hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
        align-items: end;
        gap: 34px;
    }

    .calendar-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 16px;
    }

    .calendar-note {
        align-self: end;
    }

    .calendar-frame {
        min-height: 720px;
    }

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

    .guide-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page {
        padding: calc(var(--header-height) + 48px) 28px 78px;
    }

    .contact-form {
        padding: 28px;
    }

    .content-page {
        padding: calc(var(--header-height) + 48px) 28px 78px;
    }

    .content-actions {
        grid-template-columns: max-content max-content;
        gap: 16px;
    }

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

    .content-split {
        grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
        gap: 40px;
    }

    .map-button {
        width: fit-content;
    }

    .map-frame {
        min-height: 420px;
    }

    .content-label {
        grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
        align-items: stretch;
        padding: 30px;
    }

    .label-mark {
        min-height: 220px;
        padding: 24px;
    }

    .discipline-list {
        gap: 34px;
    }

    .discipline-card {
        grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .discipline-card-reverse .discipline-media {
        order: 2;
    }

    .discipline-copy {
        padding: 34px;
        align-self: center;
    }

    .discipline-media,
    .discipline-media img {
        min-height: 560px;
    }

    .trial-page {
        padding: calc(var(--header-height) + 48px) 28px 72px;
    }

    .trial-shell {
        gap: 34px;
    }

    .trial-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trial-form {
        padding: 28px;
    }

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

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

@media screen and (min-width: 760px) {
    .desktop-nav {
        min-width: 0;
        margin-left: auto;

        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        gap: clamp(10px, 1.4vw, 26px);
    }

    .desktop-nav a {
        position: relative;
        padding: 12px 0;

        font-size: clamp(0.68rem, 1vw, 0.86rem);
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .desktop-nav a::after {
        content: "";

        position: absolute;
        left: 0;
        bottom: 5px;

        width: 0;
        height: 2px;

        background: var(--brc-red);
        transition: width 180ms ease;
    }

    .desktop-nav a:hover::after,
    .desktop-nav a:focus-visible::after {
        width: 100%;
    }
}

@media screen and (min-width: 1101px) {
    :root {
        --header-height: 112px;
    }

    .site-header {
        padding: 18px 32px;
    }

    .brand-logo {
        width: 104px;
        height: 104px;
    }

    .brand-name {
        display: inline-block;
        font-size: 1.08rem;
    }

    .header-cta {
        min-height: 54px;
        padding: 0 28px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;

        border: 1px solid var(--brc-red);
        background: var(--brc-red);

        font-size: 0.9rem;
        font-weight: 900;
        text-transform: uppercase;

        transition:
            background 180ms ease,
            transform 180ms ease;
    }

    .header-cta:hover {
        background: var(--brc-dark-red);
        transform: translateY(-1px);
    }

    .hero-image {
        object-position: center center;
    }

    .hero-content {
        width: min(650px, 48vw);
        margin-left: clamp(40px, 4vw, 72px);
    }

    .hero-title {
        font-size: clamp(4.4rem, 6.7vw, 7.4rem);
    }

    .button {
        min-height: 72px;
        padding: 0 30px;
    }

    .trial-page {
        padding-top: calc(var(--header-height) + 68px);
    }

    .trial-shell {
        grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
        align-items: start;
        gap: 54px;
    }

    .trial-intro {
        position: sticky;
        top: calc(var(--header-height) + 34px);
    }

    .trial-intro h1 {
        font-size: clamp(3.5rem, 4.5vw, 4.9rem);
    }

    .trial-form {
        padding: 34px;
    }

    .contact-shell {
        grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
        align-items: start;
        gap: 54px;
    }

    .contact-intro {
        position: sticky;
        top: calc(var(--header-height) + 34px);
    }

    .contact-form {
        padding: 34px;
    }
}

@media screen and (min-width: 1180px) {
    .discipline-copy {
        padding: 44px;
    }

    .discipline-media,
    .discipline-media img {
        min-height: 680px;
    }
}

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