/*
 Theme Name:   Solana Child
 Theme URI:    https://solanapilates.com
 Description:  Child theme for Solana Pilates
 Author:        Ben Blue Design
 Template:     bb-theme
 Version:      1.0.1
*/

@import url("../bb-theme/style.css");

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
    --cream: #F7F1E8;
    --sand: #EAE0D0;
    --warm-mid: #C9B99A;
    --espresso: #2C2118;
    --bark: #7A5C3E;
    --sun: #D4A96A;
    --sun-light: #EDD9A3;
    --white: #FDFAF5;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--espresso);
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
    /* position: fixed; */
    /* top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(247, 241, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 185, 154, 0.3); */
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 1.6rem; */
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--espresso);
    text-decoration: none;
}

.nav-logo span {
    color: var(--sun);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    /* font-size: 0.78rem; */
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bark);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--espresso);
}

.nav-cta {
    background: var(--espresso) !important;
    color: var(--cream) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--bark) !important;
}

/* ══════════════════════════════════════
   HERO  (full-bleed bg image)
══════════════════════════════════════ */
.hero {
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--espresso);
}




section.hero.home-hero .hero-bg {
    background-position: center 40%;
}



.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.45) sepia(20%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 2rem 3rem;
    animation: fadeUp 1s ease both;
}

.hero-eyebrow {
    /* font-size: 0.72rem; */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sun);
    font-weight: 500;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: clamp(3.8rem, 7vw, 7rem); */
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 1.8rem;
    animation: fadeUp 0.9s ease 0.1s both;
}

.hero-headline em {
    font-style: italic;
    color: var(--sun);
}

.hero-sub {
    /* font-size: 1.05rem; */
    line-height: 1.8;
    color: rgba(247, 241, 232, 0.75);
    max-width: 520px;
    margin: 0 auto 2.8rem;
    font-weight: 300;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease 0.3s both;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 1s ease 0.6s both;
}

.hero-scroll-label {
    /* font-size: 0.65rem; */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 241, 232, 0.45);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212, 169, 106, 0.6), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    background: var(--sun);
    color: var(--espresso);
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    /* font-size: 0.78rem; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--sun-light);
    transform: translateY(-2px);
    color: var(--bark) !important;
}

.btn-secondary {
    display: inline-block;
    color: var(--cream);
    text-decoration: none;
    /* font-size: 0.78rem; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid rgba(247, 241, 232, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    color: var(--sun);
    border-color: var(--sun);
}

/* Use .btn-secondary-dark on light backgrounds */
.btn-secondary-dark {
    display: inline-block;
    color: var(--espresso);
    text-decoration: none;
    /* font-size: 0.78rem; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--warm-mid);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary-dark:hover {
    color: var(--bark);
    border-color: var(--bark);
}

.btn-sun {
    display: inline-block;
    background: var(--sun);
    color: var(--espresso);
    text-decoration: none;
    padding: 1.2rem 3.5rem;
    /* font-size: 0.82rem; */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}

.btn-sun:hover {
    background: var(--sun-light);
    transform: translateY(-3px);
}

.btn-dark {
    display: inline-block;
    background: var(--espresso);
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 2.5rem;
    /* font-size: 0.78rem; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.25s, transform 0.2s;
}

.btn-dark:hover {
    background: var(--bark);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════
   INTRO STATS STRIP
══════════════════════════════════════ */
.intro-strip {
    background: var(--espresso);
    color: var(--cream);
    padding: 2rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.strip-stat {
    text-align: center;
}

.strip-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--sun);
    display: block;
}

.strip-stat-label {
    /* font-size: 12px; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-mid);
}

.strip-divider {
    width: 1px;
    height: 3rem;
    background: rgba(201, 185, 154, 0.3);
}

/* ══════════════════════════════════════
   SECTION TYPOGRAPHY UTILITIES
══════════════════════════════════════ */
.section-eyebrow {
    /* font-size: 1.2rem; */
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: clamp(2.2rem, 3.5vw, 3.4rem); */
    font-weight: 300;
    line-height: 1.15;
    color: var(--espresso);
    margin-bottom: 1.8rem;
}

.section-title em {
    font-style: italic;
    color: var(--bark);
}

.sun-line {
    width: 40px;
    height: 2px;
    background: var(--sun);
    margin: 0 auto 1.5rem;
}

.sun-line-left {
    margin: 0 0 1.5rem;
}

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */


.about-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--sand);
    border-radius: 4px;
    overflow: hidden;
}

.about-img-main img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    filter: sepia(10%) brightness(0.98);
}

.about-img-accent {
    position: absolute;
    bottom: -2.5rem;
    right: -2.5rem;
    width: 55%;
    aspect-ratio: 4/3;
    background: var(--sun-light);
    border-radius: 4px;
    border: 4px solid var(--cream);
    overflow: hidden;
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) brightness(0.98);
}

.about-floater {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: var(--sun);
    color: var(--espresso);
    padding: 1.2rem 1.5rem;
    border-radius: 3px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(44, 33, 24, 0.15);
}

.about-floater-num {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 2rem; */
    font-weight: 600;
    display: block;
    line-height: 1;
}

.about-floater-label {
    /* font-size: 0.65rem; */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.3rem;
    font-weight: 500;
}

