:root {
    --forest: #0d2818;
    --deep: #0a1f12;
    --moss: #1a3d20;
    --fern: #2d6a35;
    --sage: #4a8c52;
    --lime: #a8e063;
    --lime-bright: #c6f135;
    --mint: #d4f5c0;
    --cream: #f5f0e8;
    --offwhite: #ede8dc;
    --warm: #c8b896;
    --muted: #7a8c72;
    --earth: #8b6f47;
    --white: #ffffff;
    --panel: #142b1a;
    --card: #1e3824;
    --border: rgba(168, 224, 99, 0.15);
    --font-serif: 'Playfair Display', serif;
    --font-dm: 'DM Serif Display', serif;
    --font-body: 'Epilogue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--forest);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--deep);
}

::-webkit-scrollbar-thumb {
    background: var(--lime);
}

/* Grain texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    background: var(--deep);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--lime);
    letter-spacing: 6px;
    margin-bottom: 2rem;
}

.loader-bar-wrap {
    width: 400px;
    height: 2px;
    background: rgba(168, 224, 99, 0.15);
}

.loader-bar {
    height: 100%;
    background: var(--lime);
    width: 0%;
    animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
    to {
        width: 100%;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 31, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--lime) !important;
    letter-spacing: 3px;
    text-decoration: none;
}

.navbar-brand span {
    color: var(--cream);
    font-style: italic;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--lime) !important;
}

.nav-pill {
    background: var(--lime);
    color: var(--forest) !important;
    padding: 0.6rem 1.6rem !important;
    font-weight: 800;
    border-radius: 100px;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.nav-pill:hover {
    background: var(--lime-bright) !important;
    transform: scale(1.04);
}

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    padding: 0.6rem 1.6rem;
    background: var(--lime);
    border-radius: 100px;
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://hustlefitness.com/wp-content/uploads/2026/07/About_Lincoln_Park.webp') center/cover;
    filter: brightness(0.5) saturate(0.7) hue-rotate(80deg);
    /* filter: brightness(0.7) saturate(0.9) hue-rotate(80deg); */
    /* filter: brightness(0.85) saturate(1) hue-rotate(80deg); */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(45, 106, 53, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(13, 40, 24, 0.8) 0%, transparent 50%),
        linear-gradient(to right, rgba(10, 31, 18, 0.95) 35%, rgba(10, 31, 18, 0.4) 100%);
}

/* animated orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb1 {
    width: 500px;
    height: 500px;
    background: var(--lime);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb2 {
    width: 400px;
    height: 400px;
    background: var(--fern);
    bottom: -100px;
    right: 200px;
    animation-delay: 3s;
}

.orb3 {
    width: 300px;
    height: 300px;
    background: var(--lime-bright);
    top: 30%;
    right: -50px;
    animation-delay: 5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    /* padding-top: 6rem; */
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(168, 224, 99, 0.1);
    border: 1px solid rgba(168, 224, 99, 0.25);
    padding: 0.45rem 1.2rem;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 2rem;
}

.hero-chip .dot {
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    animation: blink 2s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 5.8rem);
    font-weight: 900;
    line-height: 1.20;
    margin-bottom: 2rem;
}

.hero-title .line1 {
    display: block;
    font-style: italic;
    color: var(--cream);
}

.hero-title .line2 {
    display: block;
    color: var(--lime);
}

.hero-title .line3 {
    display: block;
    font-size: clamp(2.8rem, 4vw, 5.8rem);
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(245, 240, 232, 0.3);
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.55);
    /* max-width: 460px; */
    line-height: 1.85;
    margin-bottom: 3rem;
}

.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--lime);
    color: var(--forest);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

.btn-lime:hover {
    background: var(--lime-bright);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(168, 224, 99, 0.3);
}

