:root {
    --bg: #f5efe6;
    --panel: rgba(255,255,255,0.10);
    --panel-line: rgba(255,255,255,0.18);
    --text: #f7f1e9;
    --muted: rgba(255,255,255,0.86);
    --gold: #c79a68;
    --gold-2: #e3bf95;
    --header: rgba(130,123,115,0.95);
    --container: 1280px;
    --radius: 28px;
    --shadow: 0 20px 50px rgba(0,0,0,0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #f4eee7 0%, #efe7dc 100%);
    color: #2f2a25;
}

img {
    max-width: 100%;
    display: block;
}

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--header);
    border-bottom: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
}

.nav {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #fff;
}

.brand-logo {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.22);
    flex: 0 0 auto;
}

.brand-name {
    font-weight: 700;
    font-size: 0.96rem;
    color: #fff;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: visible;
}

    .nav-links a,
    .nav-dropdown > a,
    .footer-nav a,
    .text-link {
        transition: color .2s ease, opacity .2s ease;
    }

    .nav-links a,
    .nav-dropdown > a {
        font-size: 0.88rem;
        font-weight: 700;
        color: rgba(255,255,255,0.92);
        white-space: nowrap;
    }

        .nav-links a:hover,
        .nav-dropdown > a:hover {
            color: #fff;
        }

        .nav-links a.active {
            color: #fff;
            position: relative;
        }

            .nav-links a.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -12px;
                height: 2px;
                background: var(--gold);
            }

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    white-space: nowrap;
    flex: 0 0 auto;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(135deg, rgba(199,154,104,0.96), rgba(227,191,149,0.92));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

    .phone-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.16);
    }

.header-mini-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    white-space: nowrap;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

    .header-mini-link:hover {
        color: #fff;
        background: rgba(255,255,255,0.10);
        border-color: rgba(255,255,255,0.28);
    }

.contact-icon {
    font-size: 0.82rem;
    line-height: 1;
}

.instagram-link {
    letter-spacing: 0.01em;
}

.nav-dropdown {
    position: relative;
    flex: 0 0 auto;
}

    .nav-dropdown > a {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

.caret {
    font-size: 0.7rem;
    position: relative;
    top: -1px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 12px;
    background: rgba(40, 30, 20, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    z-index: 100;
}

    .dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.92rem;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
    }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.08);
        }

.nav-dropdown:hover .dropdown-menu {
    display: flex;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    color: #fff;
}

.hero-premium {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-color: #100b07;
    background-image: linear-gradient(90deg, rgba(12, 8, 5, 0.98) 0%, rgba(12, 8, 5, 0.96) 10%, rgba(12, 8, 5, 0.93) 20%, rgba(12, 8, 5, 0.86) 32%, rgba(12, 8, 5, 0.72) 44%, rgba(12, 8, 5, 0.50) 56%, rgba(12, 8, 5, 0.26) 68%, rgba(12, 8, 5, 0.08) 82%, rgba(12, 8, 5, 0.00) 100%), linear-gradient(180deg, rgba(14, 9, 6, 0.08) 0%, rgba(14, 9, 6, 0.18) 42%, rgba(14, 9, 6, 0.40) 72%, rgba(14, 9, 6, 0.62) 100%), url('images/HandpanGroupPlay.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 100% 100%, 100% 100%, 60% auto;
    background-position: center center, center center, right 0%;
}

.hero-premium-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px);
    align-content: center;
    min-height: auto;
    padding: 44px 0 40px;
}

.hero-copy-premium {
    max-width: 620px;
}

.hero-copy h1 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    max-width: 8ch;
}

.lead {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.08rem;
}

.cta-group {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
}

.cta-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-features span {
        font-size: 0.85rem;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.15);
        color: rgba(255,255,255,0.9);
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #dcb081);
    box-shadow: 0 14px 26px rgba(185,139,90,0.25);
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.03);
}

.eyebrow,
.section-label,
.card-label {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.88rem;
    font-weight: 700;
}

.eyebrow-gold,
.section-label-light-gold {
    color: var(--gold);
}

.hero-feature-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.featured-start {
    grid-column: span 1;
}

