:root {
  --ink: #111111;
  --muted: #6b7280;
  --paper: #f9fafb;
  --panel: #ffffff;
  --line: rgba(0, 0, 0, 0.08);
  --olive: #1a7f5a;
  --olive-dark: #0d5c40;
  --copper: #e07b3a;
  --gold: #f5b942;
  --cream: #f0faf5;
  --good: #16a34a;
  --warn: #d97706;
  --maybe: #3b82f6;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  --selector-glow: 0 8px 32px rgba(26, 127, 90, 0.14);
  --radius-btn: 999px;
  --radius-card: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Avenir Next, Segoe UI, system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: Inter, "Helvetica Neue", Avenir Next, system-ui, sans-serif; font-weight: 800; letter-spacing: -0.02em; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 5vw, 64px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(24, 32, 29, 0.1);
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 30px rgba(24, 32, 29, 0.12);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand span:last-child { display: grid; gap: 1px; }
.brand small { color: var(--muted); font-size: 0.75rem; }
.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(24, 32, 29, 0.12);
  background: linear-gradient(145deg, var(--olive), var(--gold));
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px 14px;
  border: 2px solid #fff;
  border-radius: 999px 999px 5px 5px;
  transform: rotate(26deg);
}
.nav-links { display: flex; gap: 24px; font-weight: 800; font-size: 0.92rem; }
.nav-links a { opacity: .78; }
.nav-links a:hover { opacity: 1; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(24, 32, 29, 0.18);
  background: #fff;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 96px clamp(20px, 5vw, 72px) 44px;
}
.hero img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero img { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 32, 27, .86), rgba(18, 32, 27, .54) 46%, rgba(18, 32, 27, .16)),
    linear-gradient(0deg, rgba(18, 32, 27, .72), rgba(18, 32, 27, .02) 48%);
}
.hero-content { position: relative; z-index: 1; width: min(820px, 100%); min-width: 0; color: #fff; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero .eyebrow { color: #f4c88f; }
h1, h2, h3, p { margin-top: 0; overflow-wrap: break-word; }
h1 {
  max-width: 850px;
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 5.2vw, 4.9rem);
  line-height: .95;
  letter-spacing: -0.02em;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3.2vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
h3 { margin-bottom: 10px; font-size: 1.18rem; }
.hero p { max-width: 720px; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.55vw, 1.16rem); }
.hero-actions, .status-row, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  max-width: 100%;
  border-radius: var(--radius-btn);
}
.button.primary, .button-primary { background: var(--olive); color: #fff; }
.button.secondary { border-color: rgba(255,255,255,.48); color: #fff; }
.button.ghost, .button-secondary { border: 1px solid var(--line); background: #fff; color: var(--ink); }
.trust-strip, .finder-section, .results-section, .best-section, .learn-section, .contact-cta-section, .contact-section, .content-page-section, .site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 100%;
}
.trust-strip div { padding: 16px 24px; background: #fff; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip { background: #f0faf5; border-color: rgba(26,127,90,0.15); }
.trust-strip strong { display: block; margin-bottom: 6px; color: var(--olive-dark); }
.trust-strip span { color: var(--muted); }
.finder-section, .best-section, .learn-section, .contact-cta-section, .contact-section { padding-top: 64px; padding-bottom: 72px; }
.finder-section {
  scroll-margin-top: 96px;
  background:
    linear-gradient(135deg, rgba(53, 111, 85, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 241, 0.98));
}
.results-section { padding-bottom: 72px; }
.section-heading {
  max-width: 1180px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 26px;
  align-items: start;
}
.section-heading.compact { display: block; margin-bottom: 22px; }
.finder-layout, .guide-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(260px, 0.55fr);
  gap: 24px;
}
.finder-layout {
  grid-template-columns: 1fr;
  max-width: 1080px;
}
.panel, .result-card, .pick-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-card);
}
.selector-panel, .method-panel, .table-panel, .panel { padding: 20px; }
.selector-panel {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 96px;
  padding: clamp(18px, 2.8vw, 30px);
  border: 1px solid rgba(53, 111, 85, 0.26);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(237, 248, 240, 0.96)),
    var(--panel);
  box-shadow: var(--selector-glow);
}
.selector-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--olive), var(--gold), var(--copper));
}
.selector-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin: -8px -8px 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(25, 56, 45, 0.97), rgba(24, 32, 29, 0.95)),
    var(--olive-dark);
  color: #fff;
  border-radius: 10px;
}
.selector-header h3 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  line-height: 1.05;
}
.selector-header .eyebrow {
  color: #f4c88f;
}
.selector-badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(244, 200, 143, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #f4c88f;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
label {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 86px;
  align-content: start;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 32, 29, 0.1);
  color: var(--ink);
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(45, 32, 18, 0.06);
}
label span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
  line-height: 1.2;
}
label b {
  display: inline-flex;
  min-width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--olive-dark);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  border-radius: 999px;
}
.selector-footer {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.clear-selector-button {
  justify-self: start;
  min-height: 44px;
  border-color: rgba(69, 54, 39, 0.18);
  color: var(--ink);
  font-size: 0.92rem;
}
.clear-selector-button:hover,
.clear-selector-button:focus {
  color: var(--olive-dark);
  border-color: var(--copper);
  outline: none;
}
select, input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 1px solid rgba(24, 32, 29, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(45, 32, 18, 0.06);
}
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(24, 32, 29, 0.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  font: inherit;
  font-size: 0.98rem;
  resize: vertical;
  box-shadow: 0 10px 24px rgba(45, 32, 18, 0.06);
}
.form-help {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}
select {
  appearance: none;
  overflow: hidden;
  padding-right: 52px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-image: linear-gradient(45deg, transparent 50%, var(--olive) 50%), linear-gradient(135deg, var(--olive) 50%, transparent 50%);
  background-position: calc(100% - 22px) 21px, calc(100% - 14px) 21px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}
select:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(53, 111, 85, 0.18);
  border-color: var(--olive);
}
select:disabled {
  opacity: .58;
  box-shadow: none;
}
.status-row { justify-content: space-between; margin-top: 18px; }
.status-row p {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 14px;
  border-left: 6px solid var(--olive);
  background: rgba(53, 111, 85, 0.1);
  color: var(--olive-dark);
  font-weight: 900;
}
.method-panel {
  align-self: start;
  border-color: rgba(80, 100, 71, 0.28);
  margin-bottom: 24px;
}
.method-panel ol { margin: 0; padding-left: 22px; color: var(--muted); }
.method-panel li + li { margin-top: 12px; }