.btn-ghost-lime {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: transparent;
    color: var(--lime);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: 100px;
    border: 1.5px solid rgba(168, 224, 99, 0.4);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-ghost-lime:hover {
    border-color: var(--lime);
    background: rgba(168, 224, 99, 0.08);
    color: var(--lime);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-img-main {
    width: 100%;
    height: 680px;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    /* filter: saturate(0.7) brightness(0.85); */
    border: 3px solid rgba(168, 224, 99, 0.15);
}

.hero-pill-stat {
    position: absolute;
    background: var(--lime);
    color: var(--forest);
    border-radius: 100px;
    padding: 1rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-pill-stat.s1 {
    bottom: 10%;
    left: -3rem;
    animation: floatStat 5s ease-in-out infinite;
}

.hero-pill-stat.s2 {
    top: 10%;
    right: -2rem;
    animation: floatStat 5s ease-in-out infinite 2s;
}

@keyframes floatStat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-big {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.stat-sm {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Scroll hint */
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(168, 224, 99, 0.5);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-wheel {
    width: 22px;
    height: 36px;
    border: 1.5px solid rgba(168, 224, 99, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--lime);
    border-radius: 50%;
    animation: wheelScroll 2s ease infinite;
}

@keyframes wheelScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ===== TICKER ===== */
.ticker {
    background: var(--lime);
    overflow: hidden;
    padding: 0.85rem 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: ticker 25s linear infinite;
}

.ticker-item {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--forest);
    padding: 0 2.5rem;
}

.ticker-sep {
    color: var(--fern);
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 8rem 0;
}

.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.2rem;
}

.tag-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--lime);
}

.sec-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 4vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.sec-title .ital {
    font-style: italic;
    color: var(--lime);
}

.sec-title .stroke {
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 240, 232, 0.25);
}

/* ===== ABOUT ===== */
#about {
    background: var(--deep);
}

.about-img-stack {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    filter: saturate(0.65);
    transition: filter 0.5s;
}

.about-main-img:hover {
    filter: saturate(1);
}

.about-mini-img {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--deep);
    filter: saturate(0.6);
}

.leaf-badge {
    position: absolute;
    top: 2rem;
    left: -1.5rem;
    width: 100px;
    height: 100px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--forest);
}

.leaf-badge .num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.leaf-badge .lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-feat {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--border);
}

.about-feat:last-child {
    border-bottom: none;
}

.af-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(168, 224, 99, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 1.1rem;
}

.af-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.af-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== PROGRAMS ===== */
#programs {
    background: var(--forest);
}

.prog-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, border-color 0.3s, box-shadow 0.4s;
}

.prog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 224, 99, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(168, 224, 99, 0.1);
}

.prog-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.8);
    transition: filter 0.5s, transform 0.6s;
}

.prog-card:hover .prog-img {
    filter: saturate(0.85) brightness(0.7);
    transform: scale(1.05);
}

.prog-body {
    padding: 1.8rem;
}

.prog-icon {
    width: 42px;
    height: 42px;
    background: rgba(168, 224, 99, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.prog-cat {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.4rem;
}

.prog-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.prog-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.prog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--muted);
}

.prog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.prog-meta i {
    color: var(--lime);
    font-size: 0.65rem;
}

.prog-new {
    display: inline-block;
    background: rgba(198, 241, 53, 0.15);
    color: var(--lime-bright);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    border: 1px solid rgba(198, 241, 53, 0.3);
    margin-bottom: 0.8rem;
}

/* ===== NUMBERS ===== */
#numbers {
    background: var(--lime);
    padding: 5rem 0;
}

.num-item {
    text-align: center;
    padding: 2rem;
}

.num-val {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.num-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(13, 40, 24, 0.6);
}

.num-divider {
    width: 1px;
    background: rgba(13, 40, 24, 0.15);
    align-self: stretch;
}

/* ===== TRAINERS ===== */
#trainers {
    background: var(--deep);
}

.trainer-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
}

.trainer-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: saturate(0.5) brightness(0.75);
    transition: all 0.6s;
}

.trainer-card:hover img {
    filter: saturate(0.9) brightness(0.55);
    transform: scale(1.04);
}

