* {
  box-sizing: border-box;
}

:root {
  --green-900: #1e5738;
  --green-800: #317a50;
  --green-700: #5a9f70;
  --green-100: #eef8ef;
  --cream: #fbf7eb;
  --paper: #fffefa;
  --sand: #efd7a5;
  --terracotta: #c77a56;
  --ink: #213327;
  --muted: #627466;
  --line: #dde7dc;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(47, 109, 69, 0.11);
  --radius: 8px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 254, 250, 0.98);
  border-bottom: 1px solid rgba(75, 149, 103, 0.18);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--white);
  border: 1px solid rgba(75, 149, 103, 0.2);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(47, 109, 69, 0.12);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: block;
  color: var(--green-900);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: #31493b;
  font-size: 15px;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav a:hover,
.nav a.is-active {
  color: var(--green-900);
  background: #e9f6ec;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(75, 149, 103, 0.2);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  background: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(49, 122, 80, 0.12);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(49, 122, 80, 0.18);
}

.btn-secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(75, 149, 103, 0.24);
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-warm {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 8px 18px rgba(199, 122, 86, 0.16);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(520px, 66vh, 620px);
  color: var(--green-900);
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, 0.9), rgba(241, 250, 237, 0.62) 52%, rgba(241, 250, 237, 0.14)),
    url("../images/optimized/base-hero-1920.jpg");
  background-position: center;
  background-size: cover;
}

.hero .container {
  min-height: inherit;
  display: grid;
  align-content: center;
  gap: 18px;
  padding-block: 32px;
}

.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
  align-items: center;
}

.hero-content {
  width: min(820px, 100%);
  padding: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-800);
  font-size: 15px;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--sand);
}

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

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--green-900);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.46);
}

.hero-lead {
  width: min(800px, 100%);
  margin-bottom: 16px;
  color: #234d34;
  font-size: clamp(18px, 2.2vw, 27px);
  font-weight: 750;
  line-height: 1.38;
}

.hero-note {
  width: min(680px, 100%);
  margin-bottom: 20px;
  color: #3f5a47;
  font-size: 17px;
}

.hero-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin: 18px 0 0;
  color: #8d4f34;
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 850;
}

.hero-phone span {
  color: var(--green-900);
  font-size: 16px;
  font-weight: 800;
}

.hero-phone a {
  color: #8d4f34;
}

.hero-phone em {
  color: rgba(141, 79, 52, 0.55);
  font-style: normal;
  font-weight: 700;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(760px, 100%);
}

.hero-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  color: #285a39;
  font-size: 13px;
  font-weight: 760;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 159, 112, 0.2);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(49, 122, 80, 0.08);
}

.hero .btn-outline {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(47, 109, 69, 0.28);
  box-shadow: 0 6px 16px rgba(49, 122, 80, 0.1);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(720px, 100%);
  margin-top: 36px;
}

