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

html{
    scroll-behavior: smooth;
}

body{
    background: #060606;
    color: #F1F0ED;
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}


/* =========================
   NAVIGATION
   ========================= */

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding: 0 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background: rgba(5,5,5,0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#nametransit{
    text-decoration: none;
}

#name{
    color: #F1F0ED;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 500;
}

nav ul{
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

nav ul li{
    list-style: none;
}

nav ul a{
    position: relative;
    padding: 5px 0;

    color: #B8B6B1;
    text-decoration: none;

    font-size: 14px;

    transition: color 0.3s ease;
}

nav ul a::after{
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #F1F0ED;

    transition: width 0.3s ease;
}

nav ul a:hover{
    color: #F1F0ED;
}

nav ul a:hover::after{
    width: 100%;
}


/* =========================
   GENERAL
   ========================= */

.sectionLabel{
    display: block;

    color: #777571;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 3px;
    text-transform: uppercase;
}


/* =========================
   HERO
   ========================= */

.guidesHero{
    min-height: 72vh;

    padding: 160px 8vw 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 75% 30%,
            #191919 0%,
            #090909 45%,
            #060606 100%
        );

    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.guidesHero h1{
    max-width: 950px;

    margin-top: 28px;

    font-family: "Playfair Display", serif;

    font-size: clamp(60px, 8vw, 110px);

    font-weight: 400;

    line-height: 0.96;

    letter-spacing: -5px;
}

.guidesHero h1 span{
    color: #D7C09D;
}

.guidesHero p{
    max-width: 620px;

    margin-top: 38px;

    color: #999792;

    font-size: 18px;
    line-height: 1.75;
}


/* =========================
   CONTENT
   ========================= */

.guidesContent{
    max-width: 1100px;

    margin: auto;

    padding: 120px 30px 140px;
}

.sectionIntro{
    max-width: 700px;

    margin-bottom: 80px;
}

.sectionIntro h2{
    margin-top: 25px;
    margin-bottom: 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -3px;
}

.sectionIntro p{
    color: #999792;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================
   GUIDE CARDS
   ========================= */

.guidesGrid{
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;
}

.guideCard{
    min-height: 430px;

    padding: 32px;

    display: flex;
    flex-direction: column;

    color: inherit;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.01)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.guideCard:not(.comingSoon):hover{
    transform: translateY(-6px);

    border-color: rgba(255,255,255,0.25);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.015)
        );
}

.guideNumber{
    color: #686662;

    font-size: 10px;

    letter-spacing: 2px;
}

.guideText{
    margin-top: auto;
}

.guideText > span{
    color: #777571;

    font-size: 9px;

    letter-spacing: 2.5px;
}

.guideText h3{
    margin-top: 18px;

    color: #F1F0ED;

    font-family: "Playfair Display", serif;

    font-size: clamp(28px, 3vw, 40px);

    font-weight: 400;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.guideText p{
    margin-top: 20px;

    color: #85837F;

    font-size: 14px;

    line-height: 1.7;
}

.readGuide{
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: 28px;

    color: #F1F0ED;

    font-size: 14px;
}

.readGuide span{
    font-size: 22px;

    transition: transform 0.3s ease;
}

.guideCard:hover .readGuide span{
    transform: translateX(5px);
}


/* =========================
   COMING SOON
   ========================= */

.comingSoon{
    opacity: 0.55;

    cursor: default;
}

.comingSoonText{
    display: inline-block;

    margin-top: 28px;

    color: #686662;

    font-size: 9px;

    letter-spacing: 3px;
}


/* =========================
   CTA
   ========================= */

.guidesCTA{
    margin-top: 100px;

    padding: 60px 40px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.1);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at center,
            #181818 0%,
            #070707 70%
        );
}

.guidesCTA > span{
    color: #777571;

    font-size: 9px;

    letter-spacing: 3px;
}

.guidesCTA h2{
    max-width: 650px;

    margin: 20px auto 0;

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 5vw, 70px);

    font-weight: 400;

    line-height: 1;

    letter-spacing: -3px;
}

