/* Calm Classroom Collective — Shared Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --teal: #2B8B7E;
    --teal-dark: #1D6B62;
    --teal-light: #A8D5CB;
    --teal-pale: #E0F0EC;
    --green-soft: #7CB890;
    --green-pale: #E8F3EC;
    --gold: #D4A84B;
    --gold-light: #E8C97D;
    --amber: #C49A3C;
    --amber-pale: #FFF3DC;
    --cream: #FFFAF3;
    --cream-dark: #F5EDE0;
    --text: #2C3E35;
    --text-soft: #5B7166;
    --white: #FFFFFF;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 250, 243, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(43, 139, 126, 0.12);
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo {
    height: 44px;
    width: auto;
}
.nav-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--teal);
    line-height: 1.15;
}
.nav-brand small {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    color: var(--text-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--teal);
}
.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s, transform 0.2s !important;
    box-shadow: 0 2px 8px rgba(212, 168, 75, 0.3);
}
.nav-cta:hover {
    background: var(--amber) !important;
    transform: translateY(-1px);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--teal);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(43, 139, 126, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(43, 139, 126, 0.25);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--green-soft);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}
h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 6.5vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
h1 .highlight {
    color: var(--teal);
}
h1 .accent {
    color: var(--gold);
}
.hero-sub {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-soft);
    max-width: 620px;
    font-weight: 300;
}
.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}
.hero-detail .icon {
    width: 40px;
    height: 40px;
    background: var(--teal-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.hero-cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(43, 139, 126, 0.25);
}
.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--teal);
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--teal);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-secondary:hover {
    background: var(--teal-pale);
    transform: translateY(-2px);
}

/* ===== SECTION SHARED ===== */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}
h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
    padding: 6rem 2rem;
    background: var(--white);
}
.philosophy-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
}
.philosophy-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.phil-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
    transition: transform 0.2s;
}
.phil-card:hover { transform: translateY(-2px); }
.phil-card .card-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}
.phil-card h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.phil-card p {
    font-size: 0.82rem;
    color: var(--text-soft);
    line-height: 1.5;
    font-weight: 300;
}

/* ===== CLASSES ===== */
.classes {
    padding: 6rem 2rem;
    background: var(--teal-pale);
}
.classes-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.class-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.class-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(43, 139, 126, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.class-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.class-card .age-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: var(--amber-pale);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.class-card h3 {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}
.class-card p {
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-weight: 300;
}
.class-card .format {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(43, 139, 126, 0.1);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ===== MEETUPS ===== */
.meetups {
    padding: 6rem 2rem;
    background: var(--amber-pale);
    position: relative;
    overflow: hidden;
}
.meetups::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 168, 75, 0.1) 0%, transparent 60%);
}
.meetups-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.meetups .sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.meetup-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.meetup-feat { text-align: center; }
.meetup-feat .num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
}
.meetup-feat .label {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 400;
    margin-top: 0.25rem;
}

/* ===== APPROACH ===== */
.approach {
    padding: 6rem 2rem;
    background: var(--white);
}
.approach-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.approach h2 { text-align: center; }
.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.approach-item {
    text-align: center;
    padding: 2rem 1rem;
}
.approach-item .circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
}
.approach-item h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.approach-item p {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
    font-weight: 300;
}

/* ===== CLOSING CTA ===== */
.closing {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--teal-pale) 0%, var(--cream) 100%);
}
.closing-inner {
    max-width: 700px;
    margin: 0 auto;
}
.closing h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.closing p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    padding: 3rem 2rem 2rem;
    background: var(--text);
    color: rgba(255,255,255,0.7);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}
.footer-brand img {
    height: 36px;
    width: auto;
}
.footer-brand-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 320px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--teal-light);
}
.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.78rem;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--cream) 0%, var(--teal-pale) 100%);
    position: relative;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}
