/* ============================================================
   MAETREYII — RELAXATION MUSIC & SOUND HEALING
   Custom stylesheet — production ready for Netlify
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Brand Tokens)
   ============================================================ */
:root {
    /* Colours */
    --clr-bg:          #D9D1B8;
    --clr-bg-alt:      #E8E2D0;
    --clr-bg-dark:     #1E1408;
    --clr-nav:         #A5843A;
    --clr-gold:        #A5843A;
    --clr-gold-dark:   #7A6B2B;
    --clr-gold-light:  #C9A856;
    --clr-gold-pale:   #F5E8C0;
    --clr-purple:      #9B7DBF;
    --clr-purple-dark: #7A5FA8;
    --clr-purple-light: #C5A7E3;
    --clr-heading:     #6B4E1A;
    --clr-body:        #3D2E18;
    --clr-body-muted:  #7A6040;
    --clr-white:       #FFFFFF;
    --clr-star:        #F5A623;
    --clr-border:      rgba(184, 150, 42, 0.25);

    /* Typography */
    --ff-heading:  'Cormorant Garamond', Georgia, serif;
    --ff-body:     'Lato', sans-serif;

    /* Spacing */
    --section-py:  88px;
    --radius:      10px;
    --radius-sm:   6px;

    /* Effects */
    --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
    --shadow-md:   0 6px 28px rgba(0,0,0,0.10);
    --shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
    --transition:  0.28s ease;

    /* Layout */
    --max-w:       1180px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-body);
    line-height: 1.75;
    font-size: 16px;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5 { font-family: var(--ff-heading); color: var(--clr-heading); line-height: 1.2; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin-inline: auto;
    padding-inline: 24px;
}

.section-heading {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--clr-body-muted);
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 48px;
}

.section-rule {
    width: 56px;
    height: 2px;
    background: var(--clr-gold);
    margin: 14px auto 48px;
    border-radius: 2px;
}

.heading-link {
    color: var(--clr-purple);
    text-decoration: underline;
    text-decoration-color: var(--clr-purple-light);
    text-underline-offset: 5px;
}

.text-link {
    color: var(--clr-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.text-link:hover { color: var(--clr-gold-dark); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--clr-purple);
    color: var(--clr-white);
    box-shadow: 0 4px 16px rgba(155, 125, 191, 0.28);
}
.btn-primary:hover {
    background: var(--clr-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(155, 125, 191, 0.38);
}

.btn-outline {
    background: transparent;
    color: var(--clr-gold);
    border: 2px solid var(--clr-gold);
}
.btn-outline:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-gold-outline {
    background: transparent;
    color: var(--clr-gold-pale);
    border: 2px solid var(--clr-gold-light);
    padding: 16px 48px;
    font-size: 16px;
}
.btn-gold-outline:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
    transform: translateY(-2px);
    border-color: var(--clr-gold);
}

.btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.4);
    margin-top: 8px;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    color: var(--clr-white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--clr-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding-inline: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-text {
    font-family: var(--ff-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--clr-white);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-white);
    transition: width var(--transition);
}
.nav-links a:hover { color: var(--clr-white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--clr-white); font-weight: 700; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: rgba(255,255,255,0.18) !important;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    padding: 7px 18px !important;
    font-weight: 700 !important;
    transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.3) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: 70px;
    inset-inline: 0;
    background: var(--clr-nav);
    padding: 20px 32px 28px;
    z-index: 199;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}
.nav-drawer.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.nav-drawer ul { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer a {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--clr-white); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--clr-bg);
    padding-block-start: 32px;
    padding-block-end: 24px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-body-muted);
    margin-bottom: 14px;
}
.hero-content h1 {
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--clr-heading);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}
.hero-benefits li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.65;
}
.benefit-num {
    min-width: 30px;
    height: 30px;
    background: var(--clr-gold);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Video area */
.hero-video {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--clr-bg-dark);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #1E1408 0%, #3A2510 100%);
    color: rgba(255,255,255,0.65);
    font-family: var(--ff-heading);
    font-size: 17px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background var(--transition);
}
.video-placeholder:hover { background: linear-gradient(135deg, #2A1C0A 0%, #4A3018 100%); }
.play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    transition: border-color var(--transition), color var(--transition);
}
.play-btn:hover { border-color: rgba(255,255,255,0.9); color: var(--clr-white); }

/* ============================================================
   VALUE STRIP
   ============================================================ */
.value-strip {
    background: var(--clr-gold);
    padding-block: 36px;
    overflow: hidden;
}

.value-strip-scroll {
    overflow: hidden;
    width: 100%;
}

.value-strip-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: scroll-marquee 18s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.value-strip-content:hover {
    animation-play-state: paused;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: flex-start;
    text-align: left;
    padding-inline: 32px;
    flex-shrink: 0;
}

.value-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.value-item div {
    display: flex;
    flex-direction: column;
}

.value-item strong {
    display: block;
    color: var(--clr-white);
    font-size: 15px;
    margin-bottom: 2px;
}

.value-item span {
    color: rgba(255,255,255,0.82);
    font-size: 13px;
}

.value-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--clr-bg-alt);
    padding-block: var(--section-py);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testimonial-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.stars { color: var(--clr-star); font-size: 17px; letter-spacing: 1px; }