.ctaButton{
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 35px;

    padding: 16px 22px;

    color: #F1F0ED;

    text-decoration: none;

    font-size: 16px;

    border: 1px solid rgba(235,230,220,0.45);

    border-radius: 8px;

    background: rgba(255,255,255,0.015);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ctaButton:hover{
    background: rgba(255,255,255,0.05);

    border-color: rgba(245,240,230,0.8);

    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(255,255,255,0.07),
        0 12px 35px rgba(0,0,0,0.3);
}

.ctaButton span{
    font-size: 24px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.ctaButton:hover span{
    transform: translateX(5px);
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px){

    nav{
        height: 65px;

        padding: 0 20px;
    }

    #name{
        font-size: 21px;
    }

    nav ul{
        gap: 15px;
    }

    nav ul a{
        font-size: 11px;
    }

    .guidesHero{
        min-height: 85vh;

        padding: 120px 25px 80px;
    }

    .guidesHero h1{
        font-size: clamp(52px, 14vw, 70px);

        letter-spacing: -3px;
    }

    .guidesHero p{
        font-size: 15px;
    }

    .guidesContent{
        padding: 80px 25px 100px;
    }

    .sectionIntro{
        margin-bottom: 60px;
    }

    .sectionIntro h2{
        font-size: 48px;

        letter-spacing: -2px;
    }

    .sectionIntro p{
        font-size: 15px;
    }

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

    .guideCard{
        min-height: 390px;
    }

    .guidesCTA{
        margin-top: 70px;

        padding: 40px 25px;
    }

    .guidesCTA h2{
        font-size: 45px;
    }

}
/* =========================================
   ARTICLE PAGE
   ========================================= */

.articleHero {
    min-height: 75vh;
    padding: 160px 8vw 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 75% 30%,
            #191919 0%,
            #090909 45%,
            #060606 100%
        );

    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.articleHero h1 {
    max-width: 1050px;

    margin-top: 30px;

    color: #F1F0ED;

    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 95px);

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -4px;
}

.heroIntro {
    max-width: 680px;

    margin-top: 38px;

    color: #999792;

    font-size: 18px;

    line-height: 1.75;
}


/* =========================================
   ARTICLE CONTENT
   ========================================= */

.articleContent {
    max-width: 920px;

    margin: 0 auto;

    padding: 110px 30px 140px;
}

.articleIntro {
    max-width: 760px;

    margin-bottom: 110px;
}

.articleIntro p,
.articleSection > p {
    color: #999792;

    font-size: 17px;

    line-height: 1.85;

    margin-bottom: 25px;
}

.articleIntro strong,
.articleSection strong {
    color: #F1F0ED;

    font-weight: 500;
}


/* =========================================
   SECTIONS
   ========================================= */

.articleSection {
    padding: 95px 0;

    border-top: 1px solid rgba(255,255,255,0.08);
}

.articleSection h2 {
    max-width: 820px;

    margin: 24px 0 35px;

    color: #F1F0ED;

    font-family: "Playfair Display", serif;

    font-size: clamp(43px, 5vw, 68px);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -3px;
}


/* =========================================
   HIGHLIGHT
   ========================================= */

.highlightBox {
    margin-top: 55px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 15px;

    background: rgba(255,255,255,0.025);
}

.highlightBox span {
    display: block;

    color: #777571;

    font-size: 9px;

    letter-spacing: 3px;
}

.highlightBox strong {
    display: block;

    margin-top: 12px;

    color: #D7C09D;

    font-family: "Playfair Display", serif;

    font-size: 30px;

    font-weight: 400;
}


/* =========================================
   FACTOR CARDS
   ========================================= */

.factorGrid {
    margin-top: 65px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.factorCard {
    min-height: 260px;

    padding: 30px;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.01)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.factorCard:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,0.23);
}

.factorCard > span {
    color: #686662;

    font-size: 10px;

    letter-spacing: 2px;
}

.factorCard h3 {
    margin: 55px 0 15px;

    color: #F1F0ED;

    font-size: 26px;

    font-weight: 400;

    letter-spacing: -1px;
}

