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

:root {
    --cream: #F7EFE8;
    --orange: #D96C3D;
    --dark: #732D2A;
}

body {
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    background: var(--cream);
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;

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

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #fffaf5 0%,
            #f2d4c0 100%);
}

.hero-content {
    position: relative;
    z-index: 10;

    text-align: center;
    max-width: 900px;

    padding: 40px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 8vw, 7rem);

    line-height: 0.95;

    color: var(--orange);

    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #5a403b;

    margin-bottom: 40px;
}

.book {
    width: 320px;

    animation: floatBook 6s ease-in-out infinite;

    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.15));
}

@keyframes floatBook {

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

    50% {
        transform: translateY(-20px);
    }
}

.scroll-text {
    margin-top: 40px;

    letter-spacing: 3px;

    text-transform: uppercase;

    font-size: 0.8rem;

    opacity: 0.6;
}

/* CLOUDS */

.cloud {
    position: absolute;
    pointer-events: none;
}

.cloud-1 {
    width: 700px;

    bottom: -100px;
    left: -100px;

    opacity: 0.8;
}

.cloud-2 {
    width: 650px;

    bottom: -120px;
    right: -100px;

    opacity: 0.7;
}

/* =========================
   STORY SECTION
========================= */

.story {
    position: relative;

    min-height: 120vh;

    padding: 120px 8%;

    background:
        linear-gradient(to bottom,
            #f2d4c0 0%,
            #ebb38f 100%);

    overflow: hidden;

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

.story-content {
    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 800px;
}

.small-text {
    display: block;

    margin-bottom: 20px;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

    opacity: 0.7;
}

.story h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 8vw, 6rem);

    line-height: 1;

    color: #7a2e2a;

    margin-bottom: 30px;
}

.story p {
    font-size: 1.3rem;

    line-height: 2;

    color: #5d3934;
}

/* =========================
   STORY CLOUD
========================= */

.story-cloud {
    position: absolute;

    width: 1200px;
    height: 1200px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.4),
            transparent 70%);

    top: -300px;
    left: -300px;

    filter: blur(40px);

    animation:
        pulseCloud 10s ease-in-out infinite;
}

@keyframes pulseCloud {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* =========================
   LADDER
========================= */

.ladder-wrapper {
    position: absolute;

    bottom: -200px;
    right: 15%;

    height: 1200px;

    display: flex;
    justify-content: center;
}

.ladder {
    position: relative;

    width: 12px;
    height: 100%;

    background: #d96c3d;

    border-radius: 20px;

    opacity: 0.5;
}

/* ladder right side */

.ladder::after {
    content: "";

    position: absolute;

    left: 40px;
    top: 0;

    width: 12px;
    height: 100%;

    background: #d96c3d;

    border-radius: 20px;
}

/* ladder steps */

.ladder::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 52px;
    height: 100%;

    background:
        repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 35px,
            #d96c3d 35px,
            #d96c3d 45px);
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(80px);

    transition:
        all 1.4s ease;
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0px);
}


/* =========================
   COMPARISON SECTION
========================= */

.comparison-section {
    position: relative;

    min-height: 100vh;

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

    padding: 120px 8%;

    background: linear-gradient(to bottom,
            #ebb38f 0%,
            #e7b08c 50%,
            #d96c3d 100%);

    overflow: hidden;
}

/* CONTENT */

.comparison-content {
    position: relative;
    z-index: 10;

    max-width: 900px;
    text-align: center;
}

/* TEXT */

.comparison-text {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.2rem, 5vw, 4rem);

    line-height: 1.4;

    color: #5a2f2a;

    opacity: 0.95;

    letter-spacing: -0.5px;
}

/* OPTIONAL ATMOSPHERIC GLOW */

.comparison-section::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.25),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(60px);

    opacity: 0.6;

    animation: compareGlow 10s ease-in-out infinite;
}

@keyframes compareGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}


/* =========================
   WAITING SECTION
========================= */