.testimonial-text {
    font-size: 14.5px;
    font-style: italic;
    color: var(--clr-body);
    line-height: 1.8;
    flex: 1;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--clr-border);
    padding-top: 14px;
}
.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--clr-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--clr-gold-dark);
    flex-shrink: 0;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
.testimonial-footer strong { display: block; font-size: 13.5px; color: var(--clr-heading); }
.testimonial-footer span { font-size: 12px; color: var(--clr-body-muted); }

/* ============================================================
   UPCOMING EVENTS
   ============================================================ */
.events {
    background: var(--clr-bg);
    padding-block: var(--section-py);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.event-card {
    background: var(--clr-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.event-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.event-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.event-img-placeholder--green {
    background: linear-gradient(160deg, #3B5A35 0%, #5E8C52 50%, #3B5A35 100%);
}
.event-img-placeholder--sage {
    background: linear-gradient(160deg, #4A5A3A 0%, #6B7A50 50%, #4A5A3A 100%);
}
.event-img-text {
    text-align: center;
    color: var(--clr-white);
    padding: 24px;
}
.event-img-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 6px;
}
.event-img-title {
    font-family: var(--ff-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
}
.event-img-sub { font-size: 13px; opacity: 0.82; }

.event-body { padding: 24px 28px; }
.event-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 10px;
}
.event-body h3 { font-size: 22px; margin-bottom: 10px; }
.event-body p { font-size: 14.5px; color: var(--clr-body-muted); line-height: 1.7; margin-bottom: 20px; }

/* ============================================================
   CERTIFIED MASTERY
   ============================================================ */
.mastery {
    background: var(--clr-bg-dark);
    padding-block: var(--section-py);
    position: relative;
    overflow: hidden;
}
.mastery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(184,150,42,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.mastery-inner {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.mastery-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-gold-light);
    margin-bottom: 16px;
}
.mastery-inner h2 {
    color: var(--clr-white);
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: 20px;
}
.mastery-inner h2 em { color: var(--clr-gold-light); font-style: normal; }
.mastery-lead {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    max-width: 660px;
    margin-inline: auto;
    margin-bottom: 0;
    line-height: 1.8;
}
.mastery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-block: 44px;
    text-align: left;
}
.mastery-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,150,42,0.28);
    border-radius: var(--radius);
    padding: 24px;
    transition: background var(--transition), border-color var(--transition);
}
.mastery-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(184,150,42,0.5);
}
.mastery-card h4 {
    font-family: var(--ff-heading);
    font-size: 19px;
    color: var(--clr-gold-light);
    margin-bottom: 8px;
}
.mastery-card p { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ============================================================
   PORTAL OF SOUND ALBUM
   ============================================================ */
.album {
    background: var(--clr-bg);
    padding-block: var(--section-py);
}
.album-eyebrow {
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 10px;
}
.album .section-heading em { font-style: italic; color: var(--clr-gold); }
.album-description {
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--clr-body);
}
.album-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 44px;
}
.album-img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--clr-bg-dark);
    position: relative;
}
.album-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.album-img-wrap:hover img { transform: scale(1.04); }
.album-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(160deg, #1A1008 0%, #3A2510 100%);
    color: rgba(255,255,255,0.75);
    font-family: var(--ff-heading);
    font-size: 15px;
    line-height: 1.5;
    gap: 6px;
}
.album-img-placeholder--light {
    background: linear-gradient(160deg, #2A1E08 0%, #5A4020 60%, #3A2A10 100%);
    align-items: center;
    justify-content: center;
    text-align: center;
}
.album-img-placeholder--blue {
    background: linear-gradient(160deg, #0A0A1A 0%, #1A1A3A 100%);
}
.album-artist-name {
    font-size: 26px;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 4px;
    display: block;
}
.album-img-wrap--center { transform: scale(1.04); }

.album-cta { text-align: center; }
.album-cta-sub { margin-top: 14px; font-size: 14px; color: var(--clr-body-muted); }

/* ============================================================
   ABOUT MAETREYII
   ============================================================ */
.about {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-bg {
    position: absolute;
    inset: 0;
    /* REPLACE with:
       background-image: url('../images/maetreyii-water.jpg');
       background-size: cover;
       background-position: center top; */
    background: linear-gradient(160deg, #1A0E04 0%, #2E1E0A 40%, #1A1408 100%);
}
.about-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.44) 55%,
        rgba(0,0,0,0.10) 100%
    );
}
.about-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-block: 88px;
}
.about-box {
    max-width: 480px;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 40px 44px;
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.18);
}
.about-box h2 {
    color: var(--clr-white);
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
}
.about-box p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ============================================================
   FREE RECORDING OPT-IN
   ============================================================ */