.page-hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-soft);
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
}
.about-section {
    padding: 5rem 2rem;
}
.about-section:nth-child(even) {
    background: var(--white);
}
.about-inner {
    max-width: 900px;
    margin: 0 auto;
}
.about-inner h2 {
    margin-bottom: 1.5rem;
}
.about-inner p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 1.25rem;
}
.about-inner p:last-child { margin-bottom: 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.value-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
    text-align: center;
}
.value-card .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.value-card h4 {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.value-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    padding: 5rem 2rem;
    background: var(--white);
}
.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info h2 {
    margin-bottom: 1rem;
}
.contact-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.contact-detail .icon {
    width: 42px;
    height: 42px;
    background: var(--teal-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-form {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
}
.contact-form h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.contact-form .form-sub {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(43, 139, 126, 0.2);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.form-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
}
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}
.form-success .check {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.form-success h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 0.5rem;
}
.form-success p {
    color: var(--text-soft);
    font-weight: 300;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav { padding: 0.6rem 1.25rem; }
    .nav-logo { height: 36px; }
    .nav-brand { font-size: 1rem; }
    .nav-brand small { font-size: 0.55rem; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(43, 139, 126, 0.12);
        gap: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .mobile-toggle { display: block; }
    .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .hero-details { gap: 1rem; }
    .hero-cta-row { flex-direction: column; }
    .philosophy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .class-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .meetup-features { gap: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 7rem 1.5rem 3rem; }
}
/* ===== CLASSES DETAIL PAGE ===== */
.classes-detail {
    padding: 5rem 2rem;
    background: var(--cream);
}
.classes-detail-inner {
    max-width: 900px;
    margin: 0 auto;
}
.class-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
    transition: box-shadow 0.3s ease;
}
.class-detail-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.class-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.class-detail-header h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    line-height: 1.3;
}
.class-price {
    text-align: right;
    flex-shrink: 0;
}
.class-price .price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--teal);
}
.class-price .price-period {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 400;
}
.class-detail-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.class-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--teal-pale);
    border-radius: 14px;
}
.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.meta-item strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}
.meta-item span {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 400;
}
.class-detail-includes {
    border-top: 1px solid rgba(43, 139, 126, 0.1);
    padding-top: 1.25rem;
}
.class-detail-includes h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.class-detail-includes ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.class-detail-includes ul li {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}
.class-detail-includes ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 600;
}

/* How Steps */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}
.how-step {
    text-align: center;
    padding: 1.5rem;
}
.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.how-step h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.how-step p {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.5;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}
.faq-item {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(43, 139, 126, 0.08);
}
.faq-item h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.faq-item p {
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* ===== MEETUPS PAGE ===== */
.meetup-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
}
.meetup-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), var(--teal));
    border-radius: 2px;
}
.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    position: relative;
}
.timeline-time {
    flex-shrink: 0;
    width: 80px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    text-align: right;
    padding-top: 0.15rem;
}
.timeline-content {
    flex: 1;
    padding-left: 2rem;
}
.timeline-content::before {
    content: '';
    position: absolute;
    left: 54px;
    top: 1.75rem;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 1;
}
.timeline-content h4 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}
.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.7;
}
.meetup-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.meetup-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(212, 168, 75, 0.15);
    transition: transform 0.2s;
}
.meetup-detail-card:hover {
    transform: translateY(-3px);
}
.meetup-detail-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.meetup-detail-card h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.meetup-detail-card p {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.5;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.location-card {
    background: var(--teal-pale);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
}
.location-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.location-card h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.location-addr {
    font-size: 0.82rem;
    color: var(--text-soft);
    font-weight: 400;
    margin-bottom: 0.3rem;
}
.location-note {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 500;
    font-style: italic;
}

/* ===== ENROLL PAGE ===== */
.enroll-layout {
    padding: 4rem 2rem 5rem;
    background: var(--white);
}
.enroll-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.enroll-sidebar {
    position: sticky;
    top: 90px;
}
.pricing-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
    margin-bottom: 1.5rem;
}
.pricing-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}
.pricing-sub {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(43, 139, 126, 0.1);
}
.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(43, 139, 126, 0.06);
    gap: 1rem;
}
.pricing-name strong {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    color: var(--text);
}
.pricing-name span {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 300;
}
.pricing-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--teal);
    flex-shrink: 0;
    white-space: nowrap;
}
.pricing-addon {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    margin-top: 0.5rem;
    background: var(--amber-pale);
    margin: 0.75rem -2rem -2rem;
    padding: 1.25rem 2rem;
    border-radius: 0 0 20px 20px;
    gap: 1rem;
}
.pricing-addon .pricing-amount {
    color: var(--gold);
}
.pricing-note {
    padding: 1rem;
    margin-top: 0.75rem;
    background: var(--teal-pale);
    border-radius: 12px;
    margin: 0.75rem -2rem;
    padding: 1rem 2rem;
}
.pricing-note p {
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-soft);
    background: var(--cream);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(43, 139, 126, 0.08);
}
.trust-badge span {
    font-size: 1.1rem;
}

