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

:root {
    --cream: #F5F0E8;
    --sand: #E8DFC8;
    --warm-white: #FAF8F4;
    --plaster: #D4C9B0;
    --gold: #C8963C;
    --gold-light: #E8B84B;
    --black: #000000;
    --dark: #1C1A15;
    --text: #2A2720;
    --muted: #6B6358;
    --accent: #8B6914;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 240, 232, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 150, 60, 0.2);
    transition: all 0.3s;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
}

.logo img {
    display: block;
    height: 48px;
    width: auto;
}

.brand-name {
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--dark);
    color: var(--cream);
    padding: 0.65rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(165deg, var(--cream) 0%, var(--sand) 60%, #D4C4A0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    padding-top: 80px;
}

.hero-texture {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(200, 150, 60, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 150, 60, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(var(--dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--dark) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 60, 0.15);
    border: 1px solid rgba(200, 150, 60, 0.3);
    border-radius: 100px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.2s forwards;
}

.tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    color: var(--dark);
    letter-spacing: -0.03em;
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s 0.4s forwards;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn 0.8s 1.4s forwards;
}

@keyframes underlineIn {
    to {
        transform: scaleX(1);
    }
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.8s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 1s forwards;
}

.btn-primary {
    background: var(--dark);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: var(--gold);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 40px rgba(200, 150, 60, 0.3);
}

.btn-primary .arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(4px) translateY(-4px);
}

.btn-outline {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    color: var(--gold);
    gap: 10px;
}

/* Floating cards */
.hero-cards {
    position: absolute;
    right: 3rem;
    bottom: 3.5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    opacity: 0;
    animation: fadeLeft 0.8s 1.2s forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.hero-stat-card {
    background: rgba(250, 248, 244, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 150, 60, 0.2);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    min-width: 180px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.hero-stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
}

/* SCROLL INDICATOR */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

.scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gold);
    transform-origin: top;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0)
    }

    50% {
        transform: scaleY(1)
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

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

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FEATURES SECTION */
.section {
    padding: 7rem 3rem;
    position: relative;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 600px;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(60px);
}

.feature-card.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes springUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(200, 150, 60, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200, 150, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    transform: rotate(-5deg) scale(1.1);
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* MARQUEE */
.marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    background: var(--dark);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--cream);
    font-style: italic;
    opacity: 0.7;
    flex-shrink: 0;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* HOW IT WORKS */
.how-section {
    background: var(--cream);
    padding: 7rem 3rem;
}

.steps-row {
    display: flex;
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 72px;
    right: 72px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--plaster) 100%);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(40px);
}

