/* ============================================================================
   Kinetic Sport (Template B) inner sub-pages — Events / Clinics / Teams /
   Facilities / About. Same theme-agnostic vp-* markup the default theme uses,
   restyled into Direction B's "Kinetic Sport" language: paper-dominant body,
   a paper page-header band capped by a red marquee divider, ink section breaks,
   border-top accent event cards, and an ink CTA with a giant "GO" backdrop.

   Adapts the design handoff's pages-b.css onto the vp-* classes. Scoped under
   .theme-kinetic-sport; colours read from the per-club brand palette the shell
   emits (--brand-primary = red, --brand-secondary = ink, --brand-accent = blue)
   over the fixed paper/muted neutrals. --cm-edge centres content in the 1440
   artboard while section backgrounds run full-bleed.
   ============================================================================ */

.theme-kinetic-sport {
    --cm-inset: clamp(1.25rem, 4vw, 3.5rem);
    --cm-edge: max(var(--cm-inset), calc((100% - 1328px) / 2));
}

/* ===== Page-header band — paper, eyebrow bar, marquee divider ===== */
.theme-kinetic-sport .vp-header {
    position: relative;
    overflow: visible;
    background: #f5f1ea;
    color: var(--brand-secondary, #0a0a0a);
    padding: clamp(2rem, 4vw, 40px) var(--cm-edge) clamp(2.5rem, 5vw, 48px);
    border-bottom: 1px solid color-mix(in srgb, #0a0a0a 8%, transparent);
}
.theme-kinetic-sport .vp-header__watermark { display: none; }
.theme-kinetic-sport .vp-header__crumb {
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: #7a7368; margin-bottom: 1.5rem;
}
.theme-kinetic-sport .vp-header__crumb-sep { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-header__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(1.5rem, 4vw, 48px);
    align-items: end;
}
/* Kicker rendered as the signature eyebrow: red bar + mono text (no pill). */
.theme-kinetic-sport .vp-pill {
    border: 0; border-radius: 0; padding: 0; margin-bottom: 1.1rem;
    color: var(--brand-primary, #dc2626);
    font-family: "JetBrains Mono", ui-monospace, monospace;
    font-size: 12px; letter-spacing: 0.16em; font-weight: 700;
    display: inline-flex; align-items: center; gap: 14px;
}
.theme-kinetic-sport .vp-pill::before { content: ""; width: 56px; height: 3px; background: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-header__title {
    color: var(--brand-secondary, #0a0a0a);
    font-size: clamp(3rem, 9vw, 132px);
    line-height: 0.86;
    letter-spacing: -2px;
}
.theme-kinetic-sport .vp-header__meta { color: #7a7368; margin-top: 1.5rem; }
.theme-kinetic-sport .vp-header__meta b { color: var(--brand-accent, #1aa3d6); }
.theme-kinetic-sport .vp-header__intro { color: #7a7368; font-size: 18px; padding-bottom: 8px; }

/* Marquee divider under the header (shown only on the kinetic theme). */
.theme-kinetic-sport .vp-header-marquee {
    background: var(--brand-primary, #dc2626);
    color: #f5f1ea;
    padding: 12px 0;
    overflow: hidden;
    border-top: 1px solid var(--brand-secondary, #0a0a0a);
    border-bottom: 1px solid var(--brand-secondary, #0a0a0a);
}
.theme-kinetic-sport .vp-header-marquee__track {
    display: flex; align-items: center; gap: 28px; width: max-content;
    font-family: "Anton", system-ui, sans-serif; font-size: 30px;
    letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; line-height: 1;
    animation: vp-marquee 36s linear infinite;
}
.theme-kinetic-sport .vp-header-marquee__dot { width: 16px; height: 16px; background: #f5f1ea; transform: rotate(45deg); flex-shrink: 0; }
@keyframes vp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .theme-kinetic-sport .vp-header-marquee__track { animation: none; } }

/* ===== Section head ===== */
.theme-kinetic-sport .vp-sechead { max-width: none; margin-bottom: clamp(2rem, 4vw, 48px); }
.theme-kinetic-sport .vp-sechead__title {
    font-size: clamp(2.25rem, 6vw, 84px); line-height: 0.92; letter-spacing: -1px;
    color: var(--brand-secondary, #0a0a0a);
}
.theme-kinetic-sport .vp-sechead--light .vp-sechead__title { color: #f5f1ea; }
.theme-kinetic-sport .vp-sechead__blurb { color: #7a7368; }
.theme-kinetic-sport .vp-sechead--light .vp-sechead__blurb { color: color-mix(in srgb, #f5f1ea 78%, transparent); }

/* ===== Tag atom ===== */
.theme-kinetic-sport .vp-tag {
    border: 1.5px solid var(--vp-accent, var(--brand-secondary, #0a0a0a));
    color: var(--vp-accent, var(--brand-secondary, #0a0a0a));
}
.theme-kinetic-sport .vp-tag--solid { background: var(--vp-accent, var(--brand-secondary, #0a0a0a)); }

/* ===== Filter chips ===== */
.theme-kinetic-sport .vp-filter {
    background: #f5f1ea;
    color: var(--brand-secondary, #0a0a0a);
    border-bottom: 0;
    padding-top: clamp(2.5rem, 5vw, 56px);
    padding-bottom: 0;
}
.theme-kinetic-sport .vp-filter__label { display: none; }
.theme-kinetic-sport .vp-filter__btn { color: var(--brand-secondary, #0a0a0a); border-color: currentColor; }
.theme-kinetic-sport .vp-filter__btn--tryout { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-filter__btn--camp { color: var(--brand-accent, #1aa3d6); }
.theme-kinetic-sport .vp-filter__count { color: #7a7368; }

/* ===== Events ===== */
.theme-kinetic-sport .vp-events { background: #f5f1ea; color: var(--brand-secondary, #0a0a0a); }

/* Featured card — ink */
.theme-kinetic-sport .vp-featured { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-featured__eyebrow { color: color-mix(in srgb, #f5f1ea 60%, transparent); }
.theme-kinetic-sport .vp-featured__photo {
    background: repeating-linear-gradient(135deg,
        var(--vp-accent, var(--brand-primary, #dc2626)) 0 14px,
        color-mix(in srgb, var(--vp-accent, var(--brand-primary, #dc2626)) 86%, black) 14px 28px);
}
.theme-kinetic-sport .vp-featured__badge { border-top: 0; }
.theme-kinetic-sport .vp-featured__badge-m { color: var(--vp-accent, var(--brand-primary, #dc2626)); }

/* Event list becomes a 3-up card grid; each row becomes a border-top-accent card. */
.theme-kinetic-sport .vp-evlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border: 0;
}
.theme-kinetic-sport .vp-evrow {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 0;
    align-items: stretch;
    padding: 24px;
    background: #f5f1ea;
    border: 1px solid color-mix(in srgb, #0a0a0a 10%, transparent);
    border-top: 5px solid var(--vp-accent, var(--brand-secondary, #0a0a0a));
}
/* Date block → big day over a mono month (column-reverse: day sits above month in the DOM order). */
.theme-kinetic-sport .vp-evrow .vp-date {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    width: auto; height: auto;
    background: none; border-top: 0;
}
.theme-kinetic-sport .vp-evrow .vp-date__d {
    font-size: 72px; line-height: 0.85; letter-spacing: -1px;
    color: var(--vp-accent, var(--brand-secondary, #0a0a0a));
}
.theme-kinetic-sport .vp-evrow .vp-date__m { color: #7a7368; margin-top: 4px; }
.theme-kinetic-sport .vp-evrow__head { margin-top: 14px; }
.theme-kinetic-sport .vp-evrow__when { color: #7a7368; }
.theme-kinetic-sport .vp-evrow__title { font-size: 26px; line-height: 1.02; margin-top: 16px; }
.theme-kinetic-sport .vp-evrow__desc { color: #7a7368; margin-top: 12px; }
.theme-kinetic-sport .vp-evrow__cta { justify-self: stretch; margin-top: auto; padding-top: 18px; }

/* ===== Members-only note ===== */
.theme-kinetic-sport .vp-note {
    background: color-mix(in srgb, #0a0a0a 4%, #f5f1ea);
    border-color: color-mix(in srgb, #0a0a0a 10%, transparent);
    border-left-color: var(--brand-accent, #1aa3d6);
}
.theme-kinetic-sport .vp-note__tag { color: var(--brand-accent, #1aa3d6); }
.theme-kinetic-sport .vp-note__text { color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-note__text a { color: var(--brand-secondary, #0a0a0a); }

/* ===== Underline / button atoms ===== */
.theme-kinetic-sport .vp-link,
.theme-kinetic-sport .vp-link:link,
.theme-kinetic-sport .vp-link:visited { color: var(--vp-accent, var(--brand-primary, #dc2626)); }
.theme-kinetic-sport .vp-btn,
.theme-kinetic-sport .vp-btn:link,
.theme-kinetic-sport .vp-btn:visited { background: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-btn-link,
.theme-kinetic-sport .vp-btn-link:link,
.theme-kinetic-sport .vp-btn-link:visited { color: var(--brand-secondary, #0a0a0a); border-bottom-color: var(--brand-secondary, #0a0a0a); }

/* ===== Clinics — expect / bring ===== */
.theme-kinetic-sport .vp-clinic-info { background: #f5f1ea; color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-expect { border-top: 2px solid var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-expect__row { border-bottom-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-expect__num { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-expect__text { color: #7a7368; }
.theme-kinetic-sport .vp-bring { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-bring__mark { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-bring__text { color: color-mix(in srgb, #f5f1ea 72%, transparent); }
.theme-kinetic-sport .vp-bring__note { border-top-color: color-mix(in srgb, #f5f1ea 16%, transparent); color: color-mix(in srgb, #f5f1ea 80%, transparent); }

/* ===== Facilities ===== */
.theme-kinetic-sport .vp-fac { background: #f5f1ea; color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-fac__card { border-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-fac__card--primary { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-fac__card--primary .vp-fac__photo {
    background: repeating-linear-gradient(135deg,
        var(--brand-primary, #dc2626) 0 14px,
        color-mix(in srgb, var(--brand-primary, #dc2626) 86%, black) 14px 28px);
}
.theme-kinetic-sport .vp-fac__role,
.theme-kinetic-sport .vp-fac__primary-tag { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-fac__card--primary .vp-fac__primary-tag { color: color-mix(in srgb, #f5f1ea 60%, transparent); }
.theme-kinetic-sport .vp-fac__note { border-top-color: color-mix(in srgb, #0a0a0a 10%, transparent); color: #7a7368; }
.theme-kinetic-sport .vp-fac__note a { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-fac__card--primary .vp-fac__note { color: color-mix(in srgb, #f5f1ea 78%, transparent); border-top-color: color-mix(in srgb, #f5f1ea 16%, transparent); }
.theme-kinetic-sport .vp-fac__card--primary .vp-fac__note a { color: #f5f1ea; }

/* Game-day tips */
.theme-kinetic-sport .vp-tips { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-tips__grid { border-color: color-mix(in srgb, #f5f1ea 16%, transparent); }
.theme-kinetic-sport .vp-tips__cell { border-right-color: color-mix(in srgb, #f5f1ea 16%, transparent); }
.theme-kinetic-sport .vp-tips__num { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-tips__cell:nth-child(2) .vp-tips__num { color: var(--brand-accent, #1aa3d6); }
.theme-kinetic-sport .vp-tips__text { color: color-mix(in srgb, #f5f1ea 75%, transparent); }

/* ===== Teams — join / facts / roster / standings ===== */
.theme-kinetic-sport .vp-join { background: #f5f1ea; color: var(--brand-secondary, #0a0a0a); border-bottom-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-facts,
.theme-kinetic-sport .vp-facts__cell { border-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-facts__label { color: #7a7368; }

.theme-kinetic-sport .vp-roster { background: #f5f1ea; color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-roster__card { border-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-roster__card--dark { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-roster__card--dark .vp-roster__photo {
    background: repeating-linear-gradient(135deg,
        var(--brand-primary, #dc2626) 0 14px,
        color-mix(in srgb, var(--brand-primary, #dc2626) 86%, black) 14px 28px);
}
.theme-kinetic-sport .vp-roster__group { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-roster__meta { color: #7a7368; }
.theme-kinetic-sport .vp-roster__card--dark .vp-roster__meta { color: color-mix(in srgb, #f5f1ea 70%, transparent); }
.theme-kinetic-sport .vp-roster__record { border-top-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-roster__card--dark .vp-roster__record { border-top-color: color-mix(in srgb, #f5f1ea 16%, transparent); }
.theme-kinetic-sport .vp-roster__wl span,
.theme-kinetic-sport .vp-roster__streak { color: #7a7368; }

.theme-kinetic-sport .vp-standings { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-standings__table { border-color: color-mix(in srgb, #f5f1ea 16%, transparent); }
.theme-kinetic-sport .vp-standings__head { border-bottom-color: color-mix(in srgb, #f5f1ea 16%, transparent); color: #7a7368; }
.theme-kinetic-sport .vp-standings__row { border-bottom-color: color-mix(in srgb, #f5f1ea 10%, transparent); }
.theme-kinetic-sport .vp-standings__age { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-standings__pct { color: color-mix(in srgb, #f5f1ea 85%, transparent); }
.theme-kinetic-sport .vp-standings__streak { color: #7a7368; }
.theme-kinetic-sport .vp-standings__streak--w { color: var(--brand-accent, #1aa3d6); }

/* ===== About — mission / glance / contact ===== */
.theme-kinetic-sport .vp-mission { background: #f5f1ea; color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-mission__body { color: #7a7368; }
.theme-kinetic-sport .vp-mission__photo {
    background: repeating-linear-gradient(135deg,
        var(--brand-primary, #dc2626) 0 14px,
        color-mix(in srgb, var(--brand-primary, #dc2626) 86%, black) 14px 28px);
    outline-color: var(--brand-secondary, #0a0a0a);
}
.theme-kinetic-sport .vp-glance { border-top: 2px solid var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-glance__cell { border-right-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-glance__num { color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-glance__label { color: #7a7368; }

.theme-kinetic-sport .vp-about-contact { background: #f5f1ea; }
.theme-kinetic-sport .vp-ccard { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-ccard__k { color: #7a7368; }
.theme-kinetic-sport .vp-ccard__v a { border-bottom-color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-icard { border-color: color-mix(in srgb, #0a0a0a 10%, transparent); }
.theme-kinetic-sport .vp-icard__title { color: var(--brand-secondary, #0a0a0a); }
.theme-kinetic-sport .vp-icard__text { color: #7a7368; }

/* ===== CTA strip — ink with a giant "GO" backdrop ===== */
.theme-kinetic-sport .vp-cta {
    position: relative;
    overflow: hidden;
    background: var(--brand-secondary, #0a0a0a);
    color: #f5f1ea;
}
.theme-kinetic-sport .vp-cta__bg {
    display: block;
    position: absolute;
    right: -20px;
    bottom: -80px;
    font-family: "Anton", system-ui, sans-serif;
    font-size: clamp(140px, 22vw, 260px);
    line-height: 0.85;
    letter-spacing: -6px;
    color: var(--brand-primary, #dc2626);
    opacity: 0.14;
    pointer-events: none;
}
.theme-kinetic-sport .vp-cta__head,
.theme-kinetic-sport .vp-cta__right { position: relative; }
.theme-kinetic-sport .vp-cta__phone { color: color-mix(in srgb, #f5f1ea 85%, transparent); }
.theme-kinetic-sport .vp-cta__phone b { color: #f5f1ea; }
.theme-kinetic-sport .vp-cta__btn,
.theme-kinetic-sport .vp-cta__btn:link,
.theme-kinetic-sport .vp-cta__btn:visited { background: var(--brand-primary, #dc2626); color: #f5f1ea; }

/* ===== Footer — paper-on-ink shared markup, kinetic accents ===== */
.theme-kinetic-sport .vp-footer { background: var(--brand-secondary, #0a0a0a); color: #f5f1ea; }
.theme-kinetic-sport .vp-footer__brand-name { color: var(--brand-primary, #dc2626); }
.theme-kinetic-sport .vp-footer__col--portal .vp-footer__col-title { color: var(--brand-accent, #1aa3d6); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .theme-kinetic-sport .vp-header__grid { grid-template-columns: 1fr; align-items: start; }
    .theme-kinetic-sport .vp-evlist { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .theme-kinetic-sport .vp-evlist { grid-template-columns: 1fr; }
}