.optin {
    background: var(--clr-bg-alt);
    padding-block: var(--section-py);
}
.optin-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.optin-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.optin-img-placeholder {
    aspect-ratio: 2/3;
    background: linear-gradient(160deg, #8B6914 0%, #4A3014 50%, #2A1A08 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 44px 32px 36px;
    color: var(--clr-white);
    text-align: center;
}
.optin-img-placeholder h3 {
    color: var(--clr-white);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 1px;
}
.optin-bonus-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    text-align: center;
}
.optin-bonus-badge span {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 6px;
}
.optin-bonus-badge strong { display: block; font-size: 16px; font-weight: 700; letter-spacing: 1px; }

.optin-form-area h2 {
    font-size: clamp(26px, 3vw, 40px);
    margin-bottom: 14px;
}
.optin-form-area > p {
    color: var(--clr-body-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.optin-form-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.field-group { margin-bottom: 14px; }
.field-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(184,150,42,0.25);
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--clr-body);
    background: var(--clr-bg-alt);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}
.field-group input:focus {
    border-color: var(--clr-gold);
    background: var(--clr-white);
    box-shadow: 0 0 0 3px rgba(184,150,42,0.10);
}
.field-group input::placeholder { color: var(--clr-body-muted); opacity: 0.7; }

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--clr-gold);
    color: var(--clr-white);
    border: none;
    border-radius: 50px;
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(184,150,42,0.28);
    margin-top: 6px;
}
.btn-submit:hover {
    background: var(--clr-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184,150,42,0.38);
}
.privacy-note {
    text-align: center;
    font-size: 12px;
    color: var(--clr-body-muted);
    margin-top: 12px;
}

/* ============================================================
   PREVIOUS EVENTS GALLERY (CAROUSEL)
   ============================================================ */
.gallery {
    background: var(--clr-bg);
    padding-block: var(--section-py);
}
.carousel-wrap { position: relative; }
.carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.carousel-track {
    display: flex;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide { min-width: 100%; }
.carousel-slide img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.slide-placeholder {
    width: 100%;
    aspect-ratio: 16/7;
    background: linear-gradient(135deg, #1A1208, #3A2A10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-family: var(--ff-heading);
    font-size: 18px;
    letter-spacing: 1px;
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.88);
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-heading);
    transition: var(--transition);
    z-index: 2;
    box-shadow: var(--shadow-sm);
    line-height: 1;
}
.carousel-arrow:hover { background: var(--clr-white); box-shadow: var(--shadow-md); }
.carousel-arrow--prev { left: 16px; }
.carousel-arrow--next { right: 16px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(184,150,42,0.28);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--clr-gold);
    width: 26px;
    border-radius: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--clr-nav);
    padding-top: 56px;
    padding-bottom: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo-text {
    display: block;
    font-family: var(--ff-heading);
    font-size: 26px;
    color: var(--clr-white);
    margin-bottom: 12px;
}
.footer-logo { height: 60px; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; }
.social-row { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

.footer-col h4 {
    font-family: var(--ff-heading);
    font-size: 19px;
    color: var(--clr-white);
    margin-bottom: 18px;
    font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--clr-white); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.5;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.55); }
.footer-contact a { color: rgba(255,255,255,0.72); transition: color var(--transition); }
.footer-contact a:hover { color: var(--clr-white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 18px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 960px) {
    :root { --section-py: 64px; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: clamp(26px, 4vw, 40px); }

    .value-strip-content {
        animation: scroll-marquee 16s linear infinite;
    }
    .value-item {
        padding-inline: 20px;
    }
    .value-item strong {
        font-size: 14px;
    }
    .value-item span {
        font-size: 12px;
    }

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

    .events-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

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

    .album-gallery { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
    .album-img-wrap--center { transform: none; }

    .optin-inner { grid-template-columns: 1fr; gap: 40px; max-width: 520px; margin-inline: auto; }

    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 640px) {
    :root { --section-py: 52px; }

    .nav { padding-inline: 20px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-drawer { display: block; }

    .hero { padding-block: 32px; }
    .hero-content h1 { font-size: clamp(22px, 5vw, 32px); margin-bottom: 14px; }
    .hero-benefits { gap: 12px; margin-bottom: 28px; }
    .hero-benefits li { font-size: 13px; line-height: 1.5; gap: 12px; }
    .benefit-num { min-width: 26px; height: 26px; font-size: 12px; }
    .hero-inner { gap: 24px; }
    .hero-video { aspect-ratio: 16 / 9; }

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

    .mastery-inner { padding-inline: 4px; }
    .mastery-grid { grid-template-columns: 1fr; }

    .about-box { padding: 28px 24px; }
    .about-box h2 { font-size: 30px; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding-block: 20px; }
}

@media (max-width: 420px) {
    .btn { padding: 12px 28px; font-size: 14px; }
    .section-heading { font-size: 26px; }
}