.about-body {
    /* font-size: 1rem; */
    line-height: 1.85;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.about-pillars {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pillar-icon {
    /* font-size: 1.4rem; */
    margin-bottom: 0.2rem;
}

.pillar-label {
    /* font-size: 0.72rem; */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--espresso);
}

.pillar-desc {
    /* font-size: 0.85rem; */
    color: var(--bark);
    font-weight: 300;
    line-height: 1.5;
}

/* ══════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════ */
.services {
    padding: 7rem 5rem;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border-radius: 6px;
    overflow: hidden;
}

.service-card {
    background: var(--sand);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
}

.service-card:hover {
    background: var(--warm-mid);
}

.service-card::before {
    content: attr(data-num);
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 7rem; */
    font-weight: 300;
    color: rgba(44, 33, 24, 0.06);
    line-height: 1;
    pointer-events: none;
}

.service-icon {
    /* font-size: 2rem; */
    margin-bottom: 1.2rem;
    display: block;
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 1.7rem; */
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 1rem;
}

.service-desc {
    /* font-size: 0.9rem; */
    line-height: 1.7;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1.8rem;
}

.service-link {
    /* font-size: 0.72rem; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--espresso);
    font-weight: 500;
    border-bottom: 1px solid var(--warm-mid);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--bark);
}

/* ══════════════════════════════════════
   OFFER CTA SECTION  (full-bleed bg image)
══════════════════════════════════════ */
.offer-banner {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}



.offer-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 5rem 3rem;
}

.offer-tag {
    /* font-size: 0.72rem; */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sun);
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
}