/* Enrollment Form */
.enroll-form-container {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(43, 139, 126, 0.1);
}
.enroll-form h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}
.form-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal);
    margin: 1.75rem 0 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(43, 139, 126, 0.1);
}
.form-section-label:first-of-type {
    border-top: none;
    padding-top: 0;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 400;
    cursor: pointer;
    padding: 1rem;
    background: var(--amber-pale);
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 75, 0.2);
    margin-bottom: 0.5rem;
    transition: border-color 0.2s;
}
.checkbox-label:hover {
    border-color: var(--gold);
}
.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--teal);
}
.checkbox-label span {
    line-height: 1.5;
}
.enroll-submit {
    font-size: 1.1rem;
    padding: 1rem;
    margin-top: 0.5rem;
    background: var(--gold);
    box-shadow: 0 4px 16px rgba(212, 168, 75, 0.3);
}
.enroll-submit:hover {
    background: var(--amber);
}
.form-disclaimer {
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Enrollment Success */
.enroll-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}
.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.enroll-success h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 0.75rem;
}
.enroll-success p {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.7;
}
.success-next {
    text-align: left;
    background: var(--teal-pale);
    border-radius: 14px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}
.success-next h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.success-next ol {
    padding-left: 1.5rem;
    margin: 0;
}
.success-next ol li {
    font-size: 0.9rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav { padding: 0.6rem 1.25rem; }
    .nav-logo { height: 36px; }
    .nav-brand { font-size: 1rem; }
    .nav-brand small { font-size: 0.55rem; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(43, 139, 126, 0.12);
        gap: 1rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .mobile-toggle { display: block; }
    .hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
    .hero-details { gap: 1rem; }
    .hero-cta-row { flex-direction: column; }
    .philosophy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .class-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .meetup-features { gap: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-hero { padding: 7rem 1.5rem 3rem; }
    /* Classes detail page */
    .class-detail-header { flex-direction: column; }
    .class-price { text-align: left; }
    .class-detail-meta { grid-template-columns: 1fr; }
    .class-detail-includes ul { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; gap: 1rem; }
    /* Meetups page */
    .meetup-details-grid { grid-template-columns: 1fr 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .meetup-timeline::before { left: 50px; }
    .timeline-time { width: 60px; font-size: 0.8rem; }
    .timeline-content::before { left: 44px; }
    /* Enroll page */
    .enroll-inner { grid-template-columns: 1fr; }
    .enroll-sidebar { position: static; }
    .trust-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .philosophy-cards { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .hero-details { flex-direction: column; }
    .meetup-details-grid { grid-template-columns: 1fr; }
    .trust-badges { grid-template-columns: 1fr; }
    .timeline-item { flex-direction: column; gap: 0.5rem; }
    .timeline-time { width: auto; text-align: left; }
    .meetup-timeline::before { display: none; }
    .timeline-content::before { display: none; }
    .timeline-content { padding-left: 0; }
}

/* ===== CLASS LISTINGS PAGE ===== */
.listing-section {
    padding: 5rem 2rem;
    background: var(--cream);
}
.listing-section.listing-alt {
    background: var(--white);
}
.listing-section.listing-anchor {
    background: var(--teal-pale);
    border-left: 0;
}
.listing-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.listing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.listing-age-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    background: var(--amber-pale);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
}
.listing-duration-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-soft);
    background: rgba(43, 139, 126, 0.08);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
}
.listing-price-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gold);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
}
.listing-rotation-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal);
    background: var(--teal-pale);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
}
.listing-group-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-soft);
    background: var(--green-pale);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
}
.listing-caregiver-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--teal-dark);
    background: var(--teal-light);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    opacity: 0.85;
}
.listing-time-badge {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--teal);
    background: var(--white);
    border: 1.5px solid var(--teal-light);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    white-space: nowrap;
}
.listing-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    margin-bottom: 0.3rem;
    line-height: 1.15;
}
.listing-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-soft);
    margin-bottom: 1rem;
}
.listing-short {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-soft);
    font-weight: 300;
    max-width: 680px;
    margin-bottom: 2rem;
}
.listing-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
.listing-details h4 {
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    margin-bottom: 0.75rem;
}
.listing-bullets {
    list-style: none;
    padding: 0;
}
.listing-bullets li {
    padding: 0.4rem 0 0.4rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
    font-weight: 400;
}
.listing-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}
.fit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.fit-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--teal-dark);
    background: var(--teal-pale);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    border: 1px solid rgba(43,139,126,0.15);
}
.fit-tag::before { content: '✔ '; }
.listing-note {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    font-style: italic;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* ── Listing Pricing Card ── */
.listing-pricing-card {
    position: sticky;
    top: 90px;
}
.pricing-card-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1.5px solid rgba(43, 139, 126, 0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(43, 139, 126, 0.08);
    gap: 0.5rem;
}
.price-row:last-of-type { border-bottom: none; }
.price-row-best {
    background: var(--amber-pale);
    margin: 0.25rem -1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(212,168,75,0.2) !important;
}
.price-tier {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.price-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--teal);
}
.price-amount .price-per {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--text-soft);
}
.price-save {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--amber-pale);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}
.best-value-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--gold);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-left: 0.3rem;
}
.founding-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.5;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 10px;
    border: 1px solid rgba(43,139,126,0.1);
}