.waiting-section {
    position: relative;

    min-height: 100vh;

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

    padding: 120px 8%;

    background: linear-gradient(to bottom,
            #d96c3d 0%,
            #a94734 60%,
            #7a2e2a 100%);

    overflow: hidden;
}

/* CONTENT */

.waiting-content {
    position: relative;
    z-index: 10;

    max-width: 850px;

    text-align: center;
}

/* TITLE */

.waiting-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.5rem, 6vw, 5rem);

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 30px;

    letter-spacing: -1px;
}

/* PARAGRAPH */

.waiting-content p {
    font-family: 'Inter', sans-serif;

    font-size: clamp(1.2rem, 2.5vw, 2rem);

    line-height: 1.8;

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

    opacity: 0.95;
}

/* ATMOSPHERIC DARK GLOW */

.waiting-section::before {
    content: "";

    position: absolute;

    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle,
            rgba(0, 0, 0, 0.15),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(80px);

    opacity: 0.6;
}

/* subtle floating effect */

.waiting-content {
    animation: waitingFloat 6s ease-in-out infinite;
}

@keyframes waitingFloat {

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

    50% {
        transform: translateY(-10px);
    }
}

/* =========================
   MESSAGE SECTION
========================= */

.message-section {
    position: relative;

    min-height: 100vh;

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

    padding: 120px 8%;

    background: linear-gradient(to bottom,
            #a94734 0%,
            #7a2e2a 100%);

    overflow: hidden;
}

/* CONTENT */

.message-content {
    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 900px;
}

/* TITLE */

.message-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.8rem, 6vw, 5.5rem);

    line-height: 1.1;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 40px;

    letter-spacing: -1px;
}

/* TEXT */

.message-content p {
    font-family: 'Inter', sans-serif;

    font-size: clamp(1.2rem, 2.5vw, 2rem);

    line-height: 1.9;

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

    max-width: 700px;

    margin: 0 auto;
}

/* SOFT LIGHT GLOW */

.message-section::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.12),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(80px);

    opacity: 0.7;
}

/* SUBTLE BREATHING */

.message-content {
    animation: messageBreath 8s ease-in-out infinite;
}

@keyframes messageBreath {

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

    50% {
        transform: translateY(-8px);
    }
}

/* =========================
   COMPANION SECTION
========================= */

.companion-section {
    position: relative;

    min-height: 100vh;

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

    padding: 120px 8%;

    background: linear-gradient(to bottom,
            #7a2e2a 0%,
            #d96c3d 100%);

    overflow: hidden;
}

/* CONTENT */

.companion-content {
    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 900px;
}

/* TITLE */

.companion-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 1.1;

    color: rgba(255, 255, 255, 0.95);

    margin-bottom: 30px;

    letter-spacing: -1px;
}

/* TEXT */

.companion-content p {
    font-family: 'Inter', sans-serif;

    font-size: clamp(1.3rem, 2.5vw, 2rem);

    line-height: 1.9;

    color: rgba(255, 255, 255, 0.78);

    max-width: 650px;

    margin: 0 auto;
}

/* SOFT WARM GLOW */

.companion-section::before {
    content: "";

    position: absolute;

    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.14),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(90px);

    opacity: 0.6;
}

/* LIGHT FLOAT (more subtle than message) */

.companion-content {
    animation: companionFloat 10s ease-in-out infinite;
}

@keyframes companionFloat {

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

    50% {
        transform: translateY(-6px);
    }
}

/* =========================
   JOURNEY SECTION
========================= */

.journey-section {
    position: relative;

    min-height: 120vh;

    padding: 140px 8%;

    overflow: hidden;

    background: linear-gradient(to bottom,
            #d96c3d 0%,
            #f2b37f 100%);
}

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

.journey-heading {
    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 900px;

    margin: 0 auto 80px auto;
}

.journey-heading span {
    display: block;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

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

    margin-bottom: 20px;
}

.journey-heading h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 1.1;

    color: rgba(255, 255, 255, 0.95);

    letter-spacing: -1px;
}

/* =========================
   GRID LAYOUT
========================= */

.journey-grid {
    position: relative;
    z-index: 10;

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 25px;

    max-width: 1100px;

    margin: 0 auto;
}

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

.journey-item {
    position: relative;

    padding: 35px 30px;

    border-radius: 25px;

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

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

    backdrop-filter: blur(18px);

    transition: all 0.4s ease;

    color: white;

    overflow: hidden;
}