.offer-headline {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: clamp(3rem, 5.5vw, 5.5rem); */
    font-weight: 300;
    color: var(--cream);
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.offer-headline em {
    font-style: italic;
    color: var(--sun);
}

.offer-body {
    /* font-size: 1rem; */
    color: rgba(247, 241, 232, 0.72);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.offer-price-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(212, 169, 106, 0.5);
    padding: 0.8rem 2rem;
    border-radius: 3px;
}

.offer-price {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 3.5rem; */
    font-weight: 300;
    color: var(--sun);
    line-height: 1;
}

.offer-price-label {
    /* font-size: 0.78rem; */
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(247, 241, 232, 0.6);
    font-weight: 300;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials {
    padding: 8rem 30px;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    border: 1px solid var(--sand);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 40px rgba(44, 33, 24, 0.08);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.star {
    color: var(--sun);
    /* font-size: 0.9rem; */
}

.testimonial-text, #momence-plugin-reviews .eQCxRh {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic!important;
    /* font-size: 1.15rem; */
    line-height: 1.7!important;
    color: var(--espresso)!important;
    margin-bottom: 1.5rem!important;
}

.testimonial-author, #momence-plugin-reviews .hsvMKg {
    font-size: 14px !important;
    letter-spacing: 0.1em !important; 
    text-transform: uppercase !important;
    color: var(--bark)!important; 
    font-weight: 500 !important;
}

.testimonial-source {
    /* font-size: 0.72rem; */
    color: var(--warm-mid);
    margin-top: 0.2rem;
}

.quote-mark {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 5rem; */
    color: var(--sand);
    line-height: 1;
    pointer-events: none;
}

/* ══════════════════════════════════════
   LOCATIONS
══════════════════════════════════════ */
.locations {
    padding: 7rem 5rem;
    background: var(--espresso);
    color: var(--cream);
}

.locations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.locations-header .section-title {
    color: var(--cream);
}

.locations-header .section-eyebrow {
    color: var(--sun);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    border-radius: 6px;
    overflow: hidden;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(201, 185, 154, 0.1);
    transition: background 0.3s;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.location-tag {
    display: inline-block;
    /* font-size: 0.65rem; */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    border: 1px solid rgba(212, 169, 106, 0.4);
    padding: 0.35rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.location-name {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 2.2rem; */
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.location-area {
    /* font-size: 0.85rem; */
    color: var(--warm-mid);
    font-weight: 300;
    margin-bottom: 2rem;
    font-style: italic;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    /* font-size: 0.9rem; */
    color: var(--sand);
    font-weight: 300;
    line-height: 1.6;
}

.location-address-icon {
    /* font-size: 1rem; */
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.location-hours {
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(201, 185, 154, 0.15);
}

.location-hours-label {
    /* font-size: 0.68rem; */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    /* font-size: 0.85rem; */
    color: var(--warm-mid);
    font-weight: 300;
    margin-bottom: 0.4rem;
}

.location-cta {
    display: inline-block;
    /* margin-top: 2rem; */
    color: var(--sun);
    text-decoration: none;
    /* font-size: 0.72rem; */
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 169, 106, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s;
}

.location-cta:hover {
    color: var(--cream);
}

/* ══════════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════════ */
.final-cta {
    padding: 9rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: 'SOLANA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 18rem; */
    font-weight: 300;
    color: rgba(44, 33, 24, 0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.2em;
}

.final-cta .section-eyebrow {
    margin-bottom: 1.2rem;
}

.final-cta .section-title {
    /* font-size: clamp(2.8rem, 5vw, 5rem); */
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-sub {
    /* font-size: 1rem; */
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.final-cta-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    background: var(--espresso);
    color: var(--cream);
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 1.3rem; */
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
}

.footer-logo span {
    color: var(--sun);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    /* font-size: 0.75rem; */
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-mid);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.7rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201, 185, 154, 0.3);
    border-radius: 50%;
    color: var(--warm-mid);
    text-decoration: none;
    /* font-size: 0.85rem; */
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-link:hover {
    border-color: var(--sun);
    color: var(--sun);
    background: rgba(212, 169, 106, 0.08);
}

.footer-copy {
    /* font-size: 0.72rem; */
    color: var(--warm-mid);
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* ══════════════════════════════════════
   MOBILE  ( ≤ 767px )
══════════════════════════════════════ */
@media screen and (max-width: 767px) {

    .faq-page {
        padding: 4rem 1.5rem;
    }

    .faq-question {
        /* font-size: 1.1rem; */
        padding: 1.3rem 0;
    }

    .team {
        padding: 4rem 1.5rem;
    }

    .team-intro {
        margin-bottom: 3rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-photo-wrap {
        width: 110px;
        height: 110px;
    }

    .teachers-hero,
    .schedule-hero,
    .contact-hero {
        min-height: 400px;
    }

    .team-intro,
    .team-grid {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .memberships-intro,
    .membership-grid,
    .membership-note {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .intro-strip {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .memberships-page {
        padding: 4rem 1.5rem;
    }

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

    .membership-card-featured {
        transform: none;
    }

    .membership-card-featured:hover {
        transform: translateY(-4px);
    }

    .intro-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
        text-align: center;
    }

    .strip-stat {
        min-height: 130px;
        padding: 1.5rem 1rem;
        border-right: 1px solid rgba(201, 185, 154, 0.15);
        border-bottom: 1px solid rgba(201, 185, 154, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .strip-stat:nth-child(even) {
        border-right: none;
    }

    .strip-stat:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        border-right: none;
    }

    .strip-stat:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .strip-divider {
        display: none;
    }

    /* NAV */
    nav {
        /* padding: 1rem 1.5rem; */
    }

    .nav-links li:not(:last-child) {
        display: none;
    }

    /* HERO */
    .hero-inner {
        padding: 2rem 1.5rem;
    }

    /* INTRO STRIP */
    .intro-strip {
        flex-direction: column;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .strip-divider {
        display: none;
    }

    /* ABOUT */


    .about-img-accent {
        display: none;
    }

    .about-floater {
        display: none;
    }

    .about-img-main {
        aspect-ratio: 4/3;
    }

    .about-pillars {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* SERVICES */
    .services {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    /* OFFER CTA */
    .offer-inner {
        padding: 4rem 1.5rem;
    }

    /* TESTIMONIALS */
    .testimonials {
        padding: 4rem 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* LOCATIONS */
    .locations {
        padding: 4rem 1.5rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    /* FINAL CTA */
    .final-cta {
        padding: 5rem 1.5rem;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    /* FOOTER */
    footer {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

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

    .footer-right {
        align-items: center;
    }

    .hero {
        min-height: 400px;
    }

    .hero.home-hero {
        min-height: 600px;
    }

    .contact-page {
        padding: 4rem 0;
    }
}


a:hover {
    text-decoration: none !important;
}

/* ══════════════════════════════════════
   FONT SIZES  (grouped for easy editing)
   — originals commented out above,
     edit values here to change globally
══════════════════════════════════════ */

/* 0.65rem — micro labels */
.hero-scroll-label,
.about-floater-label,
.location-tag {
    /* font-size: 0.65rem; */
}

/* 0.68rem — hours label */
.location-hours-label {
    /* font-size: 0.68rem; */
}

/* 0.72rem — small caps links & tags */
.service-link,
.offer-tag,
.testimonial-source,
.location-cta {
    /* font-size: 0.72rem; */
}

/* 0.78rem — buttons & small UI text */
.nav-links a,
.btn-primary,
.btn-secondary,
.btn-secondary-dark,
.btn-dark,
.offer-price-label,
.testimonial-author {
    /* font-size: 0.78rem; */
}

/* 0.85rem — secondary body text */
.pillar-desc,
.location-area,
.hours-row {
    /* font-size: 0.85rem; */
}

/* 0.9rem — supporting body text */
.service-desc,
.location-address {
    /* font-size: 0.9rem; */
}

/* 1rem — standard body */
.about-body,
.offer-body,
.location-address-icon,
.final-cta-sub {
    /* font-size: 1rem; */
}

/* 1.05rem — slightly larger body */
.hero-sub {
    /* font-size: 1.05rem; */
}

/* 1.7rem — service card headings */
.service-name {
    /* font-size: 1.7rem; */
}

/* 2.2rem — location card headings */
.location-name {
    /* font-size: 2.2rem; */
}

/* ══════════════════════════════════════
   TEACHERS PAGE
══════════════════════════════════════ */

/* Hero — no button, shorter */
@media screen and (min-width: 768px) {

    .teachers-hero,
    .schedule-hero,
    .contact-hero,
    .faq-hero,
    .memberships-hero {
        min-height: 600px;
    }
}


.teachers-hero .hero-headline {
    /* font-size: clamp(4rem, 8vw, 8rem); */
    margin-bottom: 0;
}

/* Team section wrapper */
.team {
    padding: 7rem 5rem;
    background: var(--cream);
}

.team-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5rem;
}

.team-intro-body {
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
}

/* ── Instructor grid — 4 columns ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 6px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.team-card:hover {
    box-shadow: 0 8px 40px rgba(44, 33, 24, 0.08);
    transform: translateY(-4px);
}

/* 150px circular photo */
.team-photo-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.2rem;
    background: var(--sand);
    border: 3px solid var(--sand);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: sepia(8%) brightness(0.98);
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-name {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 1.35rem; */
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.team-role {
    display: block;
    /* font-size: 0.65rem; */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 1rem;
}

.team-bio-text {
    /* font-size: 0.88rem; */
    line-height: 1.7;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 0.6rem;
    text-align: left;
}

.team-bio-text:last-child {
    margin-bottom: 0;
}


.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(https://solanapilates.com/wp-content/uploads/2026/02/Group_shot_Solona_2-2.jpg);
    background-size: cover;
    background-position: center 70%;
    filter: brightness(0.45) sepia(20%);
    z-index: 0;
}


.offer-bg {
    position: absolute;
    /* background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/Reformer-1-scaled.jpg'); */
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/untitled-5380-1-scaled.jpg');
    /* background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/untitled-5384-1-scaled.jpg'); */
    inset: 0;
    background-size: cover;
    background-position: center 74%;
    filter: brightness(0.35) sepia(25%);
    z-index: 0;
    background-attachment: fixed;
}

.final-cta.memberships {
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/R47A5339-1-scaled.jpg');
    background-position: 50% -423%;
    padding: 210px 30px;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* ══════════════════════════════════════
   FAQ PAGE
══════════════════════════════════════ */

.faq-page {
    padding: 7rem 5rem;
    background: var(--cream);
    max-width: 860px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-intro-body {
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Accordion ── */
.faq-list {
    border-top: 1px solid var(--sand);
    margin-bottom: 4rem;
}

.faq-item {
    border-bottom: 1px solid var(--sand);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.6rem 0;
    cursor: pointer;
    user-select: none;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 1.25rem; */
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.3;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--bark);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--warm-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    /* font-size: 1.2rem; */
    font-weight: 300;
    color: var(--sun);
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
    line-height: 1;
}

.faq-open .faq-icon {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--espresso);
    transform: rotate(45deg);
}

/* ══════════════════════════════════════
   FAQ ACCORDION — FIXED
   Replace any previous .faq-answer rules
   with these. The grid trick requires
   exactly ONE direct child (.faq-answer-inner)
══════════════════════════════════════ */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
}

.faq-answer-inner {
    overflow: hidden;
    min-height: 0;
    padding-bottom: 0;
    transition: padding-bottom 0.4s ease;
}

.faq-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-open .faq-answer-inner {
    padding-bottom: 1.8rem;
}

/* Icon — centered + optical fix */
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--warm-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    color: var(--sun);
    transition: background 0.2s, border-color 0.2s, transform 0.3s;
    line-height: 1;
    /* Optical center for + character */
    padding-bottom: 1px;
}

.faq-open .faq-icon {
    background: var(--sun);
    border-color: var(--sun);
    color: var(--espresso);
    transform: rotate(45deg);
    padding-bottom: 0;
}

/* Add bottom spacing via inner content margin instead */
.faq-open .faq-answer-text:last-child,
.faq-open .faq-list-items:last-child {
    margin-bottom: 1.8rem;
}

/* Icon — fix centering and × optical alignment */
.faq-icon {
    line-height: 28px;
    font-size: 1.1rem;
    padding-bottom: 1px;
    /* optical center for + */
}

.faq-open .faq-icon {
    padding-bottom: 0;
    /* × doesn't need offset */
    line-height: 26px;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-list-items {
    list-style: none;
    margin: 0.8rem 0 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-list-items li {
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.7;
    color: var(--bark);
    font-weight: 300;
}

.faq-list-items li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sun);
    font-weight: 300;
}

.faq-link {
    color: var(--bark);
    text-decoration: none;
    border-bottom: 1px solid var(--warm-mid);
    padding-bottom: 1px;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s;
}

.faq-link:hover {
    color: var(--espresso);
    border-color: var(--espresso);
}

/* ── Contact nudge ── */
.faq-contact-nudge {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 6px;
}

.faq-contact-nudge p {
    font-family: 'Cormorant Garamond', serif;
    /* font-size: 1.4rem; */
    font-weight: 300;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}


/* FAQ full-width cream background, constrained content */
.faq-page {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.faq-intro,
.faq-list,
.faq-contact-nudge {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}


/* Memberships */
/* ══════════════════════════════════════
   MEMBERSHIPS PAGE
══════════════════════════════════════ */

.memberships-page {
    padding: 7rem 5rem;
    background: var(--cream);
}

.memberships-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5rem;
}

.memberships-intro-body {
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
}

.membership-card {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 6px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s, transform 0.3s;
}

.membership-card:hover {
    box-shadow: 0 8px 40px rgba(44, 33, 24, 0.08);
    transform: translateY(-4px);
}

.membership-card-featured {
    background: var(--espresso);
    border-color: var(--espresso);
    transform: translateY(-8px);
}

.membership-card-featured:hover {
    transform: translateY(-12px);
}

.membership-card-top {
    margin-bottom: 2rem;
}

.membership-tag {
    display: inline-block;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    border: 1px solid rgba(212, 169, 106, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.membership-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--espresso);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.membership-card-featured .membership-name {
    color: var(--cream);
}

.membership-tagline {
    color: var(--bark);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.membership-card-featured .membership-tagline {
    color: var(--warm-mid);
}

.membership-price {
    font-family: 'Cormorant Garamond', serif;
    color: var(--sun);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.membership-price-period {
    font-family: 'DM Sans', sans-serif;
    color: var(--warm-mid);
    font-weight: 300;
}

.membership-desc {
    line-height: 1.75;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1rem;
}

.membership-card-featured .membership-desc {
    color: var(--warm-mid);
}

.membership-benefits {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.membership-benefits li {
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.6;
    color: var(--bark);
    font-weight: 300;
}

.membership-card-featured .membership-benefits li {
    color: var(--sand);
}

.membership-benefits li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sun);
}

.membership-fine-print {
    line-height: 1.6;
    color: var(--warm-mid);
    font-weight: 300;
    margin-top: 1rem;
}

.membership-card-featured .membership-fine-print {
    color: rgba(201, 185, 154, 0.6);
}

.membership-btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* ── Agreement note ── */
.membership-note {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding-top: 1rem;
}

.membership-note p {
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
}


/* ══════════════════════════════════════
   TYPOGRAPHY PALETTE  (reference)
   ─────────────────────────────────────
   Cormorant Garamond (serif):
     .hero-headline, .section-title,
     .offer-headline, .offer-price,
     .testimonial-text, .location-name,
     .service-name, .membership-name,
     .team-name

   DM Sans (sans-serif):
     Everything else — body, buttons,
     labels, eyebrows, tags, FAQ questions,
     fine print, navigation, CTA sub text
══════════════════════════════════════ */

/* ══════════════════════════════════════
   CONTENT WRAPPER — 1200px max-width
   Use .solana-wrap on any inner content
   div where the background is full-bleed
   but content should be constrained.
══════════════════════════════════════ */
.solana-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

/* ══════════════════════════════════════
   HERO — inner page: plain white title
   (em inside non-home heroes = white,
   no italic, no gold)
══════════════════════════════════════ */
.teachers-hero .hero-headline em,
.faq-hero .hero-headline em,
.memberships-hero .hero-headline em {
    color: var(--cream);
    font-style: normal;
}

/* ── Catch-all: any hero inside a
   section that already has .teachers-hero ── */
.teachers-hero .hero-headline {
    font-style: normal;
}

/* ══════════════════════════════════════
   SECTION INNER CONTENT — 1200px cap
   Applied via CSS so BB full-width rows
   keep their background but content
   respects the site grid.
══════════════════════════════════════ */

/* Intro strip */
.intro-strip {
    padding-left: 0;
    padding-right: 0;
}

.intro-strip>* {
    flex-shrink: 0;
}

.intro-strip::before,
.intro-strip::after {
    display: none;
}

/* Wrap inner content conceptually by
   capping the strip's own content width */
.intro-strip {
    max-width: 100%;
}

.intro-strip .strip-inner,
.intro-strip {
    box-sizing: border-box;
}

/* If no .strip-inner wrapper exists, cap via
   justify + auto padding trick */
.intro-strip {
    /* padding-left: 30px;
    padding-right: 30px; */
}

/* About */
.about {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /* padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem); */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}



/* Keep .about section bg full width */
section.about-section,
.about-section {
    padding: 8rem 0;
}

/* Services */
.services-header,
.services-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

/* Testimonials */
.testimonials-header,
.testimonials-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials {
    padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

/* Locations */
.locations-header,
.locations-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.locations {
    padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

/* Final CTA */
.final-cta {
    padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

/* Team */
.team {
    padding-left: 0;
    padding-right: 0;
}

.team-intro,
.team-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.5rem, 4vw, 5rem);
    padding-right: clamp(1.5rem, 4vw, 5rem);
}

/* FAQ */
.faq-page {
    padding-left: 0;
    padding-right: 0;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.faq-intro,
.faq-list,
.faq-contact-nudge {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* Memberships */
.memberships-page {
    padding-left: 0;
    padding-right: 0;
}

.memberships-intro,
.membership-grid,
.membership-note {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}

/* ══════════════════════════════════════
   TYPOGRAPHY FIXES
══════════════════════════════════════ */

/* FAQ questions — DM Sans, not serif */
.faq-question {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* FAQ contact nudge — DM Sans */
.faq-contact-nudge p {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

/* FAQ answer body — already DM Sans via inheritance,
   but ensure no serif bleeds in */
.faq-answer p,
.faq-list-items li {
    font-family: 'DM Sans', sans-serif;
}

/* Membership fine print and body — DM Sans */
.membership-fine-print,
.membership-desc,
.membership-tagline,
.memberships-intro-body {
    font-family: 'DM Sans', sans-serif;
}

/* Membership price — keep Cormorant for the
   large number, but period label DM Sans */
.membership-price {
    font-family: 'Cormorant Garamond', serif;
}

/* Section eyebrow — DM Sans (tracking, caps) */
.section-eyebrow {
    font-family: 'DM Sans', sans-serif;
}

/* ══════════════════════════════════════
   MEMBERSHIP CARDS — equal height,
   no transform stagger, proper flex
══════════════════════════════════════ */
.membership-grid {
    align-items: stretch;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
}



.membership-card {
    display: flex;
    flex-direction: column;
}

.membership-card-top {
    flex: 1;
    margin-bottom: 2rem;
}

.membership-card-bottom {
    margin-top: auto;
}

/* Remove the transform stagger that broke layout */
.membership-card-featured {
    transform: none;
}

.membership-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(44, 33, 24, 0.2);
}

/* ══════════════════════════════════════
   TEAM GRID — auto-fit responsive
══════════════════════════════════════ */
.team-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ══════════════════════════════════════
   TESTIMONIALS GRID — auto-fit
══════════════════════════════════════ */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ══════════════════════════════════════
   SERVICES GRID — auto-fit
══════════════════════════════════════ */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}


/* ══════════════════════════════════════
   FAQ — span-based text elements
   (using spans avoids p-tag issues in BB)
══════════════════════════════════════ */
.faq-answer-text {
    display: block;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1rem;
}

.faq-answer-text:last-child {
    margin-bottom: 0;
}

.faq-intro-body {
    display: block;
    font-family: 'DM Sans', sans-serif;
}

.faq-nudge-text {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: inherit;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   MEMBERSHIP — span-based elements
══════════════════════════════════════ */
.membership-desc,
.membership-tagline,
.membership-fine-print,
.memberships-intro-body,
.membership-note-text {
    display: block;
    font-family: 'DM Sans', sans-serif;
}

.membership-tagline {
    display: block;
    margin-bottom: 1.5rem;
}

.membership-desc {
    display: block;
    margin-bottom: 1rem;
}

.membership-price {
    display: block;
    margin-bottom: 1.5rem;
}

.membership-fine-print {
    display: block;
    margin-top: 1rem;
    font-style: italic;
}

.membership-note-text {
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
}

/* ══════════════════════════════════════
   FINAL CTA — span for sub text
══════════════════════════════════════ */
.final-cta-sub {
    display: block;
    font-family: 'DM Sans', sans-serif;
}


/* ══════════════════════════════════════
   HERO BACKGROUNDS — in CSS, not inline
══════════════════════════════════════ */

/* Default hero bg (used on homepage) */
.hero-bg {
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/hero-centered.jpg');
}

.faq-hero .hero-bg {
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/untitled-5529-1-scaled.webp');
}

.schedule-hero .hero-bg {
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/untitled-9-scaled.jpg');
}

.memberships-hero .hero-bg {
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/untitled-5339-scaled.webp');
    background-position: center 40%;
}

.contact-hero .hero-bg {
    background-image: url('https://solanapilates.com/wp-content/uploads/2022/06/header_Image.jpg');
    /* background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/IMG_8217-scaled.jpg'); */
    background-position: center 40%;
}

.teachers-hero .hero-bg {
    background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/04-2025-14-39-43-scaled.jpg');
    background-position: 20% 0%;
}



/* Inner page heroes all share the group shot
   — override per-page if needed with a page class */
.memberships-hero .hero-bg,
.faq-hero .hero-bg,
.teachers-hero .hero-bg {
    /* background-image: url('https://solanapilates.com/wp-content/uploads/2026/02/Group_shot_Solona_2-2.jpg'); */
}

/* ══════════════════════════════════════
   BTN-PRIMARY ON DARK CARD
   — force brand colors, override BB theme
══════════════════════════════════════ */
.membership-card-featured .btn-primary {
    background: var(--sun) !important;
    color: var(--espresso) !important;
    border: none !important;
}

.membership-card-featured .btn-primary:hover {
    background: var(--sun-light) !important;
    color: var(--espresso) !important;
}

/* ══════════════════════════════════════
   HIDE MEMBERSHIP TAGS
   (.membership-tag class removed from
   HTML but adding display:none as safety)
══════════════════════════════════════ */
.membership-tag {
    display: none;
}



/* ── 1300px+ : single row, 5 equal columns ── */
@media (min-width: 1300px) {
    .intro-strip {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding: 1.5rem clamp(2rem, 4vw, 5rem);
    }

    .strip-divider {
        display: none;
    }

    .strip-stat {
        padding: 1rem;
        text-align: center;
        border-right: 1px solid rgba(201, 185, 154, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .intro-strip>.strip-stat:last-child {
        border-right: none;
    }
}

/* ── 768px–1299px : 3+2 grid with full cell borders ── */
@media (min-width: 768px) and (max-width: 1299px) {
    .intro-strip {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 0;
        padding: 0;
    }

    .strip-divider {
        display: none;
    }

    .strip-stat {
        padding: 1.5rem 1rem;
        text-align: center;
        border-right: 1px solid rgba(201, 185, 154, 0.2);
        border-bottom: 1px solid rgba(201, 185, 154, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100px;
    }

    /* Row 1 */
    .intro-strip>.strip-stat:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .intro-strip>.strip-stat:nth-child(3) {
        grid-column: 3 / span 2;
    }

    .intro-strip>.strip-stat:nth-child(5) {
        grid-column: 5 / span 2;
        border-right: none;
    }

    /* Row 2 — centered */
    .intro-strip>.strip-stat:nth-child(7) {
        grid-column: 2 / span 2;
        border-bottom: none;
    }

    .intro-strip>.strip-stat:nth-child(9) {
        grid-column: 4 / span 2;
        border-right: none;
        border-bottom: none;
    }
}

/* ══════════════════════════════════════
   FOOTER — SOLANA CUSTOM
   Replaces BB Themer footer
══════════════════════════════════════ */

.solana-footer {
    background: var(--espresso);
    color: var(--cream);
}

.solana-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 5vw, 5rem) 0px;
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
}

/* ── Brand column ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-link {
    max-width: 200px;
    height: auto;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 185, 154, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-mid);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-icon:hover {
    border-color: var(--sun);
    color: var(--sun);
    background: rgba(212, 169, 106, 0.08);
}

/* ── Column label ── */
.footer-col-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ── Contact column ── */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-link {
    color: var(--warm-mid);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    line-height: 1.6;
}

.footer-contact-link:hover {
    color: var(--cream);
}

.footer-book-link {
    display: inline-block;
    margin-top: 0.8rem;
    color: var(--sun);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 169, 106, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.footer-book-link:hover {
    color: var(--cream);
    border-color: var(--cream);
}

/* ── Location columns ── */
.footer-location {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-address {
    display: block;
    color: var(--warm-mid);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-map-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201, 185, 154, 0.1);
}

.footer-map-wrap iframe {
    display: block;
    filter: grayscale(30%) sepia(10%);
}

/* ── Bottom bar ── */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem clamp(1.5rem, 4vw, 5rem);
    border-top: 1px solid rgba(201, 185, 154, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.footer-copy {
    color: var(--warm-mid);
    font-weight: 300;
}

.footer-bottom-link {
    color: var(--warm-mid);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: none;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: var(--cream);
}

/* ── Responsive — BB breakpoints ── */

/* 1200px and below (BB Large) */


/* ── 992px and below (BB Medium) ── */
@media (max-width: 992px) {
    .solana-footer-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 2.5rem 3rem;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / 2;
        grid-row: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-contact {
        grid-column: 1 / 2;
        grid-row: 2;
        text-align: left;
    }

    .footer-location:nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 3;
    }

    .footer-location:nth-child(4) {
        grid-column: 2 / 3;
        grid-row: 3;
    }
}

/* 768px and below (BB Small) */
@media (max-width: 767px) {
    .solana-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
    }

    .about {
        grid-template-columns: 1fr;
        padding: 4rem 0em;
    }

    .footer-brand {
        grid-column: auto;
        grid-row: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-contact {
        grid-column: auto;
        grid-row: auto;
    }

    /* Each map on its own full-width row */
    .footer-location:nth-child(3),
    .footer-location:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-bottom {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

span.membership-price {
    font-size: 20px;
}

/* ── Services v2 — horizontal list layout ── */
.services-v2 {
    background: var(--sand);
    padding: 7rem 0;
}

.services-v2-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    /* padding: 0 clamp(1.5rem, 4vw, 5rem); */
    padding: 0px;
}

.services-v2-list {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 clamp(1.5rem, 4vw, 5rem); */
}

.service-row {
    display: grid;
    grid-template-columns: 80px 60px 1fr;
    gap: 0rem;
    align-items: start;
    padding: 2.5rem 0;
    border-top: 1px solid var(--warm-mid);
    transition: background 0.2s;
}

.service-row:last-child {
    border-bottom: 1px solid var(--warm-mid);
}

.service-row-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--sun);
    line-height: 1;
    padding-top: 0.2rem;
}

.service-row-icon {
    font-size: 1.5rem;
    padding-top: 1rem;
    color: var(--bark);
}

.service-row-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 0.8rem;
    margin-top: 0px;
}

.service-row-desc {
    /* font-size: 0.9rem; */
    line-height: 1.75;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto;
    }

    .service-row-icon {
        display: none;
    }
}

.service-row-icon i {
    color: var(--bark);
    font-size: 2.3rem;
}

/* Service row fixes */
.service-row-num {
    color: var(--bark);
}

.service-row .btn-secondary-dark {
    display: inline-block;
    margin-top: 1rem;
}

.service-row-desc {
    display: block;
    margin-bottom: 0;
}

section.services {
    display: none;
}


/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */

.contact-hero .hero-bg {
    /* background-image: url('https://solanapilates.com/staging/wp-content/uploads/2026/04/untitled-5529-1-scaled.webp'); */
}

.contact-page {
    background: var(--cream);
    padding: 6rem 0;
}

.contact-grid {
    width: min(1200px, 100% - 3rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}



.contact-left {
    position: sticky;
    top: 4rem;
}

.contact-body {
    display: block;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--warm-mid);
}

.contact-detail-item i {
    color: var(--sun);
    width: 16px;
    text-align: center;
}

.contact-detail-link {
    color: var(--bark);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}

.contact-detail-link:hover {
    color: var(--espresso);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-left {
        position: static;
    }
}



.footer-contact-link i {
    color: var(--sun);
    width: 16px;
    text-align: center;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0;
}

div#wpcf7-f1285-p1042-o1 input,
div#wpcf7-f1285-p1042-o1 textarea,
div#wpcf7-f1285-p1042-o1 select.wpcf7-form-control.wpcf7-select {
    border: solid 1px var(--warm-mid) !important;
    border-radius: 0px;
}

input.wpcf7-form-control.wpcf7-submit,
select.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    background: var(--sun) !important;
    color: var(--espresso) !important;
    text-decoration: none !important;
    padding: 1.1rem 2.8rem !important;
    /* font-size: 0.78rem; */
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    border-radius: 2px !important;
    transition: background 0.25s, transform 0.2s !important;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    height: 110px;
}

div#wpcf7-f1285-p1042-o1 {
    max-width: 420px;
}

div#wpcf7-f1285-p1042-o1 input.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--sun-light);
}

/* ══════════════════════════════════════
   MOMENCE WIDGET — BRAND THEMING
   Scoped to the widget host element
══════════════════════════════════════ */
#momence-plugin-host-schedule {

    /* Primary color scale — replace purple with our gold */
    --momence-primary-050: #FBF5EA;
    --momence-primary-100: #F5E8CC;
    --momence-primary-200: #EDD9A3;
    /* sun-light */
    --momence-primary-300: #E4C87E;
    --momence-primary-400: #DCBA5A;
    --momence-primary-500: #D4A96A;
    /* sun */
    --momence-primary-600: #B88D50;
    --momence-primary-700: #9A7240;
    --momence-primary-800: #7A5C3E;
    /* bark */
    --momence-primary-900: #2C2118;
    /* espresso */

    /* Background */
    --momence-background: #F7F1E8;
    /* cream */
    --momence-white: #FDFAF5;
    /* white */
    --momence-session-separator-color: #EAE0D0;
    /* sand */

    /* Font */
    --momence-font-family: 'DM Sans', sans-serif;
}

.services-row-content-wrap {
    padding-left: 20px;
    padding-right: 20px;

}

@media (max-width: 992px) {
    .testimonials-grid {
        /* grid-template-columns: repeat(3, 80vw); */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 1rem;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        scroll-snap-align: start;
    }
}

.services-v2 {
    padding-left: 30px;
    padding-right: 30px;
}

.about-row-content-wrap {
    padding: 60px 0px;
}

.membership-grid {
    padding: 0px;
}

@media screen and (max-width: 1200px) {
    .about-row-content-wrap {
        padding: 60px 30px;
    }

    .contact-grid, .team-intro, .team-grid, .membership-grid, .class-packs-section-inner {
        padding-left: 30px;
        padding-right: 30px;

    }

    .solana-footer-inner {
        /* grid-template-columns: 160px 1fr 1fr 1fr; */
        gap: 2.5rem 3rem;
    }
}

/* ══════════════════════════════════════
   TEAM CARD — bio clamp + read more
══════════════════════════════════════ */

.team-bio-clamp {
    flex: 1;
}

.team-bio-clamp .team-bio-text {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.team-read-more {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bark);
    text-decoration: none;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.team-read-more:hover {
    color: var(--bark);
    border-color: var(--bark);
}

/* Make team card a flex column so read more stays at bottom */
.team-card {
    display: flex;
    flex-direction: column;
}

/* ══════════════════════════════════════
   TEAM MODAL
══════════════════════════════════════ */

body.modal-open {
    overflow: hidden;
}

.team-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 33, 24, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.team-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.team-modal-inner {
    background: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 80px rgba(44, 33, 24, 0.25);
}

.team-modal-overlay.is-open .team-modal-inner {
    transform: translateY(0);
}

.team-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bark);
    font-size: 0.9rem;
    z-index: 2;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.team-modal-close:hover {
    background: var(--warm-mid);
    color: var(--espresso);
}

/* ── Stacked layout: photo header band on top ── */
.team-modal-body {
    display: grid;
    grid-template-columns: 1fr;
}

.team-modal-photo-wrap {
    background: var(--sand);
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.team-modal-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 4px solid var(--white);
}

.team-modal-content {
    padding: 30px;
    text-align: center;
}

.team-modal-role {
    display: block;
    font-family: 'DM Sans', sans-serif;
    /* font-size: 0.65rem; */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 0.3rem;
}

.team-modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-top: 10px !important;
}

.team-modal-bio {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 1.5rem;
    white-space: pre-wrap;
    text-align: left;
}

.team-modal-creds-wrap {
    border-top: 1px solid var(--sand);
    padding-top: 1.2rem;
    text-align: left;
}

.team-modal-creds {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.team-modal-creds li {
    font-family: 'DM Sans', sans-serif;
    color: var(--bark);
    font-weight: 300;
    padding-left: 1rem;
    position: relative;
}

.team-modal-creds li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sun);
}

@media (max-width: 600px) {
    .team-modal-overlay {
        padding: 15px;
    }

    .team-modal-content {
        padding: 30px;
    }
}

.sc-1ufy6b1-0.blaSQZ {
    max-width: 1200px;
    padding: 0px !important;
}

.sc-u48lbb-10.bQSYKY {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 5px !important;
    border-radius: 4px !important;
    background-color: var(--white) !important;
}



#momence-plugin-reviews .LPbRo {
      display: inline-block;
      background: var(--sun) !important;
      color: var(--espresso) !important;
      text-decoration: none !important;
      padding: 1.1rem 2.8rem !important;
      /* font-size: 0.78rem !important; */
      letter-spacing: 0.18em !important;
      text-transform: uppercase !important;
      font-weight: 500 !important;
      border-radius: 2px !important;
      transition: background 0.25s, transform 0.2s !important;
      width: unset !important;
      margin-top: 20px !important;
}

#momence-plugin-reviews .LPbRo:hover {
       background: var(--sun-light) !important;
      color: var(--white) !important;
}

a.sc-1wi24d4-0.cmkZmC.momence-reviews-powered_by_momence {
    display: none !important;
}

div#momence-plugin-reviews {
    margin-top: 30px;
}

span.sc-u48lbb-7.MCHux {
    font-size: 9px !important;
    color: var(--warm-mid) !important;
}

img.sc-u48lbb-4.jPzOzG {
    width: 4rem !important;
    height: 4rem !important;
}



#momence-plugin-reviews .LPbRo {
      display: inline-block;
      background: var(--sun) !important;
      color: var(--espresso) !important;
      text-decoration: none !important;
      padding: 1.1rem 2.8rem !important;
      /* font-size: 0.78rem !important; */
      letter-spacing: 0.18em !important;
      text-transform: uppercase !important;
      font-weight: 500 !important;
      border-radius: 2px !important;
      transition: background 0.25s, transform 0.2s !important;
      width: unset !important;
      margin-top: 20px !important;
}

.sc-u48lbb-10.bQSYKY {}

.sc-u48lbb-10.bQSYKY {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-top: 5px !important;
    border-radius: 4px !important;
    background-color: var(--white) !important;
    padding: 2.5rem !important;
}


.sc-137czvd-3.klHCbK {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
}


/* ═══════════════════════════════════════════════════════
   CLASS PACKS — section + cards
   Append to style.css
   ═══════════════════════════════════════════════════════ */

.class-packs-section {
    padding: 5rem 0;
    background: var(--white);
}

.class-packs-section-inner {
    width: min(1200px, 100% - 3rem);
    margin: 0 auto;
}

.class-packs-section .section-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sun);
    margin-bottom: 0.75rem;
}

.class-packs-section .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 1rem;
}

.class-packs-section .section-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bark);
}


/* ── Grid ── */

.class-packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}


/* ── Card (light default) ── */

.class-pack-card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 6px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.class-pack-card:hover {
    box-shadow: 0 8px 30px rgba(44, 33, 24, 0.08);
}


/* ── Card — featured (dark) ── */

.class-pack-card--featured {
    background: var(--espresso);
    border-color: var(--espresso);
}

.class-pack-card--featured .class-pack-name,
.class-pack-card--featured .class-pack-price,
.class-pack-card--featured .class-pack-description,
.class-pack-card--featured .class-pack-feature {
    color: var(--white);
}

.class-pack-card--featured .class-pack-tagline {
    color: var(--sun-light);
}

.class-pack-card--featured .class-pack-expiry {
    color: var(--warm-mid);
}

.class-pack-card--featured .class-pack-fine-print {
    color: var(--warm-mid);
}

.class-pack-card--featured .class-pack-btn {
    background: var(--sun);
    color: var(--espresso);
}

.class-pack-card--featured .class-pack-btn:hover {
    background: var(--sun-light);
}


/* ── Name ── */

.class-pack-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.85rem);
    font-weight: 400;
    color: var(--espresso);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}


/* ── Tagline ── */

.class-pack-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    color: var(--bark);
    margin-bottom: 1.25rem;
}


/* ── Price row ── */

.class-pack-price-row {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--sand);
}

.class-pack-card--featured .class-pack-price-row {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

.class-pack-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 300;
    color: var(--bark);
    margin-bottom: 0.25rem;
}

.class-pack-expiry {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--warm-mid);
    letter-spacing: 0.02em;
}


