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

:root {
    --color-primary: #2d5016;
    --color-primary-light: #3a6b1e;
    --color-accent: #c8a45c;
    --color-dark: #1a1a1a;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #fafaf8;
    --color-white: #ffffff;
    --color-border: #e8e6e1;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--color-text); background: var(--color-bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* Nav — same as main site */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--color-dark); }
.logo-icon { width: 36px; height: 36px; }
.logo-text { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; }
.logo-text span { color: var(--color-primary); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--color-text-light); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--color-primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--color-dark); transition: all 0.3s; }

/* Brand Hero */
.brand-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f7f0 0%, #e8ebe2 50%, #dde4d4 100%);
    position: relative;
}

.brand-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-link:hover { color: var(--color-primary); }
.back-link svg { width: 16px; height: 16px; }

.brand-tag-hero {
    display: inline-block;
    background: rgba(45, 80, 22, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.15);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.brand-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.brand-hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 640px;
    line-height: 1.8;
}

/* Brand Content */
.brand-content {
    padding: 4rem 2rem 6rem;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.brand-section {
    margin-bottom: 4rem;
}

.brand-section h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.brand-section > p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 1rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: rgba(45, 80, 22, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.product-icon {
    width: 48px;
    height: 48px;
    background: rgba(45, 80, 22, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.product-icon svg {
    width: 24px;
    height: 24px;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
}

.product-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(45, 80, 22, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Shop CTA */
.brand-cta-section {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.brand-cta-section h2 {
    margin-bottom: 0.5rem;
}

.brand-cta-section > p {
    margin: 0 auto 2rem;
    text-align: center;
}

.shop-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: all 0.2s;
}

.shop-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.shop-btn.amazon { background: #FF9900; }
.shop-btn.walmart { background: #0071CE; }
.shop-btn.ebay { background: #E53238; }
.shop-btn.shopify { background: #96BF48; }

/* Footer */
footer { background: #111; padding: 2rem; text-align: center; }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: absolute; top: 72px; left: 0; right: 0;
        background: white; flex-direction: column; padding: 1.5rem 2rem;
        gap: 1.5rem; border-bottom: 1px solid var(--color-border);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .product-grid { grid-template-columns: 1fr; }
    .features-list { grid-template-columns: 1fr; }
    .brand-hero { padding: 7rem 2rem 3rem; }
}
