:root {
    /* New Artisanal Palette (OKLCH) */
    --bg-color: oklch(0.98 0.005 80);
    /* Warm light background */
    --text-color: oklch(0.25 0.02 60);
    /* Deep smooth brown */
    --text-light: oklch(0.5 0.02 60);
    /* Muted brown */

    --primary-color: oklch(0.55 0.12 45);
    /* Rust / Red Clay */
    --secondary-color: oklch(0.94 0.015 80);
    /* Warm beige */
    --accent-color: oklch(0.75 0.08 80);
    /* Soft peach/clay */

    --white: oklch(1 0 0);
    /* Card/pure white */
    --bg-light: oklch(0.98 0.005 80);
    /* Base cream */
    --bg-alt: oklch(0.96 0.005 80);
    /* Subtle contrast beige */

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Cormorant Garamond', serif;
    /* Artisanal feel for body test too */

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Header */
.site-header {
    padding: var(--space-md) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 250, 249, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
    /* Enable smooth hiding */
}

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

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

.logo-img {
    height: 60px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.nav-links a {
    font-size: 1.3rem;
    /* Increased from 0.9rem for Garamond legibility */
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    /* Updated to primary color */
}

.btn-nav {
    border: 1px solid var(--text-color);
    padding: 0.6rem 1.4rem;
    /* Slightly larger padding */
    border-radius: 50px;
    font-size: 1.1rem;
    /* Match proportional scale */
}

.btn-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: var(--space-xl);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
    /* Tighter for large serif display */
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--space-md);
    max-width: 400px;
}

.hero-content .cta-button {
    display: inline-block;
    padding: 14px 45px;
    background-color: var(--clay-terracotta);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(186, 88, 51, 0.3);
}

.hero-content .cta-button:hover {
    background-color: #8c4228;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 88, 51, 0.4);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    /* Larger touch target */
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.1em;
    /* Premium boutique feel */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    perspective: 1000px;
}

.visual-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Shimmer effect overlay */
.visual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.15),
            transparent);
    z-index: 10;
    pointer-events: none;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-img.active {
    opacity: 1;
    z-index: 2;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
    animation: scrollIndicatorFloat 2s infinite ease-in-out;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 5px;
}

.scroll-indicator .arrow-icon {
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    transform: rotate(45deg);
}

.scroll-indicator .line {
    display: none;
    /* Removing the long line as per "ugly" feedback */
}

/* Featured Products */
.featured-products {
    padding: var(--space-xl) 0;
}

.featured-products {
    padding: var(--space-xl) 0;
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-header p {
    color: var(--text-light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Adjusted for 4 items */
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-card {
    display: block;
}

.img-wrapper {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.product-info .price {
    font-size: 0.95rem;
    color: var(--text-light);
}

.center-btn {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid var(--text-color);
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    opacity: 0.7;
}

/* Video Showcase Section */
.video-showcase {
    padding: var(--space-lg) 0;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Video is slightly smaller than text */
    gap: var(--space-lg);
    align-items: center;
    max-width: 900px;
    /* Scaled down container */
    margin: 0 auto;
}

.video-showcase .video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.video-showcase video {
    width: 100%;
    display: block;
}

.video-text h3 {
    font-size: 2rem;
    /* Scaled down */
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.video-text p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: var(--space-xl) 0;
    background-color: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.about-quote {
    padding-right: var(--space-lg);
    border-right: 1px solid var(--text-color);
    opacity: 0.8;
}

/* Testimonial Box */
.testimonial-container {
    background-color: #f4f1ee;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(186, 88, 51, 0.1);
}

.testimonial-container h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--clay-terracotta);
    margin-bottom: 1.5rem;
    font-style: italic;
    opacity: 0.8;
}

.about-quote blockquote {
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--clay-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-quote cite {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clay-terracotta);
}

.about-text {
    padding-left: var(--space-md);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Video Section CTA */
.video-cta {
    display: inline-block;
    padding: 14px 45px;
    background-color: var(--clay-terracotta);
    color: white;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(186, 88, 51, 0.3);
}

.video-cta:hover {
    background-color: #8c4228;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186, 88, 51, 0.4);
}


/* Footer */
/* Footer */
footer {
    padding: var(--space-lg) 0 var(--space-md);
    background-color: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Align to center vertically */
    margin-bottom: var(--space-lg);
    gap: 80px;
}

.brand {
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    /* Add spacing below heading */
}

.brand .links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.bottom-bar {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--space-md);
}

/* Animations */
@keyframes float {

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

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

/* Scroll indicator needs special animation to preserve centering transform */
@keyframes scrollIndicatorFloat {

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

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

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Scroll Reveal Classes (handled by JS) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {

    /* Hamburger Menu */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 101;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background-color: var(--text-color);
        transition: all 0.3s ease;
    }

    /* Mobile Nav State */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(250, 250, 249, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .brand {
        text-align: center;
    }

    .brand .links {
        justify-content: center;
    }

    .footer-video {
        justify-content: center;
    }

    .video-showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .video-content {
        max-width: 350px;
        margin: 0 auto;
    }

    .video-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .video-content p {
        text-align: center;
    }

    .video-features {
        margin: 2rem auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: fit-content;
    }

    .video-cta {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }

    .testimonial-container {
        padding: 2rem 1.5rem;
    }

    .about-quote blockquote {
        font-size: 1.4rem;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    /* Animation for Hamburger to X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .site-header nav {
        flex-direction: row;
        /* Keep logo and burger side-by-side */
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto var(--space-md);
    }

    /* Smaller product cards on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .product-info .price {
        font-size: 0.85rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }

    .about-quote {
        border-right: none;
        border-bottom: 1px solid var(--text-color);
        padding-right: 0;
        padding-bottom: var(--space-md);
        margin-bottom: var(--space-md);
    }

    .about-quote blockquote {
        font-size: 1.8rem;
    }

    .about-text {
        padding-left: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}