#results-groups, .table-panel, .pick-grid {
  max-width: 1180px;
  margin: 0 auto;
}
.result-group + .result-group { margin-top: 18px; }
.group-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.group-heading h3 { margin-bottom: 0; font-size: 1.55rem; }
.group-tag, .status-pill, .badge, .award {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.tag-best, .status-best { background: rgba(47,107,74,.14); color: var(--good); }
.tag-caveat, .status-caveat { background: rgba(138,99,49,.16); color: var(--warn); }
.tag-maybe, .status-maybe { background: rgba(103,90,152,.15); color: var(--maybe); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  padding: 10px;
  max-height: 520px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.possible-knife-panel {
  margin-bottom: 24px;
}
.possible-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 12px;
}
.possible-heading h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.possible-heading span {
  flex: 0 0 auto;
  color: var(--copper);
  font-weight: 900;
}
.possible-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 2px 0;
  max-height: 228px;
  max-width: 100%;
}
.possible-knife {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  width: 100%;
  min-height: 88px;
  align-items: start;
  gap: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 12px;
  text-align: left;
  cursor: pointer;
}
.possible-knife-thumb {
  flex: 0 0 58px;
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f2eadf;
  border: 1px solid var(--line);
}
.possible-knife-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.possible-knife:hover {
  border-color: rgba(181, 100, 57, 0.6);
  box-shadow: 0 12px 28px rgba(45, 32, 18, 0.1);
}
.possible-knife small,
.possible-specs {
  display: block;
  color: var(--muted);
}
.possible-knife-copy {
  min-width: 0;
  align-self: center;
}
.possible-knife-copy strong,
.possible-knife-copy small {
  overflow-wrap: anywhere;
  word-break: normal;
}
.possible-knife-copy strong {
  display: block;
  line-height: 1.18;
}
.possible-knife-copy small {
  margin-top: 5px;
  line-height: 1.35;
}
.possible-specs {
  grid-column: 2;
  align-self: end;
  min-width: 0;
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.selected-knife {
  margin-bottom: 18px;
  padding: 18px;
  scroll-margin-top: 120px;
}
.selected-knife-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.28fr);
  gap: 18px;
  align-items: start;
}
.selected-knife h2 {
  max-width: 920px;
  margin-bottom: 6px;
  font-size: clamp(1.42rem, 2.1vw, 1.95rem);
  line-height: 1.05;
}
.entity-answer {
  max-width: 880px;
  margin: 14px 0 0;
  padding: 14px 16px;
  border-left: 6px solid var(--olive);
  background: rgba(53, 111, 85, 0.1);
  color: var(--olive-dark);
  font-weight: 800;
}
.entity-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(198, 99, 55, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.entity-link:hover {
  color: var(--copper);
}
.knife-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}
.knife-photo-link {
  display: block;
}
.knife-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 8px;
  background: #f7f1e8;
}
.knife-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}
.knife-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: var(--line);
  border: 1px solid var(--line);
}
.knife-spec-grid div {
  background: #fff;
  padding: 10px 12px;
  color: var(--muted);
  min-width: 0;
  overflow-wrap: anywhere;
}
.knife-spec-grid strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}
.selected-record-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: capitalize;
}
.matched-sheaths-intro {
  margin: 4px 0 14px;
  padding-top: 4px;
}
.matched-sheaths-intro h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}
.price-guide {
  max-width: 1180px;
  margin: -4px auto 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}
