:root {
  --red: #e14124;
  --ink: #2c2b27;
  --olive: #778472;
  --lime: #c7ef00;
  --amber: #ffae03;
  --paper: #f6f4ef;
  --line: #ddd8ce;
  --muted: #6e6a61;
  --white: #ffffff;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid rgba(44, 43, 39, 0.1);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--red);
  padding: 11px 18px;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-content {
  align-self: center;
  padding: clamp(42px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-content p,
.page-hero p,
.intro-grid p,
.contact-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.hero-actions,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 28px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.intro-grid p,
.page-hero p,
.contact-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.category-grid,
.product-grid,
.feature-grid,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.category-card,
.product-card,
.feature-grid article,
.choice-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
}

.category-card div,
.product-card,
.feature-grid article,
.choice-grid article {
  padding: 24px;
}

.category-card p,
.product-card p,
.feature-grid p,
.choice-grid p,
.timeline p,
.split p {
  color: var(--muted);
}

.dark-band {
  background: var(--ink);
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}

.stats p,
.choice-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split.reverse img {
  order: 2;
}

.split img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.text-link {
  color: var(--red);
  font-weight: 800;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 98px clamp(18px, 4vw, 28px) 44px;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: contain;
  object-position: center;
  margin-bottom: 18px;
  padding: 18px;
  background: var(--white);
  border-radius: 6px;
}

.product-card span {
  display: block;
  margin-top: 16px;
  color: var(--olive);
  font-size: 13px;
  font-weight: 800;
}

.pill-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(225, 65, 36, 0.1);
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline div {
  border-top: 3px solid var(--red);
  padding-top: 18px;
}

.timeline span {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-weight: 900;
}

.choice-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.choice-grid h3 {
  color: var(--lime);
}

.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-copy h1 {
  font-size: clamp(38px, 5.2vw, 70px);
  line-height: 1;
}

.contact-panel {
  margin-top: 28px;
  padding: 22px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.contact-panel span {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel a {
  display: inline-block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 900;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfaf6;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 42px 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer img {
  width: 210px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    margin-top: 8px;
    padding-left: 18px !important;
    text-align: center;
  }

  .hero,
  .intro-grid,
  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-content {
    padding: 42px 22px 58px;
  }

  .category-grid,
  .product-grid,
  .product-grid.two,
  .feature-grid,
  .choice-grid,
  .stats,
  .timeline {
    grid-template-columns: 1fr;
  }

  .split.reverse img {
    order: 0;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 158px;
  }

  h1 {
    font-size: 40px;
  }

  .page-hero h1,
  .contact-copy h1 {
    font-size: 36px;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .contact-panel a {
    font-size: 18px;
  }
}
