:root {
    --primary: #0d0900;
    --primary-soft: #160c02;
    --surface: #1e1104;
    --surface-soft: #281808;
    --accent: #C49A3C;
    --accent-dark: #8B6B1E;
    --accent-soft: #F0DBA0;
    --text: #FFF8F0;
    --text-muted: #C8AE80;
    --text-soft: #9E7E58;
    --line: rgba(196, 154, 60, 0.14);
    --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(196, 154, 60, 0.09), transparent 32%),
        linear-gradient(180deg, #110901 0%, #080500 100%);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 5, 0, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 154, 60, 0.12);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1.1;
}

.logo-text span {
    color: var(--accent);
}

.logo-sub {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-soft);
    opacity: 0.75;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 0.97rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-btn,
.close-menu,
.acc-header {
    border: 0;
    background: none;
    color: inherit;
}

.menu-btn {
    display: none;
    font-size: 1.45rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 86vw);
    height: 100vh;
    background: #100800;
    border-left: 1px solid rgba(196, 154, 60, 0.12);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1200;
    transition: right 0.28s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #fff;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(196, 154, 60, 0.1);
    font-weight: 600;
}

.close-menu {
    align-self: flex-end;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    line-height: 1.1;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #E8C870 100%);
    color: #1a0e00;
    box-shadow: 0 14px 34px rgba(196, 154, 60, 0.32);
}

.price-card .btn {
    min-width: 185px;
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(196, 154, 60, 0.44);
}

.btn-small {
    padding: 0.72rem 1.3rem;
    font-size: 0.92rem;
}

.btn-lg {
    padding: 1rem 2.3rem;
    font-size: 1.02rem;
}

/* ── SECTIONS ── */
.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: rgba(196, 154, 60, 0.14);
    border: 1px solid rgba(196, 154, 60, 0.32);
    color: var(--accent-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
}

.section-label-light {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.section-heading h2,
.guarantee h2,
.faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-heading p,
.guarantee p {
    font-size: 1.12rem;
    color: var(--text-muted);
}

/* ── HERO ── */
.hero {
    padding: 88px 0 74px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 22%, rgba(196, 154, 60, 0.16), transparent 30%),
        radial-gradient(circle at 84% 76%, rgba(196, 154, 60, 0.10), transparent 26%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 48px;
    align-items: center;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(196, 154, 60, 0.12);
    border: 1px solid rgba(196, 154, 60, 0.24);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-soft);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    max-width: 760px;
}

.hero-copy {
    font-size: 1.18rem;
    color: var(--text-muted);
    max-width: 600px;
}

.hero-cta {
    margin: 32px 0 22px;
}

.hero-disclaimer,
.section-disclaimer,
.facts-note,
.copyright {
    color: var(--text-soft);
    font-size: 0.93rem;
}

.hero-disclaimer {
    max-width: 700px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.hero-image-mobile {
    display: none;
}

.hero-blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.26) 0%, transparent 66%);
    filter: blur(35px);
    animation: pulse 4.8s ease-in-out infinite;
}

.hero-image img {
    position: relative;
    z-index: 1;
    max-width: 380px;
    filter: drop-shadow(0 24px 52px rgba(0, 0, 0, 0.45));
    animation: float 6.2s ease-in-out infinite;
}

/* ── INTRO SECTION ── */
.intro-section {
    background: linear-gradient(180deg, rgba(196, 154, 60, 0.03), rgba(255, 255, 255, 0));
}

/* ── GRIDS ── */
.feature-grid,
.ingredient-grid,
.steps,
.pricing-grid,
.footer-links {
    display: grid;
    gap: 24px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── CARDS ── */
.feature-card,
.ingredient-card,
.step-item,
.testimonial-card,
.price-card,
.facts-panel,
.acc-item {
    background: linear-gradient(180deg, rgba(196, 154, 60, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--card-shadow);
}

.feature-card,
.ingredient-card {
    padding: 28px 24px;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(196, 154, 60, 0.22), rgba(196, 154, 60, 0.06));
    color: var(--accent-soft);
    font-size: 1.25rem;
}

.feature-card h3,
.ingredient-card h3,
.step-item h3,
.price-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p,
.ingredient-card p,
.step-item p {
    color: var(--text-muted);
}

/* ── INGREDIENTS ── */
.ingredients-section {
    background: linear-gradient(180deg, rgba(196, 154, 60, 0.04), rgba(255, 255, 255, 0));
}

.ingredient-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 32px;
}

.ingredient-dose {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Ingredient pills */
.pill-section-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.pill {
    background: rgba(196, 154, 60, 0.1);
    border: 1px solid rgba(196, 154, 60, 0.28);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-soft);
}

/* ── SUPPLEMENT FACTS ── */
.facts-panel {
    padding: 28px;
}

.facts-header {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 2px solid rgba(196, 154, 60, 0.18);
}

.facts-header h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.facts-header p {
    color: var(--text-muted);
}

.facts-table {
    display: grid;
    gap: 0;
}

