/* ============================================
   ARUNIKA HERBAL — Premium Design System
   ============================================ */

/* Google Fonts imported via HTML */

:root {
    /* Color Palette */
    --color-primary: #2E5C3C;
    --color-primary-dark: #1e3f28;
    --color-primary-light: #4a7c55;
    --color-bg: #F7F3E8;
    --color-bg-alt: #EEEBD9;
    --color-accent: #C9A84C;
    --color-accent-light: #E8C547;
    --color-accent-warm: #D4AF37;
    --color-text: #1A1A1A;
    --color-text-light: #5C5C5C;
    --color-text-muted: #888;
    --color-white: #FFFFFF;
    --color-sage: #8CBA51;
    --color-leaf: #6BAB40;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --grad-gold: linear-gradient(135deg, #C9A84C 0%, #E8C547 50%, #C9A84C 100%);
    --grad-dark: linear-gradient(135deg, #1e3f28 0%, #2E5C3C 50%, #1e3f28 100%);
    --grad-hero: linear-gradient(135deg, rgba(247, 243, 232, 1) 0%, rgba(238, 235, 217, 0.7) 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    /* Spacing */
    --container-width: 1240px;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 7rem;

    /* Effects */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --shadow-card: 0 8px 32px rgba(46, 92, 60, 0.10);
    --shadow-card-hover: 0 24px 60px rgba(46, 92, 60, 0.18);
    --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.25);

    /* Transitions */
    --t-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --t-mid: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --t-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    --t-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a,
button,
.ingredient-card,
.step-card,
.benefit-card,
.hero-image-wrapper {
    cursor: none;
}

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

ul {
    list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    letter-spacing: 0.2px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    position: relative;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.2rem;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--grad-gold);
    border-radius: 2px;
    transition: width var(--t-mid);
}

.section-title:hover::after {
    width: 80px;
}

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

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: 3.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 1rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    letter-spacing: 8px;
    margin-bottom: 2rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0%;
    background: var(--grad-gold);
    border-radius: 2px;
    animation: preloaderLoad 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.preloader-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes preloaderLoad {
    to {
        width: 100%;
    }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--grad-gold);
    z-index: 9998;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9997;
    pointer-events: none;
    transition: transform 0.1s, width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(46, 92, 60, 0.6);
}

body.hovering .cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
}

body.hovering .cursor-outline {
    width: 56px;
    height: 56px;
    border-color: transparent;
    background: rgba(201, 168, 76, 0.12);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: transform var(--t-spring), box-shadow var(--t-fast);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn>* {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(46, 92, 60, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 92, 60, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}

.btn-ghost:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--t-fast);
}

.btn-ghost:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--color-primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(247, 243, 232, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0);
    transition: padding var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.header.scrolled {
    padding: 10px 0;
    border-bottom-color: rgba(201, 168, 76, 0.15);
    background: rgba(247, 243, 232, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-sub {
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 3px;
    margin-left: 6px;
    text-transform: uppercase;
    color: var(--color-accent);
    vertical-align: middle;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-light);
    position: relative;
    letter-spacing: 0.3px;
    transition: color var(--t-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -4px;
    left: 0;
    background: var(--grad-gold);
    transition: width var(--t-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

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

.header-cta {
    padding: 10px 24px;
    font-size: 0.82rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--t-fast);
    transform-origin: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 130px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--grad-hero);
}

/* Orb Background */
.hero-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(46, 92, 60, 0.15) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation-delay: 3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(140, 186, 81, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 35%;
    animation-delay: 6s;
}

@keyframes orbFloat {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Badge Chip */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-primary) 30%, var(--color-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    max-width: 470px;
    line-height: 1.8;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tag {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-primary);
    background: rgba(46, 92, 60, 0.08);
    border: 1px solid rgba(46, 92, 60, 0.15);
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    transition: all var(--t-fast);
}

.tag:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: transparent;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-image-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.2);
    animation: ringPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.hero-ring-1 {
    width: 105%;
    height: 105%;
    animation-delay: 0s;
}

.hero-ring-2 {
    width: 115%;
    height: 115%;
    animation-delay: 1s;
    opacity: 0.5;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.8;
    }
}

.hero-image-placeholder {
    width: 100%;
    max-width: 460px;
    background: transparent;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(46, 92, 60, 0.25));
    transition: transform var(--t-slow);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

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

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

/* Floating Badges on Image */
.hero-badge-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 2;
    animation: badgeFloat 5s ease-in-out infinite;
}

.hero-badge-float-1 {
    bottom: 15%;
    left: -5%;
    animation-delay: 0.5s;
}

