/* =========================================================
   1. ROOT VARIABLES
========================================================= */
:root {
    --rtb-black: #111111;
    --rtb-black-soft: #1b1b1b;
    --rtb-blue: #2d9cdb;
    --rtb-blue-soft: rgba( 45, 156, 219, 0.10 );
    --rtb-border: #e8e8e5;
    --rtb-flash: #00b894;
    --rtb-flash-soft: rgba( 0, 184, 148, 0.12 );
    --rtb-gymnastics: #9b6dff;
    --rtb-gymnastics-soft: rgba( 155, 109, 255, 0.12 );
    --rtb-offwhite: #f7f7f5;
    --rtb-oly: #f4b400;
    --rtb-oly-soft: rgba( 244, 180, 0, 0.14 );
    --rtb-red: #d61f26;
    --rtb-red-soft: rgba( 214, 31, 38, 0.08 );
    --rtb-strength: #ff7a59;
    --rtb-strength-soft: rgba( 255, 122, 89, 0.12 );
    --rtb-text-muted: #6b7280;
    --rtb-white: #ffffff;
}


/* =========================================================
   2. BASE / GLOBAL
========================================================= */
html {
    scroll-behavior: smooth;
}

body {
    background: var( --rtb-white );
    color: var( --rtb-black );
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.mobile-menu-open {
    overflow: hidden;
}

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

a:hover {
    color: inherit;
}

h2 {
    color: var( --rtb-black );
    font-size: clamp( 2rem, 4vw, 3rem );
    font-weight: 700;
    letter-spacing: -0.04em;
}


/* =========================================================
   3. BUTTONS
========================================================= */
.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.8rem 1.4rem;
    transition: all 0.2s ease;
}

.btn-dark {
    background: var( --rtb-red );
    border-color: var( --rtb-red );
    color: var( --rtb-white );
}

.btn-dark:focus,
.btn-dark:hover {
    background: #bb171e;
    border-color: #bb171e;
    color: var( --rtb-white );
    transform: translateY( -1px );
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var( --rtb-black );
    color: var( --rtb-black );
}

.btn-outline-dark:focus,
.btn-outline-dark:hover {
    background: var( --rtb-black );
    border-color: var( --rtb-black );
    color: var( --rtb-white );
    transform: translateY( -1px );
}

.btn-outline-light {
    background: transparent;
    border-color: rgba( 255, 255, 255, 0.35 );
    color: #ffffff;
}

.btn-outline-light:focus,
.btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var( --rtb-black );
    transform: translateY( -1px );
}


/* =========================================================
   4. GENERIC SECTIONS / LAYOUT
========================================================= */
.section {
    padding: 6rem 0;
    position: relative;
}

.section + .section {
    border-top: 1px solid rgba( 17, 17, 17, 0.04 );
}

.section h2::after {
    background: linear-gradient( 90deg, var( --rtb-red ), var( --rtb-blue ) );
    border-radius: 999px;
    content: '';
    display: block;
    height: 4px;
    margin: 1rem auto 0;
    width: 80px;
}

.section h2.section-title-left::after {
    margin: 1rem 0 0;
}

.section-alt {
    background: var( --rtb-offwhite );
}

