:root {
    --gfx-track: #0a0a0a;
    --gfx-surface: #161616;
    --gfx-red: #dc2626;
    --gfx-red-light: #ef4444;
    --gfx-zinc-300: #d4d4d8;
    --gfx-zinc-400: #a1a1aa;
    --gfx-zinc-500: #71717a;
    --gfx-zinc-600: #52525b;
    --gfx-zinc-700: #3f3f46;
    --gfx-zinc-800: #27272a;
    --gfx-zinc-900: #18181b;
    --gfx-font-brand: "Barlow Condensed", Arial, sans-serif;
    --gfx-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4rem; }
body.gfx-site {
    margin: 0;
    background: var(--gfx-track);
    color: #fff;
    font-family: var(--gfx-font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, video, iframe { max-width: 100%; }
button, input, textarea, select { font: inherit; }
.screen-reader-text,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link:focus {
    position: fixed;
    z-index: 9999;
    top: 1rem;
    left: 1rem;
    padding: .75rem 1rem;
    background: #fff;
    color: #000;
    border-radius: .5rem;
    font-weight: 800;
}

/* Header: port of src/components/Header.tsx */
.gfx-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
    background: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.3), transparent);
    border-bottom: 0 solid transparent;
}
.gfx-header.is-scrolled {
    background: var(--gfx-track);
    border-bottom: 2px solid var(--gfx-red);
    box-shadow: 0 4px 24px rgba(220, 38, 38, .2);
}
.gfx-header__container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.gfx-header__bar {
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height .3s ease;
}
.gfx-header.is-scrolled .gfx-header__bar { height: 4rem; }
.gfx-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}
.gfx-brand-art {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    line-height: 1;
}
.gfx-brand-art__icon {
    display: block;
    width: 2.5rem;
    height: 2.25rem;
    object-fit: contain;
    transition: width .3s ease, height .3s ease;
}
.gfx-brand-art__text {
    display: block;
    height: 2rem;
    width: auto;
    object-fit: contain;
    transition: height .3s ease;
}
.gfx-header.is-scrolled .gfx-brand-art__icon { width: 1.75rem; height: 1.5rem; }
.gfx-header.is-scrolled .gfx-brand-art__text { height: 1.25rem; }
.gfx-brand-art__icon-fallback {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.25rem;
    color: var(--gfx-red);
    font-size: 1.7rem;
    text-shadow: 0 0 18px rgba(220, 38, 38, .55);
}
.gfx-brand-art__text-fallback {
    font-family: var(--gfx-font-brand);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .025em;
    color: #fff;
    text-transform: uppercase;
}
.gfx-brand-art__text-fallback span { color: var(--gfx-red); margin-left: .12em; }
.gfx-nav__list {
    list-style: none;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
}
.gfx-nav__link,
.gfx-nav .menu-item > a {
    display: block;
    padding: 1.25rem 1rem;
    color: var(--gfx-zinc-300);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
    font-weight: 800;
    border-bottom: 2px solid transparent;
    transition: color .3s ease, border-color .3s ease, padding .3s ease;
}
.gfx-header:not(.is-scrolled) .gfx-nav__link,
.gfx-header:not(.is-scrolled) .gfx-nav .menu-item > a { padding-top: .75rem; padding-bottom: .75rem; }
.gfx-nav__link:hover,
.gfx-nav .menu-item > a:hover { color: #fff; }
.gfx-nav__link.is-active,
.gfx-nav .menu-item > a.is-active {
    color: var(--gfx-red-light);
    border-bottom-color: var(--gfx-red-light);
}
.gfx-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: .375rem;
    background: transparent;
    color: var(--gfx-zinc-400);
    cursor: pointer;
}
.gfx-menu-toggle:hover { color: #fff; background: rgba(255,255,255,.1); }
.gfx-menu-toggle__line {
    position: absolute;
    width: 1.4rem;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}
.gfx-menu-toggle__line:nth-child(1) { transform: translateY(-6px); }
.gfx-menu-toggle__line:nth-child(3) { transform: translateY(6px); }
.gfx-menu-toggle[aria-expanded="true"] .gfx-menu-toggle__line:nth-child(1) { transform: rotate(45deg); }
.gfx-menu-toggle[aria-expanded="true"] .gfx-menu-toggle__line:nth-child(2) { opacity: 0; }
.gfx-menu-toggle[aria-expanded="true"] .gfx-menu-toggle__line:nth-child(3) { transform: rotate(-45deg); }
.gfx-nav--mobile {
    border-top: 1px solid rgba(255,255,255,.1);
    background: var(--gfx-track);
}
.gfx-nav--mobile .gfx-nav__list { display: block; padding: .75rem 0; }
.gfx-nav--mobile .gfx-nav__link,
.gfx-nav--mobile .menu-item > a {
    padding: .75rem 1rem;
    border-bottom: 0;
    border-radius: .375rem;
}
.gfx-nav--mobile .gfx-nav__link.is-active,
.gfx-nav--mobile .menu-item > a.is-active {
    background: rgba(220, 38, 38, .1);
    color: var(--gfx-red-light);
}

/* Hero: port of src/components/VideoHero.tsx */
.gfx-hero {
    position: relative;
    height: 100vh;
    min-height: 24rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfx-hero__fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #030712, #1f2937, #0f172a);
}
.gfx-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 1s ease;
}
.gfx-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}
.gfx-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}
.gfx-hero__title {
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
}
.gfx-hero__wordmark .gfx-brand-art {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.gfx-hero__wordmark .gfx-brand-art__text {
    height: 5rem;
}
.gfx-hero__wordmark .gfx-brand-art__icon {
    width: 150px;
    height: 153px;
    margin-top: 1rem;
}
.gfx-hero__wordmark .gfx-brand-art__text-fallback {
    font-size: clamp(5rem, 14vw, 9rem);
    letter-spacing: -.015em;
    line-height: .82;
    text-shadow: 0 12px 40px rgba(0,0,0,.45);
}
.gfx-hero__wordmark .gfx-brand-art__icon-fallback {
    width: 150px;
    height: 153px;
    font-size: 6rem;
}
.gfx-hero__location {
    display: block;
    margin: 0 0 2rem;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}
.gfx-hero__tagline {
    margin: 0 auto 2.5rem;
    max-width: 36rem;
    font-size: 1.25rem;
    color: rgba(255,255,255,.8);
    text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.gfx-next-pill {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    margin: 0 0 3.5rem;
    padding: .5rem 1rem;
    border-radius: 9999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    text-decoration: none;
    backdrop-filter: blur(8px);
    font-size: 1.125rem;
    transition: color .2s ease, background .2s ease;
}
.gfx-next-pill:hover { color: #fff; background: rgba(255,255,255,.15); }
.gfx-next-pill strong { color: #fff; }
.gfx-hero__actions {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
}
.gfx-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.5rem;
    padding: .75rem 2rem;
    border-radius: 9999px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.gfx-button:hover { transform: translateY(-1px); }
.gfx-button--primary {
    background: var(--gfx-red);
    color: #fff;
    box-shadow: 0 0 20px rgba(220,38,38,.4);
}
.gfx-button--primary:hover { background: var(--gfx-red-light); }
.gfx-button--outline {
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
}
.gfx-button--outline:hover { background: #fff; color: #111827; }
.gfx-scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .375rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    animation: gfx-bounce 1.6s infinite;
}
@keyframes gfx-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -.35rem); }
}
.gfx-video-toggle {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 20;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(0,0,0,.4);
    color: rgba(255,255,255,.8);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.gfx-video-toggle:hover { background: rgba(0,0,0,.6); color: #fff; }

/* Shared sections: port of SectionContainer/SectionHeader */
.gfx-section {
    padding: 7.5rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
    background: var(--gfx-track);
}
.gfx-section--striped {
    background-color: #0d0d0d;
    background-image: repeating-linear-gradient(45deg, rgba(220,38,38,.025) 0, rgba(220,38,38,.025) 1px, transparent 1px, transparent 20px);
}
.gfx-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}
.gfx-section-header {
    margin-bottom: 4.5rem;
    text-align: center;
}
.gfx-section-header--left { text-align: left; margin-bottom: 2.5rem; }
.gfx-section-header h2 {
    margin: 0;
    color: #fff;
    font-family: var(--gfx-font-brand);
    font-size: clamp(3rem, 7vw, 4.75rem);
    line-height: .88;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
}
.gfx-section-header span {
    display: block;
    margin: 1rem auto 0;
    height: .25rem;
    width: 7rem;
    background: var(--gfx-red);
    border-radius: 9999px;
}
.gfx-section-header--left span { margin-left: 0; width: 4rem; }
.gfx-subheader {
    margin: 0 0 .75rem;
    color: var(--gfx-red-light);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.gfx-subheader--location { margin-top: 3.5rem; }

/* Schedule */
.gfx-next-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
    border-radius: 1rem;
    background: var(--gfx-red);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 0 50px rgba(220, 38, 38, .3);
}
.gfx-next-card__pattern,
.gfx-scale-card__pattern {
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image: repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 1px, transparent 14px);
}
.gfx-next-card__body,
.gfx-next-card__link { position: relative; }
.gfx-next-card h4 {
    margin: 0;
    color: #fff;
    font-family: var(--gfx-font-brand);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
}
.gfx-next-card p {
    margin: .25rem 0 0;
    color: #fee2e2;
    font-size: 1.125rem;
    font-weight: 800;
}
.gfx-next-card__link {
    flex: 0 0 auto;
    align-self: center;
    padding: .625rem 1.5rem;
    border-radius: 9999px;
    background: #fff;
    color: var(--gfx-red);
    font-size: .875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    transition: background .2s ease;
}
.gfx-next-card__link:hover { background: #fef2f2; }
.gfx-calendar-widget {
    margin-bottom: 2.5rem;
    border-radius: .5rem;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--gfx-surface);
    overflow: hidden;
}
.gfx-calendar-widget__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem .75rem;
}
.gfx-calendar-widget__top h4,
.gfx-calendar-widget__events h4 {
    margin: 0;
    color: #fff;
    font-family: var(--gfx-font-brand);
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
}
.gfx-calendar-widget__top button {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}
.gfx-calendar-widget__top button:hover { background: rgba(255,255,255,.12); }
.gfx-calendar-widget__weekdays,
.gfx-calendar-widget__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .35rem;
    padding: 0 1rem;
}
.gfx-calendar-widget__weekdays {
    color: var(--gfx-zinc-500);
    font-size: .75rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.gfx-calendar-widget__grid { padding-top: .75rem; padding-bottom: 1rem; }
.gfx-calendar-day {
    position: relative;
    min-height: 2rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9999px;
    background: transparent;
    color: var(--gfx-zinc-300);
    font-size: .875rem;
    cursor: pointer;
}
.gfx-calendar-day:hover { background: rgba(255,255,255,.10); color: #fff; }
.gfx-calendar-day.is-empty { cursor: default; }
.gfx-calendar-day.is-empty:hover { background: transparent; }
.gfx-calendar-day.is-today { background: var(--gfx-red); color: #fff; font-weight: 700; }
.gfx-calendar-day.is-selected { background: rgba(220,38,38,.2); color: #fca5a5; box-shadow: 0 0 0 2px var(--gfx-red-light); }
.gfx-calendar-day__dot {
    position: absolute;
    bottom: .25rem;
    width: .25rem;
    height: .25rem;
    border-radius: 9999px;
    background: var(--gfx-red-light);
}
.gfx-calendar-widget__events {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1rem;
}
.gfx-event-list {
    list-style: none;
    margin: .75rem 0 0;
    padding: 0;
    display: grid;
    gap: .75rem;
}
.gfx-event-item {
    padding: .875rem;
    border-radius: .75rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
}
.gfx-event-item strong,
.gfx-event-item a {
    display: block;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}
.gfx-event-item span {
    display: block;
    margin-top: .2rem;
    color: var(--gfx-zinc-400);
    font-size: .875rem;
}
.gfx-event-item.is-cancelled { opacity: .58; }
.gfx-event-item.is-cancelled strong,
.gfx-event-item.is-cancelled a { text-decoration: line-through; }
.gfx-event-empty { color: var(--gfx-zinc-400); margin: .75rem 0 0; }

/* About */
.gfx-prose {
    max-width: none;
    color: var(--gfx-zinc-400);
    font-size: 1rem;
}
.gfx-prose > * + * { margin-top: 1.25rem; }
.gfx-prose p { margin-bottom: 1.25rem; }
.gfx-prose strong { color: #fff; font-weight: 700; }
.gfx-prose h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: var(--gfx-font-brand);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}
.gfx-prose ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}
.gfx-prose li { margin: .5rem 0; }
.gfx-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: .5rem;
}
.gfx-prose th,
.gfx-prose td {
    border: 1px solid rgba(255,255,255,.1);
    padding: .75rem 1rem;
    text-align: left;
}
.gfx-prose th {
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.gfx-map-embed {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .5rem;
}
.gfx-map-embed iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
    filter: grayscale(.55) invert(.9) contrast(.8);
}
.gfx-map-embed p {
    margin: 0;
    padding: .75rem 1rem;
    background: var(--gfx-surface);
    color: var(--gfx-zinc-400);
    font-size: .875rem;
}

/* Membership */
.gfx-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.gfx-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--gfx-surface);
    border: 1px solid rgba(255,255,255,.1);
}
.gfx-pricing-card--featured {
    background: var(--gfx-red);
    border-color: var(--gfx-red);
    box-shadow: 0 0 40px rgba(220,38,38,.32);
}
.gfx-pricing-card__badge {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    padding: .25rem .75rem;
    border-radius: 0 0 .5rem .5rem;
    background: #fff;
    color: var(--gfx-red);
    font-size: .65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.gfx-pricing-card__inner {
    padding: 1.75rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.gfx-pricing-card__inner--featured { padding-top: 2.5rem; }
.gfx-pricing-card h3 {
    margin: 0 0 1rem;
    color: var(--gfx-red-light);
    font-size: .625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.gfx-pricing-card--featured h3 { color: #fecaca; }
.gfx-pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: .375rem;
    margin-bottom: .5rem;
}
.gfx-pricing-card__price span {
    color: #fff;
    font-family: var(--gfx-font-brand);
    font-size: 3.5rem;
    line-height: .85;
    font-weight: 900;
}
.gfx-pricing-card__price em {
    color: var(--gfx-zinc-500);
    font-size: .875rem;
    font-style: normal;
}
.gfx-pricing-card--featured .gfx-pricing-card__price em { color: #fecaca; }
.gfx-pricing-card p {
    margin: .25rem 0 1.75rem;
    color: var(--gfx-zinc-400);
    font-size: .875rem;
    line-height: 1.55;
}
.gfx-pricing-card--featured p { color: #fee2e2; }
.gfx-pricing-card ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: .625rem;
}
.gfx-pricing-card li {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    color: var(--gfx-zinc-400);
    font-size: .875rem;
}
.gfx-pricing-card--featured li { color: #fff; }
.gfx-pricing-card svg {
    width: 1rem;
    height: 1rem;
    margin-top: .125rem;
    fill: var(--gfx-red-light);
    flex: 0 0 1rem;
}
.gfx-pricing-card--featured svg { fill: #fff; }

/* Classes */
.gfx-classes-intro {
    margin: -3.5rem auto 3.5rem;
    text-align: center;
}
.gfx-classes-intro p {
    margin: 0 auto;
    max-width: 36rem;
    color: var(--gfx-zinc-400);
    font-size: .875rem;
    line-height: 1.7;
}
.gfx-scale-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}
.gfx-scale-card {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--gfx-surface);
}
.gfx-scale-card__head {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 1.5rem;
    background: var(--gfx-red);
}
.gfx-scale-card__pattern { opacity: .10; }
.gfx-scale-card__head p,
.gfx-scale-card__head h3,
.gfx-scale-card__head span { position: relative; }
.gfx-scale-card__head p {
    margin: 0 0 .25rem;
    color: #fecaca;
    font-size: .625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.gfx-scale-card__head h3 {
    margin: 0;
    color: #fff;
    font-family: var(--gfx-font-brand);
    font-size: 3rem;
    line-height: .86;
    font-weight: 900;
    text-transform: uppercase;
}
.gfx-scale-card__head span {
    display: block;
    margin-top: .25rem;
    color: #fecaca;
    font-size: .875rem;
}
.gfx-scale-card ul { margin: 0; padding: 0; list-style: none; }
.gfx-scale-card li {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--gfx-zinc-300);
    font-size: .875rem;
    font-weight: 600;
    transition: color .2s ease, background .2s ease;
}
.gfx-scale-card li:hover { color: #fff; background: rgba(255,255,255,.05); }
.gfx-scale-card li span {
    width: .375rem;
    height: .375rem;
    border-radius: 9999px;
    background: var(--gfx-red);
    flex: 0 0 auto;
}
.gfx-scale-card li:hover span { background: var(--gfx-red-light); }
.gfx-rules-note {
    margin: 2.5rem 0 0;
    text-align: center;
    color: var(--gfx-zinc-600);
    font-size: .75rem;
}

/* Footer */
.gfx-footer {
    border-top: 1px solid rgba(255,255,255,.06);
    background: #050505;
    padding: 3rem 0;
}
.gfx-footer__inner {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.gfx-footer__brand .gfx-brand-art__icon { width: 2rem; height: 1.8rem; }
.gfx-footer__brand .gfx-brand-art__text { height: 1.5rem; }
.gfx-footer__nav .gfx-nav__list { justify-content: center; flex-wrap: wrap; }
.gfx-footer__nav .gfx-nav__link,
.gfx-footer__nav .menu-item > a {
    padding: .25rem .75rem;
    border: 0;
    color: var(--gfx-zinc-500);
}
.gfx-footer__nav .gfx-nav__link:hover,
.gfx-footer__nav .menu-item > a:hover { color: #fff; }
.gfx-footer__copy { margin: 0; color: var(--gfx-zinc-600); font-size: .75rem; }

@media (max-width: 767px) {
    .gfx-nav--desktop { display: none; }
    .gfx-menu-toggle { display: inline-flex; position: relative; }
    .gfx-header__bar { height: 5rem; }
    .gfx-header.is-scrolled .gfx-header__bar { height: 4rem; }
    .gfx-brand-art__text { height: 1.35rem; }
    .gfx-brand-art__icon { width: 2rem; height: 1.8rem; }
    .gfx-hero__wordmark .gfx-brand-art__text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .gfx-hero__location { display: none; }
    .gfx-hero__tagline { font-size: 1.125rem; }
    .gfx-next-pill { margin-bottom: 2rem; font-size: 1rem; }
    .gfx-hero__actions { flex-direction: column; }
    .gfx-section { padding: 5rem 0; }
    .gfx-section-header { margin-bottom: 3.5rem; }
    .gfx-next-card { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
    .gfx-calendar-widget__weekdays span { font-size: 0; }
    .gfx-calendar-widget__weekdays span::first-letter { font-size: .75rem; }
    .gfx-pricing-grid,
    .gfx-scale-grid { grid-template-columns: 1fr; }
    .gfx-classes-intro { margin-top: -2.5rem; }
}

@media (min-width: 640px) {
    .gfx-container,
    .gfx-header__container,
    .gfx-footer__inner { padding-left: 1.5rem; padding-right: 1.5rem; }
    .gfx-hero__content { padding-left: 3rem; padding-right: 3rem; }
    .gfx-hero__wordmark .gfx-brand-art__text { height: 5rem; }
}

@media (min-width: 1024px) {
    .gfx-container,
    .gfx-header__container,
    .gfx-footer__inner { padding-left: 2rem; padding-right: 2rem; }
    .gfx-hero__wordmark .gfx-brand-art__text { height: 6rem; }
}

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

/* Block-driven homepage support */
.wp-block-group.gfx-section,
.wp-block-gfxracing-schedule,
.wp-block-gfxracing-pricing,
.wp-block-gfxracing-race-classes,
.wp-block-gfxracing-hero {
    margin-block-start: 0;
    margin-block-end: 0;
}

.gfx-block-editor-preview .gfx-hero {
    min-height: 620px;
}

.gfx-block-editor-preview .gfx-section {
    margin: 0;
}

.gfx-section-header:not(:has(span))::after {
    content: "";
    display: block;
    width: 5rem;
    height: 0.25rem;
    background: var(--gfx-red);
    margin: 1rem auto 0;
}

.gfx-section-header--left:not(:has(span))::after {
    margin-left: 0;
}
