@font-face {
    font-family: "Cormorant Garamond";
    src: url("../assets/fonts/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #FFFAE7;
    font-family: "Inter", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0;
}

.logo-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    line-height: 1;
    font-weight: 600;
    color: #661414;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-name span {
    display: block;
}

.nav-items a {
    color: #661414;
    font-family: "Inter", sans-serif;
    font-weight: 600;

    position: relative;

    padding: 8px 12px;
    border-radius: 8px;

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

.nav-items a.active::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 1px;

    width: 20px;
    height: 2px;

    background-color: #8A2A2A;
    border-radius: 999px;

    transform: translateX(-50%);
}

.nav-items a.active:hover {
    background-color: transparent;
}

.nav-items a:hover {
    background-color: rgba(102, 20, 20, 0.10);
    color: #661414;
}

#headerContainer {
    position: sticky;
    top: 0;
    z-index: 1000;

    background-color: rgba(248, 238, 215, 0.72);

    box-shadow: 0 4px 12px rgba(102, 20, 20, 0.05);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.7s ease,
        opacity 0.7s ease;
}

#headerContainer.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-link img {
    width: 150px;
    height: auto;
    display: block;
}

.nav-items {
    display: flex;
    align-items: center;

    gap: 40px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.hero {
    min-height: calc(100vh - 110px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
    padding: 100px 20px 60px;

    position: relative;
    isolation: isolate;

    background-color: #FFFAE7;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 768px auto;

    opacity: 0.5;

    z-index: -1;
}


/* Badge */

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    margin-bottom: 45px;

    background-color: rgba(248, 238, 215, 0.72);
    color: #661414;

    border-radius: 999px;
}

#heroBadgeText {
    transition: opacity 0.8s ease;
}

#heroBadgeText.fade-out {
    opacity: 0;
}

.menu-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}


/* Titel */

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 78px;
    line-height: 0.9;
    font-weight: 500;
    color: #661414;
}

.hero h1 span {
    display: block;
    color: #8A2A2A;
}


/* Beschrijving */

.hero p {
    max-width: 650px;

    margin: 28px auto 0;

    font-size: 20px;
    line-height: 1.5;

    color: #6f625b;
}


/* Primaire knop */

.hero-cta {
    display: inline-block;

    margin-top: 38px;
    padding: 14px 24px;

    background-color: #661414;
    color: #FFFAE7;

    font-weight: bold;

    border-radius: 10px;

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

.hero-cta:hover {
    background-color: #8A2A2A;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(102, 20, 20, 0.18);
}


/* Social media */

.social-links {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 25px;
}

.social-links img {
    width: 32px;
    height: 32px;
    object-fit: contain;

    transition: transform 0.2s ease;
}

.social-links a:hover img {
    transform: translateY(-3px);
}

/* =========================================
   Choisissez votre chemin
========================================= */

.paths-section {
    padding: 110px 20px 130px;

    background-color: rgba(248, 238, 215, 0.68);

    border-top: 1px solid rgba(102, 20, 20, 0.06);
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}


.section-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 58px;
    line-height: 1;
    font-weight: 500;

    color: #661414;
}

.section-heading p {
    max-width: 620px;
    margin: 22px auto 0;

    font-size: 17px;
    line-height: 1.7;

    color: #6f625b;
}


/* Cards */

.path-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* Volledige kaart */

.path-card {
    position: relative;

    height: 560px;

    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(102, 20, 20, 0.14);

    box-shadow: 0 10px 30px rgba(102, 20, 20, 0.07);

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

.path-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(102, 20, 20, 0.12);
}


/* Achtergrondafbeelding */

.path-card-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.path-card:hover .path-card-bg {
    transform: scale(1.03);
}


/* Tekstvlak onderaan */

.path-card-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    min-height: 48%;

    padding: 30px;

    display: flex;
    flex-direction: column;

    background-color: rgba(248, 238, 215, 0.96);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    border-top: 1px solid rgba(102, 20, 20, 0.10);
}


/* Card titel */

.path-card-overlay h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    font-weight: 600;

    color: #661414;
}


/* Card tekst */

.path-card-overlay p {
    margin: 16px 0 24px;

    font-size: 15px;
    line-height: 1.7;

    color: #6f625b;
}


/* Link onderaan */

.path-link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;

    color: #661414;
}

.path-link span {
    transition: transform 0.25s ease;
}

.path-link:hover span {
    transform: translateX(5px);
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    min-height: calc(100vh - 110px);

    padding: 100px 20px 90px;

    display: flex;
    align-items: flex-start;

    text-align: center;

    position: relative;
    isolation: isolate;

    background-color: #FFFAE7;
}

.contact-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 768px auto;

    opacity: 0.5;

    z-index: -1;
}

.contact-hero-content {
    max-width: 760px;
    margin: 0 auto;
    padding-top: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Titel */

.contact-hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 500;

    color: #661414;
}


/* Intro */

.contact-hero > .contact-hero-content > p {
    max-width: 620px;

    margin: 24px auto 0;

    font-size: 18px;
    line-height: 1.7;

    color: #6f625b;
}


/* =========================================
   Social options
========================================= */

.contact-options {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    margin-top: 42px;
}

.contact-option {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 22px 24px;

    text-align: left;

    background-color: rgba(248, 238, 215, 0.88);

    border: 1px solid rgba(102, 20, 20, 0.10);
    border-radius: 14px;

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

.contact-option:hover {
    transform: translateY(-3px);

    border-color: rgba(102, 20, 20, 0.22);

    box-shadow: 0 8px 20px rgba(102, 20, 20, 0.07);
}

.contact-option img {
    width: 42px;
    height: 42px;

    object-fit: contain;
}

.contact-option div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.contact-option span {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;

    color: #661414;
}

.contact-option small {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.4;

    color: #6f625b;
}


/* =========================================
   Email
========================================= */

.contact-email {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;

    margin-top: 32px;
}

.contact-email span {
    font-size: 13px;
    font-weight: 600;

    color: #6f625b;
}

.contact-email a {
    font-size: 15px;
    font-weight: 600;

    color: #661414;

    transition: color 0.2s ease;
}

.contact-email a:hover {
    color: #8A2A2A;
}

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


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

.faq-hero {
    min-height: 480px;
    padding: 100px 20px 200px;

    text-align: center;

    position: relative;
    isolation: isolate;

    background-color: #FFFAE7;
}

.faq-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 768px auto;

    opacity: 0.5;

    z-index: -1;
}

.faq-hero-content {
    padding-top: 0;
    max-width: 700px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Titel */

.faq-hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    line-height: 1;
    font-weight: 500;

    color: #661414;
}


/* Beschrijving */

.faq-hero p {
    max-width: 620px;

    margin: 22px auto 0;

    font-size: 18px;
    line-height: 1.7;

    color: #6f625b;
}


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

.faq-section {
    padding: 80px 20px 110px;

    background-color: #F8EED7;
}