.glass-card {
    padding: 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(74,48,27,0.22), rgba(18,12,9,0.5));
    border: 1px solid rgba(255,255,255,0.08);
    min-height: 200px;
}

    .glass-card h2,
    .glass-card h3 {
        margin: 0 0 14px;
        font-family: Georgia, "Times New Roman", serif;
        line-height: 1.02;
    }

    .glass-card h2 {
        font-size: 3rem;
        max-width: 9ch;
    }

    .glass-card h3 {
        font-size: 1.8rem;
        max-width: 10ch;
    }

    .glass-card p {
        margin: 0;
        color: rgba(255,255,255,0.84);
        line-height: 1.72;
    }

.text-link-gold {
    color: var(--gold-2);
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
}

.feature-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(199,154,104,0.16);
    color: var(--gold-2);
    font-size: 1.2rem;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f6f0e8, #efe7dc);
}

.section-title,
.section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.8vw, 3.3rem);
    line-height: 1.08;
}

.section-title-dark {
    color: #2f2a25;
}

.section-label {
    color: #9b734b;
}

.community-highlight {
    padding: 56px 0 26px;
    background: linear-gradient(180deg, #f6f0e8 0%, #efe7dc 100%);
    text-align: center;
}

.community-center {
    max-width: 860px;
    margin: 0 auto;
}

.community-title {
    margin: 8px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.1rem);
    line-height: 1.08;
    color: #2b2119;
}

.community-sub {
    margin: 0 0 24px;
    color: #9b734b;
    font-weight: 600;
    font-size: 0.98rem;
}

.community-image-wrap {
    margin: 24px auto 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(38,24,15,0.12);
}

    .community-image-wrap img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
    }

.community-desc {
    max-width: 720px;
    margin: 0 auto 18px;
    color: #675c52;
    line-height: 1.75;
    font-size: 1rem;
}

.community-btn {
    margin-top: 4px;
}

.programs-section {
    padding-top: 22px;
}

.program-section-heading {
    margin-top: 0;
    margin-bottom: 24px;
}

.program-grid,
.program-grid-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.program-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(70,48,29,0.10);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(38,24,15,0.09);
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card-featured {
    border: 1px solid rgba(199,154,104,0.28);
    box-shadow: 0 20px 44px rgba(140,101,63,0.14);
}

.program-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
    display: block;
}

.program-eyebrow {
    margin: 0 0 8px;
    color: #9b734b;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: 700;
}

.program-card h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
    line-height: 1.1;
    color: #2b2119;
}

.program-card p {
    margin: 0;
    color: #675c52;
    line-height: 1.7;
}

.card-cta {
    display: inline-block;
    margin-top: 18px;
    font-weight: 700;
    color: #9b734b;
}

.reviews,
.subscribe,
.page-dark-band {
    background: #100b07;
    color: #fff;
}

.review-box {
    max-width: 760px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.rating {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--gold-2);
}

.review-name {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.82);
}

.subscribe-copy {
    margin: 10px 0 0;
    color: rgba(255,255,255,0.82);
    max-width: 640px;
}

.subscribe-form {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .subscribe-form input {
        min-width: 280px;
        flex: 1 1 320px;
        padding: 14px 16px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.16);
        background: rgba(255,255,255,0.95);
        color: #2f2a25;
        font: inherit;
    }

    .subscribe-form button {
        padding: 14px 22px;
        border-radius: 12px;
        border: none;
        background: linear-gradient(135deg, var(--gold), #dcb081);
        color: #fff;
        font-weight: 700;
        cursor: pointer;
    }

.site-footer {
    background: #1e1712;
    color: rgba(255,255,255,0.88);
    padding: 28px 0 36px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-copy {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.66);
}

.page-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
}

    .page-hero .hero-copy {
        max-width: 720px;
        padding: 70px 0;
    }

.about-hero,
.corporate-hero,
.stress-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.about-hero {
    background: linear-gradient(90deg, rgba(10,7,5,0.88) 0%, rgba(10,7,5,0.74) 34%, rgba(10,7,5,0.40) 58%, rgba(10,7,5,0.18) 100%), linear-gradient(180deg, rgba(18,12,8,0.16) 0%, rgba(18,12,8,0.34) 70%, rgba(18,12,8,0.50) 100%), url('images/GroupClassHandpan.jpg') center right / cover no-repeat;
}

