:root {
  --accent: #d23a1e;
  --accent-dark: #b5301a;
  --dark: #1a1411;
  --dark-2: #2a201a;
  --light: #f6f2ec;
  --light-tint: #ede5db;
  --light-tint-2: #e4daca;
  --white: #ffffff;
  --text: #1a1411;
  --text-muted: #6b5d50;
  --border: #d8ccba;
  --border-light: rgba(255, 255, 255, 0.15);
  --font: 'Arvo', Georgia, serif;
  --nav-h: 64px;
  --banner-h: 42px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }
h4 { font-size: 1rem; }

section {
  scroll-margin-top: calc(var(--banner-h) + var(--nav-h) + 8px);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 20px;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--accent-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--light);
  padding: 72px 28px 0;
  overflow: hidden;
}

.hero-band {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62%;
  background: var(--dark);
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 5px,
    rgba(255, 255, 255, 0.022) 5px,
    rgba(255, 255, 255, 0.022) 6px
  );
}

.hero-panel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--white);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--border);
  box-shadow: 0 12px 50px rgba(26, 20, 17, 0.1);
}

.hero-text {
  padding: 60px 52px 64px;
}

.hero-text h1 {
  margin-bottom: 18px;
}

.hero-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 30em;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  overflow: hidden;
  background: var(--dark-2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TRUST / ABOUT ===== */
.trust {
  padding: 100px 0;
  background: var(--light);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.trust-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
}

.trust-content h2 {
  margin-bottom: 20px;
}

.trust-content > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.02rem;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
}

.checklist svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  margin-bottom: 0;
}

.product-list {
  max-width: 820px;
  margin: 0 auto;
}

.product-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.product-item:last-child {
  border-bottom: none;
}

.product-num {
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.product-body h3 {
  margin-bottom: 6px;
}

.product-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ===== FIREWOOD ===== */
.firewood {
  padding: 100px 0;
  background: var(--light-tint);
}

.firewood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.firewood-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
}

.firewood-text h2 {
  margin-bottom: 18px;
}

.firewood-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ===== PROOF ===== */
.proof {
  padding: 100px 0;
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-item {
  overflow: hidden;
  border: 1px solid var(--border);
}

.proof-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 611 / 529;
  object-fit: cover;
}

/* ===== CTA BAND ===== */
.cta