/* ================================================================
   MUNAYLEBEN V3 — EDITORIAL / MAGAZINE DESIGN
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   Palette: cream/sand base, gold/terracotta accents, dark sections
   ================================================================ */

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

:root {
    --gold: #C4993B;
    --gold-light: #D4A843;
    --gold-pale: #E8D5A3;
    --gold-dark: #9A7520;
    --terra: #B85C38;
    --dark: #1A1A2E;
    --dark-deep: #12121F;
    --light: #FDFAF4;
    --sand: #F0E6D6;
    --sand-light: #F8F3EB;
    --text: #2C1E14;
    --text-mid: #5A4636;
    --text-light: #7A6B5E;
    --white: #FFFFFF;
    --forest: #2D4A3E;
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    font-weight: 300;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
}

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

.stag {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

section h2 em {
    font-style: italic;
    color: var(--gold-dark);
}

.sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}

.text-center .sub {
    margin: 0 auto;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s;
}

.nav.scrolled {
    background: rgba(253, 250, 244, .97);
    backdrop-filter: blur(20px);
    padding: .8rem 2rem;
    box-shadow: 0 1px 0 rgba(196, 153, 59, .15);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 400;
    transition: color .3s;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s cubic-bezier(.16, 1, .3, 1);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: .6rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: .85rem !important;
    transition: all .3s !important;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 1.5px;
    background: var(--dark);
    transition: all .3s;
}

/* ── BUTTONS ── */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .4s;
    box-shadow: 0 6px 25px rgba(196, 153, 59, .3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(196, 153, 59, .4), 0 0 60px rgba(196, 153, 59, .15);
}

.btn-gold:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(196, 153, 59, .3);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 1.5px solid var(--text-mid);
    color: var(--text);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .8);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    transition: all .4s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── HERO: SPLIT SCREEN ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: var(--light);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 2rem 2rem 4rem;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--gold);
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--terra));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 153, 59, .2);
}

.h-stat {
    text-align: left;
}

.h-stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark);
    font-weight: 600;
}

.h-stat span {
    font-size: .85rem;
    color: var(--text-light);
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/2;
    box-shadow: 0 30px 80px rgba(44, 30, 20, .15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── ANDEAN ZIGZAG BORDER STRIP ── */
.andes-border {
    width: 100%;
    height: 24px;
    overflow: hidden;
    background: var(--light);
}

.andes-border svg {
    width: 100%;
    height: 24px;
    display: block;
}

.andes-border--light {
    background: var(--dark);
}

.andes-border--light svg path:first-child {
    stroke: #E8D5A3;
}

.andes-border--light svg path:last-child {
    stroke: #D4734A;
}

/* ── LEAD MAGNET ── */
.lead-magnet {
    background: var(--sand-light);
    padding: 6rem 0;
}

.lead-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.lead-overline {
    display: inline-block;
    background: rgba(45, 74, 62, .1);
    color: var(--forest);
    font-size: .85rem;
    font-weight: 700;
    padding: .5rem 1.5rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 74, 62, .15);
}

.lead-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.lead-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.lead-checks {
    list-style: none;
    text-align: left;
    max-width: 420px;
    margin: 0 auto 2rem;
}

.lead-checks li {
    padding: .5rem 0;
    font-size: 1.05rem;
    color: var(--text);
    position: relative;
    padding-left: 1.8rem;
}

.lead-checks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .85rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.lead-note {
    font-size: .85rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* ── WISDOM (Dark section) ── */
.wisdom {
    background: linear-gradient(180deg, #1A1A2E 0%, #1E1520 40%, #1A1A2E 100%);
    padding: 6rem 0;
    position: relative;
}

.wisdom .stag {
    color: var(--gold-light);
}

.wisdom h2 {
    color: var(--sand);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wisdom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(196, 153, 59, .15);
}

.wisdom-item {
    padding: 2.5rem;
    border-right: 1px solid rgba(196, 153, 59, .1);
    transition: all .4s;
}

.wisdom-item:last-child {
    border-right: none;
}

.wisdom-item:hover {
    background: rgba(196, 153, 59, .04);
}

.wisdom-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    opacity: .4;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.wisdom-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold-pale);
    margin-bottom: .8rem;
    font-weight: 500;
}

.wisdom-item p {
    color: rgba(240, 230, 214, .55);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ── STEPS ── */
.steps-section {
    background: var(--light);
    padding: 6rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    background: var(--light);
}

.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: .6rem;
    font-weight: 600;
}

.step p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
    max-width: 260px;
    margin: 0 auto;
}

/* ── COURSES: ELEGANT NUMBERED LIST ── */
.courses {
    background: var(--sand-light);
    padding: 6rem 0;
}

.courses-head {
    margin-bottom: 3rem;
}

.course-list {
    max-width: 800px;
    margin: 0 auto;
}

.course-item {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(196, 153, 59, .12);
    transition: all .3s;
}

.course-item:first-child {
    border-top: 1px solid rgba(196, 153, 59, .12);
}

.course-item:hover {
    padding-left: .5rem;
}

.course-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    min-width: 2rem;
}

.course-body {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    flex-wrap: wrap;
}

.course-body strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
}

.course-dash {
    color: var(--gold);
    font-weight: 300;
}

.course-desc {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 300;
}

.course-extra {
    max-width: 800px;
    margin: 2rem auto 0;
    color: var(--text-mid);
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

/* ── FEATURES STRIP: HORIZONTAL SCROLL TAGS ── */
.features-strip {
    background: var(--dark);
    padding: 1.8rem 0;
    overflow: hidden;
}

.features-scroll {
    overflow: hidden;
    position: relative;
}

.features-track {
    display: flex;
    gap: 1rem;
    animation: scrollTags 40s linear infinite;
    width: max-content;
}

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

.ftag {
    display: inline-block;
    padding: .6rem 1.4rem;
    border: 1px solid rgba(196, 153, 59, .3);
    border-radius: 50px;
    color: var(--gold-pale);
    font-size: .9rem;
    font-weight: 400;
    white-space: nowrap;
    transition: all .3s;
    flex-shrink: 0;
}

.ftag:hover {
    border-color: var(--gold);
    background: rgba(196, 153, 59, .1);
}

/* ── TESTIMONIALS: LARGE PULL-QUOTES ── */
.testimonials {
    background: var(--sand);
    padding: 6rem 0;
}

.testimonial-slider {
    position: relative;
    min-height: 200px;
    margin-top: 3rem;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity .8s ease;
    text-align: center;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.pull-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.pull-author {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: .6rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
    padding: 0;
}

.dot.active {
    background: var(--gold);
}

.dot:hover {
    background: var(--gold-light);
}

/* ── ABOUT: ASYMMETRIC LAYOUT ── */
.about {
    background: var(--white);
    padding: 0;
    overflow: hidden;
}

.about-inner {
    display: grid;
    grid-template-columns: .45fr .55fr;
    min-height: 600px;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}

.about-image-wrap:hover img {
    transform: scale(1.03);
}

.about-text {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-text .btn-gold {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ── PRICING: SIMPLE CENTERED BLOCK ── */
.pricing {
    background: var(--light);
    padding: 6rem 0;
}

.price-block {
    max-width: 520px;
    margin: 3rem auto 0;
    text-align: center;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .3rem;
    line-height: 1;
}

.price-amount span {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
}

.price-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.price-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.price-benefits li {
    padding: .6rem 0;
    font-size: 1.05rem;
    color: var(--text);
    position: relative;
    padding-left: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.price-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.price-trust {
    font-size: .85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ── FAQ ── */
.faq {
    background: var(--sand-light);
    padding: 6rem 0;
}

.faq-list {
    max-width: 700px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: .7rem;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .3s;
}

.faq-item:hover {
    border-color: rgba(196, 153, 59, .15);
    box-shadow: 0 4px 20px rgba(196, 153, 59, .06);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--dark);
    text-align: left;
    font-weight: 600;
    gap: 1rem;
}

.faq-q:hover {
    color: var(--gold-dark);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform .4s;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.16, 1, .3, 1);
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 1.8rem 1.4rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 300;
}

/* ── FINAL CTA ── */
.final-cta {
    background: linear-gradient(180deg, #12121F 0%, #1A1520 50%, #1A1A2E 100%);
    text-align: center;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(196, 153, 59, .15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 60%, rgba(184, 92, 56, .1) 0%, transparent 40%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: var(--sand);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.final-cta .sub {
    color: rgba(240, 230, 214, .6);
    margin: 0 auto 2.5rem;
}

.final-cta .stag {
    color: var(--gold-light);
}

.final-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-note {
    color: rgba(240, 230, 214, .4);
    font-size: .88rem;
    margin-top: 2rem;
}

/* ── FOOTER ── */
.footer {
    background: linear-gradient(180deg, var(--dark-deep) 0%, #08081A 100%);
    color: var(--sand);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, rgba(196, 153, 59, .4) 50%, transparent 95%);
}

.f-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.f-brand p {
    color: rgba(240, 230, 214, .3);
    font-size: .85rem;
    line-height: 1.7;
    margin-top: .8rem;
    font-weight: 300;
}

.footer h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-pale);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: .5rem;
}

.footer a {
    color: rgba(240, 230, 214, .35);
    text-decoration: none;
    font-size: .85rem;
    transition: color .3s;
    font-weight: 300;
}

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

.f-social {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}

.f-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 230, 214, .4);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    transition: all .3s;
}

.f-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 1.5rem;
    text-align: center;
}

.f-bottom p {
    color: rgba(240, 230, 214, .2);
    font-size: .85rem;
}

/* ── MOBILE STICKY ── */
.mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .8rem 1rem;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .1);
    z-index: 999;
}