.price-guide strong,
.price-guide span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}
.price-guide b {
  margin-right: 4px;
  color: var(--ink);
}
.sheath-detail {
  margin-bottom: 24px;
  padding: 0;
  scroll-margin-top: 120px;
  overflow: hidden;
}
.sheath-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: start;
}
.sheath-detail-info {
  padding: clamp(24px, 3vw, 48px);
  position: sticky;
  top: 80px;
  align-self: start;
}
.sheath-detail h2 {
  max-width: 920px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.05;
}
.sheath-detail-photo {
  margin: 0;
  background: #f5f5f3;
  position: relative;
  overflow: hidden;
}
.sheath-detail-photo-link {
  display: block;
  width: 100%;
}
.sheath-detail-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 32px;
  background: #f5f5f3;
}
.sheath-detail-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}
.sheath-detail-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.04);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.sheath-detail-body {
  padding: clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.compatible-knife-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.compatible-knife-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.compatible-knife-card h3 {
  margin-bottom: 4px;
}
.result-card {
  display: flex;
  flex-direction: column;
  padding: 12px;
}
.result-card,
.pick-card,
.possible-knife,
.panel {
  border-radius: 12px;
}
.result-top {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.result-card h3 {
  margin-bottom: 4px;
  font-size: 1.02rem;
  line-height: 1.12;
}
.sheath-photo {
  display: block;
  width: 78px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef2ec;
  object-fit: cover;
  overflow: hidden;
}
.sheath-photo-link {
  display: block;
  width: max-content;
  max-width: 100%;
  border-radius: 10px;
}
.sheath-photo-link:focus-visible {
  outline: 3px solid rgba(190, 110, 54, .35);
  outline-offset: 3px;
}
.sheath-photo-placeholder {
  display: grid;
  place-items: center;
  padding: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}
.subline, .fit-note, .empty-state, .guide-grid p, .pick-card p { color: var(--muted); }
.badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.badge { background: #fff; border: 1px solid var(--line); color: var(--muted); text-transform: none; }
.price-badge {
  border-color: rgba(198, 99, 55, 0.28);
  background: rgba(198, 99, 55, 0.1);
  color: var(--copper);
}
.fit-note {
  display: -webkit-box;
  margin: 10px 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mini-grid div {
  min-width: 0;
  background: #fff;
  padding: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}
.mini-grid strong { display: block; color: var(--ink); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
}
.cta-row .button {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 0.78rem;
}
.table-panel { margin-top: 24px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: .78rem; text-transform: uppercase; }
.comparison-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}
.comparison-photo {
  width: 72px;
  height: 54px;
  border-radius: 8px;
}
.comparison-product .sheath-photo-link {
  display: block;
  width: 72px;
  height: 54px;
  border-radius: 8px;
}
.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2px 2px 0;
  max-height: 688px;
  max-width: 100%;
}
.pick-card { padding: 18px; min-height: 292px; display: flex; flex-direction: column; }
.pick-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.pick-photo {
  flex: 0 0 96px;
}
.pick-card .award { background: rgba(53,111,85,.14); color: var(--olive); width: max-content; }
.pick-card ul { margin: 8px 0 18px; padding-left: 18px; color: var(--muted); }
.pick-card .button { margin-top: auto; width: max-content; }
.pros-cons { display: grid; gap: 10px; margin: 18px 0; }
.pros-cons div { padding: 12px; background: #fff; border: 1px solid var(--line); }
.pros-cons span { display: block; color: var(--muted); }
.text-link { color: var(--copper); font-weight: 900; }
.learn-section { background: #0d1f18; color: #fff; }
.learn-section .eyebrow { color: #f4c88f; }
.guide-grid { grid-template-columns: repeat(3, 1fr); }
.guide-grid article { border-top: 1px solid rgba(255,255,255,.2); padding-top: 18px; }
.guide-grid p { color: rgba(255,255,255,.72); }
body:not(.contact-route) .contact-section {
  display: none;
}
body.contact-route .hero,
body.contact-route .trust-strip,
body.contact-route .finder-section,
body.contact-route .results-section,
body.contact-route .best-section,
body.contact-route .learn-section,
body.contact-route .contact-cta-section {
  display: none;
}
body:not(.content-route) .content-page-section {
  display: none;
}
body.content-route .hero,
body.content-route .trust-strip,
body.content-route .finder-section,
body.content-route .results-section,
body.content-route .best-section,
body.content-route .learn-section,
body.content-route .contact-cta-section,
body.content-route .contact-section {
  display: none;
}
.contact-cta-section {
  background: var(--paper);
  padding-top: 42px;
  padding-bottom: 52px;
}
.contact-cta {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
}
.contact-cta h2 {
  font-size: clamp(1.28rem, 2.1vw, 1.75rem);
  margin-bottom: 6px;
}
.contact-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.contact-cta-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.contact-section {
  scroll-margin-top: 96px;
  min-height: calc(100vh - 88px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 241, 0.98)),
    var(--paper);
}
body.contact-route .contact-section {
  padding-top: calc(64px + 88px);
}
.content-page-section {
  min-height: calc(100vh - 88px);
  padding-top: calc(64px + 88px);
  padding-bottom: 72px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 241, 0.98)),
    var(--paper);
}
.content-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
}
.content-page h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
}
.content-page h2 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.1;
}
.content-page .lede {
  max-width: 860px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.content-grid article,
.content-callout {
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  border-radius: 12px;
}
.content-grid p,
.content-callout p,
.content-note {
  color: var(--muted);
}
.content-callout {
  margin-top: 16px;
  background: rgba(26, 127, 90, 0.08);
  border-color: rgba(26, 127, 90, 0.18);
}
.content-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.content-link-grid a {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.content-link-grid strong {
  color: var(--olive-dark);
  line-height: 1.1;
}
.content-link-grid span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}
.content-note {
  margin-top: 22px;
  margin-bottom: 0;
  font-weight: 800;
}
.contact-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 24px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.form-status {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}
.form-status.success { color: var(--good); }
.form-status.error { color: var(--warn); }
.turnstile-slot {
  min-height: 64px;
}
.contact-notes h3 {
  margin-bottom: 12px;
}
.contact-notes ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}
.contact-notes li + li {
  margin-top: 10px;
}
.contact-notes p {
  margin-bottom: 0;
  color: var(--muted);
}
.site-footer {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #0d1f18;
  color: rgba(255,255,255,.72);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer p { margin-bottom: 0; max-width: 760px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  font-weight: 900;
}
.footer-links a {
  color: rgba(255,255,255,.78);
}
.footer-links a:hover {
  color: #fff;
}

@media (max-width: 1200px) and (min-width: 881px) {
  .selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .possible-list {
    grid-template-columns: 1fr;
  }
  .pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header { padding: 14px 18px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    right: 18px;
    display: none;
    width: min(280px, calc(100vw - 36px));
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px; }
  .hero { min-height: 58vh; padding-top: 88px; padding-bottom: 34px; }
  .section-heading, .finder-layout, .selector-grid, .mini-grid, .knife-spec-grid, .guide-grid, .contact-cta {
    grid-template-columns: 1fr;
  }
  .content-grid,
  .content-grid.three,
  .content-link-grid {
    grid-template-columns: 1fr;
  }
  .selected-knife .knife-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 14px 18px;
    gap: 8px;
    scroll-snap-type: x proximity;
  }
  .trust-strip div {
    display: block;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    scroll-snap-align: start;
  }
  .trust-strip div:last-child {
    border-bottom: 0;
  }
  .trust-strip strong {
    margin-bottom: 0;
    font-size: 0.92rem;
    line-height: 1.25;
  }
  .trust-strip span {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .finder-section, .best-section, .learn-section, .contact-cta-section, .contact-section { padding-top: 42px; padding-bottom: 56px; }
  .contact-cta-actions {
    justify-content: flex-start;
  }
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .finder-section,
  .selector-panel,
  .selected-knife,
  .contact-section {
    scroll-margin-top: 116px;
  }
}

@media (max-width: 540px) {
  .brand small { display: none; }
  h1 { font-size: 1.9rem; }
  .hero {
    min-height: 50vh;
  }
  .hero p {
    font-size: 1rem;
    line-height: 1.45;
  }
  .hero-actions .button, .status-row .button { width: 100%; }
  .hero-actions .button {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }
  .finder-section {
    padding-inline: 12px;
    padding-top: 18px;
    scroll-margin-top: 128px;
  }
  .trust-strip {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .trust-strip div {
    gap: 3px;
    padding: 12px;
  }
  .trust-strip span {
    font-size: 0.88rem;
  }
  .selector-panel,
  .selected-knife {
    scroll-margin-top: 128px;
    padding: 12px;
  }
  .selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  label {
    min-height: auto;
    padding: 10px;
    gap: 7px;
    font-size: 0.84rem;
  }
  label span {
    gap: 6px;
  }
  label b {
    min-width: 30px;
    height: 26px;
    font-size: 0.68rem;
  }
  select,
  input {
    min-height: 48px;
    padding-inline: 9px;
    font-size: 0.8rem;
  }
  select {
    padding-right: 30px;
    background-position: calc(100% - 16px) 20px, calc(100% - 8px) 20px;
  }
  .clear-selector-button {
    justify-self: stretch;
  }
  .selected-knife-header {
    grid-template-columns: 1fr;
  }
  .sheath-detail-header,
  .compatible-knife-grid {
    grid-template-columns: 1fr;
  }
  .sheath-detail-info {
    position: static;
    padding: 20px;
  }
  .sheath-detail-image {
    aspect-ratio: 4 / 3;
    padding: 20px;
  }
  .knife-photo img {
    aspect-ratio: 16 / 9;
  }
  .knife-photo figcaption {
    display: grid;
  }
  .selector-header {
    display: block;
    margin: -2px -2px 12px;
    padding: 12px;
  }
  .selector-header h3 {
    font-size: 1rem;
    line-height: 1.12;
  }
  .selector-badge {
    width: max-content;
    max-width: 100%;
    white-space: normal;
  }
  .result-top { grid-template-columns: 78px minmax(0, 1fr); }
  .possible-knife {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .possible-specs {
    grid-column: 2;
  }
  .site-footer { display: block; }
  .cards,
  .possible-list,
  .pick-grid {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: minmax(270px, 86vw);
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    padding-bottom: 16px;
    scroll-snap-type: x proximity;
  }
  .cards {
    max-height: none;
    padding: 2px 2px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    overscroll-behavior: auto;
  }
  .possible-list {
    grid-auto-columns: minmax(270px, 86vw);
  }
  .possible-knife {
    scroll-snap-align: start;
  }
  .cards .result-card {
    scroll-snap-align: start;
  }
  .pick-card {
    scroll-snap-align: start;
  }
}