.faq-container {
    max-width: 850px;
}


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

.faq-item {
    margin-bottom: 16px;

    background-color: #FFFAE7;

    border: 1px solid rgba(102, 20, 20, 0.12);
    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 6px 18px rgba(102, 20, 20, 0.04);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(102, 20, 20, 0.22);

    box-shadow: 0 8px 22px rgba(102, 20, 20, 0.06);
}


/* Vraag */

.faq-item summary {
    position: relative;

    padding: 22px 65px 22px 24px;

    cursor: pointer;

    list-style: none;

    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;

    color: #661414;
}


/* Standaard browser pijltje verwijderen */

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    content: "";
}


/* Plus / min teken */

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 24px;
    top: 50%;

    transform: translateY(-50%);

    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 400;

    color: #8A2A2A;
}

.faq-item[open] summary::after {
    content: "−";
}


/* Open vraag */

.faq-item[open] summary {
    padding-bottom: 16px;
}


/* Antwoord */

.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    max-width: 720px;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #6f625b;
}


/* =========================================
   FAQ Contact CTA
========================================= */

.faq-contact {
    margin-top: 65px;

    padding: 45px 40px;

    text-align: center;

    background-color: #FFFAE7;

    border: 1px solid rgba(102, 20, 20, 0.12);
    border-radius: 16px;

    box-shadow: 0 8px 24px rgba(102, 20, 20, 0.05);
}

.faq-contact h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 600;

    color: #661414;
}

.faq-contact p {
    max-width: 520px;

    margin: 16px auto 25px;

    font-size: 15px;
    line-height: 1.7;

    color: #6f625b;
}


/* Contact button */

.faq-contact-button {
    display: inline-block;

    padding: 13px 22px;

    background-color: #661414;
    color: #FFFAE7;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;

    border-radius: 9px;

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

.faq-contact-button:hover {
    background-color: #8A2A2A;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(102, 20, 20, 0.14);
}

/* =========================================
   CONSULTATIONS - TAROT DESIGN
========================================= */


/* HERO */

.consultations-hero {
    min-height: 560px;
    padding: 100px 20px;

    text-align: center;

    position: relative;
    isolation: isolate;

    background-color: #FFFAE7;
}

.consultations-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 768px auto;
    opacity: 0.5;
    z-index: -1;
}

.consultations-hero-content {
    max-width: 800px;
    margin: 0 auto;

    padding-top: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.consultations-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    line-height: 0.95;
    font-weight: 500;
    color: #661414;
}

.consultations-hero h1 span {
    display: block;
    color: #8A2A2A;
}

.consultations-hero p {
    max-width: 640px;
    margin: 26px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: #6f625b;
}


/* =========================================
   TAROT SECTION
========================================= */

.tarot-services {
    padding: 50px 20px 100px;
    background-color: #F8EED7;
}

.tarot-section-heading {
    max-width: 700px;
    margin: 0 auto 100px;
    text-align: center;
}


.tarot-section-heading h2,
.special-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 50px;
    font-weight: 600;
    color: #661414;
}

.tarot-section-heading p {
    max-width: 550px;
    margin: 15px auto 0;
    font-size: 15px;
    line-height: 1.7;
    color: #6f625b;
}

/* =========================================
   TAROT ORBIT
========================================= */

.tarot-orbit {
    position: relative;

    width: 100%;
    max-width: 1180px;
    height: min(720px, calc(100vh - 170px));
    min-height: 620px;

    margin: 0 auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Grote subtiele cirkel achter de kaarten */

.tarot-orbit::before {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 760px;
    height: 760px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px dashed rgba(138, 42, 42, 0.20);

    pointer-events: none;
}


/* Extra binnenste cirkel */

.tarot-orbit::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 500px;
    height: 500px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(138, 42, 42, 0.10);

    pointer-events: none;
}


/* =========================================
   SMALL TAROT CARDS
========================================= */

.tarot-orbit .tarot-card {
    position: absolute;

    width: 120px;
    height: 195px;

    padding: 0;
    margin: 0;

    border: none;
    border-radius: 11px;

    background-color: #661414;
    color: #FFFAE7;

    cursor: pointer;

    box-shadow:
        0 10px 22px rgba(45, 12, 12, 0.16);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    
    transform:
        translate(-50%, -50%)
        rotate(var(--rotation));

    z-index: 2;
}


/* =========================================
   TAROT CARDS AROUND REVEAL
   EVEN ORBIT POSITIONING
========================================= */

.card-1 {
    left: 34%;
    top: 14%;

    --rotation: -10deg;
}

.card-2 {
    left: 17%;
    top: 36%;

    --rotation: -15deg;
}

.card-3 {
    left: 17%;
    top: 67%;

    --rotation: -14deg;
}

.card-4 {
    left: 35%;
    top: 88%;

    --rotation: -8deg;
}

.card-5 {
    left: 65%;
    top: 88%;

    --rotation: 8deg;
}

.card-6 {
    left: 83%;
    top: 67%;

    --rotation: 14deg;
}

.card-7 {
    left: 83%;
    top: 36%;

    --rotation: 15deg;
}

.card-8 {
    left: 66%;
    top: 14%;

    --rotation: 10deg;
}

/* =========================================
   CARD HOVER / ACTIVE
========================================= */

.tarot-orbit .tarot-card:hover {
    transform:
        translate(-50%, -50%)
        translateY(-10px)
        scale(1.05)
        rotate(0deg);

    z-index: 10;

    box-shadow:
        0 22px 35px rgba(45, 12, 12, 0.22);
}


.tarot-orbit .tarot-card.active {
    transform:
        translate(-50%, -50%)
        translateY(-8px)
        scale(1.04)
        rotate(0deg);

    z-index: 12;

    box-shadow:
        0 0 0 2px rgba(255, 250, 231, 0.65),
        0 18px 34px rgba(102, 20, 20, 0.22);
}


/* =========================================
   SMALL CARD INNER BORDER
========================================= */

.tarot-card-inner {
    position: absolute;
    inset: 7px;

    padding: 14px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid rgba(255, 250, 231, 0.55);
    border-radius: 8px;
}


.tarot-card-inner::before {
    content: "";

    position: absolute;
    inset: 5px;

    border: 1px solid rgba(255, 250, 231, 0.15);
    border-radius: 5px;

    pointer-events: none;
}


/* =========================================
   SMALL CARD NUMBER
========================================= */

.tarot-number {
    font-family: "Cormorant Garamond", serif;

    font-size: 11px;
    letter-spacing: 2px;

    color: rgba(255, 250, 231, 0.65);
}


/* =========================================
   SMALL CARD SYMBOL
========================================= */

.tarot-symbol {
    margin-top: 18px;

    font-family: "Cormorant Garamond", serif;

    font-size: 37px;
    line-height: 1;

    color: #FFFAE7;

    text-shadow:
        0 0 20px rgba(255, 250, 231, 0.18);
}


/* =========================================
   SMALL CARD TITLE
========================================= */

.tarot-card-title {
    margin: auto 0;

    text-align: center;
}


.tarot-card-title h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 18px;
    line-height: 1;

    font-weight: 600;

    color: #FFFAE7;
}


.tarot-card-title span {
    display: block;

    margin-top: 4px;

    font-family: "Cormorant Garamond", serif;

    font-size: 14px;

    color: rgba(255, 250, 231, 0.8);
}


/* =========================================
   SMALL CARD PRICE
========================================= */

.tarot-card-bottom {
    width: 100%;

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

    padding-top: 8px;

    border-top:
        1px solid rgba(255, 250, 231, 0.20);
}


.tarot-card-bottom span {
    font-size: 9px;

    color: rgba(255, 250, 231, 0.65);
}


.tarot-card-bottom strong {
    font-family: "Cormorant Garamond", serif;

    font-size: 15px;

    color: #FFFAE7;
}


/* =========================================
   REVEAL CARD - CENTER
========================================= */

.tarot-orbit .consultation-reveal {
    position: relative;

    width: 350px;
    min-height: 525px;

    margin: 0;
    padding: 8px;

    background-color: #F8EED7;
    color: #661414;

    border-radius: 16px;
    overflow: hidden;

    box-shadow:
        0 16px 35px rgba(102, 20, 20, 0.14);

    z-index: 5;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


/* Pattern */

.consultation-reveal::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url("../assets/bgpattern/pattern.png");

    background-repeat: repeat;
    background-size: 500px auto;

    opacity: 0.12;

    pointer-events: none;
}


.consultation-reveal.changing {
    opacity: 0;

    transform: scale(0.98);
}


/* =========================================
   LARGE CARD INNER BORDER
========================================= */

.tarot-reveal-inner {
    position: relative;
    z-index: 1;

    min-height: 509px;
    padding: 25px 27px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border: 1px solid rgba(102, 20, 20, 0.65);
    border-radius: 10px;
}


.tarot-reveal-inner::before {
    content: "";

    position: absolute;
    inset: 7px;

    border:
        1px solid rgba(102, 20, 20, 0.18);

    border-radius: 8px;

    pointer-events: none;
}


/* =========================================
   REVEAL NUMBER
========================================= */

.reveal-number {
    position: relative;
    z-index: 1;

    font-family: "Cormorant Garamond", serif;

    font-size: 15px;
    letter-spacing: 3px;

    color: rgba(102, 20, 20, 0.65);
}


/* =========================================
   REVEAL SYMBOL
========================================= */

.reveal-symbol-wrap {
    position: relative;
    z-index: 1;

    width: 58px;
    height: 58px;

    margin: 10px 0 5%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.reveal-symbol-wrap span {
    font-family: "Cormorant Garamond", serif;

    font-size: 45px;
    line-height: 1;

    color: #661414;
}


/* =========================================
   REVEAL CATEGORY
========================================= */

.reveal-category {
    position: relative;
    z-index: 1;

    margin-top: 5px;

    font-family: "Inter", sans-serif;

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

    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #8A2A2A;
}


/* =========================================
   REVEAL TITLE
========================================= */

.consultation-reveal h2 {
    position: relative;
    z-index: 1;

    margin: 7px 0 14px;

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;
    line-height: 1.05;
    font-weight: 600;

    color: #661414;
}


/* =========================================
   REVEAL DESCRIPTION
========================================= */

.reveal-description {
    position: relative;
    z-index: 1;

    max-width: 290px;

    margin: 0 auto;
}


.reveal-description p {
    margin: 0 0 9px;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    line-height: 1.55;

    color: #6f625b;
}


.reveal-description ul {
    max-width: 270px;

    margin: 8px auto;
    padding: 0;

    list-style: none;

    text-align: left;
}


.reveal-description li {
    position: relative;

    margin-bottom: 5px;
    padding-left: 17px;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    line-height: 1.45;

    color: #6f625b;
}


.reveal-description li::before {
    content: "✦";

    position: absolute;

    left: 0;
    top: 2px;

    font-size: 9px;

    color: #8A2A2A;
}


/* =========================================
   REVEAL DIVIDER
========================================= */

.reveal-divider {
    position: relative;
    z-index: 1;

    margin-top: auto;
    padding-top: 10px;

    font-size: 14px;

    color: #8A2A2A;
}


/* =========================================
   META
========================================= */

.reveal-meta {
    position: relative;
    z-index: 1;

    width: 100%;

    margin: 8px 0 0;
    padding-top: 11px;

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

    border-top:
        1px solid rgba(102, 20, 20, 0.18);
}


.reveal-meta-item {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.reveal-meta-item + .reveal-meta-item {
    border-left:
        1px solid rgba(102, 20, 20, 0.18);
}


.reveal-meta-item span {
    font-family: "Inter", sans-serif;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: #8A2A2A;
}


.reveal-meta-item strong {
    font-family: "Cormorant Garamond", serif;

    font-size: 17px;
    font-weight: 600;

    color: #661414;
}


/* =========================================
   REVEAL BUTTON
========================================= */

.reveal-button {
    position: relative;
    z-index: 1;

    display: inline-block;

    margin-top: 13px;
    padding: 9px 17px;

    background-color: #661414;
    color: #FFFAE7;

    font-family: "Inter", sans-serif;

    font-size: 11px;
    font-weight: 700;

    border-radius: 8px;

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


.reveal-button:hover {
    transform: translateY(-2px);

    background-color: #8A2A2A;

    box-shadow:
        0 6px 16px rgba(102, 20, 20, 0.14);
}


/* =========================================
   SPECIAL CARDS SECTION
========================================= */

.special-cards {
    position: relative;

    padding: 110px 20px;
    background-color: #FFFAE7;

    overflow: hidden;
}


/* Background pattern van de HELE sectie */
.special-cards::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 768px auto;

    opacity: 0.5;

    z-index: 0;
    pointer-events: none;
}

.special-cards > .container {
    position: relative;
    z-index: 1;
}


/* =========================================
   SECTION HEADING
========================================= */

.special-heading {
    margin-bottom: 50px;
    text-align: center;
}

.special-heading .section-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;

    color: #8A2A2A;
}


/* =========================================
   CARD GRID
========================================= */

.special-card-grid {
    max-width: 850px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


/* =========================================
   CARD
========================================= */

.special-card {
    position: relative;

    min-height: 470px;
    padding: 10px;

    background-color: #661414;

    border-radius: 16px;
    overflow: hidden;

    box-shadow:
        0 12px 30px rgba(102, 20, 20, 0.12);

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


/* Pattern alleen binnen de kaart */
.special-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 500px auto;

    opacity: 0.05;

    pointer-events: none;
}


/* Hover */
.special-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 38px rgba(102, 20, 20, 0.17);
}


/* =========================================
   INNER CARD BORDER
========================================= */

.special-card-border {
    position: relative;
    z-index: 1;

    height: 100%;
    padding: 45px 35px;

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

    text-align: center;

    border: 1px solid rgba(255, 250, 231, 0.55);
    border-radius: 10px;
}


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

.special-symbol {
    font-size: 38px;
    color: #FFFAE7;
}

.special-label {
    margin-top: 20px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(255, 250, 231, 0.60);
}

.special-card h3 {
    margin: 10px 0 15px;

    font-family: "Cormorant Garamond", serif;
    font-size: 37px;
    font-weight: 600;

    color: #FFFAE7;
}

.special-divider {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;
    letter-spacing: 5px;

    color: rgba(255, 250, 231, 0.60);
}

.special-card p {
    max-width: 320px;
    margin: 0 auto 13px;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;

    color: rgba(255, 250, 231, 0.78);
}

/* =========================================
   À PROPOS PAGE
========================================= */


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

.about-hero {
    position: relative;
    isolation: isolate;

    min-height: calc(100vh - 110px);

    padding: 100px 20px;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    overflow: hidden;

    text-align: center;

    background-color: #FFFAE7;
}


.about-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image: url("../assets/bgpattern/pattern.png");
    background-repeat: repeat;
    background-size: 768px auto;

    opacity: 0.5;

    z-index: -1;
}