.hero-badge-float-2 {
    top: 20%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes badgeFloat {

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

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

.badge-icon {
    font-size: 1.4rem;
}

.badge-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.badge-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollHintFade 2s ease-in-out 2s both;
    z-index: 2;
}

@keyframes scrollHintFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(46, 92, 60, 0.4);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--color-primary);
    border-radius: 3px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.hero-scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-container {
    background: var(--grad-dark);
    background-size: 200% 100%;
    animation: gradientShift 12s ease infinite;
    color: var(--color-accent);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.marquee-track {
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    animation: marquee 28s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 40px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

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

/* Pause on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 70px 0;
    background: var(--color-white);
    border-bottom: 1px solid rgba(238, 235, 217, 0.8);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 16px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--t-slow), transform var(--t-slow);
    transition-delay: var(--delay, 0s);
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3), transparent);
    flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--color-bg);
}

.about-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 24px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-image {
    order: 1;
}

.about-content {
    order: 2;
}

.image-frame {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 560px;
    background: transparent;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.2);
    box-shadow: var(--shadow-card);
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    transition: transform var(--t-slow);
}

.image-placeholder:hover img {
    transform: scale(1.02);
}

.image-accent-dot {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--grad-gold);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    opacity: 0.2;
    filter: blur(20px);
}

.image-decorative-line {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60%;
    height: 60%;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.about-pillars {
    display: flex;
    gap: 24px;
    margin: 2rem 0;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 18px;
    text-align: center;
    background: var(--color-white);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    flex: 1;
    transition: all var(--t-fast);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-accent);
}

.pillar-icon {
    font-size: 1.5rem;
}

.pillar-text {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}

/* ============================================
   INGREDIENTS
   ============================================ */
.ingredients {
    background: var(--color-bg-alt);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 28px;
    margin-top: 1rem;
}

.ingredient-card {
    background: linear-gradient(145deg, var(--color-white) 0%, rgba(247, 243, 232, 0.8) 100%);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--t-spring), box-shadow var(--t-fast), border-color var(--t-fast);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glass);
    opacity: 0;
    transition: opacity var(--t-fast);
    border-radius: inherit;
    pointer-events: none;
}

.ingredient-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 168, 76, 0.4);
}

.ingredient-card:hover::before {
    opacity: 1;
}

.ingredient-card:hover .card-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.3) 0%, transparent 70%);
    filter: blur(10px);
    opacity: 0;
    transition: opacity var(--t-fast);
    pointer-events: none;
}

.ingredient-img-wrap {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 0 auto 1.2rem;
    transition: transform var(--t-spring);
}

.ingredient-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow);
    border-radius: var(--radius-md);
}

.ingredient-card:hover .ingredient-img {
    transform: scale(1.08);
}

.ingredient-card:hover .ingredient-img-wrap {
    transform: none;
}

.ingredient-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.ingredient-card p {
    font-size: 0.88rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
    background: var(--color-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 1rem;
}

.benefit-card {
    background: var(--color-white);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: transform var(--t-spring), box-shadow var(--t-fast), border-color var(--t-fast);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-mid);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 168, 76, 0.3);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.featured-benefit {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: transparent;
    color: white;
    grid-row: span 1;
}

.featured-benefit h3 {
    color: var(--color-white);
}

.featured-benefit p {
    color: rgba(255, 255, 255, 0.75);
}

.featured-benefit::after {
    background: var(--grad-gold);
}

.featured-benefit .benefit-icon-wrap {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(46, 92, 60, 0.06);
    border: 1px solid rgba(46, 92, 60, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: transform var(--t-spring);
    font-size: 1.5rem;
}

.benefit-card:hover .benefit-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}

.benefit-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.15rem;
}

.benefit-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   USAGE
   ============================================ */
.usage {
    background: linear-gradient(135deg, #1e3f28 0%, #2E5C3C 40%, #1a3a24 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.usage-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.usage::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.usage::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(140, 186, 81, 0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    border-radius: 50%;
    pointer-events: none;
}

.usage .container {
    position: relative;
    z-index: 1;
}

.usage .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
    pointer-events: none;
}

.step-card {
    padding: 36px 28px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background var(--t-fast);
}

.step-card:last-child {
    border-right: none;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
}

.step-number-wrap {
    margin-bottom: 1.2rem;
}

.step-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1;
    position: relative;
}

.step-number::before {
    content: attr(data-num);
    position: absolute;
    font-size: 5rem;
    opacity: 0.04;
    top: -15px;
    left: -5px;
    pointer-events: none;
    color: white;
}

.step-card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-bg-alt);
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 1rem;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--t-spring), box-shadow var(--t-fast);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    opacity: 0.1;
    line-height: 1;
}

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

.featured-testimonial {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-color: transparent;
    color: white;
}

.featured-testimonial .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.featured-testimonial .author-info h4 {
    color: var(--color-white);
}

.featured-testimonial .author-info p {
    color: rgba(255, 255, 255, 0.55);
}

.featured-testimonial .testimonial-author {
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    display: block;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 1.8rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
    margin: 0 0 2px;
}

