:root {
  --navy-950: #03131f;
  --navy-900: #071e2d;
  --navy-800: #0d3042;
  --ink: #172126;
  --muted: #59686f;
  --paper: #f4f1eb;
  --white: #fff;
  --rust: #f46a14;
  --rust-dark: #c84f08;
  --line: #d8dedc;
  --shadow: 0 18px 50px rgb(7 26 32 / 16%);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 1rem;
  color: var(--white);
  background: var(--rust);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid #f5a174; outline-offset: 4px; }

.container,
.header-inner {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: rgb(2 16 27 / 97%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.site-header-solid {
  position: relative;
  background: var(--navy-950);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 47px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  display: block;
}

.brand-mark::before {
  left: 2px;
  bottom: 4px;
  width: 23px;
  height: 23px;
  border-top: 2px solid var(--rust);
  border-left: 2px solid var(--rust);
  transform: rotate(45deg);
}

.brand-mark::after {
  right: 3px;
  bottom: 5px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--rust);
  border-left: 2px solid var(--rust);
  transform: rotate(45deg);
}

.brand-mark i {
  right: 1px;
  bottom: 3px;
  left: 1px;
  height: 2px;
  background: var(--rust);
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.8vw, 2.4rem);
}

.primary-nav > a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 580;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.82rem 1.3rem;
  color: var(--white);
  background: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 5px;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(91 33 13 / 28%);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
  box-shadow: 0 13px 32px rgb(91 33 13 / 30%);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0.72rem 1.35rem;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 80px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: #102b3a url("/assets/images/idaho-hero-premium-v2.webp") center / cover no-repeat;
  transform: scale(1.008);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(2 16 27 / 73%) 0%, rgb(2 16 27 / 50%) 42%, rgb(2 16 27 / 8%) 74%),
    linear-gradient(0deg, rgb(2 16 27 / 66%) 0%, transparent 39%, rgb(2 16 27 / 14%) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: clamp(4.5rem, 9vh, 7rem) 7rem;
}

.hero-content { position: relative; z-index: 1; }

.hero-rule {
  width: 30px;
  height: 3px;
  display: block;
  margin-bottom: 1.45rem;
  background: var(--rust);
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: #f3a178;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3.3rem, 5vw, 5.25rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgb(0 0 0 / 28%);
}

.hero-copy {
  max-width: 570px;
  margin: 1.45rem 0 1.7rem;
  color: rgb(255 255 255 / 87%);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.55;
}

.hero-button { padding-inline: 1.45rem; }

.idaho-badge {
  justify-self: end;
  width: clamp(170px, 15vw, 205px);
  aspect-ratio: 1;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  place-items: center;
  padding: 1.55rem 1.1rem;
  color: rgb(255 255 255 / 88%);
  background: rgb(1 16 26 / 18%);
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgb(255 255 255 / 4%), 0 18px 45px rgb(0 0 0 / 18%);
  backdrop-filter: blur(2px);
  text-align: center;
  text-transform: uppercase;
}

.badge-top,
.badge-bottom {
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

.badge-top { align-self: end; }
.badge-bottom { align-self: start; }

.badge-state {
  position: relative;
  min-width: 66px;
  padding: 0.5rem;
  color: var(--white);
  border-block: 1px solid rgb(255 255 255 / 55%);
  font-size: 1.3rem;
  font-weight: 820;
  letter-spacing: 0.13em;
}

.badge-state i {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 10px;
  height: 10px;
  background: var(--rust);
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hero-signals {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.hero-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgb(255 255 255 / 88%);
  font-size: 0.79rem;
  font-weight: 620;
}

.signal-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 auto;
  color: var(--rust);
}

.signal-shield {
  border: 2px solid currentColor;
  border-radius: 45% 45% 55% 55% / 22% 22% 74% 74%;
  transform: scaleX(0.8);
}

.signal-check { border: 2px solid currentColor; border-radius: 50%; }
.signal-check::after { content: ""; position: absolute; left: 5px; top: 4px; width: 8px; height: 4px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); }
.signal-support { border: 2px solid currentColor; border-bottom: 0; border-radius: 50% 50% 0 0; }
.signal-support::before,
.signal-support::after { content: ""; position: absolute; bottom: -1px; width: 5px; height: 9px; background: currentColor; border-radius: 3px; }
.signal-support::before { left: -3px; }
.signal-support::after { right: -3px; }
}

