:root {
    --c-red: #cc0000;
    --c-red-dark: #a30000;
    --c-gold: #b8a06a;
    --c-gold-light: #d4c291;
    --c-text: #1a1a1a;
    --c-text-light: #4a4a4a;
    --c-bg: #ffffff;
    --c-bg-alt: #f7f5f2;
    --c-bg-dark: #1a1a1a;
    --c-muted: #888;
    --c-border: #e5e2dc;
    --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --radius: 8px;
    --radius-lg: 14px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-red-dark); }

/* ─── Header ─── */
.site-header {
    padding: 14px 24px;
    border-bottom: 1px solid var(--c-border);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo .ea-logo { display: block; width: auto; transition: opacity 0.2s; }
.logo:hover .ea-logo { opacity: 0.8; }
.footer-logo { display: block; margin: 0 auto 16px; }
.header-nav { display: flex; gap: 36px; }
.header-nav a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.2s;
    position: relative;
}
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-red);
    transition: width var(--transition);
}
.header-nav a:hover { color: var(--c-red); }
.header-nav a:hover::after { width: 100%; }
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
    transition: 0.3s;
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 14px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--c-border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ─── Buttons ─── */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--c-red);
    color: #fff;
}
.btn-primary:hover {
    background: var(--c-red-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(204,0,0,0.3);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: var(--c-text);
}

/* ─── Hero Carousel ─── */
.hero {
    position: relative;
    width: 100%;
    height: clamp(520px, 68vh, 660px);
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--c-border);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: right 65%;
    background-size: auto 115%;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 30%,
            rgba(255, 255, 255, 0.92) 42%,
            rgba(255, 255, 255, 0) 58%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
    color: var(--c-text);
}
.hero-content > * { max-width: 420px; }
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--c-red);
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 22px;
    font-weight: 400;
    color: var(--c-text);
    letter-spacing: -0.005em;
}
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--c-text-light);
    font-weight: 400;
    opacity: 1;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.hero .btn-secondary {
    background: transparent;
    color: var(--c-text);
    border: 2px solid var(--c-text);
}
.hero .btn-secondary:hover {
    background: var(--c-text);
    color: #fff;
}
.hero-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid var(--c-gold);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: var(--c-gold);
    border-color: var(--c-gold);
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid var(--c-border);
    color: var(--c-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}
.hero-arrow:hover {
    background: #fff;
    color: var(--c-red);
    border-color: var(--c-red);
}
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

