/* ============================================================
   ESMEA RACING 2026
   Brand: red #ed1b24 / black / white
   Type: Inter / Arial fallback
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@500;600;700;800;900&display=swap');

:root {
    --red: #ed1b24;
    --red-deep: #c51017;
    --red-dark: #380407;
    --red-glow: rgba(237, 27, 36, 0.45);
    --black: #0a0a0a;
    --black-soft: #131313;
    --black-card: #181818;
    --grey-900: #1f1f1f;
    --grey-700: #2a2a2a;
    --grey-500: #4a4a4a;
    --grey-300: #8a8a8a;
    --grey-200: #b8b8b8;
    --grey-100: #ececec;
    --white: #ffffff;
    --gold: #d4a72c;

    --font-sans: 'Inter', 'Arial', 'Helvetica Neue', 'Helvetica', sans-serif;
    --font-display: 'Barlow Condensed', 'Arial Narrow', 'Arial', sans-serif;

    --container: 1280px;
    --container-wide: 1440px;
    --radius-sm: 4px;
    --radius: 6px;
    --radius-lg: 12px;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
    --shadow-red: 0 20px 60px -20px rgba(237, 27, 36, 0.45);
}

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

html, body { width: 100%; max-width: 100%; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: clip; }

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--grey-100);
    line-height: 1.6;
    font-size: 16px;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}

h1 { font-size: clamp(2.6rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.4rem); }

p { color: var(--grey-200); font-size: 1rem; line-height: 1.75; }
p.lead { font-size: 1.2rem; color: var(--grey-100); line-height: 1.7; }

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}

.section-title {
    margin: 18px 0 22px;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: clamp(70px, 9vw, 130px) 0;
    position: relative;
}

.section-light {
    background: var(--white);
    color: var(--black);
    position: relative;
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--black); }
.section-light p { color: #4a4a4a; }
.section-light .eyebrow { color: var(--red); }
.section-light .eyebrow::before { background: var(--red); }
.section-light .lead { color: #2a2a2a; }
.section-light::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--red) 50%, transparent 100%);
    opacity: 0.6;
}

.section-cream {
    background: #f7f5f1;
    color: var(--black);
    position: relative;
}
.section-cream h1, .section-cream h2, .section-cream h3, .section-cream h4 { color: var(--black); }
.section-cream p { color: #4a4a4a; }
.section-cream .lead { color: #2a2a2a; }

/* Card adjustments inside light/cream sections */
.section-light .service-card,
.section-cream .service-card {
    background: var(--white);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px -10px rgba(0,0,0,0.1);
}
.section-cream .service-card { background: var(--white); }
.section-light .service-card:hover,
.section-cream .service-card:hover {
    box-shadow: 0 20px 40px -15px rgba(237,27,36,0.25);
    border-color: var(--red);
}
.section-light .service-card h3,
.section-cream .service-card h3 { color: var(--black); }
.section-light .service-card p,
.section-cream .service-card p { color: #555; }
.section-light .service-card .btn-ghost,
.section-cream .service-card .btn-ghost { color: var(--black); }
.section-light .service-card .btn-ghost:hover,
.section-cream .service-card .btn-ghost:hover { color: var(--red); }

.section-light .price-card,
.section-cream .price-card {
    background: var(--white);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 4px 24px -12px rgba(0,0,0,0.12);
}
.section-light .price-card h3,
.section-cream .price-card h3 { color: var(--black); }
.section-light .price-card .age,
.section-cream .price-card .age { color: #6a6a6a; }
.section-light .price-card__price,
.section-cream .price-card__price { color: var(--black); }
.section-light .price-card__price span,
.section-cream .price-card__price span { color: #6a6a6a; }
.section-light .price-card .term,
.section-cream .price-card .term { color: #6a6a6a; }
.section-light .price-card ul,
.section-cream .price-card ul { border-top-color: rgba(0,0,0,0.08); }
.section-light .price-card ul li,
.section-cream .price-card ul li { color: #2a2a2a; }
.section-light .price-card--featured,
.section-cream .price-card--featured {
    background: linear-gradient(180deg, var(--white) 0%, #fff5f5 100%);
    border-color: var(--red);
    box-shadow: 0 20px 50px -20px rgba(237,27,36,0.35);
}

.section-light .news-card,
.section-cream .news-card {
    background: var(--white);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 18px -10px rgba(0,0,0,0.1);
}
.section-light .news-card h3,
.section-cream .news-card h3 { color: var(--black); }
.section-light .news-card p,
.section-cream .news-card p { color: #555; }

.section-light .race-table,
.section-cream .race-table {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
}
.section-light .race-table thead,
.section-cream .race-table thead { background: #f1efe9; }
.section-light .race-table th,
.section-cream .race-table th { color: #6a6a6a; border-bottom-color: rgba(0,0,0,0.08); }
.section-light .race-table td,
.section-cream .race-table td { color: #2a2a2a; border-bottom-color: rgba(0,0,0,0.05); }
.section-light .race-table .date,
.section-cream .race-table .date { color: var(--black); }
.section-light .race-table tr:hover td,
.section-cream .race-table tr:hover td { background: rgba(237,27,36,0.04); }

.section-light .split__list li,
.section-cream .split__list li { color: #2a2a2a; border-bottom-color: rgba(0,0,0,0.08); }
.section-light .split__media::before,
.section-cream .split__media::before { border-color: rgba(237,27,36,0.6); }

.section-light .btn-outline,
.section-cream .btn-outline { color: var(--black); border-color: rgba(0,0,0,0.2); }
.section-light .btn-outline:hover,
.section-cream .btn-outline:hover { color: var(--white); background: var(--black); border-color: var(--black); }

.section-light .tab-filter button,
.section-cream .tab-filter button { color: #4a4a4a; border-color: rgba(0,0,0,0.15); }
.section-light .tab-filter button:hover,
.section-light .tab-filter button.active,
.section-cream .tab-filter button:hover,
.section-cream .tab-filter button.active { color: var(--white); background: var(--red); border-color: var(--red); }

.section-light .faq-item,
.section-cream .faq-item { border-bottom-color: rgba(0,0,0,0.1); }
.section-light .faq-q,
.section-cream .faq-q { color: var(--black); }
.section-light .faq-q .chev,
.section-cream .faq-q .chev { border-color: rgba(0,0,0,0.2); }
.section-light .faq-q .chev::before,
.section-cream .faq-q .chev::before { color: var(--black); }
.section-light .faq-a-inner,
.section-cream .faq-a-inner { color: #4a4a4a; }
.section-light .faq-item.open .faq-q .chev,
.section-cream .faq-item.open .faq-q .chev { border-color: var(--red); }
.section-light .faq-item.open .faq-q .chev::before,
.section-cream .faq-item.open .faq-q .chev::before { color: var(--white); }

.section-light .cat-header,
.section-cream .cat-header { border-bottom-color: rgba(0,0,0,0.1); }
.section-light .cat-header .ages,
.section-cream .cat-header .ages { color: #6a6a6a; }

.section-light .contact-card,
.section-cream .contact-card {
    background: var(--white);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 18px -10px rgba(0,0,0,0.1);
}
.section-light .contact-card .val,
.section-cream .contact-card .val { color: var(--black); }
.section-light .contact-card .val a,
.section-cream .contact-card .val a { color: var(--black); }
.section-light .contact-card .val a:hover,
.section-cream .contact-card .val a:hover { color: var(--red); }

.section-light .form,
.section-cream .form {
    background: var(--white);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 24px -12px rgba(0,0,0,0.12);
}
.section-light .form label,
.section-cream .form label { color: #555; }
.section-light .form input,
.section-light .form select,
.section-light .form textarea,
.section-cream .form input,
.section-cream .form select,
.section-cream .form textarea {
    background: #f9f7f3;
    border-color: rgba(0,0,0,0.12);
    color: var(--black);
}
.section-light .form input:focus,
.section-light .form select:focus,
.section-light .form textarea:focus,
.section-cream .form input:focus,
.section-cream .form select:focus,
.section-cream .form textarea:focus {
    background: var(--white);
    border-color: var(--red);
}

.section-dark { background: var(--black-soft); }

.section-grad {
    background: linear-gradient(180deg, var(--black) 0%, #050505 100%);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grey-700), transparent);
    margin: 0;
    border: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 10px 30px -10px var(--red-glow);
}
.btn-primary:hover {
    background: var(--red-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.06);
}

.btn-ghost {
    color: var(--white);
    padding: 12px 0;
}
.btn-ghost::after {
    content: '';
    width: 24px; height: 1px; background: currentColor;
    transition: width var(--transition);
}
.btn-ghost:hover { color: var(--red); }
.btn-ghost:hover::after { width: 40px; }

.btn-arrow::after {
    content: '\2192';
    font-size: 1.2em;
    transition: transform var(--transition);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   TOP STRIP / ANNOUNCE
   ============================================================ */

.topstrip {
    background: var(--black-soft);
    color: var(--grey-200);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topstrip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 28px;
    gap: 30px;
    max-width: var(--container-wide);
    margin: 0 auto;
    flex-wrap: nowrap;
}
.topstrip__left { display: flex; align-items: center; gap: 22px; min-width: 0; }
.topstrip__left > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topstrip__left span { display: inline-flex; align-items: center; gap: 8px; }
.topstrip__left .dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; box-shadow: 0 0 10px var(--red-glow); animation: pulse 2s ease-in-out infinite; }
.topstrip__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.topstrip__right a:hover { color: var(--red); }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 768px) {
    .topstrip__left .hide-mobile { display: none; }
    .topstrip__inner { padding: 10px 18px; gap: 12px; }
}

/* Generic form-grid (used on portal + tryout) */
.form-grid { display: grid; gap: 18px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 720px) {
    .form-grid--2 { grid-template-columns: 1fr; }
}

/* Login dropdown menu in topstrip */
.login-menu { position: relative; display: inline-block; }
.login-menu__toggle { cursor: pointer; user-select: none; }
.login-menu__drop {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 240px;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,.55);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 200;
}
.login-menu.open .login-menu__drop,
.login-menu:hover .login-menu__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.login-menu__drop a {
    display: flex; flex-direction: column;
    padding: 10px 14px;
    border-radius: 7px;
    color: #fff !important;
    text-decoration: none;
    line-height: 1.3;
}
.login-menu__drop a:hover { background: rgba(237,27,36,.18); color: var(--red) !important; }
.login-menu__drop a strong { font-size: 14px; font-weight: 600; }
.login-menu__drop a span { font-size: 11px; opacity: .55; margin-top: 2px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
}
.header__inner {
    display: flex;
    align-items: center;
    padding: 16px 28px;
    max-width: var(--container-wide);
    margin: 0 auto;
    gap: 32px;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-right: auto;
}
.header__logo img {
    height: 34px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    object-position: left center;
    display: block;
}
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}
.nav a {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey-200);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
    line-height: 1;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--red);
    transition: width var(--transition);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--white); }

.nav__group {
    position: relative;
}
.nav__group:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--black-soft);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 14px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow);
}
.nav__dropdown a {
    display: block;
    padding: 10px 22px;
    color: var(--grey-200);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.nav__dropdown a:hover {
    color: var(--white);
    background: var(--grey-900);
}
.nav__dropdown a::after { display: none; }

.header__cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: 16px;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.header__cta .btn {
    padding: 12px 20px;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
}

.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
}
.menu-toggle span {
    width: 18px; height: 2px;
    background: var(--white);
    transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* AANMELDEN is redundant met PLAN TRY-OUT - verberg permanent in header */
.header__cta .btn-outline { display: none; }

@media (max-width: 1380px) {
    .header__inner { gap: 22px; padding: 16px 22px; }
    .nav { gap: 16px; }
    .nav a { font-size: 0.74rem; letter-spacing: 0.06em; }
}

@media (max-width: 1180px) {
    .nav { gap: 12px; }
    .nav a { font-size: 0.72rem; letter-spacing: 0.04em; }
    .header__cta { padding-left: 14px; margin-left: 8px; }
}

@media (max-width: 1100px) {
    .nav { display: none; }
    .header__cta { border-left: 0; padding-left: 0; margin-left: 0; }
    .menu-toggle { display: inline-flex; }
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99;
    padding: 100px 28px 40px;
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--grey-900);
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}
.mobile-nav .mn-sub {
    padding-left: 24px;
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--grey-300);
}
.mobile-nav .mn-cta { margin-top: 28px; padding: 0; border: 0; }
.mobile-nav .mn-cta .btn { width: 100%; padding: 20px 32px; }
.mobile-nav .mn-login {
    display: flex !important;
    flex-direction: column;
    gap: 3px;
    padding: 14px 16px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 10px !important;
    margin-bottom: 8px;
    font-family: var(--font-sans) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #fff !important;
    line-height: 1.35;
    text-align: left;
}
.mobile-nav .mn-login strong {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-sans);
}
.mobile-nav .mn-login span {
    color: var(--grey-300);
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-sans);
}
.mobile-nav .mn-login:hover,
.mobile-nav .mn-login:active {
    background: rgba(237,27,36,.12);
    border-color: rgba(237,27,36,.4) !important;
}
.mobile-nav .mn-login--active {
    background: rgba(237,27,36,.16);
    border-color: rgba(237,27,36,.5) !important;
    color: var(--red) !important;
    font-weight: 700 !important;
}
.mobile-nav .mn-divider {
    margin: 20px 0 8px;
    padding: 10px 4px 4px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 0;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--grey-7);
    font-weight: 700;
}
.mobile-nav .mn-divider span { display: inline-block }

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: clamp(620px, 90vh, 880px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
.hero__bg {
    position: absolute; inset: 0;
    z-index: 1;
}
.hero__bg img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
    from { transform: scale(1.04); }
    to { transform: scale(1.14) translateX(-1.5%); }
}
.hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.65) 50%, rgba(10,10,10,0.4) 100%),
        linear-gradient(180deg, rgba(10,10,10,0.4) 0%, transparent 30%, rgba(10,10,10,0.85) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 200px;
    flex: 1;
    display: flex;
    align-items: center;
}
.hero__title {
    font-size: clamp(3rem, 8vw, 7.5rem);
    line-height: 0.92;
    margin: 24px 0 28px;
    text-transform: uppercase;
}
.hero__title em {
    font-style: normal;
    color: var(--red);
    display: block;
}
.hero__sub {
    max-width: 580px;
    font-size: 1.15rem;
    color: var(--grey-100);
    margin-bottom: 40px;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.hero__meta {
    position: absolute;
    bottom: 48px;
    right: 28px;
    z-index: 2;
    text-align: right;
    color: var(--grey-300);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.hero__meta strong { display: block; color: var(--white); font-size: 1.1rem; letter-spacing: 0.05em; margin-top: 4px; }

.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
}
.hero__stat {
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: left;
}
.hero__stat:last-child { border-right: 0; }
.hero__stat .num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
}
.hero__stat .num em { font-style: normal; color: var(--red); }
.hero__stat .lbl {
    font-size: 0.74rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 8px;
    display: block;
}
@media (max-width: 800px) {
    .hero__stats { grid-template-columns: repeat(2, 1fr); }
    .hero__stat { padding: 18px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .hero__stat:nth-child(2) { border-right: 0; }
    .hero__stat:nth-child(3), .hero__stat:nth-child(4) { border-bottom: 0; }
    .hero__stat .num { font-size: 1.8rem; }
    .hero__stat .lbl { font-size: 0.65rem; letter-spacing: 0.14em; }
    .hero__meta { display: none; }
    .hero__content { padding: 100px 0 220px; }
}

/* page hero - smaller */
.page-hero {
    position: relative;
    padding: 180px 0 90px;
    background: var(--black);
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero__bg {
    position: absolute; inset: 0;
    opacity: 0.42;
    z-index: 1;
}
.page-hero__bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.page-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, var(--black) 100%), linear-gradient(90deg, var(--black) 0%, transparent 100%);
    z-index: 1;
}
.page-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    margin: 18px 0 18px;
}
.page-hero p { font-size: 1.15rem; color: var(--grey-100); }
.crumbs {
    display: flex;
    gap: 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--grey-300);
    margin-bottom: 28px;
}
.crumbs a:hover { color: var(--red); }
.crumbs span { color: var(--grey-500); }

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 56px;
}
.service-card {
    position: relative;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--red);
    box-shadow: var(--shadow-red);
}
.service-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.service-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--transition-slow);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.85) 100%);
}
.service-card__num {
    position: absolute;
    top: 18px; left: 22px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--white);
    background: var(--red);
    padding: 6px 12px;
    border-radius: 2px;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.service-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; flex: 1; margin-bottom: 22px; }
.service-card .btn-ghost { padding: 0; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }

/* ============================================================
   FEATURE / SPLIT
   ============================================================ */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(237,27,36,0.5);
    z-index: 2;
    pointer-events: none;
}
.split__body { max-width: 540px; }
.split__body h2 { margin: 18px 0 22px; }
.split__list {
    margin-top: 32px;
    list-style: none;
    padding: 0;
}
.split__list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-900);
    color: var(--grey-100);
    font-size: 0.95rem;
}
.split__list li::before {
    content: '\2713';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 880px) {
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split--reverse { direction: ltr; }
}

/* ============================================================
   STAT BAR
   ============================================================ */

.statbar {
    background:
        linear-gradient(135deg, var(--red-deep) 0%, var(--red) 45%, var(--red-deep) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.statbar::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(-15deg, transparent 0 24px, rgba(0,0,0,0.07) 24px 25px),
        radial-gradient(ellipse at top right, rgba(255,255,255,0.08), transparent 70%);
    pointer-events: none;
}
.statbar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.statbar__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 70px 0;
    position: relative;
    z-index: 1;
}
.statbar__item {
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.statbar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 14%; bottom: 14%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.35), transparent);
}
.statbar__num {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 18px rgba(0,0,0,0.25);
}
.statbar__num em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 0%, #ffe5e7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.statbar__lbl {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.74rem;
    margin-top: 14px;
    opacity: 0.92;
    font-weight: 600;
}
.statbar__icon {
    display: block;
    margin: 0 auto 8px;
    opacity: 0.92;
}
@media (max-width: 768px) {
    .statbar__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 0; padding: 50px 0; }
    .statbar__item:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
    .statbar__inner { grid-template-columns: repeat(2, 1fr); gap: 40px 0; padding: 40px 0; }
    .statbar__item:nth-child(2) { border-right: 0; }
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 50px;
}
.price-card {
    position: relative;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: all var(--transition);
}
.price-card--featured {
    border-color: var(--red);
    background: linear-gradient(180deg, var(--black-card) 0%, #1d0507 100%);
    transform: scale(1.04);
}
.price-card--featured::before {
    content: 'POPULAIR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 6px 14px;
    border-radius: 2px;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--red); }