/* ── Description ── */

.class-pack-description {
    font-family: 'DM Sans', sans-serif;
    /* font-size: 0.95rem; */
    line-height: 1.7;
    color: var(--espresso);
    margin-bottom: 1.25rem;
}


/* ── Features ── */

.class-pack-features {
    margin-bottom: 1.5rem;
}

.class-pack-feature {
    font-family: 'DM Sans', sans-serif;
    /* font-size: 0.95rem; */
    line-height: 1.8;
    color: var(--espresso);
}


/* ── Fine print ── */

.class-pack-fine-print {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    /* font-size: 0.9rem; */
    line-height: 1.6;
    color: var(--bark);
    margin-bottom: 1.75rem;
    margin-top: auto;
}


/* ── CTA button ── */

.class-pack-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--espresso);
    background: var(--sun);
    border-radius: 4px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.class-pack-btn:hover {
    background: var(--sun-light);
    color: var(--espresso);
    text-decoration: none;
}


/* ── Responsive ── */

@media (max-width: 992px) {
    .class-packs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .class-packs-section {
        padding: 3.5rem 0;
    }

    .class-packs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.final-cta.memberships.v2 {
    background: var(--cream);
}

/* ── Membership cards equal height ── */
.membership-grid {
    align-items: stretch !important;
}

.membership-btn {
    margin-top: auto !important;
}