/* =========================================================
   GLDSPNK GK ACADEMY
   MAIN WEBSITE
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0A0A0A;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --black: #0A0A0A;
    --black-soft: #111111;
    --black-light: #181818;

    --gold: #C9A84C;
    --gold-light: #E8C96A;

    --white: #FFFFFF;
    --off-white: #F0F0F0;
    --muted: #A6A6A6;

    --border: rgba(201, 168, 76, 0.25);

    --max-width: 1200px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;

    min-height: 86px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.brand img {
    width: 185px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;

    color: var(--off-white);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.04em;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.main-nav a:hover {
    color: var(--gold-light);
}

.nav-register {
    padding: 11px 18px;

    border: 1px solid var(--gold);

    color: var(--gold-light) !important;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-register:hover {
    background: var(--gold);
    color: var(--black) !important;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(201, 168, 76, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0A0A0A 0%,
            #111111 55%,
            #0A0A0A 100%
        );
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 80%
    );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;

    width: min(
        760px,
        calc(100% - 48px)
    );

    margin-left: max(
        24px,
        calc((100% - var(--max-width)) / 2)
    );

    padding-top: 80px;
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.hero h1 {
    margin-bottom: 28px;

    font-size: clamp(64px, 9vw, 118px);
    line-height: 0.88;

    font-weight: 900;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text {
    max-width: 580px;

    margin-bottom: 38px;

    color: var(--off-white);

    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   HERO SHAPES
   ========================================================= */

.hero-shape {
    position: absolute;

    border: 1px solid rgba(201, 168, 76, 0.25);

    transform: rotate(45deg);

    pointer-events: none;
}

.hero-shape-one {
    width: 360px;
    height: 360px;

    right: 8%;
    top: 20%;

    border-radius: 32px;
}

.hero-shape-two {
    width: 210px;
    height: 210px;

    right: 22%;
    bottom: 8%;

    border-color: rgba(255, 255, 255, 0.08);
}

.hero-mark {
    position: absolute;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    width: min(370px, 30vw);

    opacity: 0.08;
}

.hero-mark img {
    width: 100%;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.04em;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    background: var(--gold);
    color: var(--black);
}

.button-gold:hover {
    background: var(--gold-light);
}

.button-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.button-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}


/* =========================================================
   CONTENT SECTIONS
   ========================================================= */

.content-section {
    position: relative;

    padding: 130px 0;

    background: var(--white);
    color: var(--black);
}

.content-section:nth-of-type(odd) {
    background: var(--off-white);
}

.section-inner {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: 90px 1fr;

    gap: 60px;
}

.section-label {
    padding-top: 8px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.1em;
}

.section-content {
    max-width: 950px;
}

.section-content h2 {
    margin-bottom: 28px;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;

    letter-spacing: -0.035em;
}

.section-content > p:not(.eyebrow):not(.section-intro) {
    max-width: 720px;

    margin-bottom: 20px;

    color: #444444;

    font-size: 17px;
    line-height: 1.8;
}

.section-intro {
    max-width: 650px;

    margin-bottom: 40px;

    color: #555555;

    font-size: 17px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
    border-top: 1px solid #E2E2E2;
}


/* =========================================================
   DOCUMENT SECTIONS
   ========================================================= */

.document-frame {
    width: 100%;

    padding: 18px;

    background: #FFFFFF;

    border: 1px solid #DCDCDC;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);
}

.document-frame img {
    width: 100%;
    height: auto;
}


/* =========================================================
   OFFER SECTION
   ========================================================= */

.offer-section {
    background: #F0F0F0;
}


/* =========================================================
   SCHEDULE SECTION
   ========================================================= */

.schedule-section {
    background: #FFFFFF;
}


/* =========================================================
   FREE TASTER
   ========================================================= */

.taster-section {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background: var(--black);
}

.taster-inner {
    position: relative;

    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: 280px 1fr;

    align-items: center;

    gap: 70px;
}

.taster-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.taster-mark img {
    width: 190px;

    opacity: 0.35;
}

.taster-content {
    max-width: 700px;
}

.taster-content h2 {
    margin-bottom: 25px;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 0.98;

    letter-spacing: -0.035em;
}

.taster-content > p:not(.eyebrow) {
    max-width: 620px;

    margin-bottom: 32px;

    color: var(--off-white);

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    padding: 130px 24px;

    background:
        linear-gradient(
            135deg,
            #C9A84C,
            #E8C96A
        );

    color: var(--black);

    text-align: center;
}

.final-cta-inner {
    max-width: 850px;
    margin: 0 auto;
}

.final-cta .eyebrow {
    color: var(--black);
}

.final-cta h2 {
    margin-bottom: 36px;

    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.95;

    letter-spacing: -0.04em;
}

.final-cta .button {
    background: var(--black);
    color: var(--white);
}

.final-cta .button:hover {
    background: #222222;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #050505;
    color: var(--white);
}

.footer-inner {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding: 70px 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 50px;
}

.footer-brand img {
    width: 175px;

    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--muted);

    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 12px 28px;
}

.footer-links a {
    color: var(--off-white);

    font-size: 13px;

    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    justify-content: space-between;

    gap: 20px;

    color: #777777;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 76px;
    }

    .main-nav {
        gap: 16px;
    }

    .main-nav a:not(.nav-register) {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-mark {
        right: -8%;
        width: 300px;
    }

    .section-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-label {
        padding-top: 0;
    }

    .taster-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .taster-mark {
        justify-content: flex-start;
    }

    .taster-mark img {
        width: 120px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }
}


@media (max-width: 600px) {

    .header-inner,
    .section-inner,
    .taster-inner,
    .footer-inner,
    .footer-bottom {
        width: min(
            100% - 32px,
            var(--max-width)
        );
    }

    .brand img {
        width: 150px;
    }

    .nav-register {
        padding: 9px 13px;
        font-size: 11px !important;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        width: calc(100% - 32px);
        margin-left: 16px;
        padding-top: 70px;
    }

    .hero h1 {
        font-size: clamp(54px, 17vw, 82px);
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-mark {
        width: 250px;
        right: -20%;
        opacity: 0.06;
    }

    .content-section {
        padding: 85px 0;
    }

    .section-content h2,
    .taster-content h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .document-frame {
        padding: 8px;
    }

    .taster-section {
        padding: 90px 0;
    }

    .final-cta {
        padding: 90px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px;
    }
}

/* =========================================================
   FREE TASTER PAGE
   ========================================================= */

.taster-page-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(201, 168, 76, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0A0A0A 0%,
            #111111 58%,
            #0A0A0A 100%
        );
}

.taster-page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 82%
    );

    pointer-events: none;
}

.taster-page-content {
    position: relative;
    z-index: 3;

    width: min(
        700px,
        calc(100% - 48px)
    );

    margin-left: max(
        24px,
        calc((100% - var(--max-width)) / 2)
    );

    padding-top: 80px;
}

.taster-page-content h1 {
    margin-bottom: 30px;

    font-size: clamp(68px, 10vw, 125px);
    line-height: 0.84;

    font-weight: 900;
    letter-spacing: -0.05em;
}

.taster-page-content h1 span {
    color: var(--gold);
}

.taster-page-content > p:not(.eyebrow) {
    max-width: 570px;

    margin-bottom: 38px;

    color: var(--off-white);

    font-size: 18px;
    line-height: 1.75;
}

.taster-page-mark {
    position: absolute;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    width: min(400px, 32vw);

    opacity: 0.08;
}

.taster-page-mark img {
    width: 100%;
}


/* =========================================================
   TASTER EXPECT
   ========================================================= */

.taster-expect {
    padding: 130px 0;

    background: var(--white);
    color: var(--black);
}

.taster-expect .section-content {
    max-width: 800px;
}


/* =========================================================
   TASTER STEPS
   ========================================================= */

.taster-steps {
    padding: 100px 0;

    background: var(--off-white);
    color: var(--black);
}

.taster-steps-inner {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
}

.taster-step {
    min-height: 280px;

    padding: 42px 38px;

    border-right: 1px solid #D7D7D7;
}

.taster-step:last-child {
    border-right: none;
}

.taster-step > span {
    display: block;

    margin-bottom: 35px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.1em;
}

.taster-step h3 {
    margin-bottom: 14px;

    font-size: 30px;
    line-height: 1;

    letter-spacing: -0.025em;
}

.taster-step p {
    max-width: 270px;

    color: #555555;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   TASTER CTA
   ========================================================= */

.taster-page-cta {
    padding: 130px 24px;

    background: var(--black);

    text-align: center;
}

.taster-page-cta h2 {
    margin-bottom: 38px;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.92;

    letter-spacing: -0.045em;
}

.taster-page-cta .button {
    margin-bottom: 25px;
}

.back-link {
    display: block;

    width: fit-content;

    margin: 0 auto;

    color: var(--muted);

    font-size: 13px;

    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--gold-light);
}