/* ── Add-ons Section ── */
.add-ons-section {
    padding: 5rem 2rem;
    background: var(--teal-pale);
}
.add-ons-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.add-on-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}
.add-on-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(43, 139, 126, 0.08);
    display: flex;
    flex-direction: column;
}
.add-on-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.add-on-card h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.add-on-ages {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.add-on-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-soft);
    font-weight: 300;
    flex: 1;
}
.add-on-price {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--teal);
    margin-top: 1rem;
}
.add-on-price span {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-soft);
}
.rotation-list {
    margin-top: 1rem;
    background: var(--cream);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}
.rotation-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.88rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(43,139,126,0.1);
    align-items: center;
}
.rotation-item:last-child { border-bottom: none; }
.rotation-month {
    font-weight: 700;
    color: var(--teal);
    min-width: 48px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== SCHEDULE PAGE ===== */
.schedule-section {
    padding: 4rem 2rem 5rem;
}
.schedule-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.schedule-header-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid rgba(43, 139, 126, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-bottom: 2rem;
}

/* Desktop Schedule Table */
.schedule-table-wrap {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(43,139,126,0.1);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.schedule-table { display: table; width: 100%; border-collapse: collapse; }
.sched-row { display: table-row; }
.sched-cell { display: table-cell; padding: 1.1rem 1.25rem; vertical-align: middle; border-bottom: 1px solid rgba(43,139,126,0.07); }
.sched-row:last-child .sched-cell { border-bottom: none; }

.sched-head { background: var(--teal); }
.sched-head .sched-cell { color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

.sched-time { min-width: 110px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--teal); white-space: nowrap; }
.time-block { display: inline; }
.time-ampm { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 500; color: var(--text-soft); margin: 0 1px; }
.time-sep { color: var(--text-soft); margin: 0 2px; font-size: 0.85rem; }

.sched-class-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.sched-class-sub { font-size: 0.8rem; color: var(--text-soft); font-weight: 300; }
.sched-note-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; color: var(--text-soft); background: rgba(43,139,126,0.08); padding: 0.2rem 0.6rem; border-radius: 100px; margin-top: 0.35rem; }
.sched-rotation-tag { color: var(--teal); background: var(--teal-pale); }
.sched-age { font-size: 0.85rem; color: var(--text-soft); min-width: 90px; }
.sched-len { font-size: 0.85rem; color: var(--text-soft); min-width: 70px; }
.sched-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; color: var(--teal); min-width: 70px; }
.popular-tag { font-size: 0.68rem; font-weight: 700; color: var(--white); background: var(--gold); padding: 0.2rem 0.55rem; border-radius: 100px; white-space: nowrap; }
.rotation-inline-tag { font-size: 0.68rem; font-weight: 600; color: var(--teal); background: var(--teal-pale); padding: 0.2rem 0.55rem; border-radius: 100px; }

