:root {
  --bg: #f6f8f2;
  --paper: #ffffff;
  --ink: #17251c;
  --copy: #3d4b43;
  --muted: #6c796f;
  --line: #dfe8dc;
  --green: #1f7a4d;
  --green-dark: #145a38;
  --gold: #b9852c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--copy);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: var(--green-dark); }

.site-header,
.site-footer {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-footer { border-top: 1px solid var(--line); border-bottom: 0; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  font-size: 22px;
}

.brand img { width: 34px; height: 34px; border-radius: 8px; }

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf6;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.product-nav {
  display: none;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 0 0 12px;
  margin: 0;
}

.product-nav[data-open="true"] { display: flex; }
.product-nav::-webkit-scrollbar { display: none; }

.product-nav a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbf6;
  color: var(--copy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.product-nav a[aria-current="page"] {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

.product-nav a.product-nav__cta {
  background: #fff4e2;
  border-color: #e4c281;
  color: #8b4d13;
}

.product-nav a.product-nav__cta[aria-current="page"] {
  background: #d33b20;
  border-color: #d33b20;
  color: #fff;
}

.hero {
  padding: 54px 0 36px;
}

.kicker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(34px, 6vw, 58px); margin: 12px 0 18px; max-width: 920px; }
h2 { font-size: clamp(26px, 4vw, 38px); margin: 0 0 16px; }
h3 { font-size: 21px; margin: 0 0 10px; }

.lead {
  font-size: 19px;
  max-width: 780px;
  color: var(--copy);
}

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

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 26px;
  align-items: start;
}

.card,
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 14px;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.btn-primary { background: var(--green); color: #fff; }
.btn-secondary { background: #eaf3ea; color: var(--green-dark); }

.section { padding: 34px 0; }

.list {
  padding-left: 20px;
}

.notice {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 26px;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}

.breadcrumbs a { color: var(--muted); text-decoration: none; }

@media (max-width: 820px) {
  .grid,
  .two-col { grid-template-columns: 1fr; }
}

@media (min-width: 760px) {
  .menu-toggle { display: none; }
  .product-nav {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding-bottom: 16px;
  }
}