.factorCard p {
    color: #85837F;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   FORMULA
   ========================================= */

.formulaBox {
    margin: 55px 0;

    padding: 40px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at center,
            #171717 0%,
            #090909 70%
        );
}

.formulaBox > span {
    color: #777571;

    font-size: 9px;

    letter-spacing: 3px;
}

.formula {
    margin: 35px auto 20px;

    color: #D7C09D;

    font-family: "Playfair Display", serif;

    font-size: clamp(27px, 4vw, 42px);

    line-height: 1.25;
}

.formulaBox p {
    color: #85837F;

    font-size: 15px;
}


/* =========================================
   LIST
   ========================================= */

.articleList {
    margin: 35px 0;

    padding-left: 25px;
}

.articleList li {
    margin-bottom: 13px;

    padding-left: 8px;

    color: #999792;

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================
   QUOTE
   ========================================= */

.quoteBox {
    margin: 45px 0 0;

    padding: 35px 0;

    border-top: 1px solid rgba(255,255,255,0.12);

    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.quoteBox p {
    color: #D7C09D;

    font-family: "Playfair Display", serif;

    font-size: clamp(26px, 3vw, 38px);

    line-height: 1.25;
}


/* =========================================
   CTA
   ========================================= */

.finalCTA {
    margin-top: 65px;

    padding: 45px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at center,
            #181818 0%,
            #070707 70%
        );
}

.finalCTA > span {
    display: block;

    color: #777571;

    font-size: 9px;

    letter-spacing: 3px;
}

.finalCTA h3 {
    max-width: 650px;

    margin: 18px auto 0;

    color: #F1F0ED;

    font-family: "Playfair Display", serif;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -2px;
}


/* =========================================
   CTA BUTTON
   ========================================= */

.ctaButton {
    display: inline-flex;

    align-items: center;

    gap: 25px;

    margin-top: 32px;

    padding: 16px 22px;

    color: #F1F0ED;

    text-decoration: none;

    font-size: 16px;

    border: 1px solid rgba(235,230,220,0.45);

    border-radius: 8px;

    background: rgba(255,255,255,0.015);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ctaButton:hover {
    background: rgba(255,255,255,0.05);

    border-color: rgba(245,240,230,0.8);

    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(255,255,255,0.07),
        0 12px 35px rgba(0,0,0,0.3);
}

.ctaButton span {
    font-size: 24px;

    line-height: 1;

    transition: transform 0.3s ease;
}

.ctaButton:hover span {
    transform: translateX(5px);
}


/* =========================================
   FAQ
   ========================================= */

.faqSection {
    padding-bottom: 20px;
}

.faqItem {
    padding: 30px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faqItem h3 {
    margin-bottom: 15px;

    color: #F1F0ED;

    font-size: 23px;

    font-weight: 400;

    letter-spacing: -0.5px;
}

.faqItem p {
    max-width: 760px;

    color: #85837F;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .articleHero {
        min-height: 85vh;

        padding: 120px 25px 80px;
    }

    .articleHero h1 {
        margin-top: 25px;

        font-size: clamp(48px, 13vw, 65px);

        letter-spacing: -2.5px;
    }

    .heroIntro {
        font-size: 15px;

        line-height: 1.7;
    }

    .articleContent {
        padding: 75px 25px 100px;
    }

    .articleIntro {
        margin-bottom: 70px;
    }

    .articleIntro p,
    .articleSection > p {
        font-size: 15px;

        line-height: 1.8;
    }

    .articleSection {
        padding: 70px 0;
    }

    .articleSection h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .factorGrid {
        grid-template-columns: 1fr;

        margin-top: 45px;

        gap: 18px;
    }

    .factorCard {
        min-height: 240px;
    }

    .highlightBox,
    .formulaBox,
    .finalCTA {
        padding: 25px;
    }

    .highlightBox strong {
        font-size: 26px;
    }

    .formula {
        font-size: 29px;
    }

    .articleList li {
        font-size: 15px;
    }

    .quoteBox p {
        font-size: 28px;
    }

    .finalCTA h3 {
        font-size: 38px;
    }
}