.sched-enroll-btn {
    display: inline-flex;
    align-items: center;
    background: var(--teal);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}
.sched-enroll-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.sched-enroll-gold { background: var(--gold) !important; }
.sched-enroll-gold:hover { background: var(--amber) !important; }

/* Row colors */
.sched-row-teal { background: rgba(43,139,126,0.03); }
.sched-row-green { background: rgba(124,184,144,0.05); }
.sched-row-anchor { background: var(--amber-pale); }
.sched-row-rotation { background: rgba(43,139,126,0.05); }
.sched-row-flex { background: var(--cream-dark); }

/* Mobile cards — hidden on desktop */
.schedule-cards { display: none; }

/* ── Rotation Section ── */
.rotation-section {
    padding: 5rem 2rem;
    background: var(--white);
}
.rotation-inner {
    max-width: 800px;
    margin: 0 auto;
}
.rotation-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}
.rotation-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal-light), var(--gold-light), var(--teal-light));
}
.rotation-stop {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}
.rotation-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--teal);
    flex-shrink: 0;
    margin-top: 0.15rem;
    position: relative;
    z-index: 2;
}
.rotation-stop-july .rotation-dot { border-color: var(--gold); }
.rotation-stop-august .rotation-dot { border-color: var(--green-soft); }
.rotation-content { padding-left: 0; }
.rotation-month-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal);
    margin-bottom: 0.25rem;
}
.rotation-stop-july .rotation-month-label { color: var(--gold); }
.rotation-stop-august .rotation-month-label { color: var(--green-soft); }
.rotation-class-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
.rotation-class-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.5;
}

/* ── Flex Slot Section ── */
.flex-slot-section {
    padding: 5rem 2rem;
    background: var(--teal-pale);
}
.flex-slot-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.flex-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.25rem;
}
.flex-slot-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(43,139,126,0.08);
    display: flex;
    flex-direction: column;
}
.flex-slot-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.flex-slot-card h4 { font-weight: 600; font-size: 1.05rem; margin-bottom: 0.25rem; }
.flex-slot-ages { font-size: 0.78rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.flex-slot-card p { font-size: 0.88rem; line-height: 1.6; color: var(--text-soft); font-weight: 300; flex: 1; }
.flex-slot-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.6rem; color: var(--teal); margin-top: 1rem; }
.flex-slot-price span { font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 0.85rem; color: var(--text-soft); }

/* ===== ENROLL PAGE ===== */
.page-hero-enroll {
    padding-top: 7rem;
}
.founding-banner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber-pale);
    border: 1px solid rgba(212,168,75,0.3);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

/* Pricing Overview */
.pricing-overview {
    padding: 4rem 2rem;
    background: var(--white);
}
.pricing-overview-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-sub {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.tier-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.tier-card {
    border-radius: 16px;
    padding: 1.75rem;
    border: 1.5px solid rgba(43,139,126,0.12);
    position: relative;
    background: var(--cream);
}
.tier-monthly {
    background: var(--amber-pale);
    border-color: rgba(212,168,75,0.3);
}
.tier-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.tier-desc {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.tier-savings {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-soft);
}
.tier-savings-best {
    color: var(--gold);
}
.tier-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--gold);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