.price-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.price-card__cat {
    font-size: 0.78rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 12px;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .age { color: var(--grey-300); font-size: 0.85rem; margin-bottom: 22px; }
.price-card__price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin: 22px 0 4px;
}
.price-card__price span { font-size: 0.9rem; color: var(--grey-300); font-weight: 500; }
.price-card .term { color: var(--grey-300); font-size: 0.82rem; margin-bottom: 26px; }
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0 28px;
    border-top: 1px solid var(--grey-900);
    padding-top: 22px;
}
.price-card ul li {
    padding: 8px 0;
    color: var(--grey-200);
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.price-card ul li::before {
    content: '\2713';
    color: var(--red);
    flex-shrink: 0;
    font-weight: 700;
}
.price-card .btn { width: 100%; }

/* ============================================================
   TEAM
   ============================================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 44px;
}
.team-card {
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.04);
}
.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
}
.team-card__photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--grey-900);
}
.team-card__photo img {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(40%);
    transition: all var(--transition-slow);
}
.team-card:hover .team-card__photo img { filter: grayscale(0%); transform: scale(1.05); }
.team-card__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.9) 100%);
}
.team-card__no {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    background: var(--red);
    color: var(--white);
    padding: 4px 10px;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 2px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.team-card__body {
    padding: 18px 20px 22px;
}
.team-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.team-card__role {
    font-size: 0.78rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.team-cat {
    margin: 70px 0 28px;
    display: flex;
    align-items: baseline;
    gap: 22px;
}
.team-cat:first-child { margin-top: 0; }
.team-cat h3 { font-size: 1.5rem; }
.team-cat .count { color: var(--grey-300); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; }
.team-cat .line { flex: 1; height: 1px; background: var(--grey-900); }

/* ============================================================
   CALENDAR / RACE TABLE
   ============================================================ */

.race-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 44px;
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.race-table thead {
    background: var(--grey-900);
}
.race-table th {
    padding: 18px 22px;
    text-align: left;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--grey-300);
    border-bottom: 1px solid var(--grey-700);
}
.race-table td {
    padding: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: var(--grey-100);
    font-size: 0.95rem;
}
.race-table tr:hover td { background: rgba(237,27,36,0.05); }
.race-table tr:last-child td { border-bottom: 0; }
.race-table .date {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    white-space: nowrap;
}
.race-table .org {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(237,27,36,0.12);
    color: var(--red);
    border-radius: 2px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
}
.race-table .org.gk4 { background: rgba(212,167,44,0.15); color: var(--gold); }
.race-table .org.nk4t { background: rgba(40,160,255,0.12); color: #28a0ff; }
.race-table .org.t4ec { background: rgba(120,120,120,0.18); color: var(--grey-200); }

@media (max-width: 768px) {
    .race-table thead { display: none; }
    .race-table tr { display: block; padding: 18px; border-bottom: 1px solid var(--grey-900); }
    .race-table td { display: block; padding: 4px 0; border: 0; }
    .race-table .date { font-size: 1.2rem; margin-bottom: 6px; }
}

/* ============================================================
   SPONSORS
   ============================================================ */

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    margin-top: 50px;
    border-top: 1px solid var(--grey-900);
    border-left: 1px solid var(--grey-900);
}
.sponsor-cell {
    aspect-ratio: 16/10;
    border-right: 1px solid var(--grey-900);
    border-bottom: 1px solid var(--grey-900);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all var(--transition);
}
.sponsor-cell:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow);
    z-index: 2;
    position: relative;
}
.sponsor-cell img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    transition: all var(--transition);
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */

.faq {
    max-width: 880px;
    margin: 50px auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--grey-900);
}
.faq-q {
    width: 100%;
    text-align: left;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-q:hover { color: var(--red); }
.faq-q .chev {
    width: 36px; height: 36px;
    border: 1px solid var(--grey-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.faq-q .chev::before {
    content: '+';
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
}
.faq-item.open .faq-q .chev { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner { padding: 0 0 28px; color: var(--grey-200); }
.faq-a-inner p + p { margin-top: 12px; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
    position: relative;
    padding: clamp(80px, 10vw, 130px) 0;
    background: var(--black);
    overflow: hidden;
}
.cta-banner__bg {
    position: absolute; inset: 0;
    z-index: 1;
}
.cta-banner__bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.35;
}
.cta-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, var(--black) 0%, transparent 30%, transparent 70%, var(--black) 100%);
    z-index: 1;
}
.cta-banner__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.cta-banner h2 { font-size: clamp(2.4rem, 6vw, 4.5rem); margin-bottom: 22px; }
.cta-banner p { font-size: 1.15rem; max-width: 600px; margin: 0 auto 36px; color: var(--grey-100); }
.cta-banner .btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 50px;
}
.contact-info h3 { margin-bottom: 20px; }
.contact-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: var(--radius);
    margin-bottom: 18px;
}
.contact-card .label {
    font-size: 0.74rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-card .val {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
    word-break: break-word;
}
.contact-card .val a:hover { color: var(--red); }

.form {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px;
    border-radius: var(--radius);
}
.form h3 { margin-bottom: 28px; }
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--grey-300);
    margin-bottom: 8px;
    font-weight: 600;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--black);
    border: 1px solid var(--grey-700);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--black-soft);
}
.field textarea { min-height: 130px; resize: vertical; }

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .field-row { grid-template-columns: 1fr; }
    .form { padding: 28px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--black);
    border-top: 1px solid var(--grey-900);
    padding: 80px 0 30px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer__brand img { height: 48px; margin-bottom: 22px; }
