/* 1. FONT IMPORTS & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lora:wght@400;700&display=swap');
:root {
    --color-white: #FFFFFF; --color-navy: #0A2342; --color-sand: #F8F4E9;
    --color-blue: #1D5D9B; --color-grey: #BDBDBD; --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
}
/* 2. RESETS & DEFAULTS */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* THIS IS THE FIX: scroll-behavior has been removed to prevent conflicts with Lenis.js */
html { 
    scroll-padding-top: 113px; 
}
body { font-family: var(--font-body); font-size: 16px; color: var(--color-navy); background-color: var(--color-white); line-height: 1.6; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; }
.container { width: 90%; max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; font-size: 2.25rem; margin-bottom: 4rem; }
.section-subtitle { text-align: center; max-width: 600px; margin: -3rem auto 3rem; font-size: 1.125rem; }

/* 3. HEADER & NAVIGATION */
.main-header { background-color: var(--color-white); padding: 1rem 0; border-bottom: 1px solid #e0e0e0; position: sticky; top: 0; z-index: 1000; }
.main-nav { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 80px; width: auto; }
.logo-link { -webkit-tap-highlight-color: transparent; }
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { font-family: var(--font-heading); text-decoration: none; color: var(--color-navy); font-weight: 700; font-size: 1.1rem; padding: 0.5rem 0; position: relative; }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background-color: var(--color-blue); transition: width 0.3s ease-out;
}
.nav-links a:hover::after { width: 100%; }

/* 4. OUR STORY SECTION */
.our-story-section { padding: 5rem 0; background-color: var(--color-white); }
.story-content { max-width: 700px; margin: 0 auto; text-align: center; }
.story-content p { margin-bottom: 1.5rem; font-size: 1.1rem; line-height: 1.7; }

/* 5. BENEFITS & FEATURES SECTIONS */
.benefits-section { padding: 5rem 0; background-color: var(--color-sand); }
.benefits-grid, .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.benefit-item, .feature-item { text-align: center; }
.benefit-icon, .feature-icon { margin-bottom: 1.5rem; display: inline-block; }
.benefit-icon img, .feature-icon img { height: 48px; width: 48px; }
/* ENHANCED BENEFITS STYLES */
.supporting-claims { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.supporting-claim-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.supporting-claim-item img { height: 20px; width: 20px; }
.supporting-claim-item span { font-size: 0.9rem; font-weight: 500; color: var(--color-navy); }

/* 6. INGREDIENTS SECTION (Now Features) */
.ingredients-section { padding: 5rem 0; background-color: var(--color-white); }

/* 7. CONTACT & SOCIAL */
.contact-section { padding: 5rem 0; background-color: var(--color-sand); }
.contact-cta { text-align: center; margin-top: 2rem; }
.btn {
    display: inline-block; background-color: var(--color-blue); color: var(--color-white);
    border: 2px solid var(--color-blue); padding: 1rem 2.5rem; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.btn:hover { background-color: transparent; color: var(--color-blue); }
.social-links { text-align: center; margin-top: 3rem; display: flex; justify-content: center; gap: 2.5rem; }
.social-links img { height: 28px; width: 28px; transition: transform 0.2s ease-out; }
.social-links a:hover img { transform: scale(1.1); }

/* 8. FOOTER */
.main-footer { padding: 2rem 0; background-color: var(--color-sand); text-align: center; }
.main-footer p { font-size: 0.9rem; color: var(--color-grey); }

/* 9. RESPONSIVE & MOBILE NAV */
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.icon-menu { height: 32px; width: 32px; }
@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    html { scroll-padding-top: 103px; }
    .logo { height: 70px; }
    .mobile-nav-toggle { display: block; z-index: 1001; }
    .nav-links {
        position: fixed; inset: 0 0 0 30%; flex-direction: column; padding: min(20vh, 10rem) 2rem;
        gap: 2rem; background: rgba(248, 244, 233, 0.75); backdrop-filter: blur(10px);
        transform: translateX(100%); transition: transform 350ms ease-out;
    }
    .nav-links[data-visible="true"] { transform: translateX(0%); }
    .benefits-grid, .features-grid { grid-template-columns: 1fr; }
    .nav-links a::after { display: none; }
}

/* 10. SCROLL ANIMATIONS */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }