:root {
    --cream: #F5F0E8;
    --warm-black: #1A1714;
    --gold: #B8956A;
    --gold-light: #D4B896;
    --soft-grey: #A89F94;
    --off-white: #FAF8F5;
    --deep-brown: #2C2520;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--warm-black);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ---- Typography ---- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

/* ---- Grain Overlay ---- */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ---- Navigation ---- */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 rgba(184, 149, 106, 0.15);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-black);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft-grey);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--warm-black);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%; left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    animation: fadeSlideDown 1.5s ease 0.5s both;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeUp 1s ease 0.8s both;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--warm-black);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease 1s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--soft-grey);
    max-width: 500px;
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 1.2s both;
}

.hero-cta {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-black);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    animation: fadeUp 1s ease 1.4s both;
}

.hero-cta:hover {
    background: var(--gold);
    color: var(--off-white);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 1s ease 1.8s both;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--soft-grey);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold-light);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollPulse 2s ease infinite;
}

/* ---- Section Shared ---- */
section {
    padding: 7rem 2rem;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--warm-black);
}

.section-text {
    font-size: 1rem;
    color: var(--soft-grey);
    max-width: 650px;
    margin-bottom: 1.5rem;
}

/* ---- About ---- */
.about {
    background: var(--off-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold-light);
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(10%) contrast(1.02);
}

.about-content {
    padding: 2rem 0;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.credential {
    flex: 1;
    min-width: 140px;
}

.credential-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.credential-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft-grey);
    margin-top: 0.3rem;
}

/* ---- Lessons / What You Learn ---- */
.lessons {
    background: var(--deep-brown);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.lessons::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(184, 149, 106, 0.06) 0%, transparent 70%);
}

.lessons .section-heading {
    color: var(--cream);
}

.lessons .section-text {
    color: rgba(245, 240, 232, 0.6);
}

.lesson-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.lesson-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(184, 149, 106, 0.15);
    transition: border-color 0.4s ease, transform 0.4s ease;
    position: relative;
}

.lesson-card:hover {
    border-color: rgba(184, 149, 106, 0.4);
    transform: translateY(-4px);
}

.lesson-card-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    opacity: 0.7;
}

.lesson-card h3 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.lesson-card p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
}

/* ---- For Whom ---- */
.audience {
    background: var(--cream);
}

.audience-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
    margin-top: 2.5rem;
}

.audience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(184, 149, 106, 0.12);
}

.audience-item-marker {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55rem;
}

.audience-item p {
    font-size: 0.95rem;
    color: var(--warm-black);
}

.audience-item span {
    display: block;
    font-size: 0.82rem;
    color: var(--soft-grey);
    margin-top: 0.2rem;
}

/* ---- Testimonial / Quote ---- */
.quote-section {
    background: var(--off-white);
    text-align: center;
    padding: 6rem 2rem;
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 1rem;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--warm-black);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.quote-attr {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-grey);
}

/* ---- Pricing ---- */
.pricing {
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--off-white);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(184, 149, 106, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.03);
}

.pricing-card.featured::before {
    content: attr(data-featured-label);
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off-white);
    background: var(--gold);
    padding: 0.3rem 1rem;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 23, 20, 0.06);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-duration {
    font-size: 0.8rem;
    color: var(--soft-grey);
    margin-bottom: 1.5rem;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--warm-black);
    line-height: 1;
}

.pricing-amount small {
    font-size: 1rem;
    color: var(--soft-grey);
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--soft-grey);
    margin-top: 1rem;
}

/* ---- Contact ---- */
.contact {
    background: var(--deep-brown);
    color: var(--cream);
    text-align: center;
}

.contact .section-heading {
    color: var(--cream);
}

.contact .section-text {
    color: rgba(245, 240, 232, 0.6);
    margin: 0 auto 2.5rem;
}

.contact-email {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-email:hover {
    border-color: var(--gold);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.contact-detail-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 0.4rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.8);
}

.contact-detail-value a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-value a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-links a {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ---- Footer ---- */
footer {
    background: var(--warm-black);
    color: rgba(245, 240, 232, 0.3);
    text-align: center;
    padding: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* ---- Animations ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes scrollPulse {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 900px) {
    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        max-height: 400px;
    }

    .lesson-cards {
        grid-template-columns: 1fr;
    }

    .audience-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    section {
        padding: 5rem 1.5rem;
    }
}

/* ---- Mobile Nav Toggle ---- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--warm-black);
    margin: 6px 0;
    transition: all 0.3s;
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
        z-index: 200;
    }

    .nav-links {
        position: fixed;
        top: 0; right: 0;
        width: 100%; height: 100vh;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .nav-links.open {
        display: flex;
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1rem;
        color: var(--warm-black);
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}