.author-info p {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #1e3f28 0%, #2E5C3C 50%, #3a6e4c 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: stretch;
}

.cta-lifestyle-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.25;
    filter: saturate(0.7);
}

.cta-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 63, 40, 0.95) 0%, rgba(30, 63, 40, 0.75) 50%, rgba(30, 63, 40, 0.4) 100%);
}

.cta-container {
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #131f16;
    color: var(--color-white);
    padding: 70px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {}

.footer-logo {
    color: var(--color-white) !important;
    margin-bottom: 1rem;
    display: block;
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t-fast);
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--color-accent);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: color var(--t-fast), padding-left var(--t-fast);
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color var(--t-fast);
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.88rem;
    margin: 0;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.3px;
}

/* ============================================
   FLOATING BACKGROUND ELEMENTS
   ============================================ */
.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
    animation: float 10s ease-in-out infinite;
    z-index: 0;
}

.floating-element:nth-child(odd) {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    animation-duration: 8s;
}

.floating-element:nth-child(even) {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    animation-duration: 12s;
    animation-delay: 2s;
}

@keyframes float {

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

    33% {
        transform: translateY(-20px) rotate(5deg);
    }

    66% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transition: opacity var(--t-slow), transform var(--t-slow);
    transition-delay: var(--delay, 0s);
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="slide-left"] {
    transform: translateX(-50px);
}

[data-animate="slide-right"] {
    transform: translateX(50px);
}

[data-animate="fade-scale"] {
    transform: scale(0.85);
}

[data-animate].visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

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

    .steps-grid::before {
        display: none;
    }

    .step-card:nth-child(2) {
        border-right: none;
    }

    .step-card:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .step-card:nth-child(4) {
        border-right: none;
    }
}

@media (max-width: 968px) {
    :root {
        --spacing-xl: 5rem;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero {
        padding-top: 110px;
        padding-bottom: 70px;
        min-height: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge-float {
        display: none;
    }

    .hero-scroll-hint {
        display: none;
    }

    .about-image {
        order: -1;
    }

    .image-placeholder {
        height: 380px;
    }

    .about-pillars {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 40%;
    }
}

/* ---- Logo: show full name by default ---- */
.logo-abbr {
    display: none;
}

.logo-full {
    display: inline;
}

/* ---- Nav CTA hidden on desktop ---- */
.nav-cta {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3.5rem;
    }

    /* Logo: swap to "AH" monogram */
    .logo-abbr {
        display: inline;
        font-size: 1.7rem;
        letter-spacing: -2px;
    }

    .logo-full {
        display: none;
    }

    /* Mobile Nav Overlay */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100dvh;
        background: var(--color-bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 48px;
        transition: right var(--t-mid);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    /* Elegant italic serif nav links */
    .nav-link {
        font-size: 1.7rem;
        font-family: var(--font-heading);
        font-style: italic;
        font-weight: 400;
        color: var(--color-primary);
        letter-spacing: 0;
    }

    .nav-link::after {
        bottom: -6px;
    }

    /* Shop CTA inside mobile nav */
    .nav-cta {
        display: flex;
        font-size: 0.85rem;
        padding: 13px 36px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .header-cta {
        display: none;
    }

    /* ---- Hero ---- */
    .hero {
        padding-top: 90px;
        padding-bottom: 60px;
        min-height: 100svh;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 5px 12px;
    }

    .hero-eyebrow {
        font-size: 0.92rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 1.4rem;
    }

    .hero-tags {
        gap: 8px;
    }

    .tag {
        font-size: 0.73rem;
        padding: 4px 11px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }

    /* ---- Stats: 2×2 grid ---- */
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: none;
        padding: 24px 16px;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(201, 168, 76, 0.1);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* ---- About ---- */
    .image-placeholder {
        height: 300px;
    }

    .about-pillars {
        flex-direction: column;
        gap: 10px;
    }

    .pillar {
        flex-direction: row;
        justify-content: center;
        padding: 12px 18px;
    }

    /* ---- Ingredients: 2-col ---- */
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ingredient-card {
        padding: 22px 16px;
    }

    .ingredient-icon-wrap {
        width: 54px;
        height: 54px;
    }

    .ingredient-icon {
        font-size: 1.6rem;
    }

    /* ---- Benefits: single col ---- */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-card {
        padding: 26px 22px;
    }

    /* ---- Usage: stacked steps ---- */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 26px 22px;
    }

    .step-card:last-child {
        border-bottom: none;
    }

    /* ---- Testimonials: horizontal snap scroll ---- */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 4px 24px 20px;
        margin: 0 -24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 82vw;
        max-width: 300px;
        scroll-snap-align: start;
    }

    /* ---- CTA Banner ---- */
    .cta-banner {
        padding: 70px 0;
    }

    .cta-title {
        font-size: 1.65rem;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* ---- Footer ---- */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

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

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-logo {
        font-size: 1.4rem;
    }
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}