.trainer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 18, 0.98) 30%, transparent 70%);
}

.trainer-foot {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    padding: 1.8rem;
    transform: translateY(55px);
    transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.trainer-card:hover .trainer-foot {
    transform: translateY(0);
}

.t-spec {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.3rem;
}

.t-name {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.t-bio {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}

.trainer-card:hover .t-bio {
    opacity: 1;
}

.t-socials {
    display: flex;
    gap: 0.6rem;
}

.t-social {
    width: 34px;
    height: 34px;
    background: rgba(168, 224, 99, 0.15);
    border: 1px solid rgba(168, 224, 99, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s;
}

.t-social:hover {
    background: var(--lime);
    color: var(--forest);
}

/* ===== GALLERY ===== */
#gallery {
    background: var(--forest);
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 280px 280px;
    gap: 14px;
}

.gb {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}

.gb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.4) brightness(0.7);
    transition: all 0.5s;
}

.gb:hover img {
    filter: saturate(1) brightness(0.85);
    transform: scale(1.05);
}

.gb::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    transition: border-color 0.4s;
}

.gb:hover::after {
    border-color: rgba(168, 224, 99, 0.5);
}

.gb1 {
    grid-column: 1/3;
    grid-row: 1/2;
}

.gb2 {
    grid-column: 3/5;
    grid-row: 1/2;
}

.gb3 {
    grid-column: 5/7;
    grid-row: 1/3;
}

.gb4 {
    grid-column: 1/2;
    grid-row: 2/3;
}

.gb5 {
    grid-column: 2/4;
    grid-row: 2/3;
}

.gb6 {
    grid-column: 4/5;
    grid-row: 2/3;
}

/* ===== PRICING ===== */
#pricing {
    background: var(--deep);
}

.plan-toggle {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.4rem;
    display: inline-flex;
    gap: 0.2rem;
    margin-bottom: 4rem;
}

.plan-toggle button {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-toggle button.active {
    background: var(--lime);
    color: var(--forest);
}

.plan-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s;
    position: relative;
}

.plan-card:hover,
.plan-card.featured {
    border-color: rgba(168, 224, 99, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.plan-card.featured {
    background: linear-gradient(135deg, #1e3a22, var(--panel));
}

.plan-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--forest);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-tier {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 0.5rem;
}

.plan-name {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.plan-price sup {
    font-size: 1.5rem;
    color: var(--lime);
    vertical-align: super;
}

.plan-period {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 1.8rem 0;
}

.plan-feat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.45rem 0;
}

.plan-feat .chk {
    color: var(--lime);
    font-size: 0.75rem;
}

.plan-feat.off {
    opacity: 0.3;
}

.plan-feat.off .chk {
    color: var(--muted);
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    background: var(--forest);
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
}

.testi-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: border-color 0.3s, transform 0.4s;
}

.testi-card:hover {
    border-color: rgba(168, 224, 99, 0.4);
    transform: translateY(-6px);
}

.testi-card.tall {
    grid-row: span 1;
}

.testi-stars {
    color: var(--lime);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
}

.testi-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--offwhite);
    margin-bottom: 2rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(168, 224, 99, 0.3);
    filter: saturate(0.7);
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cream);
}

.testi-role {
    font-size: 0.72rem;
    color: var(--lime);
    letter-spacing: 1px;
}

.testi-result {
    background: rgba(168, 224, 99, 0.08);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.78rem;
    color: var(--lime);
    font-weight: 600;
}

/* ===== SCHEDULE ===== */
#schedule {
    background: var(--deep);
}

.day-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.day-tab {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.6rem 1.3rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s;
}

.day-tab.active,
.day-tab:hover {
    background: var(--lime);
    color: var(--forest);
    border-color: var(--lime);
}

.sched-row {
    display: grid;
    grid-template-columns: 120px 1fr 150px 100px auto;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    border-radius: 12px;
    transition: background 0.3s;
}

.sched-row:hover {
    background: rgba(168, 224, 99, 0.04);
}

.sched-time-val {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--lime);
}

