:root {
  --green: #2c5e3b;
  --green-dark: #173521;
  --green-soft: #edf6ef;
  --yellow: #ebaa27;
  --yellow-dark: #c6860f;
  --white: #ffffff;
  --ink: #17231b;
  --muted: #607066;
  --line: rgba(23, 35, 27, 0.12);
  --shadow: 0 24px 80px rgba(23, 53, 33, 0.18);
  --radius-lg: 28px;
  --radius-md: 18px;
  --header-height: 82px;
  font-family: "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 16px clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 68px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 40px rgba(23, 35, 27, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  object-fit: cover;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  border-color: var(--line);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--yellow);
}

.language-toggle,
.nav-toggle,
.video-control {
  border: 0;
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 6px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.site-header.is-scrolled .language-toggle,
.site-header.is-open .language-toggle {
  background: var(--green-soft);
  border-color: var(--line);
}

.language-toggle span {
  display: grid;
  min-width: 36px;
  min-height: 30px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.language-toggle__active {
  color: var(--green-dark);
  background: var(--yellow);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-height) + 72px) clamp(18px, 6vw, 96px) 48px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  isolation: isolate;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: -3;
  object-fit: contain;
  object-position: center;
  background: var(--green-dark);
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 29, 17, 0.92) 0%, rgba(10, 29, 17, 0.7) 42%, rgba(10, 29, 17, 0.24) 100%),
    radial-gradient(circle at 78% 24%, rgba(235, 170, 39, 0.26), transparent 32%);
}

.hero__content {
  align-self: center;
  max-width: 830px;
  padding-top: 32px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7.8rem);
  font-weight: 800;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 800;
}

.hero__lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--green-dark);
  background: var(--yellow);
  box-shadow: 0 16px 40px rgba(235, 170, 39, 0.28);
}

.button--primary:hover {
  background: #f4bd4d;
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trust-panel {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin-top: 70px;
}

.trust-panel article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(14px);
}

.trust-panel strong,
.trust-panel span {
  display: block;
}

.trust-panel strong {
  margin-bottom: 6px;
  color: var(--yellow);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
}

.trust-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.video-control {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: 28px;
  z-index: 4;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(23, 35, 27, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.section {
  padding: clamp(72px, 10vw, 136px) clamp(18px, 6vw, 96px);
}

.section__header {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.intro {
  background: var(--green-soft);
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 80px);
  max-width: 1120px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.intro__grid p {
  margin: 0;
}

.products {
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.product-card div {
  padding: clamp(22px, 4vw, 34px);
}

.product-card__tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: var(--green-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card p,
.split__content p,
.contact p {
  color: var(--muted);
}

.packaging-note {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  background: var(--green-soft);
  border-radius: var(--radius-md);
}

.packaging-note strong {
  color: var(--green);
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
}

.packaging-note p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background: var(--green-dark);
}

.split__media img {
  width: 100%;
  max-height: 620px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.split h2,
.split h3 {
  color: var(--white);
}

.split__content p {
  color: rgba(255, 255, 255, 0.76);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.quality {
  background: linear-gradient(180deg, var(--white), var(--green-soft));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric-grid article {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  margin-bottom: 42px;
  color: var(--yellow-dark);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
}

.metric-grid span {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.media-gateway {
  background: var(--green-soft);
}

.media-gateway__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.media-tile {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.media-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 53, 33, 0.05), rgba(23, 53, 33, 0.88));
}

.media-tile img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.media-tile:hover img {
  transform: scale(1.04);
}

.media-tile span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 58svh;
  padding: calc(var(--header-height) + 86px) clamp(18px, 6vw, 96px) 78px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 29, 17, 0.92), rgba(10, 29, 17, 0.56)),
    var(--page-hero-image, url("galeria/banner fondo.png")) center / cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: radial-gradient(circle at 80% 20%, rgba(235, 170, 39, 0.24), transparent 32%);
}

.page-hero__content {
  align-self: end;
  max-width: 920px;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--green-soft);
  box-shadow: 0 18px 50px rgba(23, 53, 33, 0.1);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.video-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--green-dark);
  object-fit: contain;
}

.video-card__body {
  padding: 22px;
}

.video-card__body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.subpage-note {
  max-width: 760px;
  margin-top: 28px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
  background: var(--white);
}

.contact h2 {
  margin-bottom: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(44, 94, 59, 0.22);
  border-radius: 14px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 4px rgba(235, 170, 39, 0.16);
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(18px, 6vw, 96px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-dark);
}

.site-footer__credit {
  flex-basis: 100%;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  max-width: 1120px;
  margin-bottom: clamp(28px, 5vw, 48px);
  padding: clamp(20px, 3vw, 32px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(23, 53, 33, 0.1);
}

.brand-showcase__logo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.brand-showcase__text p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.retail {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.showcase-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.showcase-item--wide {
  grid-row: span 2;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.showcase-item:hover img {
  transform: scale(1.04);
}

.showcase-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 10px 14px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(23, 53, 33, 0.72);
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.spec-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 48px);
  padding: clamp(24px, 4vw, 44px);
  background: var(--green-soft);
  border-radius: var(--radius-lg);
}

.spec-showcase__info h3 {
  margin: 8px 0 16px;
  color: var(--green-dark);
}

.spec-showcase__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.spec-showcase__list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}

.spec-showcase__list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 18px;
  height: 18px;
  background: var(--yellow);
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px var(--green-soft);
}

