:root {
  --paper: #ffffff;
  --paper-2: #f2f2f2;
  --ink: #161616;
  --muted: #4a463f;
  --orange: #e25c12;
  --orange-deep: #b8430c;
  --blue: #1a3f78;
  --pine: #1e3328;
  --line: rgba(22, 22, 22, 0.14);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 78px; width: auto; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { text-decoration: none; font-weight: 600; letter-spacing: 0.02em; }
.nav a:hover { color: var(--orange-deep); }
.nav-toggle {
  display: none;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 8px 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
}
.btn:hover { background: var(--orange); border-color: var(--orange); }
.btn.light { background: transparent; color: var(--ink); }
.btn.light:hover { background: var(--ink); color: var(--paper); }

.hero {
  padding: 54px 0 28px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: end;
}
.kicker {
  margin: 0 0 8px;
  color: var(--orange-deep);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3 { font-family: "Barlow Condensed", "Arial Narrow", sans-serif; font-weight: 700; letter-spacing: 0.01em; line-height: 0.95; margin: 0; }
h1 { font-size: clamp(56px, 8vw, 92px); text-transform: uppercase; }
h2 { font-size: clamp(36px, 5vw, 52px); text-transform: uppercase; }
.lede { font-size: 22px; max-width: 40rem; color: var(--muted); }
.slogan { margin: 18px 0 0; font-weight: 700; max-width: 36rem; }
.site-footer .slogan { margin: 0; font-weight: 600; max-width: 28rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-mark {
  justify-self: end;
  width: min(280px, 100%);
}

.band { background: var(--ink); color: var(--paper); padding: 56px 0; }
.band h2 { color: var(--paper); }
.band p { color: #ddd6c8; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }
.product {
  border: 1px solid rgba(244, 239, 228, 0.25);
  padding: 26px;
  text-decoration: none;
  display: block;
  min-height: 240px;
}
.product:hover { border-color: var(--orange); }
.product span {
  display: block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.product h3 { font-size: 40px; text-transform: uppercase; margin-bottom: 10px; }
.product p { margin: 0 0 16px; }

.section { padding: 56px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.who { background: var(--paper-2); }
.who ol { margin: 12px 0 0; padding-left: 20px; }
.who li { margin: 8px 0; }

.page-hero { padding: 42px 0 10px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 78px); }
.prose { max-width: 42rem; }
.prose h2 { margin-top: 1.4rem; }
.prose p { color: var(--muted); }
.prose a { color: var(--orange-deep); }
.call-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 0; padding: 0; list-style: none; }
.call-list li { background: white; border-left: 4px solid var(--orange); padding: 14px 16px; }

form {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin-top: 18px;
}
label { display: grid; gap: 6px; font-weight: 700; }
input, select, textarea {
  border: 1px solid var(--ink);
  background: white;
  padding: 10px 12px;
  color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.checks { display: flex; flex-wrap: wrap; gap: 16px; font-weight: 600; }
.checks label { display: flex; align-items: center; gap: 8px; }
form .btn { justify-self: start; cursor: pointer; }
.form-note { color: var(--muted); font-size: 15px; }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0 40px; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: var(--orange-deep); }

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 20px;
  }
  .nav.open { display: flex; }
  .hero, .product-grid, .split, .call-list { grid-template-columns: 1fr; }
  .hero-mark { justify-self: start; width: 180px; }
  .header-inner { min-height: 78px; }
  .brand img { height: 64px; }
}
