/* ================================================================
           DESIGN SYSTEM â€” Jars of Jain Premium
           ================================================================ */
        :root {
            --color-parchment: #f5f0e8;
            --color-parchment-light: #faf7f2;
            --color-parchment-dark: #e8dfd2;
            --color-ink: #1a1714;
            --color-ink-soft: #2d2926;
            --color-gold: #c4a265;
            --color-gold-light: #d4b87a;
            --color-gold-dark: #a88a4e;
            --color-amber: #8d4b00;
            --color-amber-light: #a85e1a;
            --color-rust: #6b3a1f;
            --color-sage: #7a8672;
            --color-charcoal: #3a3632;
            --color-warm-gray: #9e958a;
            --color-warm-gray-light: #c4bdb4;
            --color-cream: #fff9ee;

            --font-display: 'Playfair Display', Georgia, serif;
            --font-serif: 'Cormorant Garamond', Garamond, serif;
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
            --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
        }

        /* ================================================================
           RESET & BASE
           ================================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* GPU-accelerated scrolling performance */
        .hero__media,
        .hero__content,
        .parallax-quote__bg {
            will-change: transform;
            transform: translateZ(0);
        }

        /* Improvement #3: Lenis smooth scroll â€” removed scroll-behavior: smooth */
        html {
            overflow-x: hidden;
            font-size: 16px;
        }

        html.lenis,
        html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        body {
            font-family: var(--font-serif);
            background-color: var(--color-parchment);
            color: var(--color-ink);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

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

        button {
            font-family: inherit;
            cursor: pointer;
            border: none;
            background: none;
        }

        /* ================================================================
           SCROLL PROGRESS BAR
           ================================================================ */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
            z-index: 10000;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ================================================================
           PAPER GRAIN OVERLAY
           ================================================================ */
        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");

            background-repeat: repeat;
            background-size: 256px;
            /* Promote to own layer so it doesn't cause repaints on scroll */
            transform: translateZ(0);
            backface-visibility: hidden;
            contain: strict;
        }


        /* ================================================================
           NAVBAR
           ================================================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9000;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo), backdrop-filter 0.5s;
        }

        .navbar.scrolled {
            background: rgba(26, 23, 20, 0.85);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            padding: 1rem 3rem;
        }

        .navbar__logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-style: italic;
            color: #ffffff;
            letter-spacing: -0.03em;
            transition: opacity 0.3s;
            display: flex;
            align-items: center;
        }

        .navbar__logo img {
            height: 48px;
            width: auto;
            object-fit: contain;
        }

        .navbar__logo:hover {
            opacity: 0.7;
        }

        .navbar__links {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .navbar__link {
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s;
            position: relative;
        }

        .navbar__link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-gold);
            transition: width 0.4s var(--ease-out-expo);
        }

        .navbar__link:hover {
            color: #fff;
        }

        .navbar__link:hover::after {
            width: 100%;
        }

        /* Improvement #1: Magnetic button base â€” will-change for perf */
        .navbar__cta {
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-ink);
            background: var(--color-gold);
            padding: 0.65rem 1.5rem;
            transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
            will-change: transform;
        }

        .navbar__cta:hover {
            background: var(--color-gold-light);
            box-shadow: 0 4px 20px rgba(196, 162, 101, 0.3);
        }

        /* Improvement #9: Mobile hamburger & menu */
        .navbar__hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 9999;
            position: relative;
            width: 28px;
            height: 20px;
        }

        .navbar__hamburger span {
            display: block;
            width: 24px;
            height: 1px;
            background: #fff;
            transition: transform 0.4s var(--ease-out-expo), opacity 0.3s, width 0.3s var(--ease-out-expo);
            transform-origin: center;
        }

        .navbar__hamburger.active span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .navbar__hamburger.active span:nth-child(2) {
            opacity: 0;
            width: 0;
        }

        .navbar__hamburger.active span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        /* Mobile menu overlay */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(15, 13, 11, 0.97);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            z-index: 8999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu__link {
            font-family: var(--font-display);
            font-size: 2rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.6);
            transition: color 0.3s, transform 0.5s var(--ease-out-expo), opacity 0.5s;
            opacity: 0;
            transform: translateY(20px);
        }

        .mobile-menu.open .mobile-menu__link {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu.open .mobile-menu__link:nth-child(1) {
            transition-delay: 0.1s;
        }

        .mobile-menu.open .mobile-menu__link:nth-child(2) {
            transition-delay: 0.15s;
        }

        .mobile-menu.open .mobile-menu__link:nth-child(3) {
            transition-delay: 0.2s;
        }

        .mobile-menu.open .mobile-menu__link:nth-child(4) {
            transition-delay: 0.25s;
        }

        .mobile-menu.open .mobile-menu__link:nth-child(5) {
            transition-delay: 0.3s;
        }

        .mobile-menu__link:hover {
            color: var(--color-gold);
        }

        .mobile-menu__cta {
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-ink);
            background: var(--color-gold);
            padding: 0.85rem 2rem;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s var(--ease-out-expo);
        }

        .mobile-menu.open .mobile-menu__cta {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.35s;
        }

        /* ================================================================
           HERO SECTION
           ================================================================ */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #0f0d0b;
            contain: layout style;
        }

        .hero__media {
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero__media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
            transform: scale(1.1);
            transition: transform 8s var(--ease-in-out-sine);
        }

        .hero.loaded .hero__media img {
            transform: scale(1);
        }

        .hero__vignette {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: radial-gradient(ellipse at center, transparent 30%, rgba(15, 13, 11, 0.7) 100%);
        }

        .hero__gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 40%;
            z-index: 3;
            background: linear-gradient(to top, #0f0d0b 0%, transparent 100%);
        }

        .hero__content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: #fff;
            padding: 0 2rem;
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-sans);
            font-size: 0.65rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.35em;
            color: var(--color-gold);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s var(--ease-out-expo) 0.3s forwards;
        }

        .hero__badge-line {
            display: block;
            width: 40px;
            height: 1px;
            background: var(--color-gold);
        }

        /* Improvement #2: Character animation styles */
        .hero__title {
            font-family: var(--font-display);
            font-size: clamp(3.5rem, 10vw, 9rem);
            font-weight: 400;
            line-height: 0.9;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            /* No fadeInUp block animation; chars animated individually */
        }

        .hero__title .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(60px) rotateX(-40deg);
            animation: charReveal 0.8s var(--ease-out-expo) forwards;
        }

        @keyframes charReveal {
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }

        .hero__title em {
            font-style: italic;
            display: block;
            font-size: 0.5em;
            font-weight: 300;
            color: var(--color-gold);
            letter-spacing: 0.05em;
            margin-top: 0.2em;
            font-family: var(--font-serif);
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 1.2s forwards;
        }

        .hero__subtitle {
            font-family: var(--font-serif);
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 300;
            font-style: italic;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s var(--ease-out-expo) 0.8s forwards;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* Improvement #4: Hero CTA button */
        .btn-hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: #fff;
            padding: 1rem 2.5rem;
            border: 1px solid rgba(196, 162, 101, 0.5);
            background: rgba(196, 162, 101, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.5s var(--ease-out-expo);
            will-change: transform;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s var(--ease-out-expo) 1s forwards;
        }

        .btn-hero-cta:hover {
            background: rgba(196, 162, 101, 0.25);
            border-color: var(--color-gold);
            box-shadow: 0 0 40px rgba(196, 162, 101, 0.15), inset 0 0 40px rgba(196, 162, 101, 0.05);
        }

        .btn-hero-cta .cta-arrow {
            display: inline-block;
            transition: transform 0.4s var(--ease-out-expo);
        }

        .btn-hero-cta:hover .cta-arrow {
            transform: translateX(4px);
        }

        .hero__scroll {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 1.2s forwards;
        }

        .hero__scroll-text {
            font-family: var(--font-sans);
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: rgba(255, 255, 255, 0.4);
            writing-mode: vertical-rl;
        }

        .hero__scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--color-gold), transparent);
            animation: scrollPulse 2s var(--ease-in-out-sine) infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                opacity: 0.3;
                transform: scaleY(0.6);
            }

            50% {
                opacity: 1;
                transform: scaleY(1);
            }
        }

        /* ================================================================
           SECTION REVEAL ANIMATIONS
           ================================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-80px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(80px);
            transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Staggered children */
        .stagger-children .reveal {
            transition-delay: calc(var(--i, 0) * 0.15s);
        }

        /* ================================================================
           CHAPTER: THE ORIGIN STORY
           ================================================================ */
        .origin {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .origin__grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .origin__chapter-marker {
            font-family: var(--font-sans);
            font-size: 0.6rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.35em;
            color: var(--color-gold);
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .origin__chapter-line {
            width: 40px;
            height: 1px;
            background: var(--color-gold);
        }

        .origin__watermark {
            font-family: var(--font-display);
            font-size: 8rem;
            line-height: 1;
            color: rgba(0, 0, 0, 0.03);
            position: absolute;
            top: -1rem;
            left: -1rem;
            user-select: none;
            pointer-events: none;
            font-weight: 900;
        }

        .origin__title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 2.5rem;
        }

        .origin__title span {
            display: block;
            font-style: italic;
            color: var(--color-amber);
        }

        .origin__text {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            font-weight: 300;
            color: var(--color-charcoal);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .origin__image-wrapper {
            position: relative;
        }

        .origin__image-frame {
            position: relative;
            overflow: hidden;
        }

        .origin__image-frame img {
            width: 100%;
            aspect-ratio: 3 / 4;
            object-fit: cover;
            transition: transform 1.5s var(--ease-out-expo);
        }

        .origin__image-frame:hover img {
            transform: scale(1.05);
        }

        .origin__image-border {
            position: absolute;
            inset: 12px;
            border: 1px solid rgba(196, 162, 101, 0.3);
            pointer-events: none;
            transition: inset 0.6s var(--ease-out-expo);
        }

        .origin__image-frame:hover .origin__image-border {
            inset: 20px;
        }

        /* Improvement #7: Product card hover lift */
        .origin__product-card {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            background: var(--color-ink);
            color: #fff;
            padding: 2rem 2.5rem;
            max-width: 280px;
            z-index: 10;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
            will-change: transform;
        }

        .origin__product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        }

        .origin__product-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .origin__product-card p {
            font-size: 0.85rem;
            font-style: italic;
            opacity: 0.6;
            margin-bottom: 1.25rem;
            line-height: 1.5;
        }

        .origin__product-card .card-cta {
            font-family: var(--font-sans);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 600;
            color: var(--color-gold);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s var(--ease-out-expo);
        }

        .origin__product-card:hover .card-cta {
            gap: 1rem;
        }

        /* Product card — batch badge & pricing */
        .origin__product-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-sans);
            font-size: 0.6rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 1rem;
        }

        .origin__product-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #7a8672;
            flex-shrink: 0;
        }

        .origin__product-pricing {
            display: flex;
            align-items: baseline;
            gap: 0.35rem;
            margin-bottom: 1.25rem;
        }

        .origin__product-pricing .price-symbol {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--color-gold);
            line-height: 1;
        }

        .origin__product-pricing .price-value {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 500;
            color: var(--color-gold);
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .origin__product-pricing .price-weight {
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.05em;
            margin-left: 0.15rem;
        }

        /* ================================================================
           PARALLAX QUOTE
           ================================================================ */
        .parallax-quote {
            position: relative;
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #0f0d0b;
            contain: layout style;
        }

        .parallax-quote__bg {
            position: absolute;
            inset: -20%;
            z-index: 1;
            will-change: transform;
            backface-visibility: hidden;
        }

        .parallax-quote__bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            filter: saturate(0.6);
        }

        .parallax-quote__overlay {
            position: absolute;
            inset: 0;
            z-index: 2;
            background: radial-gradient(ellipse at center, rgba(15, 13, 11, 0.3), rgba(15, 13, 11, 0.8));
        }

        .parallax-quote__content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: #fff;
            max-width: 900px;
            padding: 4rem 2rem;
        }

        .parallax-quote__icon {
            font-size: 4rem;
            color: var(--color-gold);
            opacity: 0.3;
            margin-bottom: 2rem;
        }

        /* Improvement #10: Word reveal styles */
        .parallax-quote__text {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 3.2rem);
            font-style: italic;
            font-weight: 400;
            line-height: 1.35;
            margin-bottom: 2.5rem;
            letter-spacing: -0.01em;
        }

        .parallax-quote__text .word {
            display: inline-block;
            opacity: 0.12;
            transition: opacity 0.4s var(--ease-out-expo);
        }

        .parallax-quote__text .word.revealed {
            opacity: 1;
        }

        .parallax-quote__divider {
            width: 60px;
            height: 1px;
            background: var(--color-gold);
            margin: 0 auto 1.5rem;
        }

        .parallax-quote__author {
            font-family: var(--font-sans);
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--color-gold);
            opacity: 0.8;
        }

        /* ================================================================
           CHAPTER 2: THE CRAFT
           ================================================================ */
        .craft {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .craft__image {
            position: relative;
            overflow: hidden;
        }

        .craft__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s var(--ease-out-expo);
        }

        .craft__image:hover img {
            transform: scale(1.03);
        }

        .craft__content {
            background: var(--color-parchment-light);
            padding: 6rem 5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .craft__chapter-marker {
            font-family: var(--font-sans);
            font-size: 0.6rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.35em;
            color: var(--color-gold);
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .craft__chapter-line {
            width: 40px;
            height: 1px;
            background: var(--color-gold);
        }

        .craft__title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 3.5vw, 3.5rem);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 2.5rem;
        }

        .craft__title span {
            display: block;
            font-style: italic;
            color: var(--color-amber);
        }

        .craft__text {
            font-family: var(--font-serif);
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--color-charcoal);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .craft__product {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid var(--color-parchment-dark);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        .craft__product-info h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .craft__product-info p {
            font-family: var(--font-serif);
            font-size: 0.95rem;
            font-style: italic;
            color: var(--color-warm-gray);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        .btn-primary {
            font-family: var(--font-sans);
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            background: var(--color-ink);
            color: #fff;
            padding: 1rem 2rem;
            transition: background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            will-change: transform;
        }

        .btn-primary:hover {
            background: var(--color-amber);
            box-shadow: 0 10px 30px rgba(141, 75, 0, 0.25);
        }

        .craft__product-image {
            overflow: hidden;
            border-radius: 2px;
            position: relative;
        }

        /* Improvement #8: Scroll-triggered color reveal */
        .craft__product-image img {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 1.5s var(--ease-out-expo), transform 1s var(--ease-out-expo);
        }

        .craft__product-image img.color-revealed,
        .craft__product-image:hover img {
            filter: grayscale(0%);
        }

        .craft__product-image:hover img {
            transform: scale(1.05);
        }

        /* ================================================================
           MANIFESTO
           ================================================================ */
        .manifesto {
            background: var(--color-ink);
            color: var(--color-parchment);
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
            contain: layout style;
        }

        .manifesto__watermark {
            position: absolute;
            right: -5%;
            top: 50%;
            transform: translateY(-50%);
            font-family: var(--font-display);
            font-size: 20rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.02);
            line-height: 1;
            user-select: none;
            pointer-events: none;
            white-space: nowrap;
        }

        .manifesto__inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .manifesto__header {
            text-align: center;
            margin-bottom: 6rem;
        }

        .manifesto__title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 400;
            line-height: 1.15;
        }

        .manifesto__title span {
            font-style: italic;
            color: var(--color-gold);
        }

        .manifesto__grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
        }

        .manifesto__item {
            position: relative;
            padding-top: 2rem;
        }

        .manifesto__item-line {
            width: 40px;
            height: 1px;
            background: var(--color-gold);
            margin-bottom: 2rem;
            transition: width 0.6s var(--ease-out-expo);
        }

        .manifesto__item:hover .manifesto__item-line {
            width: 80px;
        }

        .manifesto__item-number {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 300;
            color: rgba(196, 162, 101, 0.1);
            position: absolute;
            top: -1rem;
            right: 0;
            line-height: 1;
        }

        .manifesto__item h4 {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-style: italic;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .manifesto__item p {
            font-family: var(--font-serif);
            font-size: 1.1rem;
            font-weight: 300;
            opacity: 0.6;
            line-height: 1.7;
        }

        /* Improvement #14: Animated stat counters */
        .manifesto__stat {
            margin-top: 1.5rem;
            display: flex;
            align-items: baseline;
            gap: 0.35rem;
        }

        .manifesto__stat-value {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 400;
            color: var(--color-gold);
            line-height: 1;
        }

        .manifesto__stat-suffix {
            font-family: var(--font-sans);
            font-size: 0.75rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--color-gold);
            opacity: 0.6;
        }

        .manifesto__stat-label {
            font-family: var(--font-sans);
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 0.4rem;
        }

        /* ================================================================
           COLLECTION
           ================================================================ */
        .collection {
            padding: 8rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .collection__header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .collection__badge {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-style: italic;
            color: var(--color-amber);
            margin-bottom: 1rem;
        }

        .collection__title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 400;
        }

        .collection__showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .collection__image-container {
            position: relative;
            overflow: hidden;
        }

        /* Improvement #8: Scroll-triggered color reveal */
        .collection__image-container img {
            width: 100%;
            aspect-ratio: 4 / 5;
            object-fit: cover;
            filter: grayscale(100%);
            transition: filter 1s var(--ease-out-expo), transform 1.5s var(--ease-out-expo);
        }

        .collection__image-container img.color-revealed,
        .collection__image-container:hover img {
            filter: grayscale(0%);
        }

        .collection__image-container:hover img {
            transform: scale(1.03);
        }

        .collection__image-overlay {
            position: absolute;
            inset: 1rem;
            border: 1px solid rgba(196, 162, 101, 0.2);
            pointer-events: none;
            transition: inset 0.6s var(--ease-out-expo);
        }

        .collection__image-container:hover .collection__image-overlay {
            inset: 1.5rem;
        }

        .collection__details {
            padding: 1rem 0;
        }

        .collection__product-title {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-style: italic;
            color: var(--color-amber);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .collection__product-desc {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 300;
            color: var(--color-charcoal);
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .collection__product-meta {
            background: #fff;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }

        .collection__product-meta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
        }

        .collection__meta-label {
            font-family: var(--font-sans);
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--color-warm-gray);
            font-weight: 500;
            margin-bottom: 0.75rem;
        }

        .collection__meta-value {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.75rem;
        }

        .btn-outline {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-style: italic;
            width: 100%;
            padding: 1.1rem 2rem;
            border: 2px solid var(--color-ink);
            color: var(--color-ink);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            transition: background 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
            background: transparent;
            will-change: transform;
        }

        .btn-outline:hover {
            background: var(--color-ink);
            color: #fff;
            box-shadow: 0 10px 30px rgba(26, 23, 20, 0.2);
        }

        /* ================================================================
           PROCESS / HOW IT WORKS
           ================================================================ */
        .process {
            padding: 8rem 2rem;
            border-top: 1px solid var(--color-parchment-dark);
        }

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

        .process__header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .process__title {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 4vw, 3rem);
            font-style: italic;
            font-weight: 400;
        }

        .process__steps {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .process__step {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 3rem 0;
            border-bottom: 1px solid var(--color-parchment-dark);
            transition: padding-left 0.5s var(--ease-out-expo);
        }

        .process__step:hover {
            padding-left: 1rem;
        }

        .process__step-number {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 300;
            color: var(--color-parchment-dark);
            line-height: 1;
            min-width: 100px;
            text-align: center;
            transition: color 0.5s var(--ease-out-expo);
        }

        .process__step:hover .process__step-number {
            color: var(--color-gold);
        }

        .process__step-content {
            flex: 1;
            padding-left: 3rem;
            border-left: 2px solid var(--color-parchment-dark);
            transition: border-color 0.5s var(--ease-out-expo);
        }

        .process__step:hover .process__step-content {
            border-left-color: var(--color-gold);
        }

        .process__step h4 {
            font-family: var(--font-sans);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.5rem;
        }

        .process__step p {
            font-family: var(--font-serif);
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--color-warm-gray);
            line-height: 1.6;
        }

        .process__cta {
            text-align: center;
            margin-top: 5rem;
        }

        .btn-hero {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-style: italic;
            font-weight: 500;
            background: var(--color-ink);
            color: #fff;
            padding: 1.25rem 3.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: background 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
            box-shadow: 0 10px 40px rgba(26, 23, 20, 0.15);
            will-change: transform;
        }

        .btn-hero:hover {
            box-shadow: 0 20px 60px rgba(26, 23, 20, 0.25);
            background: var(--color-ink-soft);
        }

        /* ================================================================
           FOOTER
           ================================================================ */
        .footer {
            background: #0a0908;
            color: #fff;
            padding: 6rem 2rem 3rem;
        }

        .footer__inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 4rem;
        }

        .footer__brand h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-style: italic;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .footer__brand p {
            font-family: var(--font-serif);
            font-size: 1rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.7;
            max-width: 340px;
        }

        .footer__nav-title {
            font-family: var(--font-sans);
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: var(--color-gold);
            margin-bottom: 1.5rem;
        }

        .footer__nav-links {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .footer__nav-links a {
            font-family: var(--font-serif);
            font-size: 1.05rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.4);
            transition: color 0.3s;
        }

        .footer__nav-links a:hover {
            color: #fff;
        }

        .footer__social {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .footer__social-link {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s var(--ease-out-expo);
        }

        .footer__social-link:hover {
            background: var(--color-gold);
            border-color: var(--color-gold);
            transform: translateY(-2px);
        }

        .footer__social-link svg {
            width: 18px;
            height: 18px;
            fill: rgba(255, 255, 255, 0.7);
            transition: fill 0.3s;
        }

        .footer__social-link:hover svg {
            fill: var(--color-ink);
        }

        .footer__bottom {
            max-width: 1200px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer__copyright {
            font-family: var(--font-sans);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.25);
        }

        .footer__craft-note {
            font-family: var(--font-serif);
            font-size: 0.9rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.15);
        }

        /* ================================================================
           KEYFRAME ANIMATIONS
           ================================================================ */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

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

        @keyframes float {

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

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

        /* ================================================================
           HORIZONTAL MARQUEE
           ================================================================ */
        .marquee {
            overflow: hidden;
            background: var(--color-ink);
            padding: 1.5rem 0;
            position: relative;
            contain: layout style;
        }

        .marquee__track {
            display: flex;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
            will-change: transform;
            transform: translateZ(0);
        }

        .marquee__item {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.2);
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-shrink: 0;
        }

        .marquee__dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--color-gold);
            opacity: 0.4;
        }

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

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

        /* ================================================================
           RESPONSIVE
           ================================================================ */
        @media (max-width: 1024px) {
            .origin__grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

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

            .craft__content {
                padding: 4rem 2rem;
            }

            .craft__image {
                height: 60vh;
            }

            .manifesto__grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .collection__showcase {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer__inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 1.5rem;
            }

            .navbar__links {
                display: none;
            }

            .navbar__hamburger {
                display: flex;
            }

            .origin {
                padding: 5rem 1.5rem;
            }

            .craft__content {
                padding: 3rem 1.5rem;
            }

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

            .manifesto {
                padding: 5rem 1.5rem;
            }

            .manifesto__watermark {
                font-size: 8rem;
            }

            .collection {
                padding: 5rem 1.5rem;
            }

            .process {
                padding: 5rem 1.5rem;
            }

            .process__step {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .process__step-number {
                min-width: auto;
            }

            .process__step-content {
                padding-left: 1.5rem;
            }

            .footer {
                padding: 4rem 1.5rem 2rem;
            }

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

            .origin__product-card {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: -2rem;
                margin-left: 1rem;
            }

            .cursor-dot,
            .cursor-ring {
                display: none;
            }

            .hero__title {
                font-size: clamp(2.8rem, 12vw, 4.5rem);
            }

            .btn-hero-cta {
                padding: 0.85rem 1.8rem;
                font-size: 0.65rem;
            }
        }

        /* ================================================================
           LOADING SCREEN
           ================================================================ */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--color-ink);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader__text {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-style: italic;
            color: var(--color-gold);
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 0.2s forwards;
        }

        .loader__bar {
            width: 120px;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            position: relative;
            overflow: hidden;
        }

        .loader__bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--color-gold);
            animation: loadProgress 0.7s var(--ease-out-expo) forwards;
        }

        @keyframes loadProgress {
            to {
                width: 100%;
            }
        }

        /* ================================================================
           SMOOTH DIVIDER ORNAMENT
           ================================================================ */
        .ornament-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            padding: 3rem 0;
        }

        .ornament-divider__line {
            width: 60px;
            height: 1px;
            background: var(--color-parchment-dark);
        }

        .ornament-divider__diamond {
            width: 6px;
            height: 6px;
            background: var(--color-gold);
            transform: rotate(45deg);
        }