.spec-showcase__sheet {
  margin: 0;
}

.spec-showcase__sheet img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 26px 70px rgba(23, 53, 33, 0.22);
}

.split__media--stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stack-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.stack-item--main {
  grid-column: 1 / -1;
}

.stack-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 380px;
  object-fit: cover;
}

.stack-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(23, 53, 33, 0.74);
  border-radius: 10px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 22px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.contact-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 600;
}

.contact-points li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 18px;
  height: 18px;
  background: #25d366;
  border-radius: 6px;
  box-shadow: inset 0 0 0 4px var(--white);
}

.whatsapp-panel {
  display: grid;
  justify-items: start;
  align-content: center;
  gap: 10px;
  padding: clamp(28px, 4vw, 40px);
  color: var(--white);
  background: linear-gradient(160deg, #128c4a, #075e54);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(7, 94, 84, 0.32);
}

.whatsapp-panel__eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.whatsapp-panel__title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.whatsapp-panel__number {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
}

.whatsapp-panel__number:hover {
  color: #d9ffe6;
}

.whatsapp-panel .whatsapp-cta {
  margin-top: 8px;
  color: #075e54;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.whatsapp-panel__note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: var(--white);
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    color: var(--green);
    background: var(--green-soft);
  }

  .brand span {
    display: none;
  }

  .trust-panel,
  .intro__grid,
  .card-grid,
  .split,
  .metric-grid,
  .media-gateway__grid,
  .gallery-grid,
  .video-grid,
  .contact,
  .brand-showcase,
  .showcase-grid,
  .spec-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-item--wide {
    grid-row: auto;
  }

  .brand-showcase__logo {
    justify-self: center;
  }

  .gallery-grid img {
    height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .hero {
    min-height: 94svh;
    padding-inline: 18px;
    padding-bottom: 76px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(10, 29, 17, 0.86) 0%, rgba(10, 29, 17, 0.68) 58%, rgba(10, 29, 17, 0.92) 100%);
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .trust-panel {
    margin-top: 42px;
  }

  .packaging-note {
    grid-template-columns: 1fr;
  }

  .product-card img {
    height: 230px;
  }

  .media-tile,
  .media-tile img {
    min-height: 280px;
  }

  .metric-grid article {
    min-height: auto;
  }

  .metric-grid strong {
    margin-bottom: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