.sched-class-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.sched-class-coach {
    font-size: 0.75rem;
    color: var(--muted);
}

.sched-dur {
    font-size: 0.8rem;
    color: var(--muted);
}

.level-pill {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
}

.lv-hard {
    background: rgba(255, 80, 60, 0.12);
    color: #ff6b55;
    border: 1px solid rgba(255, 80, 60, 0.25);
}

.lv-med {
    background: rgba(168, 224, 99, 0.1);
    color: var(--lime);
    border: 1px solid var(--border);
}

.lv-low {
    background: rgba(245, 240, 232, 0.06);
    color: var(--muted);
    border: 1px solid var(--border);
}

/* ===== FAQ ===== */
#faq {
    background: var(--forest);
}

.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-row {
    border-bottom: 1px solid var(--border);
    padding: 1.8rem 0;
}

.faq-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--cream);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.faq-btn:hover {
    color: var(--lime);
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(168, 224, 99, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 0.75rem;
    transition: transform 0.3s, background 0.3s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: var(--lime);
    color: var(--forest);
}

.faq-ans {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    padding-top: 1rem;
}

/* ===== CTA ===== */
#cta {
    background: var(--panel);
    position: relative;
    overflow: hidden;
    padding: 9rem 0;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(168, 224, 99, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(45, 106, 53, 0.1) 0%, transparent 50%);
}

.cta-lines {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg,
            rgba(168, 224, 99, 0.04) 0px, rgba(168, 224, 99, 0.04) 1px,
            transparent 1px, transparent 80px);
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.cta-title .ital {
    font-style: italic;
    color: var(--lime);
}

.cta-form-wrap {
    background: rgba(168, 224, 99, 0.04);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
}

.input-green {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 1rem 1.3rem;
    outline: none;
    transition: border-color 0.3s;
}

.input-green::placeholder {
    color: var(--muted);
}

.input-green:focus {
    border-color: rgba(168, 224, 99, 0.5);
}

.input-green option {
    background: var(--panel);
}

/* ===== FOOTER ===== */
footer {
    background: var(--deep);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2.5rem;
}

.f-brand {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--lime);
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.f-brand em {
    color: var(--cream);
}

.f-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 280px;
}

.f-head {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.5rem;
}

.f-link {
    display: block;
    font-size: 0.87rem;
    color: var(--muted);
    text-decoration: none;
    padding: 0.35rem 0;
    transition: color 0.3s;
}

.f-link:hover {
    color: var(--cream);
}

.f-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 2rem;
}

.f-soc {
    width: 38px;
    height: 38px;
    background: rgba(168, 224, 99, 0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.f-soc:hover {
    background: var(--lime);
    color: var(--forest);
    border-color: var(--lime);
}

.f-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.f-copy {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 1px;
}

/* back to top */
.btt {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    text-decoration: none;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(168, 224, 99, 0.3);
}

.btt.show {
    opacity: 1;
    pointer-events: auto;
}

.btt:hover {
    background: var(--lime-bright);
    color: var(--forest);
    transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(.4, 0, .2, 1), transform 0.75s cubic-bezier(.4, 0, .2, 1);
}

.reveal.r1 {
    transition-delay: 0.1s;
}

.reveal.r2 {
    transition-delay: 0.2s;
}

.reveal.r3 {
    transition-delay: 0.3s;
}

.reveal.r4 {
    transition-delay: 0.4s;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px) {
    .gallery-bento {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gb1,
    .gb2,
    .gb3,
    .gb4,
    .gb5,
    .gb6 {
        grid-column: auto;
        grid-row: auto;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-main {
        height: 400px;
    }

    .hero-pill-stat.s1 {
        left: 0;
    }

    .hero-pill-stat.s2 {
        right: 0;
    }

    .sched-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    section {
        padding: 5rem 0;
    }

    .gallery-bento {
        grid-template-columns: 1fr;
    }

    .f-bottom {
        flex-direction: column;
        text-align: center;
    }
}