:root {
    --ink: #241b14;
    --muted: #74685d;
    --line: #e8ddd0;
    --bg: #f8f4ed;
    --panel: #fffdf9;
    --brand: #9b4d16;
    --brand-dark: #6f3210;
    --gold: #d79a2b;
    --soft: #f5ead9;
    --green: #2e694d;
    --night: #21160f;
    --shadow: 0 20px 55px rgba(69, 42, 20, .10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
}
body.locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 253, 249, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -.03em; }
.logo-mark {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff9e8;
    background: linear-gradient(145deg, var(--brand), var(--gold));
    box-shadow: 0 12px 25px rgba(155, 77, 22, .23);
}
.logo-copy small { display: block; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.navlinks { display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 700; }
.navlinks a { position: relative; padding: 6px 0; }
.navlinks a:hover, .navlinks a.active { color: var(--brand); }
.navlinks a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold); }
.hero {
    padding: 82px 0 70px;
    background:
        radial-gradient(circle at 12% 22%, rgba(215,154,43,.22), transparent 30%),
        radial-gradient(circle at 90% 18%, rgba(155,77,22,.16), transparent 34%),
        linear-gradient(135deg, #fffaf0 0%, #fffdf9 54%, #f2e2c9 100%);
    border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 46px; align-items: center; }
.kicker { display: inline-flex; align-items: center; gap: 8px; border: 1px solid #e8c891; background: rgba(255,255,255,.72); color: var(--brand-dark); border-radius: 999px; padding: 7px 13px; font-size: 13px; font-weight: 850; }
h1, h2, h3 { text-wrap: balance; }
h1 { margin: 18px 0; font-size: clamp(40px, 5.5vw, 66px); line-height: 1.04; letter-spacing: -.055em; }
.lead { max-width: 720px; margin: 0 0 28px; color: var(--muted); font-size: 18px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 11px 18px; border: 1px solid transparent; border-radius: 999px; background: var(--brand); color: #fff; font-weight: 850; cursor: pointer; box-shadow: 0 13px 30px rgba(155,77,22,.20); }
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn.light { color: var(--ink); background: rgba(255,255,255,.88); border-color: var(--line); box-shadow: none; }
.btn.small { min-height: 38px; padding: 8px 14px; font-size: 14px; }
.feature-panel { position: relative; overflow: hidden; padding: 26px; color: #fff9ed; background: var(--night); border-radius: 30px; box-shadow: 0 32px 72px rgba(36,27,20,.23); }
.feature-panel::after { content: "🍺"; position: absolute; right: 12px; top: 0; font-size: 92px; opacity: .10; transform: rotate(8deg); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.status { display: inline-flex; align-items: center; gap: 9px; color: #dcc8b7; font-size: 13px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #65d18c; box-shadow: 0 0 0 6px rgba(101,209,140,.12); }
.fact-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 16px; margin-top: 12px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.065); }
.fact-row small { display: block; color: #d8b887; }
.fact-row strong { color: #fff; }
.section { padding: 68px 0; }
.section.alt { background: #fffdf9; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { max-width: 790px; margin-bottom: 30px; }
.section-title h2 { margin: 0 0 12px; font-size: clamp(29px, 4vw, 43px); line-height: 1.14; letter-spacing: -.04em; }
.section-title p { margin: 0; color: var(--muted); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { position: relative; overflow: hidden; padding: 24px; background: var(--panel); border: 1px solid var(--line); border-radius: 23px; box-shadow: var(--shadow); }
.card.clickable { transition: transform .18s ease, box-shadow .18s ease; }
.card.clickable:hover { transform: translateY(-4px); box-shadow: 0 26px 62px rgba(69,42,20,.15); }
.card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.25; }
.card p, .card li { color: var(--muted); }
.card p { margin: 0; }
.card ul { margin: 12px 0 0; padding-left: 20px; }
.card-icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 14px; background: var(--soft); font-size: 22px; }
.eyebrow { display: block; margin-bottom: 7px; color: var(--brand); font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { display: inline-flex; align-items: center; min-height: 29px; padding: 4px 9px; border-radius: 999px; color: #76512c; background: #f5ead9; font-size: 12px; font-weight: 800; }
.link-arrow { display: inline-flex; align-items: center; gap: 7px; margin-top: 17px; color: var(--brand); font-weight: 850; }
.band { padding: 24px; color: #f8ead9; background: linear-gradient(125deg, #2d1d12, #56301b); border-radius: 26px; box-shadow: var(--shadow); }
.band-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.stat { padding: 17px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.stat strong { display: block; font-size: 27px; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: 13px; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 0 0 24px; flex-wrap: wrap; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: #fff; color: var(--muted); font-weight: 800; cursor: pointer; }
.filter-btn.active, .filter-btn:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.search { min-width: min(320px, 100%); padding: 11px 14px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 15px 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--brand-dark); background: #fbf5eb; font-size: 13px; letter-spacing: .04em; }
tr:last-child td { border-bottom: 0; }
.notice { padding: 18px 20px; color: #70451d; background: #fff6df; border: 1px solid #ecd39e; border-radius: 19px; }
.article { max-width: 830px; margin: 0 auto; }
.article h1 { font-size: clamp(36px, 5vw, 58px); }
.article h2 { margin-top: 38px; font-size: 29px; }
.article p, .article li { color: #5e544c; }
.article .intro { font-size: 19px; color: var(--muted); }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; color: var(--muted); font-size: 13px; }
.form label { display: block; margin: 14px 0 6px; font-weight: 850; }
.input, textarea, select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px; background: #fff; color: var(--ink); }
textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 25px; margin-top: 12px; color: var(--green); font-weight: 800; }
.footer { padding: 38px 0; color: var(--muted); background: #fffdf9; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 28px; }
.footer h3 { margin: 0 0 9px; color: var(--ink); font-size: 15px; }
.footer a { display: block; margin: 6px 0; }
.footer a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }
.age-gate { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(25,17,11,.86); backdrop-filter: blur(12px); }
.age-gate.open { display: grid; }
.age-card { width: min(520px, 100%); padding: 31px; border-radius: 25px; background: #fffdf9; box-shadow: 0 40px 90px rgba(0,0,0,.35); }
.age-card h2 { margin: 0 0 10px; font-size: 31px; }
.age-card p { color: var(--muted); }
.age-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.empty { display: none; padding: 20px; color: var(--muted); text-align: center; }
@media (max-width: 940px) {
    .hero-grid, .grid-4 { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
    .hero-grid, .grid-2, .grid-3, .grid-4, .stats, .footer-grid, .band-grid { grid-template-columns: 1fr; }
    .nav { align-items: flex-start; flex-direction: column; padding: 15px 0; }
    .navlinks { width: 100%; overflow-x: auto; padding-bottom: 5px; }
    .hero { padding-top: 58px; }
    .container { width: min(100% - 28px, 1160px); }
}