/* hover effect */

.journey-item:hover {
    transform: translateY(-10px);

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

    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* subtle glow */

.journey-item::before {
    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.15),
            transparent 60%);

    opacity: 0;

    transition: 0.4s ease;
}

.journey-item:hover::before {
    opacity: 1;
}

/* =========================
   TEXT STYLE
========================= */

.journey-item h3 {
    font-family: 'Playfair Display', serif;

    font-size: 1.6rem;

    margin-bottom: 15px;

    line-height: 1.3;
}

.journey-item p {
    font-size: 1rem;

    line-height: 1.8;

    opacity: 0.85;
}

/* =========================
   SYNOPSIS SECTION (LIGHT)
========================= */

.synopsis-section {
    position: relative;

    min-height: 100vh;

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

    padding: 140px 8%;

    background: linear-gradient(to bottom,
            #f2b37f 0%,
            #fff2e8 100%);

    overflow: hidden;
}

/* CONTENT */

.synopsis-content {
    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 900px;
}

/* SMALL LABEL */

.synopsis-content span {
    display: block;

    margin-bottom: 20px;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

    color: #7a2e2a;

    opacity: 0.7;
}

/* MAIN TITLE */

.synopsis-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1.1;

    color: #6b2f2b;

    margin-bottom: 25px;
}

/* PARAGRAPH */

.synopsis-content p {
    font-size: 1.3rem;

    line-height: 1.9;

    color: #6e433c;
}

/* =========================
   DARK VERSION
========================= */

.synopsis-section.dark {
    background: linear-gradient(to bottom,
            #7a2e2a 0%,
            #5a1f1c 100%);
}

/* override text colors */

.synopsis-section.dark .large-text {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    line-height: 1.4;

    color: rgba(255, 255, 255, 0.9);

    text-align: center;

    max-width: 900px;

    margin: 0 auto;
}

/* soft glow for dark section */

.synopsis-section.dark::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.12),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(80px);

    opacity: 0.6;
}

/* =========================
   REALIZATION SECTION
========================= */

.realization-section {
    position: relative;

    min-height: 100vh;

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

    padding: 140px 8%;

    overflow: hidden;

    background: linear-gradient(to bottom,
            #5a1f1c 0%,
            #3e1412 100%);
}

/* CONTENT */

.realization-content {
    position: relative;
    z-index: 10;

    text-align: center;

    max-width: 850px;
}

/* TITLE */

.realization-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.8rem, 6vw, 5rem);

    line-height: 1.2;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 30px;

    letter-spacing: -0.5px;
}

/* TEXT */

.realization-content p {
    font-family: 'Inter', sans-serif;

    font-size: clamp(1.2rem, 2.5vw, 2rem);

    line-height: 1.9;

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

/* =========================
   INNER LIGHT GLOW
========================= */

.realization-section::before {
    content: "";

    position: absolute;

    width: 1000px;
    height: 1000px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(90px);

    opacity: 0.5;
}

/* =========================
   SUBTLE STILLNESS EFFECT
========================= */

.realization-content {
    animation: realizationStill 8s ease-in-out infinite;
}

@keyframes realizationStill {

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

    50% {
        transform: translateY(-6px);
    }
}

/* =========================
   PURCHASE SECTION
========================= */

.purchase-section {
    position: relative;

    min-height: 120vh;

    padding: 140px 8%;

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

    background: linear-gradient(to bottom,
            #fff2e8 0%,
            #f2b37f 40%,
            #d96c3d 100%);

    overflow: hidden;
}

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

.purchase-heading {
    text-align: center;

    margin-bottom: 80px;

    max-width: 900px;
}

.purchase-heading span {
    display: block;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

    color: #7a2e2a;

    opacity: 0.7;

    margin-bottom: 20px;
}

.purchase-heading h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 1.1;

    color: #6b2f2b;
}

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

.purchase-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;

    width: 100%;

    max-width: 1000px;

    margin-bottom: 60px;
}

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

.purchase-card {
    position: relative;

    padding: 40px 30px;

    border-radius: 25px;

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

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

    backdrop-filter: blur(20px);

    text-align: center;

    transition: 0.4s ease;

    overflow: hidden;
}

