@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Refined Color Palette - Premium Organic */
    --primary: #b45309; /* Rich Amber Gold */
    --primary-dark: #78350f; /* Deep Earth Brown */
    --secondary: #ea580c; /* Sophisticated Terracotta */
    --accent: #064e3b; /* Deep Forest Green for "Natural" feel */
    
    --bg-main: #fffcf9; /* Soft Parchment */
    --bg-secondary: #fdf6e9; /* Warm Sand */
    --bg-tertiary: #f9f1e1; /* Aged Paper */
    
    --text-main: #2d1a01; /* Rich Espresso */
    --text-muted: #78350f; /* Warm Cocoa */
    --text-light: #fef3c7; /* Light Oat */
    
    --white: #ffffff;
    --glass: rgba(255, 252, 249, 0.8);
    --glass-border: rgba(180, 83, 9, 0.1);
    
    /* Refined Shadows & Transitions */
    --transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --shadow: 0 12px 30px -10px rgba(72, 33, 1, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(72, 33, 1, 0.25);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Layout Utilities --- */
.section {
    padding: 6rem 0;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }
    .container { padding: 0 1.5rem; }
}

/* --- Navigation --- */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.nav-wrapper.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid rgba(146, 64, 14, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card {
    padding: 0;
    overflow: hidden;
}

.product-img-box {
    height: 280px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    position: relative;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-content {
    padding: 2rem;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, var(--bg-tertiary), var(--bg-main));
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero-tag {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-img-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(80px);
    opacity: 0.2;
    animation: blobify 10s infinite alternate;
}

.hero-product-frame {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 400px;
    background: var(--white);
    border-radius: 3rem;
    padding: 1.5rem;
    transform: rotate(6deg);
    box-shadow: var(--shadow-lg);
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

@keyframes blobify {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3.5rem; }
    .hero p { margin-inline: auto; }
    .hero-img-container { margin-top: 3rem; }
}

/* --- Footer --- */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.6;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}