.footer__brand p { font-size: 0.95rem; max-width: 320px; }
.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 600;
}
.footer ul { list-style: none; padding: 0; }
.footer ul li { padding: 7px 0; }
.footer ul a {
    color: var(--grey-300);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer ul a:hover { color: var(--red); }

.socials {
    display: flex; gap: 12px;
    margin-top: 22px;
}
.socials a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--grey-700);
    border-radius: 50%;
    color: var(--grey-200);
    transition: all var(--transition);
}
.socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.socials a svg { width: 16px; height: 16px; fill: currentColor; }

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid var(--grey-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--grey-500);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 18px;
}
.footer__bottom a:hover { color: var(--red); }

@media (max-width: 880px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
    .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   FLOATING ACTIONS
   ============================================================ */

.float-actions {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 50;
    display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px -10px var(--red-glow);
    transition: all var(--transition);
}
.float-btn:hover { transform: scale(1.08); color: var(--white); }
.float-btn svg { width: 22px; height: 22px; fill: currentColor; }
.float-btn.wa { background: #25D366; box-shadow: 0 10px 30px -10px rgba(37,211,102,0.45); }

@media (max-width: 768px) {
    .float-actions { bottom: 18px; right: 18px; }
    .float-btn { width: 48px; height: 48px; }
}

/* ============================================================
   DRIVER CATEGORY (mini, junior etc) HEADERS
   ============================================================ */
.cat-header {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 20px 0 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--grey-900);
}
.cat-header__num {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
}
.cat-header h3 { font-size: 1.5rem; }
.cat-header .ages { color: var(--grey-300); font-size: 0.85rem; }

/* ============================================================
   ANIMATIONS / REVEAL
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   UTILITY
   ============================================================ */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.no-list { list-style: none; padding: 0; }

/* ============================================================
   NEWS / BLOG STYLE
   ============================================================ */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.news-card {
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition);
}
.news-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
}
.news-card__media {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.news-card__media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--transition-slow);
}
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: 26px 24px 28px; }
.news-card__date {
    font-size: 0.74rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    margin-bottom: 10px;
}
.news-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.news-card p { font-size: 0.9rem; }