.fact {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(90, 159, 112, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(3px);
  box-shadow: 0 8px 20px rgba(49, 122, 80, 0.08);
}

.fact strong {
  display: block;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.2;
}

.fact span {
  display: block;
  color: #566f5e;
  font-size: 13px;
  margin-top: 4px;
}

.hero-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.hero-proof div {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 159, 112, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(49, 122, 80, 0.08);
  backdrop-filter: blur(4px);
}

.hero-proof strong {
  display: block;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.25;
}

.hero-proof span {
  display: block;
  margin-top: 5px;
  color: #566f5e;
  font-size: 13px;
  line-height: 1.45;
}

.hero-supply {
  align-self: center;
  display: grid;
  align-content: center;
  padding: 22px;
  color: var(--green-900);
  background: rgba(255, 254, 250, 0.86);
  border: 1px solid rgba(90, 159, 112, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(47, 109, 69, 0.13);
  backdrop-filter: blur(8px);
}

.supply-kicker {
  width: max-content;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #8d4f34;
  font-size: 13px;
  font-weight: 850;
  background: #fff4dc;
  border: 1px solid #f0dfb8;
  border-radius: 999px;
}

.hero-supply h2 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.hero-supply p {
  margin-bottom: 12px;
  color: #4b6654;
}

.supply-list {
  display: grid;
  margin: 0;
}

.supply-list div {
  display: grid;
  gap: 4px;
  padding: 9px 0;
  border-top: 1px solid rgba(75, 149, 103, 0.14);
}

.supply-list dt {
  color: #8d4f34;
  font-size: 13px;
  font-weight: 850;
}

.supply-list dd {
  margin: 0;
  color: #2e4f3b;
  font-weight: 760;
  line-height: 1.45;
}

.supply-phone {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 13px;
  background: #edf8ef;
  border: 1px solid rgba(90, 159, 112, 0.18);
  border-radius: var(--radius);
}

.supply-phone span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.supply-phone a {
  color: #8d4f34;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.band {
  padding: 72px 0;
}

.band-cream {
  background: #fcf8ef;
}

.band-green {
  color: var(--green-900);
  background: linear-gradient(180deg, #eff8f1 0%, #fff9eb 100%);
}

.band-tight {
  padding: 44px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 8px;
  color: #a55f3e;
  font-size: 14px;
  font-weight: 800;
}

.band-green .section-kicker {
  color: #a55f3e;
}

.section-title {
  color: var(--green-900);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: 0;
}

.band-green .section-title,
.band-green .section-text,
.band-green .section-head p {
  color: var(--green-900);
}

.band-green .section-head p,
.band-green .section-text {
  color: var(--muted);
}

.band-green .btn-outline {
  color: var(--green-800);
  background: var(--white);
  border-color: rgba(47, 109, 69, 0.22);
}

.section-head p,
.section-text {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 0;
}

.notice-strip {
  color: var(--green-900);
  background: #fff8e7;
  border-block: 1px solid #f0dfb8;
}

.notice-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 16px;
}

.notice-strip strong {
  color: #8d4f34;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card,
.product-card,
.gallery-card,
.info-box {
  background: var(--white);
  border: 1px solid rgba(75, 149, 103, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(47, 109, 69, 0.06);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover,
.product-card:hover,
.gallery-card:hover,
.info-box:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 159, 112, 0.24);
  box-shadow: 0 14px 28px rgba(47, 109, 69, 0.1);
}

.card,
.info-box {
  padding: 24px;
}

.card h3,
.product-card h3,
.info-box h3 {
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.card p,
.product-card p,
.info-box p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-card img,
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card img,
.gallery-card img,
.media-split img {
  filter: saturate(1.03) contrast(1.02);
}

.product-card-body,
.gallery-card figcaption {
  padding: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  background: #edf8ef;
  border: 1px solid rgba(90, 159, 112, 0.16);
  border-radius: 999px;
}

.home-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  background: var(--white);
  border: 1px solid rgba(75, 149, 103, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(47, 109, 69, 0.08);
  overflow: hidden;
}

.product-feature img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.product-feature-body {
  display: grid;
  align-content: center;
  padding: 30px;
}

.feature-label {
  width: max-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: #8d4f34;
  font-size: 13px;
  font-weight: 820;
  background: #fff5df;
  border: 1px solid #f0dfb8;
  border-radius: 999px;
}

.product-feature h3 {
  margin-bottom: 12px;
  color: var(--green-900);
  font-size: clamp(25px, 3.4vw, 36px);
  line-height: 1.2;
}

.product-feature p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  width: max-content;
  margin-top: 18px;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-mini-list {
  display: grid;
  gap: 14px;
}

.product-mini {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(75, 149, 103, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(47, 109, 69, 0.06);
}

.product-mini img {
  width: 118px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(1.03) contrast(1.02);
}

.product-mini h3 {
  margin-bottom: 5px;
  color: var(--green-900);
  font-size: 19px;
  line-height: 1.25;
}

.product-mini p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-mini-cta {
  margin-top: 2px;
}

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

.media-split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 26px;
  color: #39483f;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--green-700);
  border-bottom: 3px solid var(--green-700);
  transform: rotate(-45deg);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  position: relative;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(75, 149, 103, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(47, 109, 69, 0.07);
  counter-increment: step;
}

.step-list li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 850;
  margin-bottom: 10px;
}

.step-list h3 {
  color: var(--green-900);
  font-size: 20px;
  margin-bottom: 8px;
}

.step-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.page-hero {
  padding: 78px 0 58px;
  color: var(--green-900);
  background-image:
    linear-gradient(90deg, rgba(255, 254, 250, 0.84), rgba(244, 252, 240, 0.56)),
    url("../images/optimized/base-hero-1920.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero h1 {
  width: min(780px, 100%);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.16;
  margin-bottom: 14px;
  letter-spacing: 0;
  color: var(--green-900);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.58);
}

.page-hero p {
  width: min(760px, 100%);
  color: #435c4a;
  font-size: 18px;
  margin-bottom: 0;
}

.breadcrumb {
  color: var(--green-800);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid rgba(75, 149, 103, 0.15);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 740px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--green-900);
  background: var(--green-100);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.contact-box {
  padding: 30px;
  color: var(--green-900);
  background: linear-gradient(135deg, #edf7ee 0%, #fff8e7 100%);
  border: 1px solid rgba(75, 149, 103, 0.18);
  border-radius: var(--radius);
}

.contact-box h2 {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.contact-line {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.contact-line strong {
  color: #a55f3e;
  font-size: 14px;
}

.contact-line a,
.contact-line span {
  color: var(--green-900);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-box .btn-outline {
  color: var(--green-800);
  background: var(--white);
  border-color: rgba(47, 109, 69, 0.22);
}

.map-box {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(90, 159, 112, 0.13), rgba(199, 122, 86, 0.08)),
    var(--cream);
  border: 1px solid rgba(75, 149, 103, 0.15);
  border-radius: var(--radius);
}

.map-box h3 {
  color: var(--green-900);
  font-size: 25px;
  margin-bottom: 12px;
}

.map-box p {
  color: var(--muted);
}

.site-footer {
  color: #496353;
  background: #edf7ee;
  border-top: 1px solid rgba(75, 149, 103, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(220px, 0.55fr));
  gap: 28px;
  padding: 46px 0;
}

.site-footer h2,
.site-footer h3 {
  color: var(--green-900);
  margin-bottom: 12px;
}

.site-footer p,
.site-footer li {
  color: #496353;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--terracotta);
}

.footer-bottom {
  padding: 16px 0 92px;
  color: #6a7c70;
  font-size: 14px;
  border-top: 1px solid rgba(75, 149, 103, 0.16);
}

.mobile-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 254, 250, 0.98);
  border-top: 1px solid rgba(75, 149, 103, 0.18);
  box-shadow: 0 -10px 30px rgba(47, 109, 69, 0.1);
}

.mobile-callbar .btn {
  flex: 1;
  min-width: 0;
  padding-inline: 10px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  z-index: 100;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 10px 16px;
  color: var(--white);
  font-weight: 700;
  background: rgba(16, 45, 30, 0.94);
  border-radius: var(--radius);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

@media (max-width: 1080px) {
  .header-actions .btn {
    display: none;
  }

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

@media (max-width: 920px) {
  .hero {
    background-image:
      linear-gradient(90deg, rgba(255, 254, 250, 0.8), rgba(241, 250, 237, 0.5) 48%, rgba(241, 250, 237, 0.02)),
      url("../images/optimized/base-hero-960.jpg");
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-supply {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 16px 18px;
    background: var(--paper);
    border-bottom: 1px solid rgba(75, 149, 103, 0.16);
    box-shadow: 0 18px 34px rgba(47, 109, 69, 0.1);
  }

  body.menu-open .nav {
    display: grid;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 0;
    border-bottom: 1px solid rgba(47, 109, 69, 0.1);
  }

  .section-head,
  .home-product-showcase,
  .product-feature,
  .media-split,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .step-list {
    grid-template-columns: 1fr;
  }

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

  .product-feature img {
    height: 320px;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-name {
    font-size: 15px;
    white-space: normal;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(255, 254, 250, 0.86), rgba(244, 252, 240, 0.62)),
      url("../images/optimized/base-hero-640.jpg");
  }

  .hero-content {
    padding: 0;
  }

  .hero-facts {
    display: none;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof div {
    padding: 12px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 12px;
  }

  .hero-keywords {
    gap: 7px;
  }

  .hero-keywords span {
    font-size: 12px;
  }

  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .btn-secondary {
    grid-column: 1 / -1;
  }

  .notice-strip .container {
    display: grid;
  }

  .band {
    padding: 52px 0;
  }

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .product-feature img {
    height: 260px;
  }

  .product-feature-body {
    padding: 22px;
  }

  .product-mini {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 12px;
  }

  .product-mini img {
    width: 96px;
    height: 82px;
  }

  .product-card img,
  .gallery-card img {
    height: 240px;
  }

  .contact-line a,
  .contact-line span {
    font-size: 19px;
  }

  .mobile-callbar {
    display: flex;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

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

  .nav {
    inset-block-start: 66px;
  }

  .hero {
    min-height: auto;
  }

  .btn {
    padding-inline: 14px;
  }
}