.section { padding-block: clamp(5rem, 8vw, 8rem); }

.section-heading { max-width: 790px; margin-bottom: 3.2rem; }

.section-heading-centered { margin-inline: auto; text-align: center; }

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading h2 { font-size: clamp(2.25rem, 5vw, 4.2rem); }

.eyebrow-dark { color: var(--rust-dark); }

.trust-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0, rgb(36 102 131 / 18%), transparent 34%),
    linear-gradient(135deg, #031725, #061c2b 58%, #03121d);
}

.trust-section.section { padding-block: clamp(4.4rem, 7vw, 6.4rem); }

.trust-section .section-heading { margin-bottom: 2.4rem; }

.trust-section .section-heading h2 {
  font-family: inherit;
  font-size: clamp(2.15rem, 3.8vw, 3.5rem);
  font-weight: 690;
  letter-spacing: -0.035em;
}

.trust-section .section-heading > p:last-child {
  max-width: 660px;
  margin: 1rem auto 0;
  color: rgb(255 255 255 / 63%);
  font-size: 0.98rem;
}

.trust-section .eyebrow-dark { color: var(--rust); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 205px;
  padding: 1.3rem clamp(1.8rem, 4vw, 4rem) 1.6rem;
  text-align: center;
}

.trust-item + .trust-item { border-left: 1px solid rgb(255 255 255 / 18%); }

.trust-icon {
  position: relative;
  width: 38px;
  height: 38px;
  display: block;
  margin: 0 auto 1rem;
  color: var(--rust);
}

.trust-shield { width: 34px; border: 3px solid currentColor; border-radius: 45% 45% 55% 55% / 22% 22% 74% 74%; transform: scaleX(0.82); }

.trust-people::before,
.trust-people::after,
.trust-people i { content: ""; position: absolute; display: block; border: 2px solid currentColor; }
.trust-people::before { left: 6px; top: 1px; width: 11px; height: 11px; border-radius: 50%; }
.trust-people::after { right: 4px; top: 4px; width: 9px; height: 9px; border-radius: 50%; }
.trust-people i { right: 1px; bottom: 2px; left: 1px; height: 17px; border-bottom: 0; border-radius: 18px 18px 0 0; }

.trust-rocket { width: 22px; height: 36px; border: 3px solid currentColor; border-radius: 60% 60% 42% 42%; transform: rotate(38deg); }
.trust-rocket::before { content: ""; position: absolute; left: 5px; top: 6px; width: 6px; height: 6px; border: 2px solid currentColor; border-radius: 50%; }
.trust-rocket::after { content: ""; position: absolute; left: -7px; bottom: -6px; width: 9px; height: 15px; border-left: 3px solid currentColor; border-bottom: 3px solid currentColor; }

.trust-item h3 { margin: 0 0 0.55rem; font-size: 1.05rem; line-height: 1.2; }

.trust-item p { margin: 0; color: rgb(255 255 255 / 61%); font-size: 0.88rem; line-height: 1.55; }

.section-action { margin-top: 0.9rem; text-align: center; }

.button-dark { background: var(--navy-900); border-color: var(--navy-900); box-shadow: none; }

.button-dark:hover { background: var(--navy-800); border-color: var(--navy-800); }

.button-outline {
  min-width: 315px;
  color: var(--rust);
  background: transparent;
  border-color: var(--rust);
  box-shadow: none;
}

.button-outline:hover { color: var(--white); background: var(--rust-dark); border-color: var(--rust-dark); }