.section-accent {
    background:
        radial-gradient( circle at top left, rgba( 45, 156, 219, 0.12 ), transparent 40% ),
        radial-gradient( circle at bottom right, rgba( 214, 31, 38, 0.12 ), transparent 40% ),
        linear-gradient( 180deg, #ffffff 0%, #f7f7f5 100% );
}

.section-dark {
    background: linear-gradient( 135deg, #111111 0%, #1b1b1b 100% );
    color: #ffffff;
}

.section-dark h2,
.section-dark p {
    color: #ffffff;
}

.section.bg-light {
    background: var( --rtb-offwhite ) !important;
}

.section.bg-light p {
    color: var( --rtb-text-muted );
}

.section-404 {
    align-items: center;
    display: flex;
    min-height: 80vh;
}

.error-code {
    background: linear-gradient( 90deg, var( --rtb-red ), var( --rtb-blue ) );
    font-size: clamp( 4rem, 10vw, 8rem );
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   5. SITE HEADER / NAVIGATION
========================================================= */
.navbar {
    border-bottom: 0 !important;
    padding: 0;
}

.site-header {
    left: 0;
    padding: 1rem 0;
    position: fixed;
    right: 0;
    top: 0;
    transition:
        background 0.22s ease,
        backdrop-filter 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        padding 0.22s ease;
    z-index: 1070;
}

body.mobile-menu-open .site-header {
    z-index: 1090;
}

.site-header .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.site-header-overlay {
    backdrop-filter: none;
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
}

.site-header-overlay .site-header-nav .nav-link {
    color: rgba( 255, 255, 255, 0.92 );
}

.site-header-overlay .site-header-nav .nav-link:hover,
.site-header-overlay .site-header-nav .nav-link:focus,
.site-header-overlay .site-header-nav .nav-link.is-active {
    color: #ffffff;
}

.site-header-overlay .site-header-nav .nav-link.is-active::after {
    background: #ffffff;
}

.site-header-overlay .site-header-cta {
    background: var( --rtb-red );
    border-color: var( --rtb-red );
    color: var( --rtb-white );
	padding: 0.4rem 1rem;
}

.site-header-scrolled {
	backdrop-filter: blur( 14px );
	background: rgba( 255, 255, 255, 0.92 ) !important;
	border-bottom: 1px solid rgba( 17, 17, 17, 0.05 ) !important;

	box-shadow:
		0 12px 30px rgba( 17, 17, 17, 0.10 ),
		0 2px 8px rgba( 17, 17, 17, 0.04 );

	padding: 0.5rem 0;
}

.site-header-scrolled .site-header-nav .nav-link {
    color: var( --rtb-black );
}

.site-header-scrolled .site-header-nav .nav-link:hover,
.site-header-scrolled .site-header-nav .nav-link:focus,
.site-header-scrolled .site-header-nav .nav-link.is-active {
    color: var( --rtb-red );
}

.site-header-scrolled .site-header-nav .nav-link.is-active::after {
    background: var( --rtb-red );
}

.site-brand {
    display: inline-block;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

.site-brand-inner {
    display: block;
    height: 100px;
    position: relative;
    transition: height 0.22s ease;
    width: 190px;
}

.site-header-scrolled .site-brand-inner {
    height: 46px;
}

.site-brand-logo {
    height: 100%;
    left: 0;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY( -50% );
    transition: opacity 0.22s ease;
    width: 100%;
}

.logo-light {
    opacity: 1;
    position: relative;
}

.logo-dark {
    opacity: 0;
}

.site-header-scrolled .logo-light {
    opacity: 0;
}

.site-header-scrolled .logo-dark {
    opacity: 1;
}

.site-header .navbar-collapse {
    align-items: center;
    flex-basis: auto;
    flex-grow: 0;
}

.site-header-nav {
    align-items: center;
    gap: 0.6rem;
}

.site-header-nav .nav-item {
    margin: 0 0.4rem;
}

.site-header-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    position: relative;
    transition: color 0.2s ease;
}

.site-header-nav .nav-link::after {
    background: var( --rtb-red );
    border-radius: 999px;
    bottom: -0.1rem;
    content: '';
    height: 2px;
    left: 0.85rem;
    opacity: 0;
    position: absolute;
    right: 0.85rem;
    transform: scaleX( 0.6 );
    transform-origin: center;
    transition:
        background 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.site-header-nav .nav-link:hover::after,
.site-header-nav .nav-link:focus::after,
.site-header-nav .nav-link.is-active::after {
    opacity: 1;
    transform: scaleX( 1 );
}

.site-header-cta {
    margin-left: 0.9rem;
    min-width: 0;
    white-space: nowrap;
}


/* =========================================================
   6. MOBILE MENU (OVERLAY)
========================================================= */
.menu-toggle {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    flex: 0 0 auto;
    height: 48px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 48px;
    z-index: 1081;
}

.menu-toggle span {
    background: #ffffff;
    border-radius: 999px;
    display: block;
    height: 2px;
    left: 12px;
    position: absolute;
    transition:
        background 0.22s ease,
        opacity 0.22s ease,
        top 0.22s ease,
        transform 0.22s ease;
    width: 24px;
}

.menu-toggle span:nth-child( 1 ) {
    top: 16px;
}

.menu-toggle span:nth-child( 2 ) {
    top: 23px;
}

.menu-toggle span:nth-child( 3 ) {
    top: 30px;
}

.site-header-overlay .menu-toggle span {
    background: #ffffff;
}

.site-header-scrolled .menu-toggle span {
    background: var( --rtb-black );
}

.menu-toggle.is-open span {
    background: var( --rtb-black ) !important;
}

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

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

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

.mobile-menu-overlay {
    align-items: center;
    background: rgba( 255, 255, 255, 0.96 );
    backdrop-filter: blur( 14px );
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY( -10px );
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    z-index: 1080;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY( 0 );
}

.mobile-menu-overlay-inner {
    padding: 6rem 2rem 2rem;
    text-align: center;
    width: 100%;
}

.mobile-menu-nav {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.mobile-menu-link {
    color: var( --rtb-black );
    font-size: clamp( 1.8rem, 5vw, 2.6rem );
    font-weight: 700;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY( 16px );
    transition:
        color 0.2s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus {
    color: var( --rtb-red );
}

.mobile-menu-overlay.is-open .mobile-menu-link {
    opacity: 1;
    transform: translateY( 0 );
}

.mobile-menu-overlay.is-open .mobile-menu-link:nth-child( 1 ) {
    transition-delay: 0.05s;
}

.mobile-menu-overlay.is-open .mobile-menu-link:nth-child( 2 ) {
    transition-delay: 0.10s;
}

.mobile-menu-overlay.is-open .mobile-menu-link:nth-child( 3 ) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.is-open .mobile-menu-link:nth-child( 4 ) {
    transition-delay: 0.20s;
}

.mobile-menu-overlay.is-open .mobile-menu-link:nth-child( 5 ) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.is-open .mobile-menu-link:nth-child( 6 ) {
    transition-delay: 0.30s;
}

.mobile-menu-cta {
    margin-top: 1.25rem;
    min-width: 220px;
    opacity: 0;
    transform: translateY( 16px );
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
    transition-delay: 0.35s;
}

.mobile-menu-overlay.is-open .mobile-menu-cta {
    opacity: 1;
    transform: translateY( 0 );
}


/* =========================================================
   7. HERO
========================================================= */
.hero {
    align-items: center;
    background: linear-gradient( 180deg, rgba( 8, 10, 12, 0.88 ) 0%, rgba( 8, 10, 12, 0.75 ) 40%, rgba( 8, 10, 12, 0.85 ) 100% ), url( '/assets/img/hero.jpg' );
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    padding: 10rem 0 5rem;
    position: relative;
}

.hero::before {
    background: linear-gradient( 180deg, rgba( 0, 0, 0, 0.42 ) 0%, rgba( 0, 0, 0, 0.12 ) 22%, rgba( 0, 0, 0, 0 ) 40% );
    content: '';
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-eyebrow {
    color: rgba( 255, 255, 255, 0.95 );
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 14px rgba( 0, 0, 0, 0.45 );
    text-transform: uppercase;
}

.hero-title {
    color: var( --rtb-white );
    font-size: clamp( 2.8rem, 6vw, 5.8rem );
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin: 0 auto;
    max-width: 900px;
    text-shadow: 0 4px 24px rgba( 0, 0, 0, 0.45 );
}

.hero-sub {
    color: rgba( 255, 255, 255, 0.9 );
    font-size: clamp( 1rem, 2vw, 1.2rem );
    line-height: 1.6;
    margin: 1.5rem auto 0;
    max-width: 680px;
    text-shadow: 0 2px 16px rgba( 0, 0, 0, 0.4 );
}

.hero .btn-outline-dark {
    background: rgba( 255, 255, 255, 0.08 );
    border-color: rgba( 255, 255, 255, 0.55 );
    color: var( --rtb-white );
}

.hero .btn-outline-dark:hover,
.hero .btn-outline-dark:focus {
    background: var( --rtb-white );
    border-color: var( --rtb-white );
    color: var( --rtb-black );
}


/* =========================================================
   8. GENERIC CARDS / COMMON DISPLAY
========================================================= */
.card-clean {
    background: linear-gradient( 180deg, rgba( 255, 255, 255, 1 ) 0%, rgba( 249, 249, 247, 1 ) 100% );
    border: 1px solid var( --rtb-border );
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba( 17, 17, 17, 0.04 );
    height: 100%;
    padding: 2rem;
    transition: all 0.22s ease;
}

.card-clean:hover {
    border-color: rgba( 17, 17, 17, 0.08 );
    box-shadow: 0 18px 45px rgba( 17, 17, 17, 0.08 );
    transform: translateY( -4px );
}

.card-clean h4 {
    color: var( --rtb-black );
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.card-clean p {
    color: var( --rtb-text-muted );
    line-height: 1.6;
    margin: 0;
}

.card-clean-blue {
    background: linear-gradient( 180deg, rgba( 45, 156, 219, 0.10 ) 0%, rgba( 255, 255, 255, 1 ) 100% );
}

.card-clean-dark {
    background: linear-gradient( 180deg, rgba( 17, 17, 17, 0.05 ) 0%, rgba( 255, 255, 255, 1 ) 100% );
}

.card-clean-red {
    background: linear-gradient( 180deg, rgba( 214, 31, 38, 0.08 ) 0%, rgba( 255, 255, 255, 1 ) 100% );
}

.card-link {
    color: var( --rtb-red );
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1.25rem;
}

.card-link:hover {
    color: var( --rtb-black );
}

.card-pill {
    background: rgba( 17, 17, 17, 0.06 );
    border-radius: 999px;
    color: var( --rtb-black );
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    text-transform: uppercase;
}

.review {
    background: #ffffff;
    border: 1px solid var( --rtb-border );
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba( 17, 17, 17, 0.04 );
    height: 100%;
    padding: 2rem;
    transition: all 0.2s ease;
}

.review:hover {
    box-shadow: 0 18px 45px rgba( 17, 17, 17, 0.08 );
    transform: translateY( -4px );
}

.review p {
    color: var( --rtb-black );
    line-height: 1.7;
    margin: 0;
}

.stat {
    color: var( --rtb-black );
    font-size: clamp( 2rem, 3vw, 2.8rem );
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.stat-card {
    background: #ffffff;
    border: 1px solid var( --rtb-border );
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba( 17, 17, 17, 0.04 );
    height: 100%;
    padding: 2rem;
    transition: all 0.2s ease;
}

.stat-card:hover {
    box-shadow: 0 18px 45px rgba( 17, 17, 17, 0.08 );
    transform: translateY( -4px );
}

.stat-label {
    color: var( --rtb-text-muted );
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}


/* =========================================================
   STATS (ICONS + COLOR)
========================================================= */
.stat-card {
    overflow: hidden;
    position: relative;
}

.stat-card::after {
    background: linear-gradient( 90deg, var( --rtb-red ), var( --rtb-blue ) );
    content: '';
    height: 3px;
    inset: auto 0 0 0;
    opacity: 0.6;
    position: absolute;
}

.stat-card .stat {
    margin-bottom: 0.25rem;
}

.stat-card-blue {
    background: linear-gradient( 180deg, var( --rtb-blue-soft ) 0%, #ffffff 100% );
}

.stat-card-blue .stat-icon {
    background: var( --rtb-blue );
    color: #ffffff;
}

.stat-card-red {
    background: linear-gradient( 180deg, var( --rtb-red-soft ) 0%, #ffffff 100% );
}

.stat-card-red .stat-icon {
    background: var( --rtb-red );
    color: #ffffff;
}

.stat-card-strength {
    background: linear-gradient( 180deg, var( --rtb-strength-soft ) 0%, #ffffff 100% );
}

.stat-card-strength .stat-icon {
    background: var( --rtb-strength );
    color: #ffffff;
}

.stat-row {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.stat-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
}

.stat-icon {
    align-items: center;
    border-radius: 14px;
    display: inline-flex;
    flex: 0 0 48px;
    font-size: 1.2rem;
    height: 48px;
    justify-content: center;
    margin-bottom: 0;
    width: 48px;
}

.stat-number {
    font-size: clamp( 2rem, 3vw, 2.8rem );
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: clamp( 1.6rem, 2.2vw, 2.1rem );
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.stat-label {
    max-width: 18rem;
}


/* =========================================================
   9. SCHEDULE
========================================================= */
.schedule-empty {
    color: var( --rtb-text-muted );
    font-size: 0.95rem;
    opacity: 0.5;
    padding: 0.75rem 0.25rem;
    text-align: center;
}

.schedule-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat( 7, minmax( 0, 1fr ) );
}

.day {
    background: linear-gradient( 180deg, rgba( 255, 255, 255, 0.96 ) 0%, rgba( 248, 248, 246, 0.96 ) 100% );
    border: 1px solid var( --rtb-border );
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba( 17, 17, 17, 0.04 );
    padding: 1rem;
    transition: all 0.2s ease;
}

.day:hover {
    box-shadow: 0 16px 36px rgba( 17, 17, 17, 0.07 );
    transform: translateY( -2px );
}

.day-title {
    color: var( --rtb-black );
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}

button.class {
    text-align: left;
    width: 100%;
}

.class {
    border: 1px solid transparent;
    border-left: 4px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.94rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    padding: 0.75rem 0.85rem 0.8rem 0.95rem;
    transition: all 0.18s ease;
}

.class:last-child {
    margin-bottom: 0;
}

.class span {
    display: block;
    font-size: 0.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    opacity: 0.72;
}

.class:hover {
    box-shadow: 0 12px 24px rgba( 17, 17, 17, 0.07 );
    transform: translateY( -2px );
}

.bootcamp {
    background: var( --rtb-blue-soft );
    border-color: rgba( 45, 156, 219, 0.16 );
    border-left-color: var( --rtb-blue );
    color: var( --rtb-black );
}

.flash {
    background: var( --rtb-flash-soft );
    border-color: rgba( 0, 184, 148, 0.18 );
    border-left-color: var( --rtb-flash );
    color: var( --rtb-black );
}

.gymnastics {
    background: var( --rtb-gymnastics-soft );
    border-color: rgba( 155, 109, 255, 0.18 );
    border-left-color: var( --rtb-gymnastics );
    color: var( --rtb-black );
}

.oly {
    background: var( --rtb-oly-soft );
    border-color: rgba( 244, 180, 0, 0.18 );
    border-left-color: var( --rtb-oly );
    color: var( --rtb-black );
}

.strength {
    background: var( --rtb-strength-soft );
    border-color: rgba( 214, 31, 38, 0.14 );
    border-left-color: var( --rtb-strength );
    color: var( --rtb-black );
}

.schedule-modal-header {
    border-bottom: 0;
}

.schedule-modal-header .btn-close {
    filter: none;
    opacity: 0.8;
}

.schedule-modal-header.bootcamp {
    background: var( --rtb-blue );
    color: var( --rtb-white );
}

.schedule-modal-header.bootcamp .btn-close,
.schedule-modal-header.flash .btn-close,
.schedule-modal-header.gymnastics .btn-close,
.schedule-modal-header.strength .btn-close {
    filter: brightness( 0 ) invert( 1 );
    opacity: 1;
}

.schedule-modal-header.flash {
    background: var( --rtb-flash );
    color: var( --rtb-white );
}

.schedule-modal-header.gymnastics {
    background: var( --rtb-gymnastics );
    color: var( --rtb-white );
}

.schedule-modal-header.oly {
    background: var( --rtb-oly );
    color: var( --rtb-black );
}

.schedule-modal-header.strength {
    background: var( --rtb-strength );
    color: var( --rtb-white );
}


/* ========================================
   ACTIVE STATES (MATCH CLASS CARDS)
======================================== */

.schedule-filter-pill.is-active {
	transform: translateY( -1px );
}

/* BOOTCAMP */
.schedule-filter-pill.bootcamp.is-active {
	background: var( --rtb-blue-soft );
	border-color: rgba( 45, 156, 219, 0.16 );
	border-left-color: var( --rtb-blue );
	color: var( --rtb-black );
}

/* FLASH */
.schedule-filter-pill.flash.is-active {
	background: var( --rtb-flash-soft );
	border-color: rgba( 0, 184, 148, 0.18 );
	border-left-color: var( --rtb-flash );
	color: var( --rtb-black );
}

/* STRENGTH */
.schedule-filter-pill.strength.is-active {
	background: var( --rtb-strength-soft );
	border-color: rgba( 255, 122, 89, 0.18 );
	border-left-color: var( --rtb-strength );
	color: var( --rtb-black );
}

/* OLY */
.schedule-filter-pill.oly.is-active {
	background: var( --rtb-oly-soft );
	border-color: rgba( 244, 180, 0, 0.18 );
	border-left-color: var( --rtb-oly );
	color: var( --rtb-black );
}

/* GYMNASTICS */
.schedule-filter-pill.gymnastics.is-active {
	background: var( --rtb-gymnastics-soft );
	border-color: rgba( 155, 109, 255, 0.18 );
	border-left-color: var( --rtb-gymnastics );
	color: var( --rtb-black );
}

/* ========================================
   FOCUS
======================================== */
.schedule-filter-pill:focus {
	outline: none;
}

.schedule-filter-pill:focus-visible {
	box-shadow: 0 0 0 3px rgba( 17, 17, 17, 0.15 );
	outline: none;
}

/* ========================================
   MOBILE
======================================== */
.no-break {
	white-space: nowrap;
}

/* ========================
   Schedule Expectations
======================== */

.schedule-expectations {
	margin-top: 60px;
}

.schedule-expectations-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba( 0, 0, 0, 0.08 );
	padding: 40px;
}

.schedule-expectations-eyebrow {
	color: #6c757d;
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.schedule-expectations-title {
	font-size: 32px;
	font-weight: 700;
}

.schedule-expectations-intro {
	color: #555555;
	font-size: 16px;
	margin: 0 auto;
	max-width: 600px;
}

.schedule-expectation-item {
	align-items: flex-start;
	background: #f8f9fa;
	border-radius: 12px;
	display: flex;
	gap: 16px;
	height: 100%;
	padding: 20px;
	transition: all 0.2s ease;
}

.schedule-expectation-item:hover {
	background: #eef2f5;
	transform: translateY( -3px );
}

.schedule-expectation-icon {
	align-items: center;
	background: #111111;
	border-radius: 10px;
	color: #ffffff;
	display: flex;
	flex-shrink: 0;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.schedule-expectation-icon i {
	font-size: 18px;
}

.schedule-expectation-content h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.schedule-expectation-content p {
	color: #555555;
	font-size: 14px;
	line-height: 1.5;
}

/* ========================
   Mobile Adjustments
======================== */

@media ( max-width: 767px ) {
	.schedule-expectations-card {
		padding: 24px;
	}

	.schedule-expectations-title {
		font-size: 24px;
	}

	.schedule-expectation-item {
		padding: 16px;
	}
}


.schedule-expectation-icon-red {
	background: rgba( 215, 25, 32, 0.12 );
	color: #d71920;
}

.schedule-expectation-icon-orange {
	background: rgba( 255, 138, 0, 0.14 );
	color: #ff8a00;
}

.schedule-expectation-icon-blue {
	background: rgba( 33, 150, 243, 0.14 );
	color: #2196f3;
}

.schedule-expectation-icon-green {
	background: rgba( 46, 125, 50, 0.14 );
	color: #2e7d32;
}



/* =========================================================
   10. WOD FEATURE BOX / TODAY
========================================================= */
.wod-today-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wod-today-item {
    background: rgba( 255, 255, 255, 0.03 );
    border: 1px solid rgba( 255, 255, 255, 0.08 );
    border-radius: 24px;
    padding: 1.5rem;
}

.wod-today-header {
    margin-bottom: 1.25rem;
}

.wod-today-type {
    color: rgba( 255, 255, 255, 0.68 );
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.wod-today-title {
    color: #ffffff;
    font-size: clamp( 1.5rem, 3vw, 2.25rem );
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0;
}

.wod-today-other-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat( 2, minmax( 0, 1fr ) );
    margin-bottom: 1rem;
}

.wod-today-section {
    background: rgba( 255, 255, 255, 0.04 );
    border: 1px solid rgba( 255, 255, 255, 0.08 );
    border-radius: 18px;
    padding: 1rem 1.1rem;
    text-align: left;
}

.wod-today-section-header {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.wod-today-section-header h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.wod-today-content {
    color: rgba( 255, 255, 255, 0.82 );
    font-size: 0.98rem;
    line-height: 1.65;
}

.wod-today-content strong {
    color: #ffffff;
    font-weight: 800;
}

.wod-today-optional {
    background: rgba( 255, 255, 255, 0.10 );
    border-radius: 999px;
    color: rgba( 255, 255, 255, 0.72 );
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.6rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.wod-today-section-wod-group {
    text-align: left;
}

.wod-today-format {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.wod-today-variant-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
}

.wod-today-variant {
    background: rgba( 255, 255, 255, 0.04 );
    border: 1px solid rgba( 255, 255, 255, 0.08 );
    border-radius: 18px;
    overflow: hidden;
}

.wod-today-variant-heading {
    border-bottom: 1px solid rgba( 255, 255, 255, 0.08 );
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 0.8rem 1rem 0.7rem;
}

.wod-today-variant-content {
    color: rgba( 255, 255, 255, 0.82 );
    font-size: 0.98rem;
    line-height: 1.6;
    padding: 0.9rem 1rem 1rem;
}

.wod-today-stimulus {
    border-top: 1px solid rgba( 255, 255, 255, 0.08 );
    margin-top: 1rem;
    padding-top: 1rem;
}

.wod-today-stimulus-heading {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.wod-today-stimulus-content {
    color: rgba( 255, 255, 255, 0.82 );
    font-size: 0.98rem;
    line-height: 1.6;
}

.wod-today-empty {
    color: rgba( 255, 255, 255, 0.7 );
    font-size: 1rem;
    text-align: center;
}

@media( max-width: 991.98px ) {
    .wod-today-other-grid {
        grid-template-columns: 1fr;
    }

    .wod-today-variant-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   11. WODS ARCHIVE
========================================================= */
.section-wods-content {
    padding: 2.5rem 0 3rem;
}

.wods-toolbar {
    margin-bottom: 1rem;
}

.wods-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wod-card {
    background: #ffffff;
    border: 1px solid rgba( 15, 23, 42, 0.08 );
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba( 15, 23, 42, 0.04 );
    overflow: hidden;
    padding: 0;
}

.wod-card-top {
    margin-bottom: 0;
    padding: 1.5rem 1.5rem 1rem;
}

.wod-card-meta {
    margin-bottom: 0.35rem;
}

.wod-card-type {
    background: var( --rtb-red-soft );
    border: 1px solid rgba( 214, 31, 38, 0.14 );
    border-radius: 999px;
    color: var( --rtb-red );
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.65rem;
    text-transform: uppercase;
}

.wod-card-title {
    color: #0f172a;
    font-size: clamp( 1.4rem, 2vw, 2rem );
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0;
}

.wod-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.wod-section {
    background: #fafafa;
    border: 1px solid rgba( 15, 23, 42, 0.08 );
    border-radius: 22px;
    overflow: hidden;
    padding: 0;
}

.wod-section-heading-wrap {
    align-items: center;
    background: rgba( 15, 23, 42, 0.04 );
    border-bottom: 1px solid rgba( 15, 23, 42, 0.08 );
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin: 0;
    padding: 0.95rem 1.4rem;
    width: 100%;
}

.wod-section-heading {
    color: #0f172a;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0;
    text-transform: uppercase;
}

.wod-section-content {
    color: #334155;
    font-size: 1rem;
    line-height: 1.65;
    padding: 1rem 1.4rem 1.25rem;
}

.wod-section-content strong {
    color: #0f172a;
    font-weight: 800;
}

.wod-section-optional {
    background: rgba( 15, 23, 42, 0.06 );
    border-radius: 999px;
    color: #64748b;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.6rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.wod-section-wod-group {
    padding: 1rem 1.4rem 1.25rem;
}

.wod-format-callout {
    background: #f8fbff;
    border: 1px solid #cfe4f7;
    border-radius: 16px;
    margin: 0 0 1rem;
    padding: 0.95rem 1rem;
}

.wod-format-label {
    color: #0f172a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.wod-format-text {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.wod-variant-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
    padding: 0;
}

.wod-variant {
    background: #f8f8fc;
    border: 1px solid #d9ddf6;
    border-radius: 16px;
    overflow: hidden;
}

.wod-variant-heading-wrap {
    border-bottom: 1px solid rgba( 15, 23, 42, 0.08 );
}

.wod-variant-heading {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
    padding: 0.85rem 1rem 0.8rem;
}

.wod-variant-content {
    color: #334155;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0.95rem 1rem 1rem;
}

.wod-variant-elite {
    background: rgba( 93, 107, 255, 0.06 );
    border-color: rgba( 93, 107, 255, 0.15 );
}

.wod-variant-competitive {
    background: rgba( 93, 107, 255, 0.04 );
    border-color: rgba( 93, 107, 255, 0.12 );
}

.wod-variant-performance {
    background: rgba( 93, 107, 255, 0.025 );
    border-color: rgba( 93, 107, 255, 0.10 );
}

.wod-variant-lifestyle {
    background: rgba( 0, 184, 148, 0.05 );
    border-color: rgba( 0, 184, 148, 0.14 );
}

.wod-stimulus {
    border-top: 1px solid rgba( 15, 23, 42, 0.10 );
    margin: 1rem 0 0;
    padding: 1rem 0 0;
}

.wod-stimulus-heading-wrap {
    margin: 0 0 0.45rem;
}

.wod-stimulus-heading {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.wod-stimulus-content {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.6;
}

.wods-empty-state {
    background: #ffffff;
    border: 1px solid rgba( 15, 23, 42, 0.08 );
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
}

.wods-empty-state h3 {
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.wods-empty-state p {
    color: #64748b;
    margin: 0;
}

.wods-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.wods-page-button {
    background: #ffffff;
    border: 1px solid rgba( 15, 23, 42, 0.1 );
    border-radius: 12px;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.65rem 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wods-page-button:hover,
.wods-page-button.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}

.wods-filter-form {
    align-items: end;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wods-filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 220px;
}

.wods-filter-label {
    color: #475569;
    font-size: 0.78rem;
    font-weight: 700;
    margin: 0;
}

.wods-filter-select {
    background: #ffffff;
    border: 1px solid rgba( 15, 23, 42, 0.12 );
    border-radius: 12px;
    color: #0f172a;
    font-size: 0.95rem;
    min-height: 46px;
    padding: 0.65rem 0.9rem;
}

.wods-filter-clear {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 0 0;
    text-decoration: none;
}

.wods-filter-clear:hover {
    color: #0f172a;
}

.wod-section-general_warmup .wod-section-heading-wrap,
.wod-section-general_warm_up .wod-section-heading-wrap,
.wod-section-specific_warmup .wod-section-heading-wrap,
.wod-section-specific_warm_up .wod-section-heading-wrap,
.wod-section-neural_warmup .wod-section-heading-wrap,
.wod-section-neural_warm_up .wod-section-heading-wrap,
.wod-section-warmup .wod-section-heading-wrap,
.wod-section-warm_up .wod-section-heading-wrap {
    background: rgba( 255, 193, 7, 0.12 );
    border-bottom-color: rgba( 255, 193, 7, 0.3 );
}

.wod-section-general_warmup .wod-section-heading,
.wod-section-general_warm_up .wod-section-heading,
.wod-section-specific_warmup .wod-section-heading,
.wod-section-specific_warm_up .wod-section-heading,
.wod-section-neural_warmup .wod-section-heading,
.wod-section-neural_warm_up .wod-section-heading,
.wod-section-warmup .wod-section-heading,
.wod-section-warm_up .wod-section-heading {
    color: #9a6700;
}

.wod-section-strength .wod-section-heading-wrap,
.wod-section-skill .wod-section-heading-wrap,
.wod-section-skills .wod-section-heading-wrap {
    background: rgba( 111, 66, 193, 0.10 );
    border-bottom-color: rgba( 111, 66, 193, 0.25 );
}

.wod-section-strength .wod-section-heading,
.wod-section-skill .wod-section-heading,
.wod-section-skills .wod-section-heading {
    color: #5a32a3;
}

.wod-section-wod .wod-section-heading-wrap {
    background: rgba( 220, 53, 69, 0.10 );
    border-bottom-color: rgba( 220, 53, 69, 0.25 );
}

.wod-section-wod .wod-section-heading {
    color: #b42335;
}

.wod-section-accessory .wod-section-heading-wrap {
    background: rgba( 32, 201, 151, 0.10 );
    border-bottom-color: rgba( 32, 201, 151, 0.25 );
}

.wod-section-accessory .wod-section-heading {
    color: #0f7a5c;
}

.wod-section-cooldown .wod-section-heading-wrap,
.wod-section-cool_down .wod-section-heading-wrap,
.wod-section-optional_cooldown .wod-section-heading-wrap,
.wod-section-dismissal .wod-section-heading-wrap {
    background: rgba( 13, 110, 253, 0.10 );
    border-bottom-color: rgba( 13, 110, 253, 0.25 );
}

.wod-section-cooldown .wod-section-heading,
.wod-section-cool_down .wod-section-heading,
.wod-section-optional_cooldown .wod-section-heading,
.wod-section-dismissal .wod-section-heading {
    color: #0a58ca;
}

@media( max-width: 991.98px ) {
    .wod-variant-grid {
        grid-template-columns: 1fr;
    }

    .wods-filter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .wods-filter-group {
        min-width: 0;
        width: 100%;
    }

    .wods-filter-clear {
        padding-top: 0;
    }
}

@media( max-width: 767.98px ) {
    .wod-card-top {
        padding: 1rem 1rem 0.9rem;
    }

    .wod-sections {
        gap: 0.85rem;
        padding: 0 1rem 1rem;
    }

    .wod-section-heading-wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 0.85rem 1rem;
    }

    .wod-section-content {
        padding: 0.9rem 1rem 1rem;
    }

    .wod-section-wod-group {
        padding: 0.9rem 1rem 1rem;
    }

    .wod-format-callout {
        margin-bottom: 0.9rem;
    }

    .wod-stimulus {
        margin-top: 0.9rem;
        padding-top: 0.9rem;
    }
}

.wod-card {
	position: relative;
}

.wod-card-link {
	align-items: center;
	background: rgba( 0, 0, 0, 0.05 );
	border-radius: 50%;
	color: #666;
	display: flex;
	font-size: 0.7rem;
	height: 28px;
	justify-content: center;
	opacity: 0.4;
	position: absolute;
	right: 12px;
	top: 12px;
	transition: all 0.2s ease;
	width: 28px;
	z-index: 2;
}

.wod-card:hover .wod-card-link {
	opacity: 0.9;
}

.wod-card-link:hover {
	background: #000;
	color: #fff;
}

.wod-single-toolbar {
	margin-bottom: 20px;
}

.wod-back-link {
	align-items: center;
	color: #666;
	display: inline-flex;
	font-size: 0.85rem;
	font-weight: 600;
	gap: 6px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wod-back-link i {
	font-size: 0.75rem;
}

.wod-back-link:hover {
	color: #000;
}


/* =========================================================
   13. TEAM / CAROUSEL
========================================================= */
.carousel-team {
    position: relative;
}

.carousel-team-control {
    background: #ffffff;
    border: 1px solid var( --rtb-border );
    border-radius: 999px;
    color: var( --rtb-black );
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 100px;
    padding: 0.8rem 1.2rem;
    transition: all 0.2s ease;
}

.carousel-team-control:hover {
    background: var( --rtb-black );
    border-color: var( --rtb-black );
    color: #ffffff;
}

.carousel-team-controls {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.carousel-team-indicators {
    align-items: center;
    bottom: auto;
    display: flex;
    flex: 1;
    gap: 0.6rem;
    justify-content: center;
    left: auto;
    margin: 0;
    position: static;
    right: auto;
}

.carousel-team-indicators button,
.carousel-team-indicators [data-bs-target] {
    background: rgba( 17, 17, 17, 0.14 );
    border: 0;
    border-radius: 999px;
    height: 10px;
    margin: 0;
    opacity: 1;
    padding: 0;
    text-indent: -9999px;
    transition: all 0.2s ease;
    width: 10px;
}

.carousel-team-indicators button.active,
.carousel-team-indicators .active {
    background: var( --rtb-red );
    width: 34px;
}

.team-card {
    background: linear-gradient( 135deg, rgba( 255, 255, 255, 1 ) 0%, rgba( 247, 247, 245, 1 ) 100% );
    border: 1px solid var( --rtb-border );
    border-radius: 28px;
    overflow: hidden;
    padding: 2.5rem;
}

.team-copy {
    color: var( --rtb-text-muted );
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.team-fun {
    background: rgba( 45, 156, 219, 0.08 );
    border: 1px solid rgba( 45, 156, 219, 0.14 );
    border-radius: 16px;
    color: var( --rtb-black );
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 0.8rem 1rem;
}

.team-meta {
    color: var( --rtb-black );
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.team-name {
    color: var( --rtb-black );
    font-size: clamp( 1.9rem, 3vw, 2.6rem );
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
}

.team-photo {
    border-radius: 24px;
    display: block;
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.team-photo-placeholder {
    align-items: center;
    background:
        radial-gradient( circle at top left, rgba( 45, 156, 219, 0.14 ), transparent 45% ),
        radial-gradient( circle at bottom right, rgba( 214, 31, 38, 0.14 ), transparent 45% ),
        linear-gradient( 135deg, rgba( 17, 17, 17, 1 ) 0%, rgba( 34, 34, 34, 1 ) 100% );
    border-radius: 24px;
    color: #ffffff;
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    justify-content: center;
    min-height: 320px;
    padding: 2rem;
    text-align: center;
}

.team-photo-wrap {
    width: 100%;
}

.team-role {
    color: var( --rtb-red );
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}


/* =========================================================
   13. CONTACT
========================================================= */
.contact-form .form-label {
    color: var( --rtb-black );
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.contact-form-card,
.contact-info-card {
    background: linear-gradient( 135deg, rgba( 255, 255, 255, 1 ) 0%, rgba( 247, 247, 245, 1 ) 100% );
    border: 1px solid var( --rtb-border );
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba( 17, 17, 17, 0.05 );
    height: 100%;
    padding: 2rem;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
}

.contact-info-copy {
    color: var( --rtb-text-muted );
    line-height: 1.75;
    margin: 0 0 1.5rem;
    max-width: 34rem;
}

.contact-info-eyebrow {
    color: var( --rtb-red );
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.contact-info-item {
    border-top: 1px solid rgba( 17, 17, 17, 0.07 );
    padding: 1rem 0;
}

.contact-info-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.contact-info-item:last-child {
    padding-bottom: 0;
}

.contact-info-label {
    color: var( --rtb-text-muted );
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}

.contact-info-location {
    font-weight: 700;
}

.contact-info-title {
    color: var( --rtb-black );
    font-size: clamp( 2rem, 3vw, 2.6rem );
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 1rem;
}

.contact-info-value {
    color: var( --rtb-black );
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s ease;
}

a.contact-info-value:focus,
a.contact-info-value:hover {
    color: var( --rtb-red );
}

.contact-input {
    background: rgba( 255, 255, 255, 0.92 );
    border: 1px solid var( --rtb-border );
    border-radius: 16px;
    box-shadow: none;
    color: var( --rtb-black );
    font-size: 1rem;
    min-height: 54px;
    padding: 0.9rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-input:focus {
    background: var( --rtb-white );
    border-color: rgba( 45, 156, 219, 0.45 );
    box-shadow: 0 0 0 0.2rem rgba( 45, 156, 219, 0.12 );
    color: var( --rtb-black );
    outline: 0;
}

.contact-map-embed {
    border: 0;
    display: block;
    height: 260px;
    width: 100%;
}

.contact-map-embed-wrap {
    border: 1px solid var( --rtb-border );
    border-radius: 22px;
    margin-top: 1.5rem;
    overflow: hidden;
    width: 100%;
}


.contact-submit {
    min-width: 170px;
}

.contact-textarea {
    min-height: 180px;
    padding-top: 1rem;
    resize: vertical;
}

.contact-form-actions {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}

.contact-recaptcha-wrap {
    flex: 0 1 auto;
    min-width: 0;
}

.contact-submit {
    min-width: 170px;
}

@media( max-width: 767.98px ) {
    .contact-form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-recaptcha-wrap {
        width: 100%;
    }

    .contact-recaptcha-wrap .g-recaptcha {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
    }

    .contact-submit {
        min-width: 0;
        width: 100%;
    }
}


/* =========================================================
   14. FOOTER
========================================================= */
footer {
    background: var( --rtb-black );
    border-top: 0 !important;
    color: rgba( 255, 255, 255, 0.68 );
    padding: 2rem 0 !important;
}

footer p {
    margin: 0;
}


.footer-contact {
    align-items: center;
    display: inline-flex;
    font-size: 0.9rem;
    gap: 0.5rem;
}

.footer-contact a {
    color: rgba( 255, 255, 255, 0.8 );
    font-weight: 600;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-main {
    background: #050505;
    color: #ffffff;
    padding: 2rem 0;
}


/* =========================================================
   14A. FOOTER UTILITIES / ADMIN LOGIN
========================================================= */
.footer-admin-trigger {
	background: transparent;
	border: 0;
	padding: 0;
}

.footer-admin-trigger:focus {
	box-shadow: none;
	outline: none;
}

.footer-logo {
	display: block;
	height: 48px;
	width: auto;
}

.footer-contact {
	gap: 0;
}

.footer-contact-item {
	color: rgba( 255, 255, 255, 0.9 );
	text-decoration: none;
	white-space: nowrap;
}

.footer-contact a.footer-contact-item:hover {
	color: #ffffff;
}

.footer-contact-sep {
	color: rgba( 255, 255, 255, 0.45 );
	margin: 0 12px;
}

.footer-social,
.footer-theme-button {
	align-items: center;
	background: rgba( 255, 255, 255, 0.06 );
	border: 1px solid rgba( 255, 255, 255, 0.12 );
	border-radius: 50%;
	color: #ffffff;
	display: inline-flex;
	height: 40px;
	justify-content: center;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	width: 40px;
}

.footer-theme-button {
	padding: 0;
}

.footer-theme-button i {
	color: #ffffff;
}

.footer-social:hover,
.footer-theme-button:hover {
	transform: translateY( -2px );
}

.footer-social.facebook:hover {
    background: #1877f2;
    transform: translateY( -2px );
}

.footer-social.instagram:hover {
    background: radial-gradient(
        circle at 30% 30%,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
    transform: translateY( -2px );
}

.footer-social.tiktok:hover {
    background: #000000;
    box-shadow:
        2px 0 0 #25f4ee,
        -2px 0 0 #fe2c55;
    transform: translateY( -2px );
}

.footer-theme-button:hover {
	background: rgba( 255, 255, 255, 0.12 );
	border-color: rgba( 255, 255, 255, 0.2 );
	color: #ffffff;
}

.footer-admin-trigger:focus,
.footer-social:focus,
.footer-theme-button:focus {
	box-shadow: none;
	outline: none;
}

@media( max-width: 991.98px ) {
	.footer-contact {
		flex-direction: column;
		gap: 4px;
	}

	.footer-contact-sep {
		display: none;
	}

	.footer-contact-item {
		white-space: normal;
	}
}


/* =========================================================
   15. ADMIN
========================================================= */
.admin-header {
	background: #111;
	border-bottom: 1px solid #222;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.admin-header-inner {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	padding: 12px 0;
}

.admin-logo {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.admin-nav {
	display: flex;
	gap: 18px;
}

.admin-nav-link {
	color: #ccc;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease;
}

.admin-nav-link:hover {
	color: #fff;
}

.admin-nav-link.subtle {
	color: #888;
}

.admin-nav-link.subtle:hover {
	color: #fff;
}

.modal-admin-login .modal-dialog {
	max-width: 420px;
}

.modal-admin-login .modal-content {
	background: #ffffff;
	border: 0;
	border-radius: 24px;
	box-shadow: 0 25px 70px rgba( 0, 0, 0, 0.18 );
	overflow: hidden;
	position: relative;
}

.modal-admin-login .modal-body {
	padding: 2rem;
}

.modal-admin-login-top {
	margin-bottom: 1.75rem;
	padding-right: 2rem;
}

.modal-admin-login-badge {
	align-items: center;
	background: linear-gradient( 135deg, #111111 0%, #2d2d2d 100% );
	border-radius: 18px;
	color: #ffffff;
	display: inline-flex;
	font-size: 1.1rem;
	height: 56px;
	justify-content: center;
	margin-bottom: 1rem;
	width: 56px;
}

.modal-admin-login-title {
	color: #111111;
	font-size: 1.65rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 0.4rem;
}


.modal-admin-login .form-label {
	color: #111111;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.modal-admin-login .form-control {
	background: #f8f9fb;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	box-shadow: none;
	color: #111111;
	padding: 0.9rem 1rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-admin-login .form-control:focus {
	background: #ffffff;
	border-color: #111111;
	box-shadow: 0 0 0 0.2rem rgba( 17, 17, 17, 0.08 );
}

.modal-admin-login .input-group .form-control {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
}

.modal-admin-login .input-group .btn {
	background: #f8f9fb;
	border: 1px solid #e5e7eb;
	border-left: 0;
	border-bottom-right-radius: 14px;
	border-top-right-radius: 14px;
	color: #6b7280;
	padding-left: 1rem;
	padding-right: 1rem;
}

.modal-admin-login .input-group .btn:hover,
.modal-admin-login .input-group .btn:focus {
	background: #ffffff;
	color: #111111;
}

.modal-admin-login .form-check-label {
	color: #374151;
	font-size: 0.92rem;
}

.modal-admin-login .form-check-input {
	margin-top: 0.2rem;
}

.modal-admin-login .form-check-input:checked {
	background-color: #111111;
	border-color: #111111;
}

.modal-admin-login-options {
	gap: 1rem;
}

.modal-admin-login-secure {
	color: #6b7280;
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
}

.modal-admin-login-secure i {
	margin-right: 0.3rem;
}

.modal-admin-login .btn-dark {
	border-radius: 14px;
	font-size: 1rem;
	font-weight: 700;
	padding: 0.9rem 1rem;
}

.modal-admin-login .btn-dark:hover,
.modal-admin-login .btn-dark:focus {
	transform: translateY( -1px );
}

.modal-admin-login-close {
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	z-index: 5;
}

.theme-dark .modal-admin-login .modal-content {
	background: #171717;
	box-shadow: 0 25px 70px rgba( 0, 0, 0, 0.45 );
}

.theme-dark .modal-admin-login-title,
.theme-dark .modal-admin-login .form-label,
.theme-dark .modal-admin-login .form-control {
	color: #ffffff;
}

.theme-dark .modal-admin-login .form-check-label,
.theme-dark .modal-admin-login-secure {
	color: rgba( 255, 255, 255, 0.7 );
}

.theme-dark .modal-admin-login .form-control,
.theme-dark .modal-admin-login .input-group .btn {
	background: #232323;
	border-color: #343434;
}

.theme-dark .modal-admin-login .form-control:focus,
.theme-dark .modal-admin-login .input-group .btn:hover,
.theme-dark .modal-admin-login .input-group .btn:focus {
	background: #1d1d1d;
	border-color: #666666;
	color: #ffffff;
}

@media( max-width: 575px ) {
	.modal-admin-login .modal-body {
		padding: 1.5rem;
	}

	.modal-admin-login-options {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* =========================================================
   16. RESPONSIVE
========================================================= */
@media( max-width: 991.98px ) {
    body {
        padding-top: 84px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-menu-overlay {
        display: flex;
    }

    .site-brand-inner {
        height: 64px;
        width: 170px;
    }

    .site-header {
        padding: 0.85rem 0;
    }

    .site-header .navbar-collapse {
        display: none !important;
    }

    .site-header-scrolled {
        padding: 0.2rem 0;
    }

    .site-header-scrolled .site-brand-inner {
        height: 42px;
    }

    .team-card {
        padding: 2rem;
    }

    .team-photo {
        height: 260px;
    }

    .team-photo-placeholder {
        min-height: 260px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 1.75rem;
    }

    .contact-map-embed {
        height: 240px;
    }

    .carousel-team-controls {
        flex-wrap: wrap;
    }

    .carousel-team-indicators {
        order: 3;
        width: 100%;
    }

    .hero {
        min-height: auto;
    }

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

    .section {
        padding: 4.5rem 0;
    }
}

@media( min-width: 992px ) and ( max-width: 1199.98px ) {
    .site-header .container {
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    .site-brand-inner {
        height: 78px;
        width: 168px;
    }

    .site-header-nav .nav-link {
        font-size: 0.95rem;
        padding: 0.45rem 0.6rem;
    }

    .site-header-cta {
        margin-left: 0.65rem;
        padding: 0.75rem 1rem;
    }

    .hero {
        padding: 9.5rem 0 4.5rem;
    }

    .hero-eyebrow {
        margin-top: 0.25rem;
    }
}

@media( min-width: 992px ) {
    .menu-toggle,
    .mobile-menu-overlay {
        display: none !important;
    }

    .site-header .navbar-collapse {
        display: flex !important;
    }
}

@media( max-width: 767.98px ) {
     .site-header .container {
        padding-left:0;
        padding-right: 0.4rem;
    }

    .site-brand {
        margin-left: -0.2rem;
        margin-top: 0.35rem;
    }

    .hero-actions .btn-dark,
    .hero-actions .btn-outline-dark {
        margin: 0 auto;
        width: 70%;
    }

    .hero-actions .d-flex {
        gap: 0.9rem !important;
    }

    .hero .btn-outline-dark {
        border-width: 1px;
    }

    .hero-actions .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    body {
        padding-top: 76px;
    }

    body.home {
        padding-top: 0;
    }

    .site-brand-inner {
        height: 58px;
        width: 150px;
    }

    .site-header {
        padding: 0.8rem 0;
    }

    .site-header-scrolled .site-brand-inner {
        height: 40px;
    }

    .card-clean,
    .day,
    .review,
    .team-card {
        border-radius: 20px;
    }

    .team-card {
        border-radius: 24px;
        padding: 1.25rem;
    }

    .team-copy {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .team-fun {
        display: block;
        width: 100%;
    }

    .team-photo {
        border-radius: 20px;
        height: 220px;
    }

    .team-photo-placeholder {
        border-radius: 20px;
        font-size: 1.15rem;
        min-height: 220px;
    }

    .carousel-team-control {
        min-width: 0;
        padding: 0.75rem 1rem;
    }

    .contact-form-card,
    .contact-info-card {
        border-radius: 24px;
        padding: 1.4rem;
    }

    .contact-form-footer {
        justify-content: stretch;
    }

    .contact-info-copy {
        margin-bottom: 1.25rem;
    }

    .contact-info-item {
        padding: 0.85rem 0;
    }

    .contact-info-title {
        font-size: 2rem;
    }

    .contact-info-value {
        font-size: 1rem;
    }

    .contact-map-embed {
        height: 220px;
    }

    .contact-map-embed-wrap {
        border-radius: 18px;
        margin-top: 1.25rem;
    }

    .contact-placeholder,
    .space-showcase-main {
        min-height: 260px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-textarea {
        min-height: 150px;
    }

    .footer-center,
    .footer-left,
    .footer-right {
        text-align: center;
    }

    .footer-right {
        justify-content: center;
    }

    .hero {
        padding: 8.5rem 0 3.5rem;
    }

    .hero:before {
        top: 82px;
        width: 92px;
    }

    .hero-eyebrow {
        font-size: 0.72rem;
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-title {
        max-width: 100%;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 0;
    }

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


    .wod-card {
        border-radius: 22px;
    }

    .wod-section {
        border-radius: 18px;
    }

    .wods-filter-form {
        align-items: stretch;
        flex-direction: column;
    }

    .wods-filter-group {
        max-width: none;
    }
}


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

img,
iframe,
video,
svg,
canvas {
    height: auto;
    max-width: 100%;
}

.container,
.container-fluid,
.row,
[class*='col-'] {
    min-width: 0;
}

.hero,
.section,
.space-showcase,
.space-showcase-main,
.space-showcase-thumbs,
.wod-card,
.team-card,
.contact-form-card,
.contact-info-card {
    overflow-x: clip;
}

.hero-eyebrow,
.hero-sub,
.hero-title,
.mobile-menu-link,
.contact-info-value,
.wod-card-title {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media( max-width: 767.98px ) {
    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
        max-width: 100%;
        white-space: normal;
    }

    .hero-title,
    .hero-sub {
        max-width: 100%;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }


    .section .col-lg-5 {
        text-align: center;
    }

    .section-title-left,
    .section-intro {
        text-align: center !important;
    }

    .section h2.section-title-left::after {
        margin-left: auto;
        margin-right: auto;
    }

    .section .btn {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

}

.mobile-menu-link {
    position: relative;
    padding-bottom: 0.75rem;
}

.mobile-menu-link::after {
    content: '';
    display: block;
    height: 1px;
    background: rgba( 0, 0, 0, 0.08 );
    margin-top: 0.75rem;
}

.mobile-menu-link {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}


.schedule-grid .class {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	height: auto;
	justify-content: flex-start;
	min-height: 0;
	padding: 1rem;
	text-align: left;
	white-space: normal;
}

.schedule-grid .class-time {
	display: block;
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
}

.schedule-grid .class-name {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.1;
	margin: 0;
	overflow-wrap: anywhere;
	word-break: break-word;
}

@media( max-width: 1399.98px ) {
	.schedule-grid .class-name {
		font-size: 0.9rem;
	}
}

@media( min-width: 992px ) and ( max-width: 1199.98px ) {
	.schedule-grid {
		grid-template-columns: repeat( 4, minmax( 0, 1fr ) );
	}
}
.space-showcase {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.space-showcase-main {
	background: rgba( 255, 255, 255, 0.7 );
	border: 1px solid rgba( 17, 17, 17, 0.08 );
	border-radius: 28px;
	overflow: hidden;
	position: relative;
}

.space-main-image {
	display: block;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	width: 100%;

	opacity: 1;
	transform: scale( 1 );
	transition: opacity 0.25s ease, transform 0.35s ease;
}

.space-main-image.is-changing {
	opacity: 0;
	transform: scale( 1.02 );
}

.space-showcase-thumbs {
	display: grid;
	gap: 0.85rem;
	grid-template-columns: repeat( 3, minmax( 0, 1fr ) );
}

.space-thumb {
	background: transparent;
	border: 2px solid transparent;
	border-radius: 18px;
	cursor: pointer;
	overflow: hidden;
	padding: 0;
	position: relative;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.space-thumb::after {
	background: linear-gradient( 180deg, rgba( 0, 0, 0, 0 ) 0%, rgba( 0, 0, 0, 0.18 ) 100% );
	content: '';
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transition: opacity 0.2s ease;
}

.space-thumb:hover {
	box-shadow: 0 10px 24px rgba( 17, 17, 17, 0.08 );
	transform: translateY( -2px );
}

.space-thumb:hover::after {
	opacity: 1;
}

.space-thumb.is-active {
	border-color: var( --rtb-red );
	box-shadow: 0 10px 24px rgba( 17, 17, 17, 0.10 );
}

.space-thumb-image {
	display: block;
	height: 92px;
	object-fit: cover;
	width: 100%;
}

@media( max-width: 991.98px ) {
	.space-main-image {
		height: 380px;
	}
}

@media( max-width: 767.98px ) {
	.space-showcase {
		gap: 0.75rem;
	}

	.space-showcase-main {
		border-radius: 22px;
	}

	.space-main-image {
		min-height: 260px;
	}

	.space-showcase-thumbs {
		gap: 0.65rem;
	}

	.space-thumb {
		border-radius: 14px;
	}

	.space-thumb-image {
		height: 72px;
	}
}

.schedule-filters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin: 1.75rem auto 2rem;
}

.schedule-filter-pill {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
		padding: 0.7rem 1rem;
	width: auto;
}

@media( max-width: 767.98px ) {
	.schedule-filters {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem;
		justify-content: center;
		margin: 1.5rem auto 1.5rem;
		max-width: 320px;
		overflow: visible;
		padding-bottom: 0;
	}

	.schedule-filter-pill {
		font-size: 0.9rem;

	}
}

.schedule-filter-pill {
	background: #e5e7eb;
	border: 1px solid transparent;
	border-left: 4px solid transparent;
	border-radius: 999px;
	color: var( --rtb-text-muted );
	cursor: pointer;
	line-height: 1;
}

.schedule-filter-pill:not( .is-active ):hover {
	background: #d1d5db;
	color: var( --rtb-black );
	transform: translateY( -1px );
}

#reviews-google {
	margin-top: 2rem;
}


.review {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	box-shadow: 0 0.75rem 2rem rgba( 17, 17, 17, 0.06 );
	padding: 1.5rem;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.review:hover {
	box-shadow: 0 1rem 2.25rem rgba( 17, 17, 17, 0.1 );
	transform: translateY( -4px );
}

.review img.rounded-circle {
	border: 2px solid #f1f3f5;
	height: 48px;
	object-fit: cover;
	width: 48px;
}

.review strong {
	color: #111111;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.2rem;
}

.review .text-muted.small {
	color: #f4b400 !important;
	font-size: 0.85rem !important;
	letter-spacing: 0.08em;
	line-height: 1;
}

.review p {
	color: #495057;
	font-size: 1rem;
	line-height: 1.65;
	margin-bottom: 0;
}

.review .mt-auto {
	margin-top: auto;
}

.review .pt-3 {
	padding-top: 1rem !important;
}

.review-google-button {
	background: #ffffff;
	border: 1px solid #d0d7de;
	border-radius: 999px;
	color: #111111;
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	padding: 0.5rem 0.85rem;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.review-google-button:hover,
.review-google-button:focus {
	background: #111111;
	border-color: #111111;
	color: #ffffff;
	text-decoration: none;
}

#reviews-google .row.g-4 {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 1.5rem;
}

@media( max-width: 767.98px ) {
	.reviews-google-summary {
		margin-bottom: 2rem;
	}

	.reviews-google-summary h3 {
		font-size: 2.25rem;
	}

	.review {
		padding: 1.25rem;
	}
}

.reviews-layout > .col-lg-4,
.reviews-layout > .col-xl-3 {
	display: flex;
}

.reviews-rating-panel {
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 1.25rem;
	box-shadow: 0 0.75rem 2rem rgba( 17, 17, 17, 0.06 );
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: 2rem;
	width: 100%;
}

.reviews-rating-label {
	color: #111111;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.reviews-rating-score {
	color: #111111;
	font-size: 3.25rem;
	font-weight: 800;
	letter-spacing: -0.05em;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.reviews-rating-stars {
	color: #f4b400;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.reviews-rating-count {
	color: #6c757d;
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.reviews-google-wordmark {
	color: #111111;
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	margin-top: auto;
}

@media( max-width: 991.98px ) {
	.reviews-rating-panel {
		align-items: center;
		padding: 1.5rem;
		text-align: center;
	}
}

.review-google-badge {
	align-items: center;
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 999px;
	color: #4285f4;
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.reviews-google-wordmark {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	margin-top: auto;
}

.reviews-google-wordmark span:nth-child(1) { color: #4285f4; }
.reviews-google-wordmark span:nth-child(2) { color: #ea4335; }
.reviews-google-wordmark span:nth-child(3) { color: #fbbc05; }
.reviews-google-wordmark span:nth-child(4) { color: #4285f4; }
.reviews-google-wordmark span:nth-child(5) { color: #34a853; }
.reviews-google-wordmark span:nth-child(6) { color: #ea4335; }

section[id] {
	scroll-margin-top: 40px;
}

@media (max-width: 991.98px) {
	section[id] {
		scroll-margin-top: 60px;
	}
}

.page-hero {
	overflow: hidden;
	position: relative;
}

.page-hero-compact {
	background-color: #111111;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 260px;
	padding: 120px 0 70px;
}

.page-hero-overlay {
	background: linear-gradient( 180deg, rgba( 0, 0, 0, 0.55 ) 0%, rgba( 0, 0, 0, 0.65 ) 100% );
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}

.page-hero-content {
	margin: 0 auto;
	max-width: 760px;
	position: relative;
	z-index: 2;
}

.page-hero-eyebrow {
	color: rgba( 255, 255, 255, 0.78 );
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	margin-bottom: 0.85rem;
	text-transform: uppercase;
}

.page-hero-title {
	color: #ffffff;
	font-size: clamp( 2.25rem, 4vw, 3.6rem );
	font-weight: 800;
	line-height: 1.05;
	margin: 0 0 1rem;
}

.section-login-modern {
	align-items: center;
	background: #eef2f7;
	display: flex;
	min-height: 100vh;
	padding: 3rem 0;
}

.login-modern-card {
	background: #ffffff;
	border: 1px solid rgba( 15, 23, 42, 0.08 );
	border-radius: 1.5rem;
	box-shadow: 0 24px 60px rgba( 15, 23, 42, 0.10 );
	overflow: hidden;
}

.login-modern-header {
	padding: 3rem 3rem 2rem;
	text-align: center;
}

.login-modern-badge {
	background: rgba( 220, 38, 38, 0.08 );
	border: 1px solid rgba( 220, 38, 38, 0.12 );
	border-radius: 999px;
	color: #dc2626;
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 1.25rem;
	padding: 0.55rem 1rem;
	text-transform: uppercase;
}

.login-modern-title {
	color: #1f2937;
	font-size: clamp( 2.25rem, 4vw, 3rem );
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 0.75rem;
}

.login-modern-body {
	border-top: 1px solid rgba( 15, 23, 42, 0.08 );
	padding: 3rem;
}

.login-modern-label {
	color: #6b7280;
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.85rem;
}

.login-modern-label span {
	color: #dc2626;
}

.login-modern-input-wrap {
	align-items: stretch;
	background: #e9eef7;
	border: 1px solid transparent;
	border-radius: 1rem;
	display: flex;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.login-modern-input-wrap:focus-within {
	background: #edf3ff;
	border-color: rgba( 59, 130, 246, 0.25 );
	box-shadow: 0 0 0 0.25rem rgba( 59, 130, 246, 0.08 );
}

.login-modern-input-icon {
	align-items: center;
	color: #6b7280;
	display: flex;
	font-size: 1.35rem;
	justify-content: center;
	min-width: 4.25rem;
}

.login-modern-input {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: #111827;
	font-size: 1.2rem;
	min-height: 5rem;
	padding: 1rem 1.25rem 1rem 0;
}

.login-modern-input:focus {
	background: transparent;
	border: 0;
	box-shadow: none;
	outline: none;
}

.login-modern-input-password {
	padding-right: 1rem;
}

.login-modern-password-toggle {
	align-items: center;
	background: rgba( 255, 255, 255, 0.35 );
	border: 0;
	color: #6b7280;
	display: flex;
	font-size: 1.4rem;
	justify-content: center;
	min-width: 5.5rem;
	transition: background 0.2s ease, color 0.2s ease;
}

.login-modern-password-toggle:hover {
	background: rgba( 255, 255, 255, 0.6 );
	color: #111827;
}

.login-modern-password-toggle:focus {
	box-shadow: none;
	outline: none;
}

.login-modern-check {
	align-items: center;
	display: flex;
	min-height: 3rem;
}

.login-modern-check .form-check-input {
	border-radius: 0.45rem;
	height: 1.45rem;
	margin-right: 0.85rem;
	margin-top: 0;
	width: 1.45rem;
}

.login-modern-check .form-check-label {
	color: #6b7280;
	font-size: 1.15rem;
	font-weight: 500;
}

.login-modern-submit {
	background: #111827;
	border: 0;
	border-radius: 0.9rem;
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 600;
	min-width: 12rem;
	padding: 1rem 2rem;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.login-modern-submit:hover {
	background: #dc2626;
	box-shadow: 0 14px 28px rgba( 220, 38, 38, 0.18 );
	color: #ffffff;
	transform: translateY( -1px );
}

.login-modern-submit:focus {
	box-shadow: 0 0 0 0.25rem rgba( 220, 38, 38, 0.18 );
	color: #ffffff;
	outline: none;
}

.section-login-modern .alert {
	border-radius: 0.9rem;
	font-size: 0.95rem;
	margin-bottom: 0;
}

@media( max-width: 767.98px ) {
	.section-login-modern {
		padding: 1.5rem 0;
	}

	.login-modern-header {
		padding: 2.25rem 1.5rem 1.5rem;
	}

	.login-modern-body {
		padding: 1.5rem;
	}

	.login-modern-input {
		font-size: 1.05rem;
		min-height: 4.5rem;
	}

	.login-modern-input-icon {
		font-size: 1.15rem;
		min-width: 3.5rem;
	}

	.login-modern-password-toggle {
		font-size: 1.15rem;
		min-width: 4.25rem;
	}

	.login-modern-check .form-check-label {
		font-size: 1rem;
	}

	.login-modern-submit {
		min-width: 100%;
		width: 100%;
	}

	.login-modern-body .d-flex.justify-content-between,
	.login-modern-body .d-flex.align-items-center.justify-content-between {
		align-items: stretch !important;
		flex-direction: column;
	}
}



.pricing-block {
    max-width: 1100px;
}

.pricing-title {
    color: var( --rtb-black );
    font-size: clamp( 1.8rem, 3vw, 2.4rem );
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
}

.pricing-copy {
    color: var( --rtb-text-muted );
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 auto;
    max-width: 640px;
}

.pricing-card {
    background: linear-gradient( 180deg, rgba( 255, 255, 255, 0.98 ) 0%, rgba( 247, 247, 245, 1 ) 100% );
    border: 1px solid var( --rtb-border );
    border-radius: 28px;
    box-shadow: 0 12px 32px rgba( 17, 17, 17, 0.05 );
    overflow: hidden;
    padding: 2.2rem 2rem 2rem;
    position: relative;
    transition: all 0.22s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 48px rgba( 17, 17, 17, 0.10 );
    transform: translateY( -4px );
}

.pricing-card-open {
    border-color: rgba( 17, 17, 17, 0.08 );
}

.pricing-card-unlimited {
    background: linear-gradient( 180deg, rgba( 214, 31, 38, 0.06 ) 0%, rgba( 255, 255, 255, 1 ) 100% );
    border-color: rgba( 214, 31, 38, 0.14 );
}

.pricing-card-top {
    margin-bottom: 1.5rem;
}

.pricing-badge {
    background: rgba( 17, 17, 17, 0.06 );
    border-radius: 999px;
    color: var( --rtb-black );
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    text-transform: uppercase;
}

.pricing-card-unlimited .pricing-badge {
    background: rgba( 214, 31, 38, 0.10 );
    color: var( --rtb-red );
}

.pricing-card-title {
    color: var( --rtb-black );
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
}

.pricing-card-subtitle {
    color: var( --rtb-text-muted );
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 420px;
}

.pricing-price-wrap {
    border-bottom: 1px solid rgba( 17, 17, 17, 0.08 );
    border-top: 1px solid rgba( 17, 17, 17, 0.08 );
    margin-bottom: 1.5rem;
    padding: 1.4rem 0;
}

.pricing-price-line {
    align-items: flex-end;
    display: inline-flex;
    gap: 0.15rem;
    justify-content: center;
}

.pricing-currency {
    color: var( --rtb-black );
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY( -0.35rem );
}

.pricing-price {
    color: var( --rtb-black );
    font-size: clamp( 3.4rem, 6vw, 4.4rem );
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.9;
}

.pricing-frequency {
    color: var( --rtb-text-muted );
    font-size: 1rem;
    font-weight: 600;
    margin-left: 0.2rem;
    padding-bottom: 0.45rem;
}

.pricing-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    text-align: left;
}

.pricing-feature-item {
    align-items: center;
    color: var( --rtb-black );
    display: flex;
    font-size: 1rem;
    font-weight: 600;
    gap: 0.75rem;
    line-height: 1.5;
}

.pricing-feature-check {
    align-items: center;
    background: rgba( 45, 156, 219, 0.12 );
    border-radius: 50%;
    color: var( --rtb-blue );
    display: inline-flex;
    flex: 0 0 30px;
    font-size: 0.8rem;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.pricing-card-unlimited .pricing-feature-check {
    background: rgba( 214, 31, 38, 0.12 );
    color: var( --rtb-red );
}

@media( max-width: 767.98px ) {
    .pricing-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .pricing-card-title {
        font-size: 1.45rem;
    }

    .pricing-card-subtitle {
        font-size: 0.95rem;
    }

    .pricing-price-wrap {
        margin-bottom: 1.25rem;
        padding: 1.2rem 0;
    }

    .pricing-feature-item {
        font-size: 0.95rem;
    }
}

.wods-pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
	margin-top: 2rem;
}

.wods-page-button {
	align-items: center;
	background: #fff;
	border: 1px solid #d9dee7;
	border-radius: 14px;
	color: #0f172a;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-height: 46px;
	min-width: 46px;
	padding: 0.75rem 0.95rem;
	text-decoration: none;
	transition: all 0.2s ease;
}

.wods-page-button:hover {
	border-color: #0f172a;
	text-decoration: none;
	transform: translateY( -1px );
}

.wods-page-button.active {
	background: #0f172a;
	border-color: #0f172a;
	color: #fff;
}

.wods-page-nav {
	min-width: 70px;
	padding-left: 1rem;
	padding-right: 1rem;
}

.wods-page-ellipsis {
	color: #64748b;
	font-weight: 700;
	padding: 0 0.2rem;
}