/* Enrollment Builder */
.enroll-builder {
    padding: 4rem 2rem 5rem;
    background: var(--teal-pale);
}
.enroll-builder-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.step-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.step-num {
    width: 32px;
    height: 32px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Class Selector */
.class-selector {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.class-option {
    display: block;
    cursor: pointer;
    position: relative;
}
.class-option input { display: none; }
.class-option-inner {
    background: var(--white);
    border: 1.5px solid rgba(43,139,126,0.12);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s, box-shadow 0.2s;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.class-option:hover .class-option-inner { border-color: var(--teal-light); }
.class-option-selected .class-option-inner {
    border-color: var(--teal);
    background: rgba(43,139,126,0.04);
    box-shadow: 0 0 0 3px rgba(43,139,126,0.1);
}
.class-option-featured .class-option-inner {
    border-color: rgba(212,168,75,0.3);
    background: var(--amber-pale);
}
.class-option-featured.class-option-selected .class-option-inner {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,75,0.15);
}
.featured-class-ribbon {
    position: absolute;
    top: -1px;
    right: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--gold);
    padding: 0.15rem 0.6rem;
    border-radius: 0 0 8px 8px;
}
.class-option-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.class-option-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 2px solid var(--teal-light);
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
    position: relative;
}
.class-option-selected .class-option-check {
    background: var(--teal);
    border-color: var(--teal);
}
.class-option-selected .class-option-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}
.class-option-name {
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}
.class-option-meta {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 300;
}
.class-option-prices {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    flex-wrap: wrap;
}
.cop-daily, .cop-weekly, .cop-monthly {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-soft);
    padding: 0.2rem 0.55rem;
    background: rgba(43,139,126,0.07);
    border-radius: 100px;
}
.cop-monthly.cop-highlight { color: var(--gold); background: var(--amber-pale); }
.cop-na { color: var(--text-soft); opacity: 0.4; }

/* Tier Selector */
.tier-selector {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.tier-option { display: block; cursor: pointer; }
.tier-option input { display: none; }
.tier-option-inner {
    background: var(--white);
    border: 1.5px solid rgba(43,139,126,0.12);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.tier-option:hover .tier-option-inner { border-color: var(--teal-light); }
.tier-option-selected .tier-option-inner {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(43,139,126,0.1);
}
.tier-option-best.tier-option-selected .tier-option-inner {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,168,75,0.15);
    background: var(--amber-pale);
}
.tier-option-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--teal-light);
    flex-shrink: 0;
    transition: background 0.15s, border-color 0.15s;
    position: relative;
}
.tier-option-selected .tier-option-check {
    background: var(--teal);
    border-color: var(--teal);
}
.tier-option-selected .tier-option-check::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.tier-option-name {
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.tier-option-desc {
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 300;
    margin-top: 0.1rem;
}
.tier-option-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background: var(--teal);
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
}
.tier-badge-gold { background: var(--gold) !important; }

/* Summary / Sticky Column */
.enroll-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1.5px solid rgba(43,139,126,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    position: sticky;
    top: 90px;
}
.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.summary-header h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}
.summary-tier-label {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 400;
}
.summary-empty {
    font-size: 0.88rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    padding: 1rem 0;
}
.summary-class-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(43,139,126,0.07);
    gap: 0.5rem;
}
.summary-class-row:last-child { border-bottom: none; }
.sc-name { font-size: 0.88rem; font-weight: 500; }
.sc-price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--teal); white-space: nowrap; }
.sc-per { font-family: 'Outfit', sans-serif; font-weight: 400; font-size: 0.7rem; color: var(--text-soft); }
.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0.5rem;
    border-top: 2px solid rgba(43,139,126,0.15);
    margin-top: 0.75rem;
}
.summary-total-label { font-weight: 600; font-size: 0.9rem; }
.summary-total-amount {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--teal);
}
.summary-founding {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-soft);
    background: var(--amber-pale);
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    font-weight: 400;
    line-height: 1.4;
}
.enroll-inline-form { margin-top: 0.5rem; }
.enroll-fine-print {
    font-size: 0.75rem;
    color: var(--text-soft);
    font-weight: 300;
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.5;
}