.about-hero-content {
    max-width: 760px;
    margin: 0 auto;

    padding-top: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.about-hero h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 78px;
    line-height: 0.9;
    font-weight: 500;

    color: #661414;
}


.about-hero h1 span {
    display: block;

    color: #8A2A2A;
}


.about-hero p {
    max-width: 630px;

    margin: 30px auto 0;

    font-size: 19px;
    line-height: 1.6;

    color: #6f625b;
}


.about-scroll {
    position: absolute;
    left: 50%;
    bottom: 35px;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: #8A2A2A;
}


.about-scroll-arrow {
    font-size: 27px;

    animation: aboutArrow 1.8s ease-in-out infinite;
}


@keyframes aboutArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(9px);
    }

}


/* =========================================
   INTRO
========================================= */

.about-intro {
    padding: 140px 20px;

    overflow: hidden;

    background-color: #FFFAE7;
}


.about-intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 120px;

    align-items: center;
}


.about-intro-visual {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.about-main-card-image {
    position: relative;

    width: 330px;
    height: auto;

    display: block;

    border-radius: 14px;

    box-shadow:
        0 28px 55px rgba(102, 20, 20, 0.20);

    z-index: 2;

    will-change: transform;
}


.about-decoration {
    position: absolute;

    color: rgba(138, 42, 42, 0.24);

    pointer-events: none;

    will-change: transform;
}


.decoration-one {
    left: 6%;
    top: 17%;

    font-size: 55px;
}


.decoration-two {
    right: 7%;
    top: 38%;

    font-size: 70px;
}


.decoration-three {
    left: 14%;
    bottom: 12%;

    font-size: 38px;
}


.section-label {
    display: inline-block;

    margin-bottom: 15px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.8px;

    color: #8A2A2A;
}


.about-intro-text h2 {
    margin: 0 0 30px;

    font-family: "Cormorant Garamond", serif;

    font-size: 56px;
    line-height: 0.95;
    font-weight: 500;

    color: #661414;
}


.about-intro-text h2 span {
    display: block;

    color: #8A2A2A;
}


.about-intro-text p {
    max-width: 600px;

    margin: 0 0 20px;

    font-size: 16px;
    line-height: 1.8;

    color: #6f625b;
}


/* =========================================
   MON APPROCHE INTRO
========================================= */

.about-tools-intro {
    padding: 120px 20px;

    text-align: center;

    background-color: #F8EED7;
}


.about-tools-intro-content {
    max-width: 750px;
}


.about-tools-intro h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 60px;
    line-height: 0.95;
    font-weight: 500;

    color: #661414;
}


.about-tools-intro h2 span {
    display: block;

    color: #8A2A2A;
}


.about-tools-intro p {
    max-width: 610px;

    margin: 25px auto 0;

    font-size: 16px;
    line-height: 1.7;

    color: #6f625b;
}


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

.about-tool-section {
    position: relative;

    min-height: 850px;

    padding: 120px 20px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.tarot-story {
    background-color: #FFFAE7;
}


.oracle-story {
    background-color: #F8EED7;
}


.runes-story {
    background-color: #FFFAE7;
}


.pendulum-story {
    background-color: #F8EED7;
}


.about-tool-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 110px;
}


.about-tool-grid-reverse {
    direction: rtl;
}


.about-tool-grid-reverse > * {
    direction: ltr;
}


.about-tool-text {
    max-width: 520px;
}


.about-tool-number {
    display: block;

    margin-bottom: 30px;

    font-family: "Cormorant Garamond", serif;

    font-size: 90px;
    line-height: 0.8;

    color: rgba(102, 20, 20, 0.08);
}


.about-tool-text h2 {
    margin: 0 0 27px;

    font-family: "Cormorant Garamond", serif;

    font-size: 60px;
    line-height: 1.08;
    font-weight: 500;

    color: #661414;
}


.about-tool-text h2 span {
    display: block;

    color: #8A2A2A;
}


.about-tool-text p {
    max-width: 500px;

    margin: 0;

    font-size: 16px;
    line-height: 1.8;

    color: #6f625b;
}


/* =========================================
   TAROT IMAGE CARDS
========================================= */

.tarot-animation {
    position: relative;

    height: 620px;
}


.story-tarot-image {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 210px;
    height: auto;

    margin-left: -105px;

    transform-origin: center bottom;

    border-radius: 14px;

    box-shadow:
        0 20px 35px rgba(102, 20, 20, 0.18);

    will-change: transform;
}


/* =========================================
   ORACLE IMAGE CARD
========================================= */

