:root {
    --bg: #f5f1e8;
    --surface: rgba(255, 255, 255, 0.84);
    --text: #18212f;
    --muted: #5d6674;
    --line: rgba(24, 33, 47, 0.1);
    --primary: #aa7a22;
    --primary-dark: #8b6217;
    --accent: #12304a;
    --shadow: 0 20px 50px rgba(18, 48, 74, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(170, 122, 34, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(18, 48, 74, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #f3efe6 100%);
}

a {
    color: inherit;
}

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

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(251, 250, 247, 0.78);
    border-bottom: 1px solid var(--line);
}

.header-inner,
.footer-inner,
.section {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
}

.brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.header-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
}

.section {
    padding: 0 0 72px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 420px);
    gap: 32px;
    align-items: center;
    padding-top: 48px;
}

.eyebrow,
.card-label,
.panel-label {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.3rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0;
    line-height: 1.65;
}

.lead,
.section-heading p,
.footer-copy,
.footer-note,
.info-card p,
.value-card p,
.ingredient-card p,
.faq-item p,
.package-list,
.section-note,
.disclosure,
.support-page-card p,
.support-list {
    color: var(--muted);
}

.hero-copy,
.hero-panel-card,
.info-card,
.value-card,
.ingredient-card,
.package-card,
.support-page-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.hero-copy {
    padding: 36px;
}

.lead {
    margin-top: 18px;
    font-size: 1.08rem;
    max-width: 58ch;
}

.direct-answer {
    margin-top: 18px;
    max-width: 58ch;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary) 0%, #c8983d 100%);
    box-shadow: 0 14px 28px rgba(170, 122, 34, 0.22);
}

.button-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.button-secondary {
    color: var(--accent);
    background: rgba(18, 48, 74, 0.08);
}

.disclosure {
    margin-top: 18px;
    font-size: 0.92rem;
}

.hero-panel {
    position: relative;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 18px -10px -10px 20px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(170, 122, 34, 0.16), rgba(18, 48, 74, 0.08));
    z-index: -1;
}

.hero-bottle {
    width: min(100%, 310px);
    margin: 0 auto 18px;
    filter: drop-shadow(0 20px 28px rgba(18, 48, 74, 0.18));
}

.hero-panel-card {
    padding: 28px;
}

.check-list,
.package-list,
.support-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.package-list li,
.support-list li {
    position: relative;
    padding-left: 26px;
}

.check-list li + li,
.package-list li + li,
.support-list li + li {
    margin-top: 12px;
}

.check-list li::before,
.package-list li::before,
.support-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
}

.facts-grid,
.value-grid,
.ingredients-grid,
.packages-grid,
.support-grid {
    display: grid;
    gap: 18px;
}

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

.value-grid,
.support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.info-card,
.value-card,
.ingredient-card,
.package-card {
    padding: 26px;
}

.info-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.section-highlight {
    background: rgba(255, 255, 255, 0.35);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

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

.section-heading h2 {
    margin-bottom: 14px;
}

.ingredient-card h3,
.value-card h3,
.package-card h3 {
    margin-bottom: 10px;
}

.section-note {
    margin-top: 18px;
    font-size: 0.95rem;
}

.package-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-card-featured {
    border: 1px solid rgba(170, 122, 34, 0.32);
    background: linear-gradient(180deg, rgba(255, 251, 242, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.package-card-best {
    border: 1px solid rgba(18, 48, 74, 0.22);
    background: linear-gradient(180deg, rgba(241, 247, 252, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
}

.package-button {
    width: 100%;
    margin-top: auto;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin-top: 12px;
}

.site-footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: rgba(18, 48, 74, 0.92);
    color: #eff2f6;
}

.footer-inner {
    padding: 32px 0;
}

.footer-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-copy,
.footer-note {
    max-width: 70ch;
    color: rgba(239, 242, 246, 0.74);
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.support-page {
    width: min(860px, calc(100% - 32px));
    margin: 56px auto 72px;
}

.support-page-card {
    padding: 34px;
}

.support-page-card h1 {
    max-width: none;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
}

.support-page-card h2 {
    font-size: 1.3rem;
    margin: 28px 0 12px;
}

.support-page-card .button,
.support-page-card .support-list,
.support-page-card .small-note {
    margin-top: 16px;
}

.small-note {
    font-size: 0.92rem;
    color: var(--muted);
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-top: 28px;
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1040px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .facts-grid,
    .ingredients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-grid,
    .support-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy,
    .hero-panel-card,
    .info-card,
    .value-card,
    .ingredient-card,
    .package-card,
    .support-page-card {
        padding: 22px;
    }

    .hero-actions,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .facts-grid,
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
}