/* hover */

.purchase-card:hover {
    transform: translateY(-10px);

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

    border: 1px solid rgba(122, 46, 42, 0.25);
}

/* featured card */

.purchase-card.featured {
    background: rgba(122, 46, 42, 0.08);

    border: 1px solid rgba(122, 46, 42, 0.3);

    transform: scale(1.05);
}

/* title */

.purchase-card h3 {
    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    margin-bottom: 15px;

    color: #6b2f2b;
}

/* price */

.price {
    font-size: 2rem;

    font-weight: 600;

    color: #7a2e2a;

    margin-bottom: 10px;
}

/* subtitle */

.purchase-card p {
    color: #6e433c;

    margin-bottom: 25px;
}

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

.buy-button {
    display: inline-block;

    padding: 14px 30px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    color: white;

    background: #7a2e2a;

    transition: 0.4s ease;

    box-shadow: 0 15px 30px rgba(122, 46, 42, 0.25);
}

.buy-button:hover {
    transform: translateY(-6px);

    box-shadow: 0 25px 50px rgba(122, 46, 42, 0.35);
}

/* =========================
   NOTE
========================= */

.purchase-note {
    font-size: 0.9rem;

    text-align: center;

    color: rgba(90, 40, 35, 0.8);

    max-width: 600px;
}

/* =========================
   PREVIEW SECTION
========================= */

.preview-section {
    position: relative;

    min-height: 100vh;

    padding: 140px 8%;

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

    background: linear-gradient(to bottom,
            #fff2e8 0%,
            #f7efe8 100%);

    overflow: hidden;
}

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

.preview-content {
    text-align: center;

    max-width: 850px;

    position: relative;
    z-index: 10;
}

/* small label */

.preview-content span {
    display: block;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

    color: #7a2e2a;

    opacity: 0.7;

    margin-bottom: 20px;
}

/* title */

.preview-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    color: #6b2f2b;

    margin-bottom: 20px;

    line-height: 1.1;
}

/* paragraph */

.preview-content p {
    font-size: 1.3rem;

    line-height: 1.9;

    color: #6e433c;

    margin-bottom: 40px;
}

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

.preview-button {
    display: inline-block;

    padding: 16px 36px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    color: white;

    background: #d96c3d;

    transition: 0.4s ease;

    box-shadow: 0 20px 40px rgba(217, 108, 61, 0.25);
}

.preview-button:hover {
    transform: translateY(-8px);

    box-shadow: 0 30px 60px rgba(217, 108, 61, 0.35);
}

/* =========================
   SOFT ATMOSPHERE
========================= */

.preview-section::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    background: radial-gradient(circle,
            rgba(217, 108, 61, 0.08),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(80px);
}

/* =========================
   CLIMAX SECTION
========================= */

.climax {
    position: relative;

    min-height: 140vh;

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

    overflow: hidden;

    padding: 120px 8%;

    background:
        linear-gradient(to bottom,
            #ebb38f 0%,
            #d96c3d 50%,
            #7a2e2a 100%);
}

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

.climax-content {
    position: relative;
    z-index: 20;

    text-align: center;

    color: white;
}

.climax-title {
    font-family: 'Playfair Display', serif;

    font-size: clamp(4rem, 10vw, 9rem);

    line-height: 0.95;

    margin-bottom: 40px;

    letter-spacing: -3px;
}

.climax-text {
    font-size: clamp(1.2rem, 2vw, 2rem);

    line-height: 1.8;

    opacity: 0.9;
}

/* =========================
   ATMOSPHERIC GLOW
========================= */

.climax-glow {
    position: absolute;

    width: 1000px;
    height: 1000px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.18),
            transparent 70%);

    filter: blur(60px);

    top: 50%;
    left: 50%;

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

/* =========================
   CLOUDS
========================= */

.climax-cloud {
    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.18),
            transparent 70%);

    filter: blur(40px);

    opacity: 0.8;
}

.cloud-left {
    left: -200px;
    bottom: -100px;

    animation:
        floatCloud 14s ease-in-out infinite;
}