.oracle-animation {
    position: relative;

    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.oracle-card-image {
    width: 280px;
    height: auto;

    display: block;

    border-radius: 16px;

    box-shadow:
        0 25px 45px rgba(102, 20, 20, 0.18);

    position: relative;

    z-index: 2;

    will-change: transform;
}


.oracle-floating {
    position: absolute;

    color: #8A2A2A;

    z-index: 3;

    will-change: transform;
}


.oracle-floating-one {
    left: 7%;
    top: 16%;

    font-size: 65px;
}


.oracle-floating-two {
    right: 7%;
    top: 20%;

    font-size: 75px;
}


.oracle-floating-three {
    left: 11%;
    bottom: 13%;

    font-size: 48px;
}


.oracle-floating-four {
    right: 12%;
    bottom: 12%;

    font-size: 55px;
}


/* =========================================
   RUNES
========================================= */

.runes-animation {
    position: relative;

    height: 620px;

    overflow: hidden;
}


.rune-ground {
    position: absolute;

    left: 50%;
    bottom: 100px;

    width: 430px;
    height: 1px;

    transform: translateX(-50%);

    background-color:
        rgba(102, 20, 20, 0.12);
}


.rune-stone {
    position: absolute;

    width: 100px;
    height: 82px;

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

    background-color: #661414;

    border-radius:
        45% 55% 48% 52%
        / 55% 45% 55% 45%;

    box-shadow:
        0 17px 28px
        rgba(102, 20, 20, 0.18);

    font-family: "Cormorant Garamond", serif;

    font-size: 40px;

    color: #FFFAE7;

    will-change: transform;
}


.rune-one {
    left: 15%;
    bottom: 120px;
}


.rune-two {
    left: 34%;
    bottom: 100px;
}


.rune-three {
    left: 53%;
    bottom: 123px;
}


.rune-four {
    left: 70%;
    bottom: 98px;
}


.rune-five {
    left: 44%;
    bottom: 205px;
}


/* =========================================
   PENDULE
========================================= */

.pendulum-animation {
    position: relative;

    height: 620px;

    display: flex;
    justify-content: center;

    overflow: hidden;
}


.pendulum {
    position: absolute;

    top: 35px;

    width: 160px;
    height: 440px;

    transform-origin: top center;

    z-index: 3;

    will-change: transform;
}


.pendulum-chain {
    position: absolute;

    left: 50%;
    top: 0;

    width: 1px;
    height: 340px;

    transform: translateX(-50%);

    background-color: #661414;
}


.pendulum-crystal {
    position: absolute;

    left: 50%;
    top: 325px;

    width: 76px;
    height: 105px;

    transform: translateX(-50%);

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

    background-color: #661414;

    clip-path:
        polygon(
            50% 100%,
            8% 35%,
            25% 0,
            75% 0,
            92% 35%
        );

    color: #FFFAE7;

    font-size: 24px;
}


.pendulum-path {
    position: absolute;

    left: 50%;
    top: 395px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(138, 42, 42, 0.15);

    border-radius: 50%;
}


.pendulum-path-one {
    width: 330px;
    height: 120px;
}


.pendulum-path-two {
    width: 500px;
    height: 190px;
}


/* =========================================
   VALUES
========================================= */

.about-values {
    padding: 130px 20px;

    text-align: center;

    background-color: #FFFAE7;
}


.about-values-heading {
    max-width: 720px;

    margin: 0 auto 70px;
}


.about-values-heading h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 58px;
    line-height: 0.95;
    font-weight: 500;

    color: #661414;
}


.about-values-heading h2 span {
    display: block;

    color: #8A2A2A;
}


.about-values-grid {
    display: grid;

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

    gap: 60px;
}


.about-values-grid article {
    padding: 20px;
}


.about-value-symbol {
    font-family: "Cormorant Garamond", serif;

    font-size: 43px;

    color: #8A2A2A;
}


.about-values-grid h3 {
    margin: 15px 0 12px;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    font-weight: 600;

    color: #661414;
}


.about-values-grid p {
    max-width: 290px;

    margin: 0 auto;

    font-size: 14px;
    line-height: 1.7;

    color: #6f625b;
}


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

.about-cta {
    position: relative;

    padding: 120px 20px;

    text-align: center;

    overflow: hidden;

    background-color: #F8EED7;
}


.about-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        url("../assets/bgpattern/pattern.png");

    background-repeat: repeat;
    background-size: 768px auto;

    opacity: 0.5;

    pointer-events: none;
}


.about-cta-content {
    position: relative;

    max-width: 700px;

    z-index: 2;
}


.about-cta-decoration {
    display: block;

    margin-bottom: 18px;

    font-size: 22px;

    letter-spacing: 7px;

    color: #8A2A2A;
}


.about-cta h2 {
    margin: 0 0 15px;

    font-family: "Cormorant Garamond", serif;

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

    color: #661414;
}


.about-cta p {
    max-width: 540px;

    margin: 0 auto 30px;

    font-size: 16px;
    line-height: 1.7;

    color: #6f625b;
}


.about-cta-button {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 10px;

    background-color: #661414;
    color: #FFFAE7;

    font-weight: 700;

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


.about-cta-button:hover {
    transform: translateY(-3px);

    background-color: #8A2A2A;

    box-shadow:
        0 8px 20px
        rgba(102, 20, 20, 0.16);
}


#mon-approche {
    scroll-margin-top: 100px;
}


/* =========================================
   Footer
========================================= */

.site-footer {
    background-color: #661414;
    color: #FFFAE7;

    padding: 70px 20px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 70px;

    padding-bottom: 55px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    width: 130px;
    height: auto;
    display: block;

    margin-bottom: 20px;
}

.footer-brand p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(255, 250, 231, 0.75);
}


/* Titels */

.site-footer h3 {
    margin: 0 0 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 600;

    color: #FFFAE7;
}


/* Navigation */

.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-navigation li + li {
    margin-top: 12px;
}

.footer-navigation a {
    font-size: 14px;

    color: rgba(255, 250, 231, 0.75);

    transition: color 0.2s ease;
}

.footer-navigation a:hover {
    color: #FFFAE7;
}


/* Socials */

.footer-social-links {
    display: flex;
    gap: 14px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    background-color: #FFFAE7;
    border-radius: 50%;

    transition:
    transform 0.2s ease,
        background-color 0.2s ease;
}

.footer-social-links a:hover {
    background-color: #F8EED7;
    transform: translateY(-3px);
}

.footer-social-links img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Onderste lijn */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 250, 231, 0.15);

    font-size: 13px;
    color: rgba(255, 250, 231, 0.55);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}

.footer-bottom a {
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #FFFAE7;
}

/* =========================================
   SHARED HERO ALIGNMENT
========================================= */

.hero > .hero-badge,
.contact-hero .hero-badge,
.faq-hero .hero-badge,
.consultations-hero .hero-badge,
.about-hero .hero-badge {
    position: static;
    margin-top: 0;
    margin-bottom: 32px;
    transform: none;
}

.hero h1,
.contact-hero h1,
.faq-hero h1,
.consultations-hero h1,
.about-hero h1 {
    margin-top: 0;
}

/* =========================================
   POLITIQUE DE CONFIDENTIALITÉ
========================================= */

.privacy-section {
    padding: 90px 20px 120px;
    background-color: #FFFAE7;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}


/* INTRO */

.privacy-intro {
    margin-bottom: 70px;
    padding: 32px 38px;
    background-color: #F8EED7;
    border-left: 3px solid #8A2A2A;
}

.privacy-intro p {
    margin: 0;
    color: #6f625b;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.8;
}


/* SECTIONS */

.privacy-block {
    padding: 0 0 55px;
    margin-bottom: 55px;
    border-bottom: 1px solid rgba(102, 20, 20, 0.15);
}

.privacy-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


/* NUMBER */

.privacy-block .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #8A2A2A;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* TITLES */

.privacy-block h2 {
    margin: 0 0 22px;
    color: #661414;
    font-family: "Cormorant Garamond", serif;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 600;
}


/* TEXT */

.privacy-block p {
    margin: 0 0 18px;
    color: #6f625b;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.privacy-block p:last-child {
    margin-bottom: 0;
}

.privacy-block strong {
    color: #661414;
    font-weight: 600;
}


/* LISTS */

.privacy-block ul {
    margin: 20px 0 24px;
    padding-left: 0;
    list-style: none;
}

.privacy-block li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 25px;
    color: #6f625b;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.privacy-block li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 1px;
    color: #8A2A2A;
    font-size: 10px;
}


