/* --- Variables & Reset --- */
:root {
    --deep-emerald: #0F3A2D;
    --rich-green: #1A4D3E;
    --royal-gold: #D4AF37;
    --pale-gold: #F4E3B2;
    --cream-bg: #F9F7F2;
    --white: #ffffff;
    --text-dark: #2C3531;
    --text-cream: #EAEAEA;
    --font-heading: 'Cinzel Decorative', serif;
    --font-body: 'Inter', sans-serif;
    --section-spacing: 100px;
}

html, body { margin: 0; padding: 0; width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.7; background-color: var(--white); }

/* --- Typography & Utils --- */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 20px; color: var(--rich-green); }
h1 { font-size: 3.5rem; line-height: 1.15; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
a { text-decoration: none; transition: 0.3s; }
img { max-width: 100%; display: block; }

.text-gold { color: var(--royal-gold); }
.text-green { color: var(--rich-green); }
.text-cream { color: var(--text-cream); }
.bg-cream { background-color: var(--cream-bg); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 25px; }
.section-padding { padding: var(--section-spacing) 0; }
.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }
.relative { position: relative; }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* --- Header & Nav --- */
#header { position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0; transition: 0.4s; }
#header.scrolled {
    background: rgba(15, 58, 45, 0.95); backdrop-filter: blur(10px); padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo-wrapper .main-logo { height: 50px; width: auto; transition: 0.4s; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.logo-wrapper:hover .main-logo { transform: scale(1.1) rotate(-2deg); filter: drop-shadow(0 0 10px rgba(212,175,55,0.6)); }

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-cream); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; position: relative; font-size: 0.9rem; }
.nav-links a.active, .nav-links a:hover { color: var(--royal-gold); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--royal-gold); transition: 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.mobile-toggle { display: none; color: var(--royal-gold); font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh; background: radial-gradient(circle at 70% 30%, var(--rich-green), var(--deep-emerald));
    display: flex; align-items: center; color: var(--text-cream); padding-top: 80px;
}
.hero-content { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.hero-section h1 { color: var(--text-cream); }
.gold-accent { color: var(--royal-gold); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; display: inline-block; margin-bottom: 10px; border-bottom: 2px solid var(--royal-gold); }

/* Product Jar & Effects */
.hero-image-container { position: relative; perspective: 1000px; text-align: center; }
.product-jar {
    max-height: 600px; margin: 0 auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    transform: rotateY(-5deg); transition: 0.6s; position: relative; z-index: 2;
}
.hero-image-container:hover .product-jar { transform: rotateY(0deg) scale(1.05); }
.image-glow-effect {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 60%; height: 60%; background: radial-gradient(circle, rgba(212,175,55,0.4), transparent 70%);
    filter: blur(60px); z-index: 1; animation: pulse 4s infinite alternate;
}
@keyframes pulse { from { opacity: 0.5; } to { opacity: 0.8; } }

/* Amazon Button */
.btn-amazon {
    display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--royal-gold), #B89628);
    color: #000; padding: 15px 35px; border-radius: 50px; font-weight: 700; transition: 0.3s;
    box-shadow: 0 10px 20px rgba(212,175,55,0.3); text-transform: uppercase;
}
.btn-amazon:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(212,175,55,0.5); }
.amazon-cta-box { background: rgba(255,255,255,0.1); padding: 25px; border-radius: 15px; border: 1px solid rgba(212,175,55,0.3); backdrop-filter: blur(5px); display: inline-block; margin-top: 30px; }
.amazon-cta-box p { color: #fff; margin-bottom: 10px; font-size: 0.9rem; }

/* --- Features Grid (Small) --- */
.features-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 30px; }
.feature-item { padding: 20px; background: #fff; border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.feature-item:hover { transform: translateY(-5px); border-color: var(--royal-gold); }
.feature-item i { font-size: 2rem; display: block; margin-bottom: 10px; }

/* --- Science Section --- */
.science-chart { background: var(--cream-bg); padding: 30px; border-radius: 10px; border: 1px solid rgba(0,0,0,0.05); margin-top: 30px; }
.chart-row { margin-bottom: 20px; }
.chart-row span { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
.bar { height: 20px; border-radius: 50px; width: 0; transition: 1.5s ease-out; }
.bar.standard { width: 30%; background: #ccc; }
.bar.ksm { width: 95%; background: var(--royal-gold); box-shadow: 0 0 10px rgba(212,175,55,0.4); }
.chart-note { font-size: 0.8rem; color: #888; font-style: italic; margin-top: 10px; }

.benefits-list { list-style: none; padding: 0; }
.benefits-list li { margin-bottom: 10px; display: flex; gap: 10px; font-weight: 500; }

/* --- Philosophy Section --- */
.philosophy-image-wrapper, .ingredient-image-wrap {
    border-radius: 20px 0 20px 0; overflow: hidden; position: relative;
    box-shadow: 20px 20px 0 rgba(212,175,55,0.15);
}
.shine-image { width: 100%; height: 500px; object-fit: cover; transition: 0.5s; }
.philosophy-image-wrapper:hover .shine-image, .ingredient-image-wrap:hover .shine-image { transform: scale(1.05); }

.values-mini-grid { display: flex; gap: 30px; }
.val-box { border-left: 3px solid var(--royal-gold); padding-left: 15px; }
.val-box strong { color: var(--deep-emerald); display: block; font-size: 1.1rem; }

/* --- Contact Section --- */
.contact-section { background: linear-gradient(to bottom, var(--rich-green), var(--deep-emerald)); color: #fff; padding: 120px 0; }
.contact-section h2 { color: var(--royal-gold); }
.email-box {
    display: inline-flex; align-items: center; gap: 15px; background: rgba(212,175,55,0.1);
    padding: 15px 30px; border-radius: 50px; border: 1px solid var(--royal-gold); transition: 0.3s;
}
.email-box:hover { background: var(--royal-gold); transform: scale(1.05); }
.email-box:hover .email-link, .email-box:hover .mail-icon { color: var(--deep-emerald); }
.email-link { color: var(--royal-gold); font-size: 1.3rem; font-weight: 700; }
.mail-icon { color: var(--royal-gold); font-size: 1.5rem; }

/* --- Footer --- */
.bg-dark-green { background-color: var(--deep-emerald); }
.padding-y-30 { padding: 40px 0; }
.footer-logo { height: 40px; margin: 0 auto 20px auto; opacity: 0.8; }
.copyright { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin: 0; }

/* --- Animations --- */
.fade-in, .fade-in-left, .fade-in-right, .fade-in-up { opacity: 0; transition: 0.8s; }
.fade-in { transform: translateY(30px); } .fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); } .fade-in-up { transform: translateY(30px); }
.visible { opacity: 1; transform: translate(0); }

/* --- Responsive --- */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; } h2 { font-size: 2rem; }
    .hero-content, .two-col-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-section { padding-top: 120px; align-items: flex-start; }
    .hero-image-container { order: -1; } .product-jar { max-height: 350px; }
    .shine-image { height: 350px; }
    .features-mini-grid { grid-template-columns: 1fr; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 75%;
        background: var(--deep-emerald); flex-direction: column; justify-content: center;
        transition: 0.4s; z-index: 999;
    }
    .nav-links.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1001; }
}