.cloud-right {
    right: -200px;
    top: -100px;

    animation:
        floatCloudReverse 16s ease-in-out infinite;
}

@keyframes floatCloud {

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

    50% {
        transform: translateY(-40px);
    }
}

@keyframes floatCloudReverse {

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

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

/* =========================
   MOVING LADDER
========================= */

.moving-ladder {
    position: absolute;

    bottom: -500px;
    left: 50%;

    transform: translateX(-50%);

    width: 70px;
    height: 2200px;

    opacity: 0.18;

    background:
        repeating-linear-gradient(to bottom,

            transparent 0px,
            transparent 45px,

            rgba(255, 255, 255, 0.8) 45px,
            rgba(255, 255, 255, 0.8) 55px);
}

/* ladder poles */

.moving-ladder::before,
.moving-ladder::after {

    content: "";

    position: absolute;

    top: 0;

    width: 12px;
    height: 100%;

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

    border-radius: 30px;
}

.moving-ladder::before {
    left: 0;
}

.moving-ladder::after {
    right: 0;
}

/* =========================
   FOR YOU SECTION
========================= */

.for-you {
    position: relative;

    min-height: 120vh;

    padding: 140px 8%;

    overflow: hidden;

    background:
        linear-gradient(to bottom,
            #7a2e2a 0%,
            #a94734 40%,
            #d96c3d 100%);
}

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

.for-you-heading {
    position: relative;
    z-index: 10;

    text-align: center;

    margin-bottom: 80px;

    color: white;
}

.for-you-heading span {
    display: block;

    margin-bottom: 20px;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

    opacity: 0.7;
}

.for-you-heading h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 1;
}

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

.card-grid {
    position: relative;
    z-index: 10;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

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

.emotion-card {
    position: relative;

    padding: 40px;

    border-radius: 30px;

    overflow: hidden;

    backdrop-filter: blur(20px);

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

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

    transition:
        transform 0.5s ease,
        background 0.5s ease,
        border 0.5s ease;

    color: white;

    min-height: 320px;
}

/* glow */

.emotion-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.18),
            transparent 50%);

    opacity: 0;

    transition: 0.5s ease;
}

.emotion-card:hover {

    transform:
        translateY(-12px);

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

    border:
        1px solid rgba(255, 255, 255, 0.25);
}

.emotion-card:hover::before {
    opacity: 1;
}

.emotion-card h3 {

    font-family: 'Playfair Display', serif;

    font-size: 2rem;

    line-height: 1.2;

    margin-bottom: 24px;
}

.emotion-card p {

    line-height: 2;

    opacity: 0.9;
}

/* =========================
   ATMOSPHERIC GLOW
========================= */

.for-you-glow {

    position: absolute;

    width: 1000px;
    height: 1000px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.1),
            transparent 70%);

    top: -400px;
    left: -300px;

    filter: blur(60px);
}

/* =========================
   FINAL SECTION
========================= */

.final-section {
    position: relative;

    min-height: 120vh;

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

    overflow: hidden;

    padding: 120px 8%;

    background:
        linear-gradient(to bottom,
            #d96c3d 0%,
            #f2b37f 40%,
            #fff2e8 100%);
}

/* =========================
   SUN GLOW
========================= */

.sun-glow {

    position: absolute;

    width: 900px;
    height: 900px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.9),
            rgba(255, 220, 180, 0.4),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(40px);
}

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

.final-content {
    position: relative;
    z-index: 20;

    text-align: center;

    max-width: 900px;
}

.final-small {

    display: block;

    margin-bottom: 20px;

    letter-spacing: 4px;

    text-transform: uppercase;

    font-size: 0.8rem;

    color: #7a2e2a;

    opacity: 0.7;
}

.final-content h2 {

    font-family: 'Playfair Display', serif;

    font-size: clamp(4rem, 10vw, 8rem);

    line-height: 0.95;

    color: #7a2e2a;

    margin-bottom: 30px;
}

.final-content p {

    font-size: 1.3rem;

    line-height: 2;

    color: #6e433c;

    margin-bottom: 50px;
}

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

.cta-group {

    display: flex;
    gap: 20px;

    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    position: relative;
    overflow: hidden;
}

