:root {
  --color-ink: #20311a;
  --color-muted: #66755c;
  --color-primary: #4e7a28;
  --color-primary-dark: #2d4f18;
  --color-accent: #ca6e2c;
  --color-accent-soft: #f6c781;
  --color-paper: #fffdf6;
  --color-surface: rgba(255, 255, 255, 0.88);
  --color-surface-strong: #ffffff;
  --color-sage: #eef5e5;
  --color-sage-deep: #deebca;
  --color-border: rgba(78, 122, 40, 0.14);
  --color-shadow: rgba(39, 58, 20, 0.13);
  --shadow-soft: 0 24px 60px rgba(39, 58, 20, 0.12);
  --shadow-card: 0 22px 50px rgba(39, 58, 20, 0.09);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --container: 1200px;
  --header-height: 110px;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Source Sans 3", Avenir, Optima, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(198, 224, 160, 0.45) 0, rgba(198, 224, 160, 0) 28%),
    radial-gradient(circle at top right, rgba(255, 188, 94, 0.22) 0, rgba(255, 188, 94, 0) 24%),
    linear-gradient(180deg, #f7fbef 0, #fffdf6 300px, #fffdf6 100%);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 164, 81, 0.18) 0, rgba(126, 164, 81, 0) 70%);
  pointer-events: none;
  filter: blur(8px);
}

body::before {
  top: 7%;
  left: -6%;
}

body::after {
  right: -5%;
  bottom: 20%;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(202, 110, 44, 0.4);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(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;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: "Fraunces", Georgia, serif;
  font-weight: 750;
  line-height: 0.96;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
}

h3 {
  font-size: 1.4rem;
  line-height: 1.08;
}

p {
  margin: 0;
}

.lead,
.hero-copy,
.section-heading > p,
.about-content > p,
.promise p,
.benefits-band p,
.contact-copy .lead,
.product-card__body p:not(.eyebrow),
.dialog-product__content .lead {
  color: var(--color-muted);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  padding: 0.82rem 1.2rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  box-shadow: 0 14px 30px rgba(45, 79, 24, 0.18);
  transform: translateY(-2px);
}

.button--secondary,
.button--ghost {
  border-color: rgba(78, 122, 40, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-primary-dark);
}

.button--secondary:hover,
.button--ghost:hover {
  border-color: rgba(78, 122, 40, 0.32);
  background: var(--color-sage);
  color: var(--color-primary-dark);
}

.text-link {
  color: var(--color-primary-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.text-link--strong {
  font-size: 0.96rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.7rem 0 0.95rem;
  background: linear-gradient(180deg, rgba(244, 250, 236, 0.96) 0, rgba(244, 250, 236, 0.76) 100%);
  backdrop-filter: blur(18px);
}

.topbar {
  background: var(--color-primary);
  color: #f3f8ea;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.topbar-inner a {
  font-weight: 800;
  text-decoration: none;
}

.header-shell {
  margin-top: 0.8rem;
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 320px) auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  border: 1px solid rgba(78, 122, 40, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 1rem 0.85rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

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

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(39, 58, 20, 0.12);
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.79rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.18rem;
}

.site-nav a {
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 900;
  padding: 0.66rem 0.86rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: var(--color-sage);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 999px;
  background: #f8fbf2;
  padding: 0.35rem;
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  padding: 0.48rem 0.8rem;
}

.header-search input:focus {
  outline: 0;
}

.header-search button,
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.header-search button {
  border: 0;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 0.65rem 1rem;
}

.header-cta {
  padding: 0.8rem 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0, #6a9a38 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(78, 122, 40, 0.2);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 2rem;
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  min-height: calc(100svh - var(--header-height));
  border-radius: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 235, 189, 0.46) 0, rgba(255, 235, 189, 0) 22%),
    radial-gradient(circle at 85% 12%, rgba(190, 224, 146, 0.42) 0, rgba(190, 224, 146, 0) 24%),
    linear-gradient(135deg, #f8fbe9 0, #eef8df 42%, #fefdf7 100%);
  padding: clamp(2rem, 5vw, 4.2rem);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-copy-wrap {
  display: grid;
  gap: 1.4rem;
  align-content: center;
}

.hero-copy {
  max-width: 55ch;
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-notes li {
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.7rem 1rem;
  font-size: 0.94rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 12%;
  border: 1px solid rgba(78, 122, 40, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-logo {
  position: absolute;
  z-index: 3;
  top: 2%;
  left: 2%;
  width: clamp(124px, 18vw, 190px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 42px rgba(39, 58, 20, 0.16);
}

.hero-product {
  position: absolute;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.hero-product--main {
  right: 0;
  bottom: 0;
  width: min(84%, 640px);
  aspect-ratio: 1 / 1;
}

.hero-product--accent {
  left: 7%;
  bottom: 8%;
  width: min(40%, 260px);
  aspect-ratio: 4 / 5;
  border: 8px solid rgba(255, 255, 255, 0.74);
}

.hero-badge {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 0.1rem;
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1rem;
  box-shadow: 0 16px 32px rgba(39, 58, 20, 0.12);
}

.hero-badge strong {
  font-size: 1rem;
}

.hero-badge span {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-badge--top {
  top: 14%;
  right: 5%;
}

.hero-badge--bottom {
  left: 14%;
  top: 42%;
}

.section-heading,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading--center {
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.section-heading--center > p {
  max-width: 70ch;
}

.section-heading--stacked {
  align-items: center;
}

.featured-section {
  background: linear-gradient(180deg, rgba(240, 246, 229, 0.78) 0, rgba(255, 253, 246, 0.5) 100%);
}

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

.featured-card {
  display: grid;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 122, 40, 0.26);
  box-shadow: 0 28px 56px rgba(39, 58, 20, 0.13);
}

.featured-card__pin {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(78, 122, 40, 0.24);
}

.featured-card__media {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbe9 0, #eef5e5 100%);
  aspect-ratio: 4 / 3;
}

.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__content {
  display: grid;
  gap: 0.6rem;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.featured-meta li {
  border-radius: 999px;
  background: var(--color-sage);
  padding: 0.36rem 0.68rem;
  color: var(--color-primary-dark);
  font-size: 0.83rem;
  font-weight: 800;
}

.products-section {
  background: rgba(255, 255, 255, 0.54);
}

.filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.filters label {
  display: grid;
  gap: 0.38rem;
  color: var(--color-muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.filters input,
.filters select {
  min-height: 54px;
  width: 100%;
  border: 1px solid rgba(78, 122, 40, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  padding: 0.8rem 0.92rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.filters input:focus,
.filters select:focus {
  border-color: rgba(78, 122, 40, 0.4);
  box-shadow: 0 0 0 4px rgba(238, 245, 229, 0.95);
  outline: 0;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(39, 58, 20, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(78, 122, 40, 0.28);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.product-card__media {
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbe9 0, #eef5e5 100%);
  text-decoration: none;
}

.product-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 1.18rem;
}

.product-card__body .eyebrow {
  margin-bottom: -0.24rem;
}

.product-meta,
.spec-list {
  display: grid;
  gap: 0.74rem;
  margin: 0;
}

.product-meta {
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(78, 122, 40, 0.12);
  padding-top: 0.9rem;
}

.product-meta dt,
.spec-list dt {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-meta dd,
.spec-list dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.25;
}

.about-section {
  padding-top: 4.4rem;
}

.about-shell {
  display: grid;
  gap: 1.35rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.2rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
}

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

.about-content {
  display: grid;
  gap: 1rem;
}

.promise {
  border: 1px solid rgba(202, 110, 44, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf7 0, #f7f3e4 100%);
  padding: 1.1rem 1.15rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.42rem;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: var(--color-primary);
}

.benefits-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #edf6dd 0, #f9f6e9 100%);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}

.benefits-band div {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  padding: 1rem;
}

.contact-section {
  color: #fff;
}

.contact-shell {
  align-items: stretch;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(246, 199, 129, 0.18) 0, rgba(246, 199, 129, 0) 28%),
    linear-gradient(135deg, #294716 0, #34591d 45%, #203513 100%);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 28px 70px rgba(22, 40, 12, 0.28);
}

.contact-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.contact-section h2,
.contact-section h3 {
  color: #fff;
}

.contact-section .eyebrow,
.contact-section .lead {
  color: #f2d89f;
}

.contact-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
}

.contact-card div {
  display: grid;
  gap: 0.12rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.94rem 1rem;
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card span {
  color: #d8e8cb;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: #fff;
  font-weight: 800;
}

.site-footer {
  background: #182510;
  color: #f7f4e8;
  padding: 1.35rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.footer-brand div {
  display: grid;
  line-height: 1.18;
}

.footer-brand strong {
  font-family: "Fraunces", Georgia, serif;
}

.footer-brand span,
.site-footer p {
  color: #d2ddc6;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #247a3d;
  color: #fff;
  box-shadow: 0 16px 35px rgba(31, 122, 58, 0.28);
  font-weight: 900;
  padding: 0.82rem 1.04rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 20px 44px rgba(31, 122, 58, 0.34);
  transform: translateY(-2px);
}

.product-dialog {
  width: min(100% - 2rem, 1040px);
  max-height: min(88svh, 900px);
  overflow: auto;
  border: 0;
  border-radius: 30px;
  padding: 0;
  color: var(--color-ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.product-dialog::backdrop {
  background: rgba(21, 29, 18, 0.68);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: sticky;
  top: 0.85rem;
  left: calc(100% - 3.7rem);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(78, 122, 40, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--color-ink);
  font-size: 1.65rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(39, 58, 20, 0.1);
}

.dialog-product {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  padding: 1.35rem;
}

.dialog-product__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
}

.dialog-product__content {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.dialog-product__content section {
  display: grid;
  gap: 0.6rem;
}

.dialog-product__content h3 span {
  color: var(--color-muted);
  font-family: "Source Sans 3", Avenir, Optima, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.spec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid rgba(78, 122, 40, 0.12);
  padding: 1rem 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(78, 122, 40, 0.12);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid rgba(78, 122, 40, 0.12);
  padding: 0.76rem;
  text-align: left;
}

thead th {
  background: var(--color-sage);
}

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-search {
    display: none;
  }

  .hero-frame,
  .about-grid,
  .section-heading,
  .contact-shell,
  .dialog-product {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

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

  .benefits-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 88px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 4rem 0;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.45rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    border: 1px solid rgba(78, 122, 40, 0.14);
    border-radius: 24px;
    background: #fff;
    padding: 0.45rem;
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 0.88rem;
  }

  .header-cta {
    display: none;
  }

  .hero-frame {
    min-height: auto;
    padding: 1.5rem;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-product--main {
    width: 86%;
  }

  .hero-badge--bottom {
    left: 8%;
  }

  .filters,
  .featured-grid,
  .product-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .dialog-product {
    padding: 1rem;
  }

  .dialog-close {
    left: calc(100% - 3.3rem);
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .hero-notes {
    display: grid;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-logo {
    width: 110px;
  }

  .hero-badge {
    padding: 0.75rem 0.85rem;
  }

  .whatsapp-float {
    left: 1rem;
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
