:root {
  --bg: #0b0d0e;
  --bg-soft: #14181b;
  --bg-card: #161b1f;
  --text: #f4efe8;
  --muted: #c5b5a1;
  --muted-2: #9a8d7f;
  --line: rgba(255,255,255,.09);
  --accent: #d38b45;
  --accent-2: #f0c38e;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 20px 50px rgba(0,0,0,.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(211,139,69,.12), transparent 26%),
    linear-gradient(180deg, #0b0d0e 0%, #121518 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 78px 0; }
.section-tight { padding: 44px 0; }
.eyebrow {
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  font-size: .76rem;
}
h1,h2,h3 { line-height: 1.1; margin: 0 0 .75rem; }
h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.lead { font-size: 1.08rem; max-width: 68ch; }
.small { font-size: .96rem; color: var(--muted-2); }
.btn-row { display: flex; gap: .9rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 1.15rem; border-radius: 999px;
  font-weight: 700; border: 1px solid transparent; transition: .22s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #14100d; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }
.btn-secondary { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.02); }
.btn-secondary:hover { background: rgba(255,255,255,.06); }
.btn-disabled { opacity: .6; cursor: not-allowed; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11,13,14,.72);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; font-weight: 800; letter-spacing: .05em; }
.brand img { width: 42px; height: 42px; }
.nav { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a.active, .nav a:hover { color: var(--text); }
.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: end;
  overflow: clip;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,13,14,.88) 0%, rgba(11,13,14,.56) 42%, rgba(11,13,14,.82) 100%),
    linear-gradient(180deg, rgba(11,13,14,.14) 0%, rgba(11,13,14,.5) 100%),
    url('../images/hero-home.jpg') center/cover no-repeat;
}
.hero-home::after {
  content: "";
  position: absolute; inset: auto auto 12% 8%; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(211,139,69,.18); filter: blur(42px); pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 8rem 0 5rem; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: end; }
.hero-panel {
  padding: 1.25rem; background: rgba(17,20,22,.58); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-panel ul { margin: 0; padding-left: 1rem; color: var(--muted); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.4rem; }
.stat {
  padding: 1rem; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 18px;
}
.stat strong { display: block; font-size: 1.1rem; color: var(--text); }
.grid-3, .grid-4, .grid-2 { display: grid; gap: 1.2rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow);
}
.card.soft { background: rgba(255,255,255,.025); }
.icon-badge {
  width: 44px; height: 44px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(211,139,69,.14); color: var(--accent-2); margin-bottom: .9rem; font-weight: 800;
}
.gallery-band {
  display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: .9rem;
}
.gallery-band img {
  width: 100%; height: 320px; object-fit: cover; border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.panel-image {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.panel-image img { width: 100%; height: 100%; object-fit: cover; }
.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.4rem; align-items: stretch;
}
.cta-band {
  padding: 1.4rem; border-radius: 26px;
  background: linear-gradient(135deg, rgba(211,139,69,.16), rgba(255,255,255,.03));
  border: 1px solid rgba(211,139,69,.22);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap;
}
.timeline { position: relative; margin-top: 1rem; }
.timeline::before {
  content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.14);
}
.timeline-item {
  position: relative; padding-left: 3.3rem; padding-bottom: 1.4rem;
}
.timeline-item::before {
  content: ""; position: absolute; left: 10px; top: 8px; width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); box-shadow: 0 0 0 6px rgba(211,139,69,.12);
}
.kv { display: grid; gap: .75rem; }
.kv-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line);
}
.kv-row strong { color: var(--text); }
.checklist { display: grid; gap: .8rem; }
.checklist div { display: flex; gap: .75rem; color: var(--muted); }
.check { color: var(--accent-2); font-weight: 900; }
.products-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2rem; }
.product-card {
  overflow: hidden; background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.product-media { aspect-ratio: 4 / 3; overflow: hidden; background: #0e1011; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: .8rem 0 1rem; }
.price { font-size: 1.15rem; font-weight: 800; color: var(--text); }
.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .7rem; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--muted); font-size: .84rem;
}
.notice {
  border-left: 3px solid var(--accent); padding: 1rem 1rem 1rem 1.2rem; background: rgba(255,255,255,.03); border-radius: 14px;
}
.site-footer { padding: 30px 0 42px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.footer-links { display: flex; gap: .9rem; flex-wrap: wrap; color: var(--muted); }
.hero-subpage {
  min-height: 380px; display: grid; align-items: end; position: relative; overflow: clip;
  border-bottom: 1px solid var(--line);
}
.hero-subpage::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,13,14,.82), rgba(11,13,14,.48) 52%, rgba(11,13,14,.82)), var(--hero-bg, url('../images/campfire-wide.jpg')) center/cover no-repeat;
  filter: saturate(.92);
}
.hero-subpage .hero-inner { padding: 7rem 0 3.5rem; }
.banner {
  width: 100%; border-radius: 26px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.banner img { width: 100%; height: auto; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
@media (max-width: 980px) {
  .hero-grid, .split, .grid-3, .grid-4, .grid-2, .products-grid, .gallery-band { grid-template-columns: 1fr; }
  .gallery-band img { height: 260px; }
  .kv-row { grid-template-columns: 1fr; gap: .35rem; }
  .stat-row { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .hero-inner { padding-top: 6.2rem; }
  .section { padding: 62px 0; }
  .container { width: min(var(--max), calc(100% - 1.2rem)); }
  .header-inner { min-height: 70px; }
  .brand span { font-size: .93rem; }
}