.step.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.step:hover .step-num {
    background: var(--gold);
    color: white;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 30px rgba(200, 150, 60, 0.4);
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* COMPARISON */
.compare-section {
    padding: 7rem 3rem;
    background: var(--warm-white);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.compare-card {
    border-radius: 24px;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(40px);
}

.compare-card.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.compare-card.old {
    background: #F0EDE6;
    border: 1px solid var(--plaster);
}

.compare-card.new {
    background: var(--dark);
    color: var(--cream);
    border: 1px solid var(--gold);
}

.compare-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.compare-card.old .compare-badge {
    background: var(--plaster);
    color: var(--muted);
}

.compare-card.new .compare-badge {
    background: var(--gold);
    color: white;
}

.compare-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.compare-card.new .compare-heading {
    color: var(--cream);
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.compare-item .icon {
    font-size: 0.9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.compare-card.old .compare-item {
    color: var(--muted);
}

.compare-card.new .compare-item {
    color: rgba(245, 240, 232, 0.8);
}

/* SOCIAL PROOF */
.proof-section {
    background: var(--cream);
    padding: 7rem 3rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--plaster);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
}

.stat-block {
    background: var(--cream);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.stat-block.visible {
    animation: statPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes statPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-block:hover {
    background: var(--dark);
    z-index: 2;
    transform: scale(1.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-block:hover .stat-big {
    color: var(--gold-light);
}

.stat-block:hover .stat-label {
    color: var(--cream);
}

/* FACEBOOK VIDEO BLOCK */
.fb-video-block {
    margin-top: 5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fb-video-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

/* Video gallery row */
.fb-video-gallery {
    display: flex;
    align-items: flex-end;   /* bottom-align so mixed heights look intentional */
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;         /* wraps to a column on small screens */
}

/* Shared wrapper styles */
.fb-video-wrapper {
    position: relative;  /* needed to anchor the overlay */
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 24px 72px rgba(200, 150, 60, 0.18);
    border: 1px solid rgba(200, 150, 60, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    flex-shrink: 0;
}

/* Transparent overlay — intercepts the first click so JS can detect it,
   then hides itself to expose the native Facebook play button. */
.fb-play-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    background: transparent;
}

/* 9:16 portrait panels */
.fb-video-wrapper.fb-portrait {
    width: 220px;   /* ← portrait panel width  */
    height: 391px;  /* ← portrait panel height (width × 1.778) */
}

/* 16:9 landscape panel */
.fb-video-wrapper.fb-landscape {
    width: 380px;   /* ← landscape panel width */
    height: 214px;  /* ← landscape panel height (width × 0.5625) */
}

.fb-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.fb-video-wrapper:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.14),
        0 36px 90px rgba(200, 150, 60, 0.22);
}

/* CTA SECTION */
.cta-section {
    padding: 8rem 3rem;
    text-align: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(200, 150, 60, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(200, 150, 60, 0.07) 0%, transparent 50%);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.cta-title.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.cta-sub {
    color: rgba(245, 240, 232, 0.6);
    font-size: 1rem;
    margin-bottom: 3rem;
    position: relative;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.cta-btn:hover {
    background: var(--gold-light);
    transform: scale(1.06) translateY(-3px);
    box-shadow: 0 20px 60px rgba(200, 150, 60, 0.4);
}

/* FOOTER */
footer {
    background: #141210;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--cream);
    font-weight: 700;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

/* PARALLAX WRAPPER */
.parallax-layer {
    will-change: transform;
}

/* Floating elements */
.float-el {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.float-1 {
    width: 300px;
    height: 300px;
    right: 8%;
    top: 15%;
    background: radial-gradient(circle, rgba(200, 150, 60, 0.12) 0%, transparent 70%);
}

.float-2 {
    width: 200px;
    height: 200px;
    right: 20%;
    top: 55%;
    background: radial-gradient(circle, rgba(200, 150, 60, 0.08) 0%, transparent 70%);
}

/* HERO PRODUCT IMAGE */
.hero-product {
    position: absolute;
    right: 17%;
    /* ← increase to move LEFT (toward text), decrease to move RIGHT */
    top: 50%;
    transform: translateY(-50%);
    width: 44%;
    max-width: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    animation: productFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 40px 80px rgba(200, 150, 60, 0.25)) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

.hero-product-img {
    width: 100%;
    max-height: 72vh;
    height: auto;
    object-fit: contain;
    display: block;
    animation: productReveal 1s 0.6s both cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes productReveal {
    from {
        opacity: 0;
        transform: translateX(60px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes productFloat {

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

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

.smooth-chip {
    position: absolute;
    bottom: 2rem;
    left: auto;
    right: 0;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(200, 150, 60, 0.25);
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(200, 150, 60, 0.15);
    animation: chipBounce 4s ease-in-out infinite;
}

@keyframes chipBounce {

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

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

.chip-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.chip-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

/* OUR STORY SECTION */
.story-section {
    background: var(--warm-white);
    position: relative;
}

.story-intro,
.partners-block,
.workers-block {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-intro {
    padding-top: 7rem;
    border-bottom: 1px solid var(--sand);
}

.partners-block {
    background: var(--cream);
    padding-left: 3rem;
    padding-right: 3rem;
    max-width: 100%;
}

.workers-block {
    padding-bottom: 7rem;
}

.story-text {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 720px;
    margin-top: 1.5rem;
}

.story-text strong {
    color: var(--dark);
    font-weight: 600;
}

/* Story Highlights */
.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.story-highlight-item {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    text-align: center;
    min-width: 160px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.story-highlight-item.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.story-highlight-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 50px rgba(200, 150, 60, 0.15);
}

.story-highlight-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.story-highlight-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
}

/* Partner Cards */
.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 900px;
}

.partner-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.partner-card.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.partner-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(200, 150, 60, 0.15);
}

.partner-img-wrap {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}

.partner-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--warm-white) 0%, transparent 100%);
}

.partner-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-card:hover .partner-img-wrap img {
    transform: scale(1.05);
}

.partner-info {
    padding: 1.5rem 2rem 2rem;
}

.partner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.partner-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.partner-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Worker Cards */
.workers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.worker-card {
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.worker-card.visible {
    animation: springUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.worker-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(200, 150, 60, 0.12);
}

.worker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.worker-card:hover::before {
    transform: scaleX(1);
}

.worker-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(200, 150, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.worker-card:hover .worker-icon {
    background: var(--gold);
    transform: rotate(-5deg) scale(1.1);
}

.worker-years {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.worker-role {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.worker-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Responsive basics */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .steps-row {
        flex-direction: column;
        align-items: center;
    }

    .steps-row::before {
        display: none;
    }

    .wall-visual {
        display: none;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .section,
    .how-section,
    .compare-section,
    .proof-section {
        padding: 4rem 1.5rem;
    }

    .hero {
        padding: 0 1.5rem;
        padding-top: 80px;
        min-height: 90vh;
    }

    .hero-cards {
        display: none;
    }

    .cta-section {
        padding: 5rem 1.5rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .story-intro,
    .partners-block,
    .workers-block {
        padding: 3rem 1.5rem;
    }

    .story-intro {
        padding-top: 4rem;
    }

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

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

    .story-highlights {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

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

    .story-highlights {
        flex-direction: column;
    }
}