/* LINKS */

.privacy-block a {
    color: #8A2A2A;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.privacy-block a:hover {
    color: #661414;
}


/* =========================================
   PRIVACY - TABLET
========================================= */

@media (max-width: 900px) {

    .privacy-section {
        padding: 75px 20px 100px;
    }

    .privacy-container {
        max-width: 760px;
    }

    .privacy-intro {
        margin-bottom: 60px;
    }

}


/* =========================================
   PRIVACY - MOBILE
========================================= */

@media (max-width: 600px) {

    .privacy-section {
        padding: 55px 20px 80px;
    }

    .privacy-intro {
        margin-bottom: 50px;
        padding: 25px 24px;
    }

    .privacy-intro p {
        font-size: 15px;
        line-height: 1.75;
    }

    .privacy-block {
        margin-bottom: 42px;
        padding-bottom: 42px;
    }

    .privacy-block h2 {
        margin-bottom: 18px;
        font-size: 29px;
    }

    .privacy-block p {
        font-size: 15px;
        line-height: 1.75;
    }

    .privacy-block ul {
        margin: 18px 0 22px;
    }

    .privacy-block li {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 22px;
    }

}

/* =========================================
   RESPONSIVE - GLOBAL
========================================= */

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background: transparent;
    border: 0;
    border-radius: 8px;

    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;

    background-color: #661414;
    border-radius: 999px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* =========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 900px) {

    .container {
        width: 100%;
        max-width: none;
        padding-left: 28px;
        padding-right: 28px;
    }


    /* =====================================
       HEADER
    ====================================== */

    nav {
        position: relative;
        min-height: 88px;
    }

    .logo-link img {
        width: 125px;
    }

    .logo-name {
        font-size: 17px;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        z-index: 1002;
    }

    .nav-items {
        position: absolute;

        top: calc(100% + 10px);
        right: 0;

        width: min(330px, calc(100vw - 56px));

        padding: 18px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;

        background-color: rgba(248, 238, 215, 0.98);

        border: 1px solid rgba(102, 20, 20, 0.10);
        border-radius: 14px;

        box-shadow:
            0 20px 45px rgba(102, 20, 20, 0.14);

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 1001;
    }

    .nav-items.nav-open {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .nav-items li {
        width: 100%;
    }

    .nav-items a {
        display: block;

        width: 100%;
        padding: 13px 15px;

        text-align: left;
    }

    .nav-items a.active::after {
        display: none;
    }

    .nav-items a.active {
        background-color: rgba(102, 20, 20, 0.08);
    }


    /* Hamburger → X */

    .nav-toggle.menu-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.menu-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.menu-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


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

    .hero {
        min-height: calc(100vh - 88px);

        padding:
            80px
            28px
            70px;
    }

    .hero h1 {
        font-size: 64px;
    }

    .hero p {
        max-width: 600px;

        font-size: 18px;
    }


    /* =====================================
       HOMEPAGE PATHS
    ====================================== */

    .paths-section {
        padding:
            90px
            28px
            100px;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 50px;
    }

    .path-cards {
        grid-template-columns: 1fr;

        max-width: 560px;

        margin: 0 auto;

        gap: 30px;
    }

    .path-card {
        height: 600px;
    }


    /* =====================================
       FOOTER
    ====================================== */

    .site-footer {
        padding:
            60px
            0
            25px;
    }

    .footer-content {
        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 40px;
    }

}


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

@media (max-width: 600px) {

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .about-scroll {
        position: static;
        transform: none;
        margin-top: 35px;
    }

    .hero-badge {
        background-color: rgba(248, 238, 215, 0.96);
    }

    .hero-badge span {
        color: #661414;
    } 

    /* =====================================
       HEADER
    ====================================== */

    nav {
        min-height: 78px;
    }

    .logo-link img {
        width: 105px;
    }

    .logo-name {
        font-size: 14px;
        letter-spacing: 0.8px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-items {
        width: calc(100vw - 40px);

        top: calc(100% + 8px);
    }


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

    .hero {
        min-height: auto;

        padding:
            70px
            20px
            80px;
    }

    .hero > .hero-badge {
        max-width: 100%;

        margin-bottom: 28px;

        padding:
            9px
            14px;
    }

    .hero-badge span {
        font-size: 13px;
        line-height: 1.35;
    }

    .menu-icon {
        width: 21px;
        height: 21px;

        flex-shrink: 0;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 58px);
        line-height: 0.92;
    }

    .hero p {
        margin-top: 24px;

        font-size: 16px;
        line-height: 1.65;
    }

    .hero-cta {
        width: 100%;
        max-width: 330px;

        margin-top: 30px;
        padding: 14px 18px;
    }

    .social-links {
        margin-top: 22px;
    }


    /* =====================================
       CHOISISSEZ VOTRE CHEMIN
    ====================================== */

    .paths-section {
        padding:
            75px
            20px
            85px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-label {
        font-size: 11px;
    }

    .section-heading h2 {
        font-size: 43px;
        line-height: 0.95;
    }

    .section-heading p {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.7;
    }

    .path-cards {
        gap: 24px;
    }

    .path-card {
        height: 520px;

        border-radius: 15px;
    }

    .path-card-overlay {
        min-height: 50%;

        padding: 25px;
    }

    .path-card-overlay h3 {
        font-size: 31px;
    }

    .path-card-overlay p {
        margin:
            14px
            0
            20px;

        font-size: 14px;
        line-height: 1.65;
    }


    /* =====================================
   FOOTER
====================================== */

    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer-brand {
        max-width: 320px;
    }

    .footer-logo {
        width: 95px;
        margin-bottom: 12px;
    }

    .footer-brand p {
        font-size: 14px;
        line-height: 1.6;
    }

    .site-footer h3 {
        margin-bottom: 12px;
        font-size: 21px;
    }

    .footer-navigation li + li {
        margin-top: 7px;
    }

    .footer-social-links {
        gap: 10px;
    }

    .footer-social-links a {
        width: 38px;
        height: 38px;
    }

    .footer-social-links img {
        width: 44px;
        height: 44px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;

        gap: 12px;

        padding-top: 20px;

        font-size: 12px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 7px;
    }

}

/* =========================================
   RESPONSIVE - CONTACT
========================================= */

@media (max-width: 900px) {

    .contact-hero {
        min-height: auto;

        padding:
            80px
            28px
            90px;
    }

    .contact-hero h1 {
        font-size: 56px;
    }

    .contact-hero > .contact-hero-content > p {
        font-size: 17px;
    }

    .contact-options {
        max-width: 600px;

        grid-template-columns: 1fr;

        gap: 16px;
    }

}


@media (max-width: 600px) {

    .contact-hero {
        padding:
            70px
            20px
            75px;
    }

    .contact-hero .hero-badge {
        margin-bottom: 28px;
    }

    .contact-hero h1 {
        font-size: 46px;
        line-height: 0.95;
    }

    .contact-hero > .contact-hero-content > p {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.7;
    }

    .contact-options {
        margin-top: 32px;

        gap: 14px;
    }

    .contact-option {
        padding: 18px;

        gap: 15px;

        border-radius: 12px;
    }

    .contact-option img {
        width: 36px;
        height: 36px;

        flex-shrink: 0;
    }

    .contact-option span {
        font-size: 22px;
    }

    .contact-option small {
        font-size: 12px;
        line-height: 1.45;
    }

    .contact-email {
        margin-top: 28px;
    }

    .contact-email a {
        font-size: 14px;

        overflow-wrap: anywhere;
    }

}

/* =========================================
   RESPONSIVE - FAQ
========================================= */

@media (max-width: 900px) {

    .faq-hero {
        min-height: auto;

        padding:
            80px
            28px
            110px;
    }

    .faq-hero h1 {
        font-size: 56px;
    }

    .faq-section {
        padding:
            70px
            28px
            90px;
    }

}


@media (max-width: 600px) {

    .faq-hero {
        padding:
            70px
            20px
            85px;
    }

    .faq-hero .hero-badge {
        margin-bottom: 28px;
    }

    .faq-hero h1 {
        font-size: 46px;
        line-height: 1.1;
    }

    .faq-hero p {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* FAQ section */

    .faq-section {
        padding:
            55px
            20px
            75px;
    }

    .faq-item {
        margin-bottom: 13px;

        border-radius: 10px;
    }

    .faq-item summary {
        padding:
            18px
            52px
            18px
            18px;

        font-size: 21px;
        line-height: 1.25;
    }

    .faq-item summary::after {
        right: 18px;

        font-size: 20px;
    }

    .faq-item[open] summary {
        padding-bottom: 13px;
    }

    .faq-answer {
        padding:
            0
            18px
            18px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* Contact CTA */

    .faq-contact {
        margin-top: 45px;

        padding:
            35px
            22px;

        border-radius: 14px;
    }

    .faq-contact h2 {
        font-size: 33px;
    }

    .faq-contact p {
        margin:
            14px
            auto
            22px;

        font-size: 14px;
    }

    .faq-contact-button {
        width: 100%;
        max-width: 280px;

        padding:
            13px
            18px;
    }

}

/* =========================================
   RESPONSIVE - CONSULTATIONS
========================================= */


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    /* Hero */

    .consultations-hero {
        min-height: auto;

        padding:
            80px
            28px
            90px;
    }

    .consultations-hero h1 {
        font-size: 60px;
    }

    .consultations-hero p {
        font-size: 17px;
    }


    /* Services section */

    .tarot-services {
        padding:
            70px
            28px
            90px;
    }

    .tarot-section-heading {
        margin-bottom: 70px;
    }

    .tarot-section-heading h2 {
        font-size: 46px;
    }


    /* Special cards */

    .special-cards {
        padding:
            90px
            28px;
    }

    .special-card-grid {
        gap: 25px;
    }

}


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

@media (max-width: 600px) {

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

    .consultations-hero {
        min-height: auto;

        padding:
            70px
            20px
            75px;
    }

    .consultations-hero .hero-badge {
        margin-bottom: 28px;
    }

    .consultations-hero h1 {
        font-size: 48px;
        line-height: 0.95;
    }

    .consultations-hero p {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================
       SERVICES SECTION
    ====================================== */

    .tarot-services {
        padding:
            65px
            20px
            80px;
    }

    .tarot-section-heading {
        margin-bottom: 45px;
    }

    .tarot-section-heading h2 {
        font-size: 41px;
        line-height: 1;
    }

    .tarot-section-heading p {
        margin-top: 14px;

        font-size: 14px;
        line-height: 1.65;
    }


    /* =====================================
       MOBILE TAROT DECK
    ====================================== */

    .tarot-orbit {
        width: 100%;
        height: auto;
        min-height: 0;

        display: grid;

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        column-gap: 8px;
        row-gap: 12px;

        align-items: start;

        overflow: visible;
    }


    /* Desktop cirkels verwijderen */

    .tarot-orbit::before,
    .tarot-orbit::after {
        display: none;
    }


    /* =====================================
       SMALL CARDS
    ====================================== */

    .tarot-orbit .tarot-card {
        position: relative;

        left: auto;
        top: auto;

        width: 100%;
        height: auto;

        aspect-ratio: 120 / 195;

        margin: 0;
        padding: 0;

        transform: none;

        border-radius: 8px;

        order: 1;
    }


    /* Desktop rotations volledig uitschakelen */

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
        left: auto;
        top: auto;

        transform: none;
    }


    /* Hover heeft op telefoon weinig nut */

    .tarot-orbit .tarot-card:hover {
        transform: none;
    }


    /* Geselecteerde kaart */

    .tarot-orbit .tarot-card.active {
        transform:
            translateY(-4px)
            scale(1.03);

        box-shadow:
            0 0 0 2px rgba(255, 250, 231, 0.75),
            0 12px 25px rgba(102, 20, 20, 0.20);
    }


    /* =====================================
       SMALL CARD CONTENT
    ====================================== */

    .tarot-card-inner {
        inset: 4px;

        padding:
            8px
            5px;

        border-radius: 6px;
    }

    .tarot-card-inner::before {
        inset: 3px;
    }


    .tarot-number {
        font-size: 8px;

        letter-spacing: 1px;
    }


    .tarot-symbol {
        margin-top: 10px;

        font-size: 25px;
    }


    .tarot-card-title h3 {
        font-size: 13px;
        line-height: 1;
    }


    .tarot-card-title span {
        margin-top: 2px;

        font-size: 10px;
        line-height: 1;
    }


    /* Onderaan alleen prijs tonen */

    .tarot-card-bottom {
        justify-content: center;

        padding-top: 5px;
    }

    .tarot-card-bottom span {
        display: none;
    }

    .tarot-card-bottom strong {
        font-size: 12px;
    }


    /* =====================================
       REVEAL CARD
    ====================================== */

    .tarot-orbit .consultation-reveal {
        position: relative;

        width: 100%;
        max-width: 350px;

        min-height: 0;

        margin:
            28px
            auto
            0;

        justify-self: center;

        grid-column: 1 / -1;

        order: 2;
    }


    .tarot-reveal-inner {
        min-height: 500px;

        padding:
            24px
            22px;
    }


    .consultation-reveal h2 {
        font-size: 28px;
    }


    .reveal-description {
        max-width: 280px;
    }


    .reveal-description p,
    .reveal-description li {
        font-size: 12px;
    }


    .reveal-button {
        margin-top: 15px;

        padding:
            11px
            20px;

        font-size: 12px;
    }


    /* =====================================
       SPECIAL CARDS
    ====================================== */

    .special-cards {
        padding:
            75px
            20px;
    }


    .special-heading {
        margin-bottom: 40px;
    }


    .special-heading h2 {
        font-size: 41px;
        line-height: 1;
    }


    .special-card-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .special-card {
        min-height: 420px;
    }


    .special-card-border {
        padding:
            35px
            25px;
    }


    .special-card h3 {
        font-size: 34px;
    }


    .special-card p {
        font-size: 13px;
        line-height: 1.7;
    }

}

/* =========================================
   RESPONSIVE - À PROPOS
========================================= */


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: auto;

        padding:
            80px
            28px
            90px;
    }

    .about-hero h1 {
        font-size: 64px;
    }

    .about-hero p {
        font-size: 17px;
    }


    /* Intro */

    .about-intro {
        padding:
            100px
            28px;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .about-intro-visual {
        min-height: 520px;
    }

    .about-main-card-image {
        width: 290px;
    }

    .about-intro-text {
        max-width: 650px;

        margin: 0 auto;

        text-align: center;
    }

    .about-intro-text h2 {
        font-size: 50px;
    }


    /* Approach intro */

    .about-tools-intro {
        padding:
            100px
            28px;
    }

    .about-tools-intro h2 {
        font-size: 52px;
    }


    /* Tool sections */

    .about-tool-section {
        min-height: auto;

        padding:
            100px
            28px;
    }

    .about-tool-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-tool-grid-reverse {
        direction: ltr;
    }

    .about-tool-text {
        max-width: 620px;

        margin: 0 auto;

        text-align: center;
    }

    .about-tool-text h2 {
        font-size: 52px;
    }

    .about-tool-text p {
        margin: 0 auto;
    }


    /* Values */

    .about-values {
        padding:
            100px
            28px;
    }

    .about-values-grid {
        gap: 30px;
    }


    /* CTA */

    .about-cta {
        padding:
            100px
            28px;
    }

}


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

@media (max-width: 600px) {

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

    .about-hero {
        min-height: auto;

        padding:
            70px
            20px
            75px;
    }

    .about-hero .hero-badge {
        margin-bottom: 28px;
    }

    .about-hero h1 {
        font-size: 48px;
        line-height: 0.95;
    }

    .about-hero p {
        margin-top: 22px;

        font-size: 15px;
        line-height: 1.7;
    }


    /* =====================================
       QUI SUIS-JE
    ====================================== */

    .about-intro {
        padding:
            75px
            20px;
    }

    .about-intro-grid {
        gap: 45px;
    }

    .about-intro-visual {
        min-height: 440px;
    }

    .about-main-card-image {
        width: 230px;

        border-radius: 12px;
    }

    .decoration-one {
        left: 4%;
        top: 18%;

        font-size: 42px;
    }

    .decoration-two {
        right: 4%;
        top: 40%;

        font-size: 50px;
    }

    .decoration-three {
        left: 8%;
        bottom: 11%;

        font-size: 30px;
    }

    .about-intro-text h2 {
        margin-bottom: 24px;

        font-size: 43px;
        line-height: 0.95;
    }

    .about-intro-text p {
        margin-bottom: 17px;

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


    /* =====================================
       MON APPROCHE INTRO
    ====================================== */

    .about-tools-intro {
        padding:
            75px
            20px;
    }

    .about-tools-intro h2 {
        font-size: 44px;
        line-height: 0.95;
    }

    .about-tools-intro p {
        margin-top: 20px;

        font-size: 14px;
        line-height: 1.7;
    }


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

    .about-tool-section {
        min-height: auto;

        padding:
            75px
            20px;
    }

    .about-tool-grid {
        gap: 35px;
    }

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

    .about-tool-number {
        margin-bottom: 20px;

        font-size: 68px;
    }

    .about-tool-text h2 {
        margin-bottom: 22px;

        font-size: 44px;
        line-height: 1.08;
    }

    .about-tool-text p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* =====================================
       TAROT ANIMATION
    ====================================== */

    .tarot-animation {
        height: 400px;
    }

    .story-tarot-image {
        width: 135px;
        top: 15%;
        margin-left: -67.5px;

        border-radius: 10px;
    }


    /* =====================================
       ORACLE ANIMATION
    ====================================== */

    .oracle-animation {
        height: 430px;
    }

    .oracle-card-image {
        width: 205px;

        border-radius: 12px;
    }

    .oracle-floating-one {
        left: 5%;
        top: 16%;

        font-size: 42px;
    }

    .oracle-floating-two {
        right: 5%;
        top: 20%;

        font-size: 48px;
    }

    .oracle-floating-three {
        left: 8%;
        bottom: 15%;

        font-size: 32px;
    }

    .oracle-floating-four {
        right: 8%;
        bottom: 14%;

        font-size: 36px;
    }


    /* =====================================
       RUNES
    ====================================== */

    .runes-animation {
        height: 450px;
    }

    .rune-ground {
        bottom: 70px;

        width: 280px;
    }

    .rune-stone {
        width: 68px;
        height: 58px;

        font-size: 29px;
    }

    .rune-one {
        left: 5%;
        bottom: 85px;
    }

    .rune-two {
        left: 25%;
        bottom: 70px;
    }

    .rune-three {
        left: 48%;
        bottom: 88px;
    }

    .rune-four {
        left: 71%;
        bottom: 70px;
    }

    .rune-five {
        left: 40%;
        bottom: 150px;
    }


    /* =====================================
       PENDULE
    ====================================== */

    .pendulum-animation {
        height: 450px;
    }

    .pendulum {
        top: 20px;

        width: 120px;
        height: 350px;
    }

    .pendulum-chain {
        height: 265px;
    }

    .pendulum-crystal {
        top: 250px;

        width: 58px;
        height: 82px;

        font-size: 19px;
    }

    .pendulum-path {
        top: 315px;
    }

    .pendulum-path-one {
        width: 230px;
        height: 90px;
    }

    .pendulum-path-two {
        width: 320px;
        height: 135px;
    }


    /* =====================================
       VALUES
    ====================================== */

    .about-values {
        padding:
            75px
            20px;
    }

    .about-values-heading {
        margin-bottom: 45px;
    }

    .about-values-heading h2 {
        font-size: 44px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .about-values-grid article {
        padding: 15px;
    }

    .about-values-grid h3 {
        font-size: 28px;
    }

    .about-values-grid p {
        font-size: 14px;
    }


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

    .about-cta {
        padding:
            75px
            20px;
    }

    .about-cta h2 {
        font-size: 42px;
        line-height: 1;
    }

    .about-cta p {
        font-size: 14px;
    }

    .about-cta-button {
        width: 100%;
        max-width: 300px;
    }

}