/* ─── Sections ─── */
.section { padding: 96px 24px; }
.section-alt { background: var(--c-bg-alt); }
#skincare { background: var(--c-bg); }
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--c-red);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--c-text);
    margin-bottom: 16px;
    font-weight: 400;
}
.section-description {
    color: var(--c-text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 56px;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── Feature Split ─── */
.feature-split {
    padding: 0;
    overflow: hidden;
}
.feature-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
@media (min-width: 901px) {
    .feature-split-inner {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 24px;
    }
}
.feature-split-image {
    overflow: hidden;
}
.feature-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.feature-split:hover .feature-split-image img {
    transform: scale(1.03);
}
.feature-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 56px;
    background: var(--c-bg-alt);
}
.feature-split-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--c-text);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 400;
}
.feature-split-text p {
    color: var(--c-text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}
.feature-split-text .section-eyebrow { margin-bottom: 14px; }
.feature-split-reverse .feature-split-inner {
    direction: rtl;
}
.feature-split-reverse .feature-split-inner > * {
    direction: ltr;
}

/* ─── Product Grid ─── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}
.product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.product-card {
    background: var(--c-bg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid var(--c-border);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: var(--c-gold);
}
.product-image-wrap {
    aspect-ratio: 1/1;
    background: var(--c-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image { transform: scale(1.06); }
.product-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    padding: 24px 26px 8px;
    color: var(--c-text);
    font-weight: 400;
}
.product-tagline {
    font-size: 0.95rem;
    color: var(--c-muted);
    padding: 0 26px 28px;
    line-height: 1.6;
    font-weight: 300;
}

/* ─── Brand Story ─── */
.brand-story {
    background: var(--c-bg-dark);
    padding: 96px 24px;
    text-align: center;
}
.brand-story-inner {
    max-width: 700px;
    margin: 0 auto;
}
.brand-story blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 400;
}
.brand-story-attribution {
    color: var(--c-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}
.brand-story-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ─── Retailer Grid ─── */
.retailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.retailer-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: var(--c-bg-alt);
    border: 2px solid var(--c-border);
    text-decoration: none;
    transition: all var(--transition);
}
.retailer-card:hover {
    border-color: var(--c-red);
    background: var(--c-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}
.retailer-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--c-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ─── Social ─── */
.social-section {
    padding: 56px 24px;
    text-align: center;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.social-handle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--c-text);
    display: inline-block;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.social-handle:hover { color: var(--c-red); }
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.social-links a {
    color: var(--c-muted);
    transition: color 0.2s, transform 0.2s;
}
.social-links a:hover {
    color: var(--c-red);
    transform: translateY(-2px);
}

/* ─── Newsletter ─── */
.newsletter-section { text-align: center; }
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    border: 2px solid var(--c-border);
    border-right: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-form input[type="email"]:focus {
    border-color: var(--c-red);
}
.newsletter-form .btn-primary {
    border-radius: 0;
}
.newsletter-disclaimer {
    font-size: 0.75rem;
    color: var(--c-muted);
    margin-top: 8px;
}

/* ─── Footer ─── */
.site-footer {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--c-border);
    color: var(--c-muted);
    font-size: 0.85rem;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.footer-brand { margin-bottom: 24px; }
.footer-brand svg,
.footer-brand img { margin: 0 auto; display: block; opacity: 0.7; }
.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--c-text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--c-red); }
.site-footer a { color: var(--c-red); }
.footer-powered {
    margin-top: 8px;
    font-size: 0.75rem;
}
.footer-backlink {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.7rem;
    color: var(--c-muted);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .feature-split-inner {
        grid-template-columns: 1fr;
    }
    .feature-split-reverse .feature-split-inner {
        direction: ltr;
    }
    .feature-split-image { max-height: 400px; }
    .feature-split-text { padding: 48px 28px; }
    .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .hero {
        height: auto;
        min-height: unset;
        max-height: none;
        background: #ffffff;
    }
    .hero-slides {
        height: auto;
        min-height: calc(100vw * 620 / 768 + 340px);
    }
    .hero-slide {
        background-color: #ffffff;
        background-position: top center;
        background-size: 100% auto;
        align-items: flex-start;
        padding-top: calc(100vw * 620 / 768 + 8px);
    }
    .hero-overlay { display: none; }
    .hero-content {
        padding: 32px 24px 64px;
        text-align: center;
    }
    .hero-content > * { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-dots { bottom: 16px; }
}

@media (max-width: 768px) {
    .header-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero h1 { font-size: 1.85rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-arrow { display: none; }
    .section { padding: 64px 20px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .retailer-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; }
    .brand-story { padding: 64px 20px; }
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    .newsletter-form input[type="email"] {
        border-right: 2px solid var(--c-border);
        border-bottom: none;
    }
    .newsletter-form input[type="email"]:focus {
        border-color: var(--c-red);
    }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .product-grid-3 { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .retailer-grid { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }
}

/* ─── Article / Blog Page ─── */
.article {
    background: #fff;
    color: var(--c-text);
}
.breadcrumb {
    background: var(--c-bg-alt);
    border-bottom: 1px solid var(--c-border);
    font-size: 0.78rem;
    padding: 14px 24px;
}
.breadcrumb-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--c-muted);
    letter-spacing: 0.04em;
}
.breadcrumb-inner a {
    color: var(--c-text-light);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-inner a:hover { color: var(--c-red); }
.breadcrumb-inner span[aria-current="page"] {
    color: var(--c-text);
    font-weight: 500;
}

/* Article hero */
.article-hero {
    background: #fff;
    padding: 72px 24px 88px;
    border-bottom: 1px solid var(--c-border);
}
.article-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}
.article-hero-text { max-width: 540px; }
.article-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--c-red);
    margin-bottom: 18px;
}
.article-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    line-height: 1.06;
    font-weight: 400;
    color: var(--c-text);
    letter-spacing: -0.005em;
    margin-bottom: 22px;
}
.article-deck {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--c-text-light);
    margin-bottom: 28px;
}
.article-meta {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 0;
}
.article-meta li {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 7px 14px;
    border: 1px solid var(--c-border);
    border-radius: 999px;
    color: var(--c-text-light);
    background: var(--c-bg-alt);
}
.article-cta-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
}
.btn-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-text);
    padding: 4px 0;
    transition: color 0.2s, border-color 0.2s;
    text-decoration: none;
}
.btn-link:hover { color: var(--c-red); border-color: var(--c-red); }
.btn-secondary.btn-secondary-dark {
    color: var(--c-text);
    border-color: var(--c-text);
    background: transparent;
}
.btn-secondary.btn-secondary-dark:hover {
    background: var(--c-text);
    color: #fff;
}
.article-hero-image {
    position: relative;
    aspect-ratio: 1024 / 714;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-bg-alt);
    box-shadow: 0 30px 60px -30px rgba(26, 26, 26, 0.18);
}
.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Article sections */
.article-section {
    padding: 88px 24px;
    background: #fff;
}
.article-section.section-alt-bg { background: var(--c-bg-alt); }
.article-section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.article-narrow {
    max-width: 760px;
    margin: 0 auto;
}
.article-narrow .article-eyebrow,
.article-section-inner > .article-eyebrow {
    text-align: center;
}
.article-h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: var(--c-text);
    margin-bottom: 28px;
    letter-spacing: -0.005em;
}
.article-section-lede,
.article-narrow .article-lede {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--c-text-light);
    text-align: center;
    margin: 0 auto 24px;
    max-width: 640px;
}
.article-narrow > p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--c-text-light);
    margin-bottom: 18px;
    text-align: left;
}
.article-narrow .article-lede {
    text-align: left;
    font-size: 1.12rem;
    color: var(--c-text);
    margin-bottom: 22px;
}
.article-footnote {
    font-size: 0.78rem;
    color: var(--c-muted);
    line-height: 1.6;
    margin-top: 16px;
}
.stats-footnote {
    text-align: center;
    margin-top: 32px;
}