/* =========================================================
   TASTER PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .taster-page-hero {
        min-height: 680px;
    }

    .taster-page-mark {
        right: -8%;
        width: 330px;
    }

    .taster-steps-inner {
        grid-template-columns: 1fr;
    }

    .taster-step {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid #D7D7D7;
    }

    .taster-step:last-child {
        border-bottom: none;
    }
}


@media (max-width: 600px) {

    .taster-page-hero {
        min-height: 650px;
    }

    .taster-page-content {
        width: calc(100% - 32px);
        margin-left: 16px;
        padding-top: 70px;
    }

    .taster-page-content h1 {
        font-size: clamp(58px, 18vw, 84px);
    }

    .taster-page-content > p:not(.eyebrow) {
        font-size: 16px;
    }

    .taster-page-mark {
        width: 260px;
        right: -22%;
        opacity: 0.06;
    }

    .taster-expect {
        padding: 85px 0;
    }

    .taster-steps {
        padding: 70px 0;
    }

    .taster-steps-inner {
        width: calc(100% - 32px);
    }

    .taster-step {
        padding: 35px 25px;
    }

    .taster-page-cta {
        padding: 90px 16px;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 42%,
            rgba(201, 168, 76, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #0A0A0A 0%,
            #111111 58%,
            #0A0A0A 100%
        );
}

.contact-page-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent 82%
    );

    pointer-events: none;
}

.contact-page-content {
    position: relative;
    z-index: 3;

    width: min(
        700px,
        calc(100% - 48px)
    );

    margin-left: max(
        24px,
        calc((100% - var(--max-width)) / 2)
    );

    padding-top: 80px;
}

.contact-page-content h1 {
    margin-bottom: 30px;

    font-size: clamp(68px, 10vw, 125px);
    line-height: 0.84;

    font-weight: 900;
    letter-spacing: -0.05em;
}

.contact-page-content h1 span {
    color: var(--gold);
}

.contact-page-content > p:not(.eyebrow) {
    max-width: 570px;

    margin-bottom: 38px;

    color: var(--off-white);

    font-size: 18px;
    line-height: 1.75;
}

.contact-page-mark {
    position: absolute;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    width: min(400px, 32vw);

    opacity: 0.08;
}

.contact-page-mark img {
    width: 100%;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details {
    padding: 130px 0;

    background: var(--white);
    color: var(--black);
}

.contact-details .section-content {
    max-width: 800px;
}

.contact-email {
    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid #DCDCDC;
}

.contact-email span {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;
}

.contact-email a {
    color: var(--black);

    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;

    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: var(--gold);
}


/* =========================================================
   CONTACT QUICK LINKS
   ========================================================= */

.contact-links {
    padding: 100px 0;

    background: var(--off-white);
}

.contact-links-inner {
    width: min(
        var(--max-width),
        calc(100% - 48px)
    );

    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid #D7D7D7;
    border-bottom: 1px solid #D7D7D7;
}

.contact-link-card {
    min-height: 330px;

    padding: 42px 38px;

    color: var(--black);

    border-right: 1px solid #D7D7D7;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.contact-link-card:last-child {
    border-right: none;
}

.contact-link-card:hover {
    background: #FFFFFF;
}

.contact-link-card > span {
    display: block;

    margin-bottom: 35px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.1em;
}

.contact-link-card h3 {
    margin-bottom: 15px;

    font-size: 30px;
    line-height: 1;

    letter-spacing: -0.025em;
}

.contact-link-card p {
    max-width: 290px;

    margin-bottom: 28px;

    color: #555555;

    font-size: 15px;
    line-height: 1.7;
}

.contact-link-card strong {
    color: var(--black);

    font-size: 12px;
    letter-spacing: 0.03em;

    transition: color 0.2s ease;
}

.contact-link-card:hover strong {
    color: var(--gold);
}


/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact-page-cta {
    padding: 130px 24px;

    background: var(--black);

    text-align: center;
}

.contact-page-cta h2 {
    margin-bottom: 38px;

    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.92;

    letter-spacing: -0.045em;
}


/* =========================================================
   CONTACT PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-page-hero {
        min-height: 680px;
    }

    .contact-page-mark {
        right: -8%;
        width: 330px;
    }

    .contact-links-inner {
        grid-template-columns: 1fr;
    }

    .contact-link-card {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid #D7D7D7;
    }

    .contact-link-card:last-child {
        border-bottom: none;
    }
}


@media (max-width: 600px) {

    .contact-page-hero {
        min-height: 650px;
    }

    .contact-page-content {
        width: calc(100% - 32px);
        margin-left: 16px;
        padding-top: 70px;
    }

    .contact-page-content h1 {
        font-size: clamp(58px, 18vw, 84px);
    }

    .contact-page-content > p:not(.eyebrow) {
        font-size: 16px;
    }

    .contact-page-mark {
        width: 260px;
        right: -22%;
        opacity: 0.06;
    }

    .contact-details {
        padding: 85px 0;
    }

    .contact-links {
        padding: 70px 0;
    }

    .contact-links-inner {
        width: calc(100% - 32px);
    }

    .contact-link-card {
        padding: 35px 25px;
    }

    .contact-page-cta {
        padding: 90px 16px;
    }
}