@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');


/* ================================
   GLOBAL
================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0b0b0b;
    color: #f2f2f2;
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

a {
    color: inherit;
}


/* ================================
   TYPOGRAPHY
================================= */

.eyebrow {
    margin: 0 0 25px;
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888888;
}

.section-intro {
    max-width: 680px;
    font-size: 1.25rem;
    color: #bdbdbd;
}


/* ================================
   NAVIGATION
================================= */

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    text-decoration: none;
    color: #999999;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}


/* ================================
   HERO
================================= */

.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    position: absolute;
    right: 5%;
    top: 22%;
    width: 275px;
    height: auto;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    right: -150px;
    top: 10%;
    width: 600px;
    height: 600px;
    border: 1px solid #292929;
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    margin: 0 0 35px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.86;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.hero-intro {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #bdbdbd;
}

.hero-contact {
    margin-top: 35px;
}


/* ================================
   CONTACT BUTTONS
================================= */

.contact-heading {
    margin: 0 0 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f2f2f2 !important;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    min-width: 130px;
    padding: 16px 25px;
    background: #f2f2f2;
    color: #0b0b0b;
    font-size: 0.9rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border: 1px solid #f2f2f2;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: #ffffff;
    color: #0b0b0b;
    transform: translateY(-2px);
}


/* ================================
   SECTIONS
================================= */

section {
    padding: 130px 0;
    border-top: 1px solid #292929;
}

section h2 {
    margin: 0 0 40px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

section p {
    color: #bdbdbd;
}


/* ================================
   LESSONS
================================= */

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.lesson {
    min-height: 260px;
    padding: 35px;
    border: 1px solid #292929;

    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

.lesson:hover {
    background: #151515;
    border-color: #444444;
}

.lesson h3 {
    margin: 0 0 20px;
    font-size: 1.4rem;
}

.lesson p {
    margin: 0;
}

.skills {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid #292929;
}

.skill-list {
    max-width: 900px;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #e0e0e0 !important;
}


/* ================================
   ABOUT
================================= */

.about-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1050px;
}

.about-photo {
    width: 100%;
    overflow: hidden;
    border: 1px solid #292929;
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-text {
    max-width: 650px;
}

.about-text .large-text {
    margin-top: 0;
}

.large-text {
    font-size: clamp(1.8rem, 3vw, 3rem) !important;
    line-height: 1.2;
    color: #f2f2f2 !important;
}


/* ================================
   PRICING
================================= */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 60px 0 40px;
}

.price {
    padding: 35px;
    border: 1px solid #292929;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price span {
    color: #888888;
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price strong {
    font-size: 3rem;
    line-height: 1;
}


/* ================================
   CONTACT
================================= */

.contact {
    padding-bottom: 160px;
}

.contact h2 {
    max-width: 900px;
}

.contact .section-intro {
    margin-bottom: 40px;
}


/* ================================
   SOCIAL LINKS
================================= */

.social-links {
    margin-top: 90px;
    padding-top: 40px;
    border-top: 1px solid #292929;
}

.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-buttons a {
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid #292929;

    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.social-buttons a:hover {
    background: #151515;
    border-color: #555555;
    transform: translateY(-2px);
}


/* ================================
   FOOTER
================================= */

footer {
    border-top: 1px solid #292929;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 40px;

    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner p {
    margin: 0;
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    color: #666666;
}


/* ================================
   MOBILE
================================= */

@media (max-width: 800px) {

    main {
        padding: 0 20px;
    }

    .nav {
        padding: 25px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-logo {
        width: 110px;
        right: 5%;
        top: 15%;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 17vw, 6rem);
    }

    .hero-intro {
        font-size: 1.1rem;
    }

    .contact-buttons {
        width: 100%;
    }

    .contact-buttons .button {
        flex: 1;
        text-align: center;
    }

    section {
        padding: 90px 0;
    }

    .lesson-grid,
    .price-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-layout {
        gap: 45px;
    }

    .about-photo {
        max-width: 500px;
    }

    .lesson {
        min-height: auto;
    }

    .footer-inner {
        padding: 30px 20px;
        flex-direction: column;
        gap: 10px;
    }

}