.cta-primary::after,
.cta-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(100%);
    transition: 0.4s ease;
}

.cta-primary:hover::after,
.cta-secondary:hover::after {
    transform: translateY(0%);
}

/* =========================
   CLOUDS
========================= */

.final-cloud {

    position: absolute;

    border-radius: 50%;

    filter: blur(60px);

    opacity: 0.6;
}

.final-cloud-1 {

    width: 700px;
    height: 700px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.7),
            transparent 70%);

    left: -200px;
    bottom: -200px;

    animation:
        finalCloudFloat 12s ease-in-out infinite;
}

.final-cloud-2 {

    width: 500px;
    height: 500px;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.5),
            transparent 70%);

    right: -100px;
    top: -100px;

    animation:
        finalCloudFloatReverse 16s ease-in-out infinite;
}

@keyframes finalCloudFloat {

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

    50% {
        transform: translateY(-30px);
    }
}

@keyframes finalCloudFloatReverse {

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

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

/* =========================
   PARTICLES
========================= */

.particles {

    position: absolute;

    inset: 0;

    overflow: hidden;

    z-index: 5;
}

.particle {

    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

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

    animation:
        particleFloat linear infinite;
}

@keyframes particleFloat {

    0% {

        transform:
            translateY(0px);

        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {

        transform:
            translateY(-120px);

        opacity: 0;
    }
}

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

.footer {
    position: relative;

    min-height: 60vh;

    padding: 100px 8%;

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

    background: linear-gradient(to bottom,
            #3e1412 0%,
            #1e0a09 100%);

    overflow: hidden;
}

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

.footer-content {
    text-align: center;

    max-width: 900px;

    position: relative;
    z-index: 10;
}

/* TITLE */

.footer-content h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(2.5rem, 6vw, 5rem);

    line-height: 1.1;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 20px;

    letter-spacing: -1px;
}

/* SUBTEXT */

.footer-content p {
    font-size: 1.2rem;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.6);

    margin-bottom: 50px;
}

/* =========================
   LINKS
========================= */

.footer-links {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 20px;

    margin-bottom: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    font-size: 0.95rem;

    transition: 0.3s ease;

    position: relative;
}

/* hover underline glow */

.footer-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0%;

    height: 1px;

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

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

/* =========================
   COPYRIGHT
========================= */

.copyright {
    font-size: 0.85rem;

    color: rgba(255, 255, 255, 0.4);

    line-height: 1.6;

    margin-top: 30px;
}

/* =========================
   SUBTLE BACKGROUND GLOW
========================= */

.footer::before {
    content: "";

    position: absolute;

    width: 800px;
    height: 800px;

    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.06),
            transparent 70%);

    top: 50%;
    left: 50%;

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

    filter: blur(90px);

    opacity: 0.5;
}

/* =========================
   ORDER FORM
========================= */

.order-form {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 18px;

    max-width: 420px;

    margin: 40px auto 0 auto;
}

/* =========================
   INPUT FIELD
========================= */

.order-form input {
    padding: 16px 18px;

    border-radius: 14px;

    border: 1px solid rgba(122, 46, 42, 0.2);

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

    backdrop-filter: blur(12px);

    font-size: 1rem;

    color: #3e1412;

    outline: none;

    transition: 0.3s ease;
}

/* focus state */

.order-form input:focus {
    border: 1px solid rgba(122, 46, 42, 0.5);

    box-shadow: 0 10px 25px rgba(122, 46, 42, 0.15);

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

/* placeholder */

.order-form input::placeholder {
    color: rgba(62, 20, 18, 0.5);
}

/* =========================
   SUBMIT BUTTON
========================= */

.order-form button {
    padding: 16px 20px;

    border-radius: 999px;

    border: none;

    cursor: pointer;

    font-weight: 600;

    font-size: 1rem;

    color: white;

    background: #7a2e2a;

    transition: 0.4s ease;

    box-shadow: 0 20px 40px rgba(122, 46, 42, 0.25);
}

/* hover */

.order-form button:hover {
    transform: translateY(-6px);

    box-shadow: 0 30px 60px rgba(122, 46, 42, 0.35);
}

/* active press feel */

.order-form button:active {
    transform: translateY(-2px);
}