:root {
    --brass: #b08a3e;
    --plate: #d4b56a;
    --ink: #1c1914;
    --mute: #6a6254;
    --wood: #2a2318;
    --paper: #f3efe6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Times New Roman", "Songti SC", "Microsoft YaHei", serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, calc(100% - 36px)); margin: 0 auto; }

.plaque {
    display: flex;
    justify-content: space-between;
    padding: 7px 18px;
    background: linear-gradient(180deg, #e6c97a, #b08a3e 45%, #8a6a2a);
    color: var(--wood);
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--wood);
    color: var(--plate);
}
.nav-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.logo-mark {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: var(--brass);
    color: var(--wood);
    font-size: 14px;
    box-shadow: inset 0 1px 0 #f0d98a;
}
.logo small { display: block; font-size: 10px; color: #c9b27a; letter-spacing: 0.16em; }
.nav-toggle { display: none; }
.nav-burger {
    display: none;
    margin-left: auto;
    padding: 5px 10px;
    background: var(--brass);
    color: var(--wood);
    font-size: 12px;
}
.nav-menu { display: flex; gap: 14px; flex: 1; font-size: 14px; }
.nav-menu a { color: #c9b27a; }
.nav-menu a.active, .nav-menu a:hover { color: var(--plate); border-bottom: 2px solid var(--brass); }
.nav-actions { display: flex; gap: 8px; }

.btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(180deg, #e6c97a, #b08a3e);
    color: var(--wood);
    font-weight: 700;
    font-size: 13px;
    box-shadow: inset 0 1px 0 #f4e3a8;
}
.btn:hover { filter: brightness(1.05); }
.btn-lg { padding: 12px 20px; }
.btn-ghost {
    background: transparent;
    color: var(--plate);
    border: 1px solid var(--brass);
    box-shadow: none;
}

.hero { padding: 52px 0 40px; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 32px;
    align-items: center;
}
.hero-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border: 2px solid var(--brass);
    color: var(--brass);
    font-size: 12px;
    letter-spacing: 0.12em;
}
.hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.22;
    font-weight: 600;
    margin-bottom: 14px;
}
.hero p { color: var(--mute); max-width: 40em; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.hero .btn-ghost { color: var(--ink); }
.hero-visual {
    padding: 10px;
    background: linear-gradient(180deg, #e6c97a, #b08a3e);
    box-shadow: 0 8px 0 var(--wood);
}
.hero-visual img { width: 100%; }
.ver {
    margin-top: 6px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--wood);
    font-weight: 700;
}

.data-band { background: var(--wood); color: var(--plate); }
.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.data-grid > div {
    padding: 22px 16px;
    border-right: 1px solid #3d3426;
}
.data-grid > div:last-child { border-right: 0; }
.data-num { font-size: 24px; font-weight: 700; color: var(--plate); }
.data-label { color: #c9b27a; font-size: 12px; }

.section { padding: 48px 0; }
.section.alt { background: #e8e0d0; }
.section-head { margin-bottom: 18px; }
.section-head h2 { font-size: 26px; font-weight: 600; margin-bottom: 6px; }
.section-head p { color: var(--mute); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
    padding: 20px;
    background: #fffdf7;
    border: 2px solid var(--brass);
}
.card.main { box-shadow: 6px 6px 0 var(--wood); }
.card h3 { margin: 8px 0; font-size: 18px; }
.card p { color: var(--mute); font-size: 14px; }
.icon {
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--brass);
    font-weight: 700;
}
.solution-card { padding: 0; overflow: hidden; }
.solution-card img { height: 158px; width: 100%; object-fit: cover; }
.solution-card div { padding: 16px 18px 20px; }
.price { color: var(--brass); font-weight: 700; margin-bottom: 6px; }

.cta {
    padding: 52px 0;
    text-align: center;
    background: var(--wood);
    color: var(--plate);
}
.cta h2 { font-size: 26px; margin-bottom: 8px; }
.cta p { color: #c9b27a; margin-bottom: 18px; }
.cta-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.cta .btn-ghost { color: var(--plate); }

.site-footer {
    padding: 34px 0 16px;
    background: #f3efe6;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; }
.footer-grid h4 { margin-bottom: 8px; font-size: 13px; letter-spacing: 0.1em; color: var(--wood); }
.footer-grid a, .footer-grid p { display: block; color: var(--mute); margin-bottom: 5px; font-size: 13px; }
.footer-bottom {
    margin-top: 18px;
    padding-top: 10px;
    border-top: 2px solid var(--brass);
    color: #8a8478;
    font-size: 12px;
}

.page-hero { padding: 40px 0 8px; }
.page-hero h1 { font-size: 30px; margin: 8px 0; }
.page-hero p { color: var(--mute); max-width: 44em; }
.dl-list, .help-list { display: grid; gap: 12px; }
.dl-item, .help-box {
    padding: 20px 22px;
    background: #fffdf7;
    border: 2px solid var(--brass);
}
.dl-item { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.dl-item.main { box-shadow: 6px 6px 0 var(--wood); }
.specs { display: flex; gap: 12px; color: var(--brass); font-size: 12px; margin: 6px 0; font-weight: 700; letter-spacing: 0.06em; }
.shot { margin-top: 20px; padding: 8px; background: linear-gradient(180deg, #e6c97a, #b08a3e); }
.shot img { width: 100%; }

@media (max-width: 900px) {
    .nav-burger { display: inline-block; }
    .nav-menu, .nav-actions { display: none; }
    .nav-toggle:checked ~ .nav-menu,
    .nav-toggle:checked ~ .nav-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-bottom: 14px;
    }
    .nav-wrap { flex-wrap: wrap; }
    .hero-grid, .grid-3, .data-grid, .footer-grid, .dl-item { grid-template-columns: 1fr; display: grid; }
    .data-grid > div { border-right: 0; border-bottom: 1px solid #3d3426; }
}