.corporate-hero {
    background: linear-gradient(90deg, rgba(10,7,5,0.90) 0%, rgba(10,7,5,0.76) 34%, rgba(10,7,5,0.44) 58%, rgba(10,7,5,0.20) 100%), linear-gradient(180deg, rgba(18,12,8,0.16) 0%, rgba(18,12,8,0.34) 70%, rgba(18,12,8,0.50) 100%), url('images/H1.png') center right / cover no-repeat;
}

.stress-hero {
    background: linear-gradient(90deg, rgba(10,7,5,0.90) 0%, rgba(10,7,5,0.78) 32%, rgba(10,7,5,0.46) 58%, rgba(10,7,5,0.20) 100%), linear-gradient(180deg, rgba(18,12,8,0.20) 0%, rgba(18,12,8,0.38) 76%, rgba(18,12,8,0.54) 100%), url('images/malte2.jpg') center right / cover no-repeat;
}

.about-hero-copy,
.corporate-hero-copy,
.stress-hero-copy {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.about-hero .hero-copy h1,
.corporate-hero .hero-copy h1,
.stress-hero .hero-copy h1 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.94;
    max-width: 8.5ch;
}

.hero-actions,
.about-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.page-hero .btn-ghost {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.04);
}

.two-col,
.story-grid,
.wide-feature-grid,
.metrics-grid,
.pillar-grid,
.process-grid,
.offer-grid,
.benefit-grid,
.timeline-grid,
.founder-grid,
.cta-strip-grid {
    display: grid;
    gap: 24px;
}

.two-col,
.story-grid,
.founder-grid,
.cta-strip-grid {
    grid-template-columns: 1.15fr 0.95fr;
}

.panel-card,
.light-card,
.ecwid-embed-card,
.ecwid-shell,
.cta-panel,
.dark-panel,
.metric-card,
.pillar-card,
.process-card,
.offer-card,
.benefit-card,
.info-card,
.map-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(70,48,29,0.10);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(38,24,15,0.09);
}

.panel-card,
.light-card,
.cta-panel,
.dark-panel,
.metric-card,
.pillar-card,
.process-card,
.offer-card,
.benefit-card,
.info-card {
    padding: 30px;
}

    .panel-card h2,
    .panel-card h3,
    .light-card h3,
    .cta-panel h2,
    .cta-panel h3,
    .dark-panel h2,
    .dark-panel h3,
    .metric-card h3,
    .pillar-card h3,
    .process-card h3,
    .offer-card h3,
    .benefit-card h3,
    .info-card h3 {
        margin: 0 0 12px;
        font-family: Georgia, "Times New Roman", serif;
        color: #2b2119;
        line-height: 1.08;
    }

    .panel-card p,
    .light-card p,
    .cta-panel p,
    .metric-card p,
    .pillar-card p,
    .process-card p,
    .offer-card p,
    .benefit-card p,
    .info-card p {
        margin: 0;
        color: #675c52;
        line-height: 1.75;
    }

.dark-panel {
    background: linear-gradient(180deg, #744b29, #5c391e);
    color: #fff;
    box-shadow: 0 20px 50px rgba(56,30,14,0.18);
}

    .dark-panel h2,
    .dark-panel h3,
    .dark-panel p {
        color: #fff;
    }

.section-label-light {
    color: rgba(255,255,255,0.72);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
}

.soft-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f2e3d2;
    color: #8a633e;
    font-size: 0.9rem;
    font-weight: 700;
}

.dark-panel .soft-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    color: #fff;
}

.stack-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: #675c52;
    line-height: 1.8;
}

.dark-panel .stack-list {
    color: rgba(255,255,255,0.88);
}

.metric-card {
    text-align: center;
}

.metric-number {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    color: #2b2119;
}

.metric-label {
    color: #7a6a5b;
    font-weight: 700;
}

.metrics-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pillar-grid,
.offer-grid,
.benefit-grid {
    grid-template-columns: repeat(3, 1fr);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #f2e3d2;
    color: #8a633e;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-intro {
    max-width: 860px;
    margin: 0 auto 24px;
    text-align: center;
}

    .page-intro p {
        color: #675c52;
        line-height: 1.8;
        margin: 14px 0 0;
    }

.image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(38,24,15,0.10);
    min-height: 100%;
    background: rgba(255,255,255,0.78);
}

    .image-card img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        display: block;
    }

.cta-strip {
    background: #100b07;
    color: #fff;
}

