:root {
  --ink: #101917;
  --muted: #586a62;
  --line: #d5ddd7;
  --paper: #f7f8f4;
  --white: #ffffff;
  --green: #123f35;
  --green-2: #2d705d;
  --mint: #cfe8d9;
  --sage: #97aa9e;
  --clay: #b76545;
  --sky: #dce9ef;
  --lemon: #e8e2a6;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(18, 63, 53, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--green-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid rgba(21, 33, 29, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--ink);
}

.brand-logo {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.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;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(18, 63, 53, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(18, 63, 53, 0.08);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 590px;
  padding: clamp(38px, 5vw, 64px) clamp(20px, 5vw, 72px) 58px;
  background:
    linear-gradient(120deg, rgba(207, 232, 217, 0.66), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.58) 100%);
}

.hero-copy {
  max-width: 780px;
}

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

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

h1 {
  max-width: 18ch;
  margin-bottom: 20px;
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
}

.hero-copy > p:not(.eyebrow),
.page-hero > p,
.about-hero p,
.contact-copy > p,
.section-heading p,
.intro-text p,
.compare-copy p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sample-note {
  margin: 16px 0 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  max-width: 52ch;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-tags a {
  padding: 9px 12px;
  border: 1px solid rgba(18, 63, 53, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.hero-tags a:hover {
  border-color: rgba(18, 63, 53, 0.34);
  background: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:active {
  transform: translateY(1px);
}

.primary {
  background: linear-gradient(135deg, var(--green), #1d6652);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(18, 63, 53, 0.22);
}

.primary:hover {
  background: var(--green-2);
  color: var(--white);
}

.secondary {
  border: 1px solid rgba(18, 63, 53, 0.16);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  overflow: hidden;
  border-radius: 24px;
  background: #f2f5ed;
  box-shadow: 0 22px 70px rgba(18, 63, 53, 0.12);
}

.hero-visual img,
.carousel-slide {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.product-carousel {
  isolation: isolate;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  object-position: center;
  transition: opacity 420ms ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  padding: 15px;
  border: 1px solid rgba(18, 63, 53, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(21, 33, 29, 0.1);
}

.carousel-label strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: var(--green);
}

.carousel-label span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.carousel-dots {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(18, 63, 53, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(18, 63, 53, 0.08);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 63, 53, 0.28);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 22px;
  background: var(--green);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
  background: rgba(18, 63, 53, 0.16);
  border: 1px solid rgba(18, 63, 53, 0.16);
  border-radius: var(--radius);
}

.proof-strip span {
  min-height: 64px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-weight: 800;
}

.intro-section,
.compare-section,
.cert-section,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 84px);
  padding: 84px clamp(20px, 5vw, 72px);
}

.product-band,
.buyers-section,
.spec-sheet,
.values-section,
.seo-supply-section,
.search-spec-section {
  padding: 84px clamp(20px, 5vw, 72px);
}

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

.compact {
  margin-bottom: 28px;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 0;
  background: var(--white);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #f7f8f4;
  padding: 0;
}

.product-card div {
  padding: 24px;
  min-height: 230px;
}

.product-card h3 {
  margin-bottom: 14px;
}

.product-card p {
  color: inherit;
  opacity: 0.78;
  margin-bottom: 24px;
}

.product-card a,
.detail-copy a {
  font-weight: 800;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-card.dark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    var(--green);
  color: var(--white);
}

.product-card.light {
  background:
    linear-gradient(145deg, rgba(207, 232, 217, 0.85), rgba(255, 255, 255, 0.92));
  color: var(--ink);
}

.product-card.accent {
  background:
    linear-gradient(145deg, rgba(232, 226, 166, 0.32), transparent 48%),
    var(--clay);
  color: var(--white);
}

.compare-media img,
.about-hero img,
.detail-image img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.78);
}

.compare-copy {
  align-self: center;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 0;
}

.metric-list div {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-list dt {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.metric-list dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.buyer-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.buyer-list article {
  min-height: 200px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.buyer-list p,
.values-section p,
.detail-copy p,
.spec-list,
.cert-section p,
.form-note,
.faq-grid p {
  color: var(--muted);
}

.faq-section {
  padding: 84px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(18, 63, 53, 0.1);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.faq-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.seo-supply-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(207, 232, 217, 0.28)),
    var(--paper);
  border-top: 1px solid rgba(18, 63, 53, 0.1);
  border-bottom: 1px solid rgba(18, 63, 53, 0.1);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.seo-card-grid article,
.search-spec-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.seo-card-grid article {
  padding: 24px;
}

.seo-card-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-card-grid p,
.search-spec-list p {
  color: var(--muted);
}

.search-spec-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(18, 63, 53, 0.1);
}

.search-spec-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.search-spec-list p {
  margin: 0;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.search-spec-list p:last-child {
  border-bottom: 0;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 clamp(20px, 5vw, 72px) 80px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section .primary {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
  color: var(--muted);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  padding: 86px clamp(20px, 5vw, 72px) 72px;
}

.product-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(207, 232, 217, 0.78), rgba(255, 255, 255, 0.42) 44%, rgba(220, 233, 239, 0.82)),
    var(--paper);
}

.product-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  width: min(42vw, 520px);
  height: 320px;
  border: 1px solid rgba(18, 63, 53, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(18, 63, 53, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 63, 53, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.34);
  background-size: 26px 26px;
  transform: rotate(-2deg);
  z-index: 0;
}

.product-hero > * {
  position: relative;
  z-index: 1;
}

.product-hero h1 {
  max-width: 13.5ch;
  font-size: clamp(44px, 6vw, 78px);
}

.product-hero-panel {
  align-self: end;
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(18, 63, 53, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.product-hero-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.product-jump {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.product-jump a {
  padding: 13px 14px;
  border: 1px solid rgba(18, 63, 53, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 18px;
  padding: 0 clamp(20px, 5vw, 72px) 72px;
  margin-top: -18px;
}

.showcase-card {
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 54px rgba(18, 63, 53, 0.1);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  opacity: 0.12;
  transform: rotate(18deg);
}

.showcase-card span {
  font-size: 13px;
  font-weight: 900;
  opacity: 0.68;
}

.showcase-card h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 52px);
}

.showcase-card p {
  margin: 0;
  max-width: 28ch;
}

.showcase-card.bags {
  background: var(--green);
  color: var(--white);
}

.showcase-card.wipes {
  background: var(--sky);
  color: var(--ink);
}

.showcase-card.pads {
  background: var(--lemon);
  color: var(--ink);
}

.page-hero h1,
.about-hero h1,
.contact-layout h1 {
  max-width: 13ch;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: 96px clamp(20px, 5vw, 72px);
}

.featured-detail {
  position: relative;
}

.featured-detail::before {
  content: "";
  position: absolute;
  inset: 42px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(18, 63, 53, 0.1);
  pointer-events: none;
}

.detail-image {
  position: relative;
}

.image-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(18, 63, 53, 0.16);
}

.product-detail.reverse .detail-image {
  order: 2;
}

.detail-copy {
  max-width: 690px;
}

.detail-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18, 63, 53, 0.1);
}

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

.spec-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-top: 1px solid rgba(18, 63, 53, 0.12);
}

.spec-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-2);
}

