﻿:root {
    --bg: #f5efe6;.about-hero .hero-copy h1
    --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 {
    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;
}

/* Header */

.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: 12px;
    min-width: 0;
    color: #fff;
    padding-right: 32px; /* increase this */
}

.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;
}
.instagram-icon {
    color: #d94f7a;
    opacity: 0.85;
}
.instagram-link:hover .instagram-icon {
    opacity: 1;
}
.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: hidden;
    margin-left: 10px;
}

    .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 */

.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;
}

/* Dropdown */

.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 */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 860px;
    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('H3.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 {
    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;
}

/* Generic sections */

.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 */

.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 */

.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 */

.reviews,
.subscribe {
    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;
    }

/* Footer */

.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 */

.page-hero {
    min-height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
}

.register-hero {
    background: linear-gradient(180deg, rgba(14, 9, 6, 0.55), rgba(14, 9, 6, 0.68)), linear-gradient(90deg, rgba(12, 8, 5, 0.86), rgba(12, 8, 5, 0.38)), url('H3.png') center/cover no-repeat;
}

.page-hero .hero-copy {
    max-width: 720px;
    padding: 70px 0;
}

/* Register page */

.register-page-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.panel-card,
.light-card,
.ecwid-embed-card,
.ecwid-shell {
    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 {
    padding: 28px;
}

    .panel-card h2,
    .light-card h3,
    .ecwid-header h2 {
        margin: 0 0 12px;
        font-family: Georgia, "Times New Roman", serif;
        color: #2b2119;
        line-height: 1.12;
    }

    .panel-card p,
    .light-card p {
        margin: 0;
        color: #675c52;
        line-height: 1.75;
    }

.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;
}

.register-note {
    margin-top: 20px;
    color: #6a5a4a;
    font-weight: 600;
}

.register-side-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stack-list {
    margin: 0 0 24px;
    padding-left: 18px;
    color: #675c52;
    line-height: 1.8;
}

.register-cta-row,
.contact-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.ecwid-registration-section {
    padding-top: 10px;
}

.ecwid-shell {
    padding: 28px;
}

.ecwid-header {
    text-align: center;
    margin-bottom: 20px;
}

.ecwid-copy {
    margin: 0;
    color: #675c52;
    line-height: 1.75;
}

.ecwid-embed-card {
    padding: 20px;
    background: rgba(255,255,255,0.92);
}

    .ecwid-embed-card .ecwid,
    .ecwid-embed-card #my-store-REGISTERATION,
    .ecwid-embed-card #my-store-HANDPANS {
        width: 100%;
        min-height: 400px;
    }

.registration-top {
    padding: 48px 0 20px;
}

.register-feature-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.register-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(38,24,15,0.10);
    min-height: 100%;
}

    .register-image-card img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        display: block;
    }

.register-title {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.04;
    color: #2b2119;
}

.register-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Handpan page */

.handpan-top {
    padding: 52px 0 20px;
}

.handpan-feature-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.handpan-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);
}

    .handpan-image-card img {
        width: 100%;
        height: 100%;
        min-height: 460px;
        object-fit: cover;
        display: block;
    }

.handpan-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.handpan-title {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.06;
    color: #2b2119;
}

.handpan-info-card p {
    margin: 0;
    color: #675c52;
    line-height: 1.8;
    font-size: 1rem;
}

    .handpan-info-card p + p {
        margin-top: 14px;
    }

.handpan-support-section {
    padding-top: 10px;
}

.handpan-support-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.5fr;
    gap: 24px;
    align-items: start;
}

.btn-dark-outline {
    color: #8a633e;
    border-color: rgba(138,99,62,0.28);
    background: transparent;
}

/* Contact page */

.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,
.info-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;
}

.info-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(70,48,29,0.10);
    box-shadow: 0 18px 40px rgba(38,24,15,0.09);
    padding: 28px;
}

.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;
    }

/* Responsive */

@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 {
            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,
        .register-page-grid,
        .register-feature-grid,
        .handpan-feature-grid,
        .handpan-support-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: 300px;
        }

        .register-image-card img,
        .handpan-image-card img {
            min-height: 280px;
        }

        .map-card {
            min-height: 300px;
        }

        .about-hero .hero-copy h1 {
            font-size: clamp(2.5rem, 4.2vw, 4.6rem);
            line-height: 0.95;
            max-width: 7ch;
        }

    }

    @media (max-width: 640px) {
        .container {
            width: min(var(--container), calc(100% - 24px));
        }

        .glass-card,
        .program-card,
        .review-box {
            padding: 22px;
        }

            .program-card img {
                height: 210px;
            }

        .community-title {
            font-size: 2.1rem;
        }

        .community-image-wrap img {
            height: 250px;
        }

        .subscribe-form,
        .register-cta-row {
            flex-direction: column;
        }

            .subscribe-form input,
            .subscribe-form button,
            .register-cta-row .btn {
                width: 100%;
            }

        .handpan-title {
            font-size: 2rem;
        }

        .handpan-image-card img {
            min-height: 240px;
        }
    }
}

.register-info-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #3e2c1c;
}

.register-info-card strong {
    font-weight: 700;
    color: #2a1a0f; /* darker for emphasis */
}

.soft-badge {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e6c79c, #d4a86a);
    color: #2a1a0f;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}