/* CSS tokens defined in :root */
        :root {
            /* Core Palette */
            --color-olive: #6B6C43;
            --color-sage: #B2BAA3;
            --color-walnut: #5C3D2E;
            --color-base: #F5F2EC;
            --color-text: #1C1C1A;
            --color-text-muted: #6B6860;
            --color-white: #FFFFFF;
            
            /* Extended Palette for Visuals & Effects (Strict No Hardcoded Hex Outside :root) */
            --color-olive-dark: #5a5b38;
            --color-sage-light-alpha: rgba(178, 186, 163, 0.15);
            --color-sage-alpha: rgba(178, 186, 163, 0.5);
            --color-walnut-light: #7a5441;
            --color-base-alpha: rgba(245, 242, 236, 0.8);
            --color-base-alpha-low: rgba(245, 242, 236, 0.3);
            --color-base-alpha-xlow: rgba(245, 242, 236, 0.2);
            --color-text-alpha: rgba(28, 28, 26, 0.1);
            --color-text-alpha-hover: rgba(28, 28, 26, 0.08);
            --color-white-alpha: rgba(255, 255, 255, 0.1);
            --color-black-alpha: rgba(0, 0, 0, 0.05);
            --color-black-alpha-high: rgba(0, 0, 0, 0.1);
            --color-black-alpha-xhigh: rgba(0, 0, 0, 0.03);
            --color-offwhite: #F8F6F1;
            --color-canvas: #EAE6DE;
            --color-mug-light: #d6d3cb;
            --color-candle-1: #f2eadf;
            --color-candle-2: #e5d8c8;
            --color-transparent: transparent;

            /* Typography */
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'DM Sans', sans-serif;

            /* Spacing & Sizing in pixels per requirements, converted internally as variables */
            --space-xs: 8px;
            --space-sm: 16px;
            --space-md: 32px;
            --space-lg: 64px;
            --space-xl: 120px;
            
            /* Additional structural pixels mapped */
            --font-size-base: 16px;
            --border-thin: 1px;
            --border-thick: 2px;
            --radius-sm: 4px;
            --radius-md: 12px;
            --radius-xl: 40px;
            --blur-md: 12px;

            /* Transitions */
            --transition-base: 0.4s ease;
            --transition-slow: 0.8s ease;

            /* Z-Indices */
            --z-behind: -1;
            --z-base: 1;
            --z-above: 2;
            --z-nav: 1000;
            --z-grain: 9999;
            --z-loader: 10000;
        }

        /* CSS Reset & Setup */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: var(--font-size-base);
        }

        body {
            background-color: var(--color-base);
            color: var(--color-text);
            font-family: var(--font-body);
            line-height: 1.5;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6, .font-display {
            font-family: var(--font-display);
            font-weight: 400;
        }

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

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

        input {
            border-radius: 0;
        }

        /* SVG Grain Texture Filter via Pseudo-element */
        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: var(--z-grain);
            opacity: 0.25;
            background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
        }

        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: var(--z-loader);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            pointer-events: all;
        }

        .loader__bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-olive);
            z-index: var(--z-behind);
        }

        .loader__content {
            position: relative;
            z-index: var(--z-above);
            text-align: center;
            color: var(--color-base);
        }

        .loader__brand {
            font-family: var(--font-display);
            font-size: 3rem;
            font-style: italic;
            margin-bottom: var(--space-md);
        }

        .loader__progress-circular {
            position: relative;
            width: 6rem;
            height: 6rem;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader__svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .loader__svg-bg {
            fill: none;
            stroke: var(--color-base-alpha-low);
            stroke-width: 2;
        }

        .loader__svg-progress {
            fill: none;
            stroke: var(--color-base);
            stroke-width: 2;
            stroke-dasharray: 251.3;
            stroke-dashoffset: 251.3;
            stroke-linecap: round;
        }

        .loader__percentage {
            position: relative;
            z-index: 1;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 87.5rem; /* 1400px equivalent */
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: var(--space-sm) var(--space-md);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: var(--z-nav);
            border-bottom: var(--border-thin) solid var(--color-sage);
            background: var(--color-base-alpha);
            backdrop-filter: blur(var(--blur-md));
            -webkit-backdrop-filter: blur(var(--blur-md));
            transition: transform var(--transition-base);
        }

        .nav--hidden {
            transform: translateY(-100%);
        }

        .nav__brand {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-style: italic;
        }

        .nav__links {
            display: flex; /* Mobile logic applied later */
            gap: var(--space-md);
            font-size: 0.875rem;
            text-transform: lowercase;
            letter-spacing: 0.02em;
        }
        
        .nav__link-item {
            position: relative;
        }

        .nav__link {
            position: relative;
            display: block;
            padding: 4px 0; /* Inline small spacing */
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: var(--space-sm) var(--space-md);
            background-color: var(--color-walnut);
            color: var(--color-base);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
            transition: color var(--transition-base);
            z-index: var(--z-base);
        }

        .btn__fill {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--color-text);
            transform: scaleX(0);
            transform-origin: left;
            z-index: var(--z-behind);
            /* Handled by JS for ease power effects */
        }
        
        .btn__text {
            position: relative;
            z-index: var(--z-above);
        }

        /* Hero */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: var(--space-xl);
            overflow: hidden;
            visibility: hidden; /* Prevent flash, wait for loader */
        }

        .hero__bg-word {
            position: absolute;
            top: 40%;
            right: -5%;
            font-family: var(--font-display);
            font-size: 30vw;
            line-height: 1;
            color: var(--color-transparent);
            -webkit-text-stroke: var(--border-thin) var(--color-olive);
            opacity: 0.08;
            pointer-events: none;
            z-index: var(--z-behind);
            transform: translateY(-50%);
        }

        .hero__content {
            max-width: 50rem; /* 800px equivalent */
            padding-left: 0; /* Base for mobile */
        }

        .hero__title {
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 1.1;
            margin-bottom: var(--space-md);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .hero__title-line {
            display: block;
            overflow: hidden;
        }
        
        .hero__title-word {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
        }
        
        .hero__title-word.italic {
            font-style: italic;
            color: var(--color-olive);
        }

        .hero__subline {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: var(--space-lg);
            max-width: 25rem; /* 400px equivalent */
            opacity: 0;
        }
        
        .hero__btn {
            opacity: 0;
        }

        /* Products Grid */
        .products {
            padding: var(--space-xl) 0;
            position: relative;
        }
        
        .products__bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background-color: var(--color-sage-light-alpha);
            z-index: var(--z-behind);
            border-top-left-radius: var(--radius-xl);
        }

        .section-header {
            margin-bottom: var(--space-lg);
            overflow: hidden;
        }

        .section-title {
            font-size: 2.5rem;
            font-style: italic;
            border-bottom: var(--border-thin) solid var(--color-sage);
            padding-bottom: var(--space-sm);
            display: inline-block;
        }

        .products__grid {
            display: grid;
            grid-template-columns: 1fr; /* Mobile Base */
            gap: var(--space-lg);
        }

        .product-card {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            opacity: 0; /* Animated by GSAP */
        }

        .product-card__visual-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 4/5;
            margin-bottom: var(--space-sm);
            overflow: hidden;
            border-radius: var(--radius-sm);
            background-color: var(--color-canvas);
        }

        .product-card__visual {
            width: 100%;
            height: 100%;
            /* Visual variations */
        }

        .product-card__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-card__info {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-card__title {
            font-size: 1.125rem;
            margin-bottom: var(--space-xs); /* 8px -> var(--space-xs) equivalent visually, tweaking value if > */
        }

        .product-card__desc {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            margin-bottom: var(--space-sm);
        }

        .product-card__bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
        }

        .product-card__price {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-style: italic;
        }

        .product-card__add {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--color-olive);
            position: relative;
        }
        
        .product-card__add::after {
            content: '';
            position: absolute;
            bottom: calc(-1 * var(--border-thick));
            left: 0;
            width: 0;
            height: var(--border-thin);
            background-color: var(--color-olive);
            transition: width var(--transition-base);
        }

        .product-card:hover .product-card__add::after {
            width: 100%;
        }


        /* Philosophy */
        .philosophy {
            padding: var(--space-xl) 0;
            background-color: var(--color-offwhite);
            position: relative;
            overflow: hidden;
            border-top: var(--border-thin) solid var(--color-sage);
            border-bottom: var(--border-thin) solid var(--color-sage);
        }

        .philosophy__bg-numeral {
            position: absolute;
            bottom: -10%;
            right: 10%;
            font-family: var(--font-display);
            font-size: 40vw;
            line-height: 1;
            color: var(--color-transparent);
            -webkit-text-stroke: var(--border-thin) var(--color-sage);
            opacity: 0.3;
            pointer-events: none;
            z-index: var(--z-base);
        }

        .philosophy__inner {
            display: flex;
            flex-direction: column; /* Mobile Base */
            align-items: flex-start;
            gap: var(--space-md);
            position: relative;
            z-index: var(--z-above);
        }

        .philosophy__quote {
            flex: 1.5;
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-style: italic;
            line-height: 1.2;
            color: var(--color-olive);
        }
        
        .philosophy__quote-word {
            display: inline-block;
            margin-right: 0.25em;
            opacity: 0.2; /* Animates on scroll */
        }

        .philosophy__text {
            flex: 1;
            font-size: 1rem;
            color: var(--color-text-muted);
            max-width: 25rem;
        }

        /* Testimonials */
        .testimonials {
            padding: var(--space-xl) 0;
            background-color: var(--color-base);
            position: relative;
        }

        .section-header--center {
            text-align: center;
            display: flex;
            justify-content: center;
        }

        .testimonials__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--space-lg);
            margin-top: var(--space-lg);
        }

        .testimonial-card {
            background-color: var(--color-canvas);
            padding: var(--space-lg);
            border-radius: var(--radius-md);
            position: relative;
            transform-origin: top center;
            opacity: 0; /* Handled by GSAP */
        }

        .testimonial-card::before {
            content: '\"';
            position: absolute;
            top: 2rem;
            left: 1.5rem;
            font-family: var(--font-display);
            font-size: 5rem;
            color: var(--color-olive);
            opacity: 0.1;
            line-height: 0.8;
            z-index: 0;
        }

        .testimonial-card__quote {
            font-size: 1.125rem;
            color: var(--color-text);
            margin-bottom: var(--space-md);
            position: relative;
            z-index: 1;
        }

        .testimonial-card__author {
            font-size: 1.25rem;
            font-style: italic;
            color: var(--color-olive);
            position: relative;
            z-index: 1;
        }

        /* Newsletter */
        .newsletter {
            padding: var(--space-xl) var(--space-md);
            background-color: var(--color-olive);
            color: var(--color-base);
            text-align: center;
            margin: var(--space-md) 0;
            border-radius: 0;
            transform-origin: center;
        }

        .newsletter__title {
            font-size: 2rem;
            margin-bottom: var(--space-sm);
        }

        .newsletter__desc {
            font-size: 1rem;
            margin-bottom: var(--space-md);
            opacity: 0.9;
        }

        .newsletter__form {
            display: flex;
            max-width: 31.25rem;
            margin: 0 auto;
            border-bottom: var(--border-thin) solid var(--color-base);
            padding-bottom: var(--space-xs);
        }

        .newsletter__input {
            flex-grow: 1;
            background: var(--color-transparent);
            border: none;
            color: var(--color-base);
            font-family: var(--font-body);
            font-size: 1rem;
            outline: none;
        }

        .newsletter__input::placeholder {
            color: var(--color-base-alpha-low);
        }

        .newsletter__submit {
            color: var(--color-base);
            text-transform: uppercase;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            padding-left: var(--space-sm);
        }

        /* Footer */
        .footer {
            padding: var(--space-lg) 0 var(--space-md);
            border-top: var(--border-thin) solid var(--color-walnut);
            background-color: var(--color-base);
        }

        .footer__grid {
            display: grid;
            grid-template-columns: 1fr; /* Mobile base */
            gap: var(--space-lg);
        }

        .footer__col {
            opacity: 0;
            transform: translateY(1.25rem);
        }

        .footer__brand {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-style: italic;
            margin-bottom: var(--space-sm);
            display: inline-block;
        }

        .footer__tagline {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            max-width: 15.625rem;
        }

        .footer__title {
            font-family: var(--font-display);
            font-size: 1.125rem;
            margin-bottom: var(--space-sm);
            color: var(--color-olive);
        }

        .footer__list li {
            margin-bottom: var(--space-xs);
        }

        .footer__link {
            font-size: 0.875rem;
            color: var(--color-text-muted);
            transition: color var(--transition-base);
        }

        .footer__link:hover {
            color: var(--color-text);
        }

        .footer__bottom {
            margin-top: var(--space-lg);
            padding-top: var(--space-md);
            border-top: var(--border-thin) solid var(--color-sage-alpha);
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--color-text-muted);
        }

        /* Mobile First Responsive Breakpoints */
        
        /* Hidden on strictly mobile */
        .nav__links {
            display: none;
        }

        @media (min-width: 600px) {
            .nav__links {
                display: flex; /* Reset */
            }

            .products__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-lg) var(--space-md);
            }
            .newsletter {
                margin: var(--space-lg);
                border-radius: var(--radius-md);
            }
            .footer__grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer__bottom {
                flex-direction: row;
            }
        }

        @media (min-width: 900px) {

            .hero__content {
                padding-left: var(--space-lg);
            }
            .products__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .philosophy__inner {
                flex-direction: row;
                align-items: center;
                gap: var(--space-xl);
            }
            .testimonials__grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer__grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: var(--space-md);
            }
        }