.facts-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(196, 154, 60, 0.08);
    color: #fff;
}

.facts-head {
    font-weight: 700;
}

.facts-note {
    margin-top: 18px;
}

/* ── HOW TO USE ── */
.how-to {
    background: rgba(196, 154, 60, 0.018);
}

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

.step-item {
    padding: 34px 24px 28px;
    position: relative;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--accent) 0%, #E8C870 100%);
    color: #1a0e00;
    font-weight: 800;
    font-size: 1.1rem;
}

.step-icon {
    color: var(--accent-soft);
    font-size: 2rem;
    margin-bottom: 18px;
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: linear-gradient(180deg, rgba(196, 154, 60, 0.05), rgba(255, 255, 255, 0));
}

.testimonial-card {
    height: 100%;
    padding: 30px 26px;
}

.stars {
    color: #fbbf24;
    margin-bottom: 18px;
    font-size: 1.15rem;
}

.quote {
    color: #f5f2ef;
    font-size: 1.06rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.author {
    color: #fff;
    font-weight: 700;
}

.review-meta {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.section-disclaimer {
    text-align: center;
    max-width: 780px;
    margin: 24px auto 0;
}

.swiper-pagination {
    position: static !important;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: rgba(196, 154, 60, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

/* ── PRICING ── */
.pricing {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.price-card {
    padding: 38px 28px 30px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border-color: rgba(196, 154, 60, 0.5);
    background: linear-gradient(180deg, rgba(196, 154, 60, 0.14), rgba(255, 255, 255, 0.03));
    transform: scale(1.03);
}

.price-header {
    margin-bottom: 10px;
}

.bottle-count {
    color: var(--text-muted);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #E8C870 100%);
    color: #1a0e00;
    padding: 0.62rem 1.4rem;
    border-radius: 999px;
    font-size: 0.92rem;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    min-width: 150px;
    text-align: center;
}

.product-img-small {
    width: 100%;
    max-width: 180px;
    height: 240px;
    object-fit: contain;
    margin: 12px auto 16px;
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 10px;
}

.price-tag span {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.savings {
    color: #8df0bb;
    font-weight: 700;
    margin-bottom: 22px;
}

.savings.neutral {
    color: var(--text-muted);
}

.guarantee-badge {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(196, 154, 60, 0.1);
    color: var(--text-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.93rem;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* ── GUARANTEE ── */
.guarantee {
    text-align: center;
    background: linear-gradient(135deg, #8B6B1E 0%, #5A3C08 100%);
}

.guarantee .container {
    max-width: 820px;
}

.guarantee-icon {
    font-size: 3.2rem;
    margin-bottom: 18px;
}

.guarantee p {
    color: rgba(255, 255, 255, 0.92);
}

/* ── FAQ ── */
.faq {
    background: rgba(196, 154, 60, 0.012);
}

.accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.acc-item {
    overflow: hidden;
}

.acc-item.active {
    border-color: rgba(196, 154, 60, 0.44);
}

.acc-header {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    text-align: left;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 700;
}

.acc-icon {
    flex-shrink: 0;
    transition: transform 0.22s ease, color 0.22s ease;
}

.acc-item.active .acc-icon {
    transform: rotate(45deg);
    color: var(--accent-soft);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.acc-body p {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

/* ── FOOTER ── */
footer {
    padding: 64px 0 36px;
    border-top: 1px solid rgba(196, 154, 60, 0.1);
    background: #060400;
    text-align: center;
}

.footer-inner {
    display: grid;
    gap: 28px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.75);
    margin: 0 auto;
}

.footer-logo-sub {
    display: block;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.6;
    margin-top: 4px;
}

.footer-merchant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-pagamerican {
    height: 40px;
    width: auto;
}

.footer-powered {
    color: var(--text-muted);
    margin-top: -12px;
}

.footer-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.footer-note p {
    color: var(--text-soft);
    font-size: 0.65rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.55;
}

.copyright {
    margin-top: 0;
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-contact {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact a {
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

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

.links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s;
}

.links a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-links-inline {
    margin-bottom: 0;
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1);    opacity: 0.55; }
    50%       { transform: scale(1.08); opacity: 0.82; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .feature-grid,
    .steps,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-copy,
    .hero-disclaimer {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    nav,
    .btn-small {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }

    .section {
        padding: 72px 0;
    }

    .feature-grid,
    .ingredient-grid,
    .steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .links {
        flex-direction: column;
        gap: 1rem;
    }

    .price-card.featured {
        transform: none;
    }

    .hero {
        padding: 72px 0 60px;
    }

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-grid > .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: flex;
        min-height: 260px;
        margin: 18px 0 12px;
    }

    .hero-image img {
        max-width: 290px;
    }
}

@media (max-width: 550px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 74px;
    }

    .price-tag {
        font-size: 2.5rem;
    }

    .o-1 { order: 1; }
    .o-2 { order: 2; }
    .o-3 { order: 3; }
}