.cta-strip-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 38px;
}

    .cta-strip-box h2,
    .cta-strip-box p {
        color: #fff;
    }

.cta-strip-copy p {
    color: rgba(255,255,255,0.82);
}

.info-list {
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
    color: #675c52;
}

.btn-dark-outline {
    color: #8a633e;
    border-color: rgba(138,99,62,0.28);
    background: transparent;
}

.contact-top {
    padding: 54px 0 18px;
}

.contact-top-inner {
    max-width: 860px;
}

.contact-page-title {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.06;
    color: #2b2119;
}

.contact-page-lead {
    margin: 0;
    color: #675c52;
    line-height: 1.8;
    font-size: 1.04rem;
    max-width: 760px;
}

.contact-main-section {
    padding-top: 14px;
    padding-bottom: 18px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.contact-info-main,
.contact-form-card,
.map-card {
    border-radius: 24px;
}

.contact-info-main,
.contact-form-card {
    padding: 28px;
}

    .contact-info-main h2,
    .contact-form-card h3,
    .info-card h3 {
        margin: 0 0 12px;
        font-family: Georgia, "Times New Roman", serif;
        color: #2b2119;
        line-height: 1.12;
    }

    .contact-info-main p,
    .contact-form-card p,
    .info-card p {
        margin: 0;
        color: #675c52;
        line-height: 1.75;
    }

.contact-detail-list {
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
    color: #675c52;
}

.contact-form-copy {
    margin-bottom: 18px !important;
}

.contact-form-grid {
    display: grid;
    gap: 14px;
}

.contact-form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.input,
.textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(70,48,29,0.12);
    background: rgba(255,255,255,0.96);
    color: #2f2a25;
    font: inherit;
}

.textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-map-section {
    padding: 26px 0 70px;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    align-items: stretch;
}

.map-card {
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(38,24,15,0.10);
    min-height: 420px;
    background: #eee;
}

    .map-card iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

.program-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* space between badges */
    margin-top: 18px;
}