/* Waitlist Card */
.waitlist-card {
    background: var(--cream);
    border: 1px solid rgba(43,139,126,0.12);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.25rem;
    text-align: center;
}
.waitlist-card h4 {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}
.waitlist-card p {
    font-size: 0.82rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.waitlist-form {
    display: flex;
    gap: 0.5rem;
}
.waitlist-form input {
    flex: 1;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid rgba(43,139,126,0.2);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
}
.waitlist-form input:focus { border-color: var(--teal); }
.waitlist-btn {
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.waitlist-btn:hover { background: var(--teal-dark); }

/* Pricing Reference Table */
.pricing-reference {
    padding: 5rem 2rem;
    background: var(--white);
}
.pricing-reference-inner {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
}
.pricing-table-wrap { overflow-x: auto; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 1.25rem;
    min-width: 700px;
}
.pricing-table th {
    background: var(--teal);
    color: white;
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.pricing-table th.best-col { background: var(--gold); }
.pricing-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(43,139,126,0.08);
    vertical-align: middle;
}
.pricing-table tr.table-row-featured td {
    background: var(--amber-pale);
}
.pricing-table td.best-col { background: rgba(212,168,75,0.06); }
.save-note {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
    background: var(--amber-pale);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    margin-left: 0.3rem;
    white-space: nowrap;
}
.pricing-founding-note {
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.6;
    font-weight: 300;
    background: var(--amber-pale);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(212,168,75,0.2);
}

/* ===== IN-PERSON PAGE ===== */
.inperson-overview {
    padding: 5rem 2rem;
}
.inperson-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.inperson-coming-soon {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.inperson-coming-soon h2 { margin-bottom: 1.25rem; }
.inperson-coming-soon p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-soft);
    font-weight: 300;
    margin-bottom: 1rem;
}
.inperson-notify-form {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.75rem;
    flex-wrap: wrap;
}
.inperson-email-input {
    padding: 0.8rem 1.1rem;
    border: 1.5px solid rgba(43,139,126,0.2);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    min-width: 260px;
    transition: border-color 0.2s;
}
.inperson-email-input:focus { border-color: var(--teal); }
.inperson-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.inperson-feat { padding: 1.5rem 1rem; }
.inperson-feat-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}
.inperson-feat h4 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}
.inperson-feat p {
    font-size: 0.85rem;
    color: var(--text-soft);
    font-weight: 300;
    line-height: 1.55;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
    /* Listing page */
    .listing-body { grid-template-columns: 1fr; }
    .listing-pricing-card { position: static; }
    .add-on-grid { grid-template-columns: 1fr; }

    /* Schedule */
    .schedule-table-wrap { display: none; }
    .schedule-cards { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1rem; }
    .sched-card {
        background: var(--white);
        border-radius: 16px;
        padding: 1.25rem 1.5rem;
        border: 1px solid rgba(43,139,126,0.1);
    }
    .sched-card-anchor { background: var(--amber-pale); border-color: rgba(212,168,75,0.2); }
    .sched-card-rotation { background: rgba(43,139,126,0.05); }
    .sched-card-flex { background: var(--cream-dark); }
    .sched-card-time {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--teal);
        margin-bottom: 0.4rem;
    }
    .sched-card-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
    .sched-card-meta { font-size: 0.82rem; color: var(--text-soft); font-weight: 300; }
    .sched-card-note { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.25rem; }
    .rotation-section { padding: 4rem 1.5rem; }
    .flex-slot-grid { grid-template-columns: 1fr; }

    /* Enroll */
    .enroll-builder-inner { grid-template-columns: 1fr; }
    .enroll-summary { position: static; }
    .tier-compare-grid { grid-template-columns: 1fr; }
    .waitlist-form { flex-direction: column; }

    /* In-person */
    .inperson-features { grid-template-columns: 1fr 1fr; }

    /* Listing header */
    .listing-header { flex-direction: column; }
}
@media (max-width: 480px) {
    .inperson-features { grid-template-columns: 1fr; }
    .class-option-prices { display: none; }
    .listing-meta { flex-direction: column; align-items: flex-start; }
    .inperson-notify-form { flex-direction: column; }
    .inperson-email-input { min-width: unset; width: 100%; }
}
