:root {
    --bg: #12140f;
    --bg-2: #1b1f16;
    --ink: #f3efe4;
    --muted: #b7b4a6;
    --accent: #d8ff3d;
    --accent-ink: #1a2208;
    --line: rgba(243, 239, 228, 0.14);
    --card: #22281c;
    --error: #ff8b6b;
    --radius: 18px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Manrope, system-ui, sans-serif;
    line-height: 1.55;
}

.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    opacity: 0.05;
    z-index: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 0.6px, transparent 0.6px);
    background-size: 3px 3px;
}

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

a {
    color: var(--accent);
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-header,
.site-footer,
main > section {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0 12px;
}

.logo {
    font-family: Syne, sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 1.2rem;
    color: var(--ink);
}

.site-nav {
    display: flex;
    gap: 22px;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.site-nav a.is-active,
.site-nav a:hover {
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--ink);
    position: relative;
    margin: 0 auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 12px;
}

.nav-toggle span::before { top: 14px; }
.nav-toggle span::after { bottom: 14px; }

.hero,
.page-hero {
    padding: 72px 0 36px;
}

h1,
h2,
h3 {
    font-family: Syne, sans-serif;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: 0 0 16px;
}

h1 { font-size: clamp(3rem, 8vw, 6.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.35rem; }

.eyebrow,
.label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    margin: 0 0 12px;
}

.lede {
    max-width: 38rem;
    font-size: 1.15rem;
    color: var(--muted);
}

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

.product-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.price-line {
    margin: 8px 0 0;
    font-size: 1.15rem;
}

.price-line strong {
    font-family: Syne, sans-serif;
    font-size: 2.2rem;
    margin-right: 10px;
}

.price-line span {
    color: var(--muted);
}

.product-shot {
    display: grid;
    place-items: center;
    min-height: 340px;
    background:
        radial-gradient(circle at 50% 20%, #d8ff3d33, transparent 46%),
        linear-gradient(180deg, #2a3220, #15190f);
    border: 1px solid var(--line);
    border-radius: 28px;
}

.bottle {
    width: 150px;
    height: 280px;
    border-radius: 28px 28px 36px 36px;
    background: linear-gradient(180deg, #3a4428 0%, #1a2208 55%, #d8ff3d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
}

.bottle span {
    font-family: Syne, sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.bottle small {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: inherit;
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 12px 0 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats strong {
    display: block;
    font-family: Syne, sans-serif;
    font-size: 2.4rem;
}

.stats span,
.muted {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    padding: 72px 0;
    align-items: start;
}

.checklist,
.schedule {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.checklist li,
.schedule li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.schedule span {
    display: inline-block;
    width: 3.2rem;
    color: var(--accent);
    font-weight: 700;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-bottom: 72px;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.card.featured {
    background: var(--accent);
    color: var(--accent-ink);
}

.card.featured .label,
.card.featured .price {
    color: var(--accent-ink);
}

.panel {
    background: linear-gradient(180deg, #2a3220, var(--card));
}

.price {
    font-family: Syne, sans-serif;
    font-size: 1.4rem;
    margin-top: 24px;
}

.cta-band {
    background: var(--bg-2);
    border-radius: 28px;
    padding: 48px;
    margin-bottom: 72px;
}

.form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    background: #15190f;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
}

.error {
    color: var(--error);
    font-size: 0.88rem;
    font-weight: 600;
}

.notice {
    padding: 12px 14px;
    border-radius: 12px;
}

.notice.success {
    background: #d8ff3d22;
    border: 1px solid #d8ff3d55;
}

.site-footer {
    padding: 28px 0 48px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
}

.copyright {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 28px;
}

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        top: 76px;
        right: 20px;
        left: 20px;
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 16px;
        flex-direction: column;
    }
    .site-nav.is-open { display: flex; }
    .stats,
    .split,
    .cards,
    .footer-grid,
    .product-hero {
        grid-template-columns: 1fr;
    }
    .hero, .page-hero { padding-top: 40px; }
    .cta-band { padding: 28px; }
}