.soft-badge {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(210, 170, 120, 0.15); /* soft gold */
    color: #6b4b2a;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}
.about-hero {
    min-height: 620px;
    background: linear-gradient(90deg, rgba(10,7,5,0.96) 0%, rgba(10,7,5,0.88) 28%, rgba(10,7,5,0.60) 52%, rgba(10,7,5,0.30) 72%, rgba(10,7,5,0.00) 100%), linear-gradient(180deg, rgba(18,12,8,0.16) 0%, rgba(18,12,8,0.34) 70%, rgba(18,12,8,0.50) 100%), url('images/ToronroZenMusicConcert1.jpg') 95%  / 52% auto no-repeat;
}

    .about-hero .hero-copy h1 {
        font-size: clamp(2.8rem, 5vw, 4.4rem) !important;
        line-height: 0.96;
        max-width: 9ch !important;
    }

    .about-hero .lead {
        font-size: 1rem !important;
        line-height: 1.75;
        max-width: 620px;
    }

@media (max-width: 1480px) {
    .nav {
        gap: 12px;
    }

    .nav-links {
        gap: 10px;
    }

        .nav-links a,
        .nav-dropdown > a {
            font-size: 0.84rem;
        }

    .brand-name {
        font-size: 0.92rem;
    }

    .phone-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .header-mini-link {
        font-size: 0.79rem;
        padding: 8px 11px;
    }
}

@media (max-width: 1380px) {
    .hero-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    .nav {
        grid-template-columns: auto 1fr;
        align-items: center;
    }

    .header-contact {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-top: 2px;
    }

    .nav-links {
        justify-content: flex-end;
        gap: 9px;
    }

        .nav-links a,
        .nav-dropdown > a {
            font-size: 0.82rem;
        }
}

@media (max-width: 1180px) {
    .hero-premium-inner {
        grid-template-columns: 1fr;
    }

    .program-grid,
    .program-grid-three,
    .pillar-grid,
    .offer-grid,
    .benefit-grid,
    .metrics-grid,
    .process-grid,
    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .nav {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 18px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px 16px;
        overflow: visible;
    }

    .header-contact {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .dropdown-menu {
        position: static;
        display: none;
        margin-top: 8px;
        min-width: 100%;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-premium {
        background-size: 100% 100%, 100% 100%, 92% auto;
        background-position: center center, center center, right center;
    }

    .hero-feature-grid,
    .program-grid,
    .program-grid-three,
    .two-col,
    .story-grid,
    .founder-grid,
    .cta-strip-grid,
    .metrics-grid,
    .pillar-grid,
    .process-grid,
    .offer-grid,
    .benefit-grid,
    .timeline-grid,
    .contact-main-grid,
    .contact-map-grid,
    .contact-form-two {
        grid-template-columns: 1fr;
    }

    .community-image-wrap img {
        height: 320px;
    }

    .featured-start {
        grid-column: span 1;
    }

    .page-hero {
        min-height: 520px;
    }

    .image-card img {
        min-height: 280px;
    }

    .map-card {
        min-height: 300px;
    }

    .about-hero .hero-copy h1,
    .corporate-hero .hero-copy h1,
    .stress-hero .hero-copy h1 {
        font-size: clamp(2.5rem, 7vw, 4rem);
        line-height: 0.96;
        max-width: 9ch;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 24px));
    }

    .glass-card,
    .program-card,
    .review-box,
    .panel-card,
    .light-card,
    .dark-panel,
    .metric-card,
    .pillar-card,
    .process-card,
    .offer-card,
    .benefit-card,
    .cta-strip-box,
    .info-card,
    .contact-info-main,
    .contact-form-card {
        padding: 22px;
    }

        .program-card img {
            height: 210px;
        }

    .community-title {
        font-size: 2.1rem;
    }

    .community-image-wrap img {
        height: 250px;
    }

    .subscribe-form,
    .hero-actions,
    .about-hero-actions,
    .contact-cta-row {
        flex-direction: column;
    }

        .subscribe-form input,
        .subscribe-form button,
        .hero-actions .btn,
        .about-hero-actions .btn,
        .contact-cta-row .btn {
            width: 100%;
        }
}
/* About page text sizing fix */
.about-hero h1 {
    font-size: 2.2rem !important;
    line-height: 1.1;
    max-width: 18ch !important;
}

.about-hero .lead {
    font-size: 0.9rem !important;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 900px) {
    .program-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .program-grid-four {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header,
    .hero-header {
        padding: 10px 0;
    }

    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .nav-links,
    .top-contact-row,
    .desktop-contact {
        display: none !important;
    }

    .mobile-menu-toggle,
    .mobile-contact {
        display: flex !important;
        align-items: center;
    }

    .brand {
        max-width: 75%;
        gap: 8px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;
        object-fit: cover;
    }

    .brand-name {
        font-size: 1rem;
        line-height: 1.2;
    }

    .hero,
    .page-hero,
    .hero-premium,
    .about-hero {
        min-height: auto;
        padding: 72px 0 48px;
        background-position: 68% center !important;
        background-size: cover !important;
    }

    .hero-copy,
    .about-hero-copy {
        max-width: 100%;
        padding: 0 6px;
    }

    .hero h1,
    .page-hero h1,
    .about-hero h1 {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .hero p,
    .page-hero p,
    .about-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero .btn,
    .page-hero .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .program-grid,
    .program-grid-three,
    .feature-grid,
    .card-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .program-card,
    .feature-card,
    .info-card {
        padding: 18px;
        border-radius: 18px;
    }

        .program-card img,
        .feature-card img,
        .info-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            object-position: center;
            border-radius: 14px;
        }

    .section {
        padding: 52px 0;
    }

    .section-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .badge-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .soft-badge {
        font-size: 0.82rem;
        padding: 8px 12px;
    }

    .footer-nav,
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .container {
        width: min(100% - 28px, 1200px);
    }
}



/* ===== Just form Classes page refresh ===== */
.classes-hero {
    min-height: auto;
    padding: 110px 0 72px;
    /* background: linear-gradient(135deg, rgba(42, 31, 22, 0.78), rgba(42, 31, 22, 0.42)), url("images/firebase deploy.jpg") center center / cover no-repeat; ===== */
    /*background: linear-gradient(135deg, rgba(42, 31, 22, 0.78), rgba(42, 31, 22, 0.42)), url("images/firebase deploy.jpg") 50% center / 120% no-repeat;*/
    background: linear-gradient( 135deg, rgba(20, 14, 10, 0.92) 0%, rgba(20, 14, 10, 0.75) 35%, rgba(20, 14, 10, 0.45) 60%, rgba(20, 14, 10, 0.25) 100% ), url("images/TorontoZenMusicStudio.png") 50% center / 100% no-repeat;
}

.classes-hero-copy {
    max-width: 760px;
}

.classes-hero h1 {
    max-width: 700px;
    margin: 0 0 18px;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #f8f3ee;
}

.classes-hero .lead {
    max-width: 640px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(248, 243, 238, 0.88);
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .hero-badges span {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 0.92rem;
    }

.section-heading {
    max-width: 820px;
    margin-bottom: 30px;
}

    .section-heading h2 {
        margin: 8px 0 12px;
        font-size: clamp(1.9rem, 3vw, 3rem);
        line-height: 1.08;
        color: #2d2118;
    }

    .section-heading p {
        color: #68584a;
        line-height: 1.8;
    }

.featured-class-card {
    background: #fff;
    border: 1px solid #eadfD3;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(62, 39, 20, 0.08);
}

.featured-class-main {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    margin-bottom: 22px;
}

.featured-class-price {
    background: #f8f2ea;
    border-radius: 22px;
    padding: 22px 18px;
}

.price-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 800;
    color: #b77b3c;
}

.featured-class-price p {
    margin: 0;
    color: #6f6053;
    line-height: 1.7;
}

.featured-class-details h3,
.meta-box h4,
.program-option-card h3,
.panel-card h3,
.cta-panel h3 {
    color: #2d2118;
}

.featured-class-details h3 {
    margin-bottom: 14px;
    font-size: 1.3rem;
}

.featured-class-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.meta-box {
    background: #fcfaf7;
    border: 1px solid #eee3d8;
    border-radius: 20px;
    padding: 18px;
}

    .meta-box h4 {
        margin: 0 0 10px;
        font-size: 0.98rem;
    }

    .meta-box p {
        margin: 0 0 8px;
        color: #6f6053;
        line-height: 1.65;
    }

.class-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.program-option-card {
    background: #fff;
    border: 1px solid #eadfd3;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(62, 39, 20, 0.06);
}

.card-kicker {
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b77b3c;
}

.program-option-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    line-height: 1.2;
}

.program-option-card p,
.program-option-card li,
.class-notes p,
.current-classes-table td,
.current-classes-table th {
    color: #68584a;
}

.option-meta {
    margin: 18px 0;
    padding-top: 14px;
    border-top: 1px solid #eee3d8;
}

    .option-meta p {
        margin: 0 0 6px;
    }

.current-classes-table-wrap {
    background: #fff;
    border: 1px solid #eadfd3;
    border-radius: 24px;
    padding: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(62, 39, 20, 0.05);
}

.current-classes-table {
    width: 100%;
    border-collapse: collapse;
}

    .current-classes-table thead th {
        text-align: left;
        font-size: 0.92rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #2d2118;
        background: #f7f1ea;
    }

    .current-classes-table th,
    .current-classes-table td {
        padding: 16px 14px;
        border-bottom: 1px solid #eee4da;
        vertical-align: top;
    }

    .current-classes-table tbody tr:hover {
        background: #fcfaf7;
    }

.class-notes {
    padding: 18px 8px 4px;
}

    .class-notes p {
        margin: 0 0 8px;
        line-height: 1.7;
    }

.cta-final {
    align-items: stretch;
}

/* nicer list spacing */
    .stack-list {
    margin: 0;
    padding-left: 18px;
}

    .stack-list li {
        margin-bottom: 8px;
        line-height: 1.7;
    }

/* responsive */
@media (max-width: 1100px) {
    .featured-class-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .class-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .featured-class-main {
        grid-template-columns: 1fr;
    }

    .featured-class-meta {
        grid-template-columns: 1fr;
    }

    .classes-hero {
        padding: 90px 0 60px;
    }
}

@media (max-width: 640px) {
    .classes-hero h1 {
        font-size: 2.2rem;
        line-height: 1.02;
    }

    .hero-badges {
        gap: 8px;
    }

        .hero-badges span {
            font-size: 0.85rem;
            padding: 8px 12px;
        }

    .featured-class-card,
    .program-option-card,
    .current-classes-table-wrap {
        padding: 16px;
        border-radius: 18px;
    }

    .current-classes-table th,
    .current-classes-table td {
        padding: 12px 10px;
        font-size: 0.92rem;
    }
}