.site-footer { padding-top: 4.5rem; color: rgb(255 255 255 / 78%); background: var(--navy-950); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-brand p { max-width: 380px; margin: 1.3rem 0 0; color: rgb(255 255 255 / 60%); }

.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem 1.5rem; align-content: start; }

.footer-links a,
.footer-contact a { color: var(--white); font-weight: 650; text-decoration: none; }

.footer-links a:hover,
.footer-contact a:hover { color: #f3a178; }

.footer-contact p { margin: 0 0 0.55rem; color: rgb(255 255 255 / 54%); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

.footer-contact a { overflow-wrap: anywhere; }

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.2rem;
  color: rgb(255 255 255 / 47%);
  border-top: 1px solid rgb(255 255 255 / 11%);
  font-size: 0.82rem;
}

.footer-bottom p { margin: 0; }

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 40%, rgb(200 102 58 / 24%), transparent 29%),
    linear-gradient(135deg, var(--navy-950), #173843);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -35%;
  width: min(62vw, 820px);
  height: 82%;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 52% 48% 0 0 / 100% 100% 0 0;
  transform: rotate(-8deg);
}

.page-hero-inner { position: relative; z-index: 1; padding-block: 7rem 5rem; }

.page-hero h1 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }

.page-hero p:last-child {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: rgb(255 255 255 / 72%);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.products-section { background: #f8f6f1; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.product-card {
  min-width: 0;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid #e0e4e1;
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgb(10 23 29 / 6%);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.3rem;
}

.product-index { color: #9aa5a6; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }

.product-icon {
  position: relative;
  width: 68px;
  height: 68px;
  display: block;
  color: var(--rust);
  background: #f4e6de;
  border-radius: 18px;
}

.farm-stem {
  position: absolute;
  bottom: 17px;
  width: 4px;
  height: 31px;
  background: currentColor;
  border-radius: 4px;
  transform-origin: bottom;
}

.farm-stem::before,
.farm-stem::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  background: currentColor;
  border-radius: 100% 0;
}

.farm-stem::before { top: 8px; left: -8px; transform: rotate(22deg); }
.farm-stem::after { top: 16px; left: 3px; transform: rotate(-22deg); }
.stem-one { left: 24px; transform: rotate(-10deg); }
.stem-two { left: 34px; height: 37px; }
.stem-three { left: 44px; transform: rotate(10deg); }

.car-roof,
.car-body,
.car-wheel { position: absolute; display: block; }
.car-body { top: 31px; left: 13px; width: 42px; height: 17px; background: currentColor; border-radius: 10px 12px 5px 5px; }
.car-roof { top: 21px; left: 24px; width: 26px; height: 18px; border: 4px solid currentColor; border-bottom: 0; border-radius: 13px 13px 0 0; transform: skewX(-12deg); }
.car-wheel { top: 44px; width: 10px; height: 10px; background: var(--navy-900); border: 3px solid #f4e6de; border-radius: 50%; }
.wheel-one { left: 20px; }
.wheel-two { right: 13px; }

.house-roof,
.house-body,
.house-door { position: absolute; display: block; }
.house-roof { top: 15px; left: 17px; width: 35px; height: 35px; background: currentColor; border-radius: 5px; transform: rotate(45deg); }
.house-body { left: 18px; bottom: 13px; width: 34px; height: 30px; background: currentColor; }
.house-door { left: 31px; bottom: 13px; width: 9px; height: 16px; background: #f4e6de; }

.product-category {
  min-height: 3em;
  margin: 0 0 1rem;
  color: var(--rust-dark);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-tagline { min-height: 3.2em; margin: 0.8rem 0 1.2rem; color: var(--navy-800); font-weight: 730; line-height: 1.55; }
.product-description { margin: 0; color: var(--muted); }

.product-details { margin-top: 1.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.product-details[hidden] { display: none; }
.product-details p { margin: 0 0 0.6rem; color: var(--ink); font-size: 0.88rem; font-weight: 700; }
.product-details ul { margin: 0 0 1.3rem; padding-left: 1.2rem; color: var(--muted); }
.product-details li + li { margin-top: 0.35rem; }
.product-details .product-status { margin: 0; color: var(--muted); font-size: 0.82rem; font-weight: 500; }
.product-status span { color: var(--ink); font-weight: 750; }

.text-button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 0.8rem 0;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.text-button:hover { color: var(--rust-dark); }
.text-button span:last-child { color: var(--rust); font-size: 1.2rem; }

.loading-message,
.notice-card { grid-column: 1 / -1; margin: 0; padding: 2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }

.cta-band { padding-block: clamp(4rem, 7vw, 6.5rem); color: var(--white); background: var(--navy-900); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.cta-band h2 { max-width: 700px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1.05; }
.cta-band .eyebrow { margin-bottom: 0.8rem; }
.cta-band .button { flex: 0 0 auto; }

.about-section { background: #f8f6f1; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.about-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.7vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.about-copy { color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.22rem); }
.about-copy p { margin: 0; }
.about-copy p + p { margin-top: 1.5rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-grid article { padding: 2rem 1.4rem 2.4rem; }
.values-grid article + article { border-left: 1px solid var(--line); }
.values-grid span { display: block; margin-bottom: 2.7rem; color: var(--rust); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.12em; }
.values-grid h3 { margin: 0 0 0.6rem; font-size: 1.12rem; }
.values-grid p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.contact-section { background: #f8f6f1; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card > div { padding-left: clamp(0rem, 3vw, 2rem); }
.contact-card > div > p:last-child { max-width: 540px; margin: 1.2rem 0 0; color: var(--muted); }

.contact-email {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 1rem;
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  background: var(--navy-900);
  border-radius: 14px;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  font-weight: 740;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-email:hover { background: var(--navy-800); transform: translateY(-2px); }
.contact-email span:first-child { grid-column: 1 / -1; color: #f2a075; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-email span:last-child { grid-column: 2; grid-row: 2; color: #f2a075; font-size: 1.4rem; }

.legal-hero { padding-block: 5.5rem 4rem; color: var(--white); background: var(--navy-900); }
.legal-hero .eyebrow { margin-bottom: 0.7rem; }
.legal-hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.9rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.legal-hero p:last-child { margin: 1.1rem 0 0; color: rgb(255 255 255 / 55%); font-size: 0.9rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(3rem, 8vw, 7rem);
  justify-content: center;
  align-items: start;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-nav {
  position: sticky;
  top: 2rem;
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem;
  background: #ece9e3;
  border-radius: 12px;
}

.legal-nav p { margin: 0 0 0.7rem; color: var(--muted); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.legal-nav a { padding: 0.65rem 0.7rem; border-radius: 7px; font-size: 0.9rem; font-weight: 680; text-decoration: none; }
.legal-nav a:hover { color: var(--rust-dark); background: rgb(255 255 255 / 55%); }
.legal-nav a[aria-current="page"] { color: var(--white); background: var(--navy-900); }

.legal-content > p:first-child { margin-top: 0; color: var(--ink); font-size: clamp(1.08rem, 1.7vw, 1.2rem); }
.legal-content h2 { margin: 2.6rem 0 0.75rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 2.7vw, 2.1rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.15; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--rust-dark); font-weight: 700; }

.not-found {
  min-height: calc(100svh - 88px);
  display: grid;
  place-items: center;
  padding-block: 5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(7 23 29 / 91%), rgb(7 23 29 / 55%)),
    url("/assets/images/idaho-sawtooths.webp") center / cover no-repeat;
}

.not-found-inner { max-width: 760px; text-align: center; }
.not-found-code { margin: 0; color: #f3a178; font-size: 0.82rem; font-weight: 850; letter-spacing: 0.18em; text-transform: uppercase; }
.not-found h1 { margin: 0.7rem 0 1rem; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 8vw, 6rem); font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.not-found p { margin: 0 auto 2rem; color: rgb(255 255 255 / 72%); font-size: 1.1rem; }

@media (max-width: 980px) {
  .hero-layout { grid-template-columns: minmax(0, 600px) auto; gap: 2rem; }
  .idaho-badge { width: 160px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-category,
  .product-tagline { min-height: 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid article:nth-child(3) { border-top: 1px solid var(--line); border-left: 0; }
  .values-grid article:nth-child(4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .container,
  .header-inner { width: min(calc(100% - 2rem), var(--container)); }

  .header-inner { min-height: 72px; }

  .brand-name { max-width: 185px; font-size: 0.78rem; letter-spacing: 0.055em; line-height: 1.15; }

  .brand-mark { width: 39px; height: 26px; }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: var(--white);
    background: rgb(255 255 255 / 8%);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
  }

  .menu-toggle span:not(.sr-only) { width: 19px; height: 2px; background: currentColor; border-radius: 2px; }

  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: var(--navy-950);
    border-bottom: 1px solid rgb(255 255 255 / 13%);
    box-shadow: 0 22px 40px rgb(0 0 0 / 24%);
  }

  .primary-nav[data-open="true"] { display: grid; }

  .primary-nav > a { min-height: 48px; display: flex; align-items: center; padding: 0 0.25rem; }

  .primary-nav .button { margin-top: 0.5rem; justify-content: center; }

  .hero { min-height: 700px; }

  .hero-media {
    background-image: url("/assets/images/idaho-hero-premium-v2-mobile.webp");
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgb(2 16 27 / 91%) 0%, rgb(2 16 27 / 63%) 55%, rgb(2 16 27 / 28%) 100%),
      linear-gradient(90deg, rgb(2 16 27 / 56%) 0%, transparent 100%);
  }

  .hero-layout {
    width: min(calc(100% - 2rem), var(--container));
    display: block;
    margin-inline: auto;
    padding-block: 4.2rem 8.2rem;
  }

  .hero h1 { font-size: clamp(2.8rem, 12.4vw, 4.3rem); line-height: 1.01; }

  .hero-copy { max-width: 35rem; font-size: 1rem; line-height: 1.55; }

  .idaho-badge { display: none; }

  .hero-signals {
    min-height: 84px;
    gap: 0;
    justify-content: space-between;
  }

  .hero-signal { gap: 0.4rem; font-size: 0.66rem; }
  .signal-icon { width: 18px; height: 18px; }

  .button { width: 100%; min-height: 54px; }

  .section { padding-block: 4.5rem; }

  .trust-grid { grid-template-columns: 1fr; }

  .trust-item { min-height: auto; padding: 2rem 0; }

  .trust-item + .trust-item { border-top: 1px solid rgb(255 255 255 / 18%); border-left: 0; }

  .button-outline { min-width: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }

  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.35rem; }

  .page-hero { min-height: 360px; }
  .page-hero-inner { padding-block: 5rem 3.6rem; }

  .product-card { border-radius: 14px; }
  .cta-band-inner { align-items: stretch; flex-direction: column; gap: 2rem; }

  .about-grid,
  .contact-card { grid-template-columns: 1fr; gap: 2.5rem; }

  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { padding-inline: 0; }
  .values-grid article + article,
  .values-grid article:nth-child(3),
  .values-grid article:nth-child(4) { border-top: 1px solid var(--line); border-left: 0; }
  .values-grid span { margin-bottom: 1.2rem; }

  .contact-card { width: min(calc(100% - 2rem), var(--container)); padding-inline: 1.25rem; }
  .contact-card > div { padding-left: 0; }

  .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .legal-nav { position: static; }
}

@media (max-width: 430px) {
  .brand-name { max-width: 150px; font-size: 0.7rem; }
  .hero { min-height: 720px; }
  .hero-layout { padding-top: 3.5rem; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.25rem); }
  .hero-signal { flex-direction: column; gap: 0.28rem; text-align: center; }
}

@media (min-width: 761px) and (max-width: 980px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