/* Stats */
.section-stats { background: var(--c-bg-alt); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(26, 26, 26, 0.16);
}
.stat-value {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4.6vw, 3.4rem);
    font-weight: 500;
    color: var(--c-red);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.stat-value span {
    font-size: 0.5em;
    margin-left: 2px;
    color: var(--c-red);
}
.stat-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--c-text-light);
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 12px;
}
.benefit-card {
    background: var(--c-bg-alt);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.benefit-card:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -22px rgba(26, 26, 26, 0.18);
}
.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}
.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--c-text-light);
}

/* Ingredients */
.section-ingredients { background: var(--c-bg-alt); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 12px;
}
.ingredient-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -22px rgba(26, 26, 26, 0.18);
}
.ingredient-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-bg-alt);
}
.ingredient-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ingredient-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--c-text);
    margin: 24px 26px 12px;
    letter-spacing: -0.005em;
}
.ingredient-card p {
    font-size: 0.94rem;
    line-height: 1.65;
    color: var(--c-text-light);
    margin: 0 26px 28px;
}

/* How To */
.howto-steps {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.howto-steps li {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
}
.howto-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.howto-steps li h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--c-text);
    margin-bottom: 10px;
}
.howto-steps li p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--c-text-light);
}

/* Quote band */
.article-quote-band {
    background: var(--c-text);
    color: #fff;
    padding: 64px 24px;
    text-align: center;
}
.article-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    line-height: 1.5;
    color: #fff;
    max-width: 820px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.005em;
}

/* Collection block reuses .product-card */
.section-collection {
    background: #fff;
    border-top: 1px solid var(--c-border);
}
.section-collection .product-card { text-decoration: none; color: inherit; }

/* FAQ */
.section-faq { background: var(--c-bg-alt); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.section-faq .article-h2 { text-align: left; }
.section-faq .article-eyebrow { text-align: left; }
.faq-item {
    border-top: 1px solid var(--c-border);
    padding: 22px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.02rem;
    color: var(--c-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--c-red);
    transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--c-text-light);
}
.faq-item p a { color: var(--c-red); font-weight: 600; }

/* Final CTA */
.article-final-cta {
    background: var(--c-bg-alt);
    padding: 96px 24px 112px;
    text-align: center;
}
.article-final-cta .article-cta-row {
    justify-content: center;
    margin-top: 8px;
}

/* Article responsive */
@media (max-width: 960px) {
    .article-hero { padding: 48px 24px 64px; }
    .article-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .article-hero-text { order: 2; max-width: 100%; }
    .article-hero-image { order: 1; max-width: 640px; margin: 0 auto; width: 100%; }
    .article-section { padding: 64px 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .ingredient-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .howto-steps { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 600px) {
    .article-hero { padding: 40px 20px 56px; }
    .article-section { padding: 56px 20px; }
    .article-final-cta { padding: 72px 20px 88px; }
    .stats-grid { grid-template-columns: 1fr; gap: 14px; max-width: 380px; margin: 12px auto 0; }
    .stat-card { padding: 28px 22px; }
    .benefits-grid { grid-template-columns: 1fr; gap: 14px; max-width: 480px; margin: 12px auto 0; }
    .article-cta-row { flex-direction: column; align-items: stretch; }
    .article-cta-row .btn-primary,
    .article-cta-row .btn-secondary { width: 100%; }
    .article-cta-row .btn-link { align-self: center; }
    .article-quote-band { padding: 48px 20px; }
}