@media (max-width: 880px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AGENDA HERO + STATS + RACE CARDS (olivierolthofracing style)
   ============================================================ */

.agenda-hero {
    background: var(--black);
    padding: 100px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.agenda-hero__inner h1 {
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    color: var(--white);
    letter-spacing: -0.01em;
    margin: 22px 0 14px;
}
.agenda-hero__sub {
    color: var(--red);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    margin: 0;
}
.agenda-hero .crumbs { justify-content: center; }

.agenda-stats {
    background: var(--black-soft);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.agenda-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}
.agenda-stat {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s ease;
}
.agenda-stat:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}
.agenda-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.agenda-stat__lbl {
    color: var(--grey-3, var(--grey-300));
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

@media (max-width: 768px) {
    .agenda-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .agenda-stat { padding: 20px 16px; }
}

/* === Next race feature card === */
.next-feature {
    padding: 60px 0 0;
}
.next-feature__card {
    background: linear-gradient(135deg, #1f1f1f 0%, #0f0f0f 100%);
    border: 1px solid rgba(237,27,36,0.25);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    box-shadow: 0 30px 80px -30px rgba(237,27,36,0.4);
}
.next-feature__media {
    position: relative;
    min-height: 340px;
    overflow: hidden;
}
.next-feature__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.next-feature__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 40%, #1f1f1f 100%);
}
.next-feature__body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.next-feature__eyebrow {
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    display: block;
}
.next-feature__body h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin: 0 0 18px;
    line-height: 1.1;
}
.next-feature__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--grey-100);
    font-size: 0.95rem;
}
.next-feature__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.next-feature__meta svg { opacity: 0.6; }
.next-feature__countdown {
    display: flex;
    gap: 24px;
    margin: 8px 0 24px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cd-block { display: flex; flex-direction: column; }
.cd-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.cd-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--grey-300);
    margin-top: 4px;
}
.next-feature__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .next-feature__card { grid-template-columns: 1fr; }
    .next-feature__media { min-height: 240px; }
    .next-feature__media::after { background: linear-gradient(180deg, transparent 50%, #1f1f1f 100%); }
    .next-feature__body { padding: 28px 24px; }
}

/* === Races sections === */
.races-section {
    padding: 70px 0;
}
.races-section--past {
    background: var(--black-soft);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.races-section__head {
    text-align: center;
    margin-bottom: 40px;
}
.races-section__head h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}
.races-section__head p {
    color: var(--grey-300);
    font-size: 1rem;
    margin: 0;
}

.race-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.race-card-new {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.race-card-new:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 20px 50px -20px rgba(237,27,36,0.4);
}
.race-card-new--past { opacity: 0.78; }
.race-card-new--past:hover { opacity: 1; }

.race-card-new__media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #111;
}
.race-card-new__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.race-card-new:hover .race-card-new__media img { transform: scale(1.06); }
.race-card-new__placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #222 0%, #111 100%);
    color: var(--white);
}
.race-card-new__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
}
.race-card-new__date-badge {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    background: var(--red);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px -6px rgba(237,27,36,0.6);
    min-width: 64px;
}
.rdb-day {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}
.rdb-month {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 4px;
    opacity: 0.92;
}
.race-card-new__org {
    position: absolute;
    bottom: 14px; left: 14px;
    z-index: 2;
}
.race-finished-badge {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: var(--grey-100);
    padding: 6px 12px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.race-card-new__body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.race-card-new__body h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin: 0 0 14px;
    line-height: 1.25;
}
.race-card-new__info {
    color: var(--grey-200);
    font-size: 0.9rem;
    margin-top: auto;
}
.race-card-new__info > div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.race-card-new__info svg { color: var(--red); flex-shrink: 0; }
.race-card-new__countdown {
    display: inline-block;
    background: rgba(237,27,36,0.12);
    color: var(--red);
    padding: 5px 12px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 4px;
}
.race-card-new__countdown--today {
    background: var(--red);
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}
.race-card-new__actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 16px;
}
.ical-btn {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ical-btn:hover { background: var(--red); border-color: var(--red); }

.race-status-pill {
    flex: 1;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.race-status-pill--confirmed { background: rgba(34,197,94,0.15); color: #4ade80; }
.race-status-pill--pending { background: rgba(245,158,11,0.15); color: #fbbf24; }
.race-status-pill--cancelled { background: rgba(239,68,68,0.15); color: #f87171; }

@media (max-width: 600px) {
    .race-cards-grid { grid-template-columns: 1fr; gap: 16px; }
    .race-card-new__body { padding: 18px 20px 20px; }
}

/* ============================================================
   NEXT RACE / CALENDAR GRID (legacy, kept for compat)
   ============================================================ */

.next-race { padding: 50px 0 0; }
.next-race__card {
    position: relative;
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--black) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(237,27,36,0.4);
    box-shadow: 0 30px 80px -30px rgba(237,27,36,0.5);
}
.next-race__bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.next-race__bg img {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.25;
    mix-blend-mode: luminosity;
}
.next-race__inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    padding: 44px 48px;
    gap: 30px;
    flex-wrap: wrap;
}
.next-race__left h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 16px 0 14px;
    line-height: 1.05;
}
.next-race__meta {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    color: var(--grey-100); font-size: 0.95rem;
}
.next-race__right {
    display: flex; align-items: center; gap: 32px;
}
.countdown {
    display: flex; align-items: center; gap: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 18px 24px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}
.countdown__num {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.countdown__lbl {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--grey-200);
    line-height: 1.2;
}
.next-race__date {
    text-align: right;
    font-family: var(--font-display);
}
.next-race__date strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}
.next-race__date span {
    font-size: 0.85rem;
    color: var(--grey-300);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 4px;
    display: block;
    font-family: var(--font-sans);
}

@media (max-width: 800px) {
    .next-race__inner { padding: 30px 22px; flex-direction: column; align-items: flex-start; gap: 22px; }
    .next-race__right { width: 100%; justify-content: space-between; }
    .countdown { padding: 14px 18px; }
    .countdown__num { font-size: 2.6rem; }
}

/* === Calendar grid === */
.cal-grid {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.cal-month {
    position: relative;
}
.cal-month__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
    color: var(--black);
}
.cal-month__races {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

.race-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    transition: all var(--transition);
    box-shadow: 0 4px 18px -10px rgba(0,0,0,0.1);
    position: relative;
}
.race-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: 0 16px 40px -16px rgba(237,27,36,0.4);
}
.race-card--past {
    opacity: 0.55;
    filter: grayscale(60%);
}
.race-card__date {
    flex-shrink: 0;
    width: 88px;
    background: var(--black);
    color: var(--white);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 22px 12px;
    font-family: var(--font-display);
    text-align: center;
    position: relative;
}
.race-card__date::after {
    content: '';
    position: absolute;
    top: 12px; bottom: 12px; right: 0;
    width: 2px;
    background: var(--red);
}
.race-card__date .day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.race-card__date .dash {
    color: var(--red);
    font-size: 1rem;
    margin: 4px 0;
}
.race-card__date .month {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-top: 6px;
    color: var(--grey-200);
}

.race-card__body {
    padding: 18px 22px;
    flex: 1;
    min-width: 0;
}
.race-card__org { margin-bottom: 8px; }
.race-card__body h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.2;
}
.race-card__location {
    display: flex; align-items: center; gap: 6px;
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}
.race-card__location svg { color: var(--red); flex-shrink: 0; }
.race-card__badge {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(0,0,0,0.05);
    color: #555;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.race-card__badge--soon {
    background: var(--red);
    color: var(--white);
    animation: badgePulse 2s ease-in-out infinite;
}
.race-card__ical {
    position: absolute;
    bottom: 14px; right: 14px;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.04);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.race-card__ical:hover { background: var(--red); color: var(--white); }
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(237,27,36,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(237,27,36,0); }
}

@media (max-width: 600px) {
    .cal-month__races { grid-template-columns: 1fr; gap: 12px; }
    .race-card__date { width: 72px; padding: 16px 10px; }
    .race-card__date .day { font-size: 1.6rem; }
    .race-card__body { padding: 14px 18px; }
    .race-card__body h4 { font-size: 1.05rem; }
}

/* tab filter */
.tab-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 0;
}
.tab-filter button {
    padding: 10px 18px;
    border: 1px solid var(--grey-700);
    border-radius: 30px;
    color: var(--grey-200);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    transition: all var(--transition);
}
.tab-filter button.active,
.tab-filter button:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ============================================================
   MOBILE OPTIMIZATIONS
   ============================================================ */