.spec-sheet {
  margin: 0 clamp(20px, 5vw, 72px) 96px;
  padding: clamp(28px, 5vw, 52px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(207, 232, 217, 0.52), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
}

.spec-table {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
}

.spec-table span {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-table div:first-child span {
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.about-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
  padding: 86px clamp(20px, 5vw, 72px) 96px;
}

.story-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 78px);
  padding: 82px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(18, 63, 53, 0.1);
}

.muted-story {
  background: rgba(255, 255, 255, 0.46);
}

.story-kicker span,
.collection-grid span,
.cert-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-copy {
  display: grid;
  gap: 18px;
}

.story-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.values-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green);
}

.values-section article {
  min-height: 330px;
  padding: 34px;
  background: var(--paper);
}

.values-section span {
  color: var(--green);
  font-weight: 900;
}

.collection-section {
  padding: 92px clamp(20px, 5vw, 72px);
}

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

.collection-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.collection-grid img {
  height: 230px;
  object-fit: cover;
  filter: saturate(0.84);
}

.collection-grid div {
  padding: 24px;
}

.collection-grid p {
  color: var(--muted);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cert-grid a {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 800;
}

.cert-grid a:hover {
  border-color: rgba(18, 63, 53, 0.34);
  color: var(--ink);
}

.contact-layout {
  align-items: start;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-card {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-card:hover {
  border-color: rgba(18, 63, 53, 0.34);
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-card strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 17px;
  line-height: 1.25;
}

.reference-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #bfc8c2;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(47, 111, 91, 0.24);
  border-color: var(--green);
}

.form-note {
  margin: -4px 0 0;
  font-size: 14px;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card,
  .buyer-list article,
  .button {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .product-card:hover,
  .buyer-list article:hover {
    transform: translateY(-3px);
  }
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero,
  .intro-section,
  .compare-section,
  .page-hero,
  .product-detail,
  .about-hero,
  .story-section,
  .cert-section,
  .contact-layout,
  .search-spec-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 11ch;
    font-size: 48px;
  }

  .hero-visual,
  .compare-media img,
  .about-hero img,
  .detail-image img {
    min-height: 390px;
  }

  .proof-strip,
  .product-grid,
  .collection-grid,
  .buyer-list,
  .values-section,
  .metric-list,
  .faq-grid,
  .seo-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail.reverse .detail-image {
    order: 0;
  }

  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
  }

  h1 {
    max-width: 12ch;
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero,
  .page-hero,
  .about-hero,
  .product-detail,
  .intro-section,
  .compare-section,
  .cert-section,
  .contact-layout,
  .seo-supply-section,
  .search-spec-section,
  .product-band,
  .buyers-section,
  .spec-sheet,
  .values-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-strip,
  .product-grid,
  .buyer-list,
  .values-section,
  .metric-list,
  .cert-grid,
  .faq-grid,
  .seo-card-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .mini-product-row {
    grid-template-columns: 1fr;
  }

  .stage-product.bags {
    right: 4%;
    width: 78%;
  }

  .product-card {
    min-height: auto;
  }

  .spec-table > div {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin-left: 18px;
    margin-right: 18px;
  }
}