.mobile-sticky a {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: .85rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
}

/* ── COOKIE BAR ── */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, .97);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.5rem;
    z-index: 9999;
    border-top: 1px solid rgba(196, 153, 59, .15);
    display: none;
    border-radius: 20px 20px 0 0;
}

.cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-inner p {
    color: rgba(240, 230, 214, .6);
    font-size: .85rem;
    margin: 0;
    flex: 1;
}

.cookie-inner a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: .6rem;
}

.cookie-btns button {
    padding: .6rem 1.5rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: var(--gold);
    color: var(--white);
    transition: all .3s;
}

.cookie-reject {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid rgba(196, 153, 59, .3) !important;
}

/* ── FX: GRAIN OVERLAY ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.wisdom-grid .wisdom-item:nth-child(1) { transition-delay: .05s; }
.wisdom-grid .wisdom-item:nth-child(2) { transition-delay: .15s; }
.wisdom-grid .wisdom-item:nth-child(3) { transition-delay: .25s; }
.steps .step:nth-child(1) { transition-delay: .05s; }
.steps .step:nth-child(2) { transition-delay: .15s; }
.steps .step:nth-child(3) { transition-delay: .25s; }
.course-list .course-item:nth-child(n) { transition-delay: calc(var(--i, 0) * .06s); }

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
    .hero-inner {
        gap: 2.5rem;
        padding: 2rem;
    }

    .wisdom-grid {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .wisdom-item {
        border-right: none;
        border-bottom: 1px solid rgba(196, 153, 59, .1);
        padding: 2rem 1.5rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        max-height: 450px;
    }

    .about-text {
        padding: 3rem 2rem;
    }

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

@media (max-width: 768px) {
    .nav {
        padding: .8rem 1.2rem;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(253, 250, 244, .98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        aspect-ratio: 16/10;
    }

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

    .steps::before {
        display: none;
    }

    .course-body {
        flex-direction: column;
        gap: .2rem;
    }

    .course-dash {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        max-height: 350px;
    }

    .about-text {
        padding: 2.5rem 1.5rem;
    }

    .about-text .btn-gold {
        align-self: center;
    }

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

    .mobile-sticky {
        display: block;
    }

    .footer {
        padding-bottom: 5rem;
    }

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

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .pull-quote {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .h-stat strong {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .course-num {
        font-size: 1rem;
        min-width: 1.5rem;
    }

    .course-body strong {
        font-size: 1.1rem;
    }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .features-track {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}