@media (max-width: 768px) {
    .container, .container-wide { padding: 0 20px; }
    section { padding: 60px 0; }

    h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
    h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    h3 { font-size: clamp(1.25rem, 5vw, 1.6rem); }
    p.lead { font-size: 1.05rem; }

    /* Hero */
    .hero { min-height: 760px; }
    .hero__title { font-size: clamp(2.6rem, 11vw, 3.6rem); margin: 18px 0 20px; }
    .hero__sub { font-size: 1rem; margin-bottom: 24px; }
    .hero__content { padding: 80px 0 280px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; padding: 16px 24px; }

    /* Topstrip */
    .topstrip { font-size: 0.7rem; }
    .topstrip__inner { padding: 9px 16px; gap: 10px; }

    /* Header */
    .header__inner { padding: 14px 18px; gap: 12px; }
    .header__logo img { height: 34px; }
    .header__cta .btn-outline { display: none; }
    .header__cta .btn-primary { padding: 11px 16px; font-size: 0.72rem; }

    /* Stat bar */
    .statbar__inner { padding: 36px 0; }
    .statbar__num { font-size: 2.2rem; }
    .statbar__lbl { font-size: 0.7rem; }

    /* Page hero */
    .page-hero { padding: 130px 0 60px; }

    /* Buttons */
    .btn { padding: 15px 24px; font-size: 0.78rem; }

    /* Eyebrow */
    .eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; }
    .eyebrow::before { width: 22px; }

    /* Service cards */
    .services { gap: 18px; margin-top: 40px; }
    .service-card__body { padding: 22px; }

    /* Pricing */
    .pricing-grid { gap: 18px; margin-top: 36px; }
    .price-card { padding: 30px 24px; }
    .price-card--featured { transform: none; }
    .price-card--featured:hover { transform: translateY(-4px); }
    .price-card__price { font-size: 2.4rem; }

    /* Split */
    .split { gap: 32px; }
    .split__media { aspect-ratio: 16/12; }
    .split__list { margin-top: 22px; }
    .split__list li { padding: 12px 0; font-size: 0.92rem; }

    /* Team */
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
    .team-card__body { padding: 14px 16px 18px; }
    .team-card__name { font-size: 1rem; }
    .team-card__role { font-size: 0.7rem; }
    .team-cat { margin: 50px 0 22px; gap: 14px; flex-wrap: wrap; }
    .team-cat .line { display: none; }

    .cat-header { gap: 14px; margin: 18px 0 22px; padding-bottom: 14px; }
    .cat-header__num { width: 42px; height: 42px; font-size: 1.1rem; }

    /* Race table */
    .race-table tr { padding: 16px 18px; }
    .race-table .date { font-size: 1.05rem; }

    /* Sponsor grid */
    .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
    .sponsor-cell { padding: 22px; aspect-ratio: 4/3; }

    /* Footer */
    .footer { padding: 50px 0 24px; }
    .footer__grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
    .footer__brand { grid-column: auto; }
    .footer__bottom { flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; font-size: 0.75rem; }

    /* Contact */
    .contact-grid { gap: 32px; }
    .contact-card { padding: 22px; }
    .form { padding: 24px; }

    /* CTA banner */
    .cta-banner h2 { font-size: clamp(2rem, 8vw, 3rem); }
    .cta-banner p { font-size: 1rem; }
    .cta-banner .btns { flex-direction: column; align-items: stretch; }
    .cta-banner .btns .btn { width: 100%; }

    /* Section title spacing */
    .section-title { margin: 14px 0 18px; }

    /* Tab filter */
    .tab-filter { gap: 6px; }
    .tab-filter button { padding: 8px 14px; font-size: 0.7rem; }

    /* Floating button */
    .float-btn { width: 50px; height: 50px; }

    /* News */
    .news-grid { margin-top: 32px; gap: 18px; }
    .news-card__body { padding: 22px 20px; }
}

@media (max-width: 480px) {
    .topstrip__left .hide-mobile,
    .topstrip__right { display: none; }
    .topstrip__inner { justify-content: center; }
    .team-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sponsor-grid { grid-template-columns: 1fr 1fr; }
    .hero__stats { grid-template-columns: 1fr 1fr; }
    .hero__stat { padding: 20px 18px; }
    .hero__stat .num { font-size: 2.2rem; }
    .header__cta .btn-primary { display: none; }
}
