:root {
  --ink: #101310;
  --ink-soft: #343b35;
  --paper: #f5f7f2;
  --paper-strong: #ffffff;
  --line: #d7ddd3;
  --muted: #6a746b;
  --accent: #1f7a4d;
  --accent-dark: #0f5130;
  --accent-soft: #d9eadb;
  --surface: #e9eee4;
  --shadow: 0 24px 60px rgba(36, 48, 38, 0.16);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

main {
  overflow: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(245, 247, 242, 0.88);
  border-bottom: 1px solid rgba(16, 19, 16, 0.08);
  backdrop-filter: blur(18px);
  transition:
    min-height 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(245, 247, 242, 0.96);
  box-shadow: 0 12px 36px rgba(24, 32, 26, 0.09);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-strong);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 10px 14px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface);
  color: var(--ink);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--paper-strong);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--accent-dark);
  color: var(--paper-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section {
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(18px, 3vw, 34px) clamp(30px, 5vw, 66px);
  align-items: center;
  padding-block: clamp(36px, 5.2vw, 58px) clamp(18px, 2.8vw, 30px);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero-commerce {
  grid-column: 1;
  grid-row: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.9vw, 4.85rem);
  letter-spacing: -0.02em;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5.3vw, 4.8rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.solution-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.solution-routes a {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.solution-routes a:hover,
.solution-routes a:focus-visible {
  border-color: rgba(31, 122, 77, 0.42);
  background: var(--paper-strong);
  box-shadow: 0 16px 34px rgba(38, 48, 40, 0.1);
  transform: translateY(-2px);
}

.solution-routes span {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.solution-routes strong {
  margin-top: 22px;
  font-size: 0.98rem;
  line-height: 1.1;
}

.solution-routes small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button,
.product-link,
.video-link,
.text-link,
.solution-routes a,
.chat-button,
.nav-toggle {
  touch-action: manipulation;
}

.button:hover,
.button:focus-visible,
.product-link:hover,
.product-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: 0 16px 34px rgba(17, 20, 16, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
  padding: 8px 12px;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  position: relative;
  min-height: auto;
  padding-top: clamp(16px, 2.6vw, 36px);
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.hero-card:hover,
.hero-card:focus-visible {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 30px 70px rgba(36, 48, 38, 0.22);
}

.hero-card-main {
  position: relative;
  z-index: 1;
  transform: none;
}

.hero-card-side {
  position: absolute;
  right: 0;
  bottom: -18px;
  z-index: 2;
  width: min(30%, 180px);
  aspect-ratio: 1;
  transform: rotate(3deg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 28%),
    var(--paper-strong);
  object-fit: contain;
}

.hero-card-main img {
  height: clamp(390px, 42vw, 560px);
  padding: clamp(8px, 1.6vw, 18px);
}

.hero-card-main span {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  color: var(--ink-soft);
  font-weight: 800;
}

.motion-disc {
  position: absolute;
  right: -3%;
  top: 7%;
  z-index: 0;
  width: clamp(126px, 18vw, 210px);
  aspect-ratio: 1;
  border: 22px solid rgba(31, 122, 77, 0.12);
  border-top-color: rgba(31, 122, 77, 0.5);
  border-radius: 50%;
  animation: rotate-disc 18s linear infinite;
}

.motion-disc::before,
.motion-disc::after {
  content: "";
  position: absolute;
  inset: 24%;
  border: 1px solid rgba(16, 19, 16, 0.36);
  border-radius: 50%;
}

.motion-disc::after {
  inset: 42%;
  background: var(--accent);
}

@keyframes rotate-disc {
  to {
    transform: rotate(360deg);
  }
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  padding: 18px 22px;
}

.promo-strip p {
  margin: 0;
  font-weight: 760;
}

.promo-strip a {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper-strong);
  font-weight: 850;
  padding: 10px 14px;
}

.offers-section {
  padding-top: clamp(28px, 5vw, 54px);
}

.offer-panel,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--paper-strong);
  padding: clamp(22px, 5vw, 44px);
  box-shadow: 0 18px 48px rgba(38, 48, 40, 0.08);
}

.offer-panel h2,
.contact-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.offer-grid,
.policy-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

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

.offer-grid article,
.policy-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px;
}

.offer-grid span,
.policy-card span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.offer-grid strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.08;
}

.offer-grid p,
.policy-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.custom-section {
  padding-top: 0;
}

.custom-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(24px, 5vw, 54px);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(31, 122, 77, 0.12), transparent 48%),
    var(--ink);
  color: var(--paper-strong);
  padding: clamp(22px, 5vw, 44px);
}

.custom-copy h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.custom-copy .eyebrow {
  color: var(--accent-soft);
}

.custom-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.custom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.custom-panel .button-primary {
  background: var(--paper-strong);
  color: var(--ink);
}

.custom-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
}

.custom-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-service-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 20px;
}

.custom-service-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.custom-service-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.swatch-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.swatch-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 11px;
}

.swatch-row span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--swatch);
}

.problem-section,
.products-section,
.proof-section,
.care-section,
.social-section,
.faq-section,
.catalog-section,
.video-section,
.offers-section,
.custom-section,
.reviews-section,
.policies-section,
.contact-section,
.closing-cta {
  padding-block: clamp(72px, 10vw, 124px);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading h2 {
  max-width: 15ch;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  min-width: max-content;
  border-bottom: 2px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 850;
  transition: transform 180ms ease;
}

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

.problem-card,
.solution-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
}

.problem-card {
  background: rgba(255, 255, 255, 0.52);
}

.solution-card {
  background: var(--accent-dark);
  color: var(--paper-strong);
}

.problem-card span,
.solution-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.solution-card span {
  color: var(--accent-soft);
}

.problem-card p,
.solution-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.solution-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.product-card {
  display: grid;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(38, 48, 40, 0.08);
}

.product-card-wide {
  grid-column: span 4;
  grid-template-columns: 0.94fr 1fr;
}

.product-image {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 30%),
    var(--surface);
}

.product-card-wide .product-image {
  min-height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  padding: 10px;
  object-fit: contain;
  transition:
    transform 450ms ease,
    filter 450ms ease;
}

.product-image:hover img,
.product-image:focus-visible img {
  transform: scale(1.02);
  filter: contrast(1.03) saturate(1.04);
}

.product-body {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
}

.product-kicker {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-body p:not(.product-kicker) {
  margin: 15px 0 0;
  color: var(--muted);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.product-meta span {
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 7px 10px;
}

.product-link {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  font-weight: 850;
  padding: 11px 15px;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  background: var(--accent-dark);
}

.catalog-section {
  border-top: 1px solid var(--line);
}

.media-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.media-stats span {
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.82rem;
  font-weight: 850;
  padding: 9px 12px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 14px 34px rgba(38, 48, 40, 0.08);
}

.catalog-media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
}

.carousel-track {
  display: flex;
  height: 100%;
  overscroll-behavior-inline: contain;
  min-height: 360px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 80% 18%, rgba(31, 122, 77, 0.08), transparent 30%),
    var(--surface);
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.carousel-slide img {
  padding: 8px;
}

.video-slide {
  display: grid;
}

.video-slide video {
  background: var(--ink);
}

.slide-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  background: rgba(16, 19, 16, 0.82);
  color: var(--paper-strong);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 9px;
}

.carousel-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(16, 19, 16, 0.82);
  color: var(--paper-strong);
  cursor: pointer;
  font-weight: 900;
  pointer-events: auto;
}

.carousel-controls span {
  border-radius: 999px;
  background: rgba(245, 247, 242, 0.9);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 7px 10px;
  pointer-events: none;
}

.catalog-cover {
  min-height: 100%;
  overflow: hidden;
  background: var(--surface);
}

.catalog-cover img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.catalog-cover:hover img,
.catalog-cover:focus-visible img {
  transform: scale(1.04);
}

.catalog-body {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 22px;
}

.catalog-body h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.catalog-body > p:not(.product-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.catalog-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-highlights li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
  padding: 7px 10px;
  text-align: center;
}

.catalog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.catalog-actions .product-link,
.catalog-actions .video-link {
  width: 100%;
  min-height: 44px;
  align-items: center;
  align-self: stretch;
  margin-top: 0;
}

.video-link {
  display: inline-flex;
  align-self: flex-start;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
  color: var(--ink);
  font-weight: 850;
  padding: 10px 14px;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.video-link:hover,
.video-link:focus-visible {
  border-color: rgba(31, 122, 77, 0.48);
  transform: translateY(-2px);
}

.media-details {
  margin-top: 18px;
  border-radius: 12px;
  padding-inline: 14px;
}

.media-details summary {
  padding: 14px 0;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-bottom: 14px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--surface);
  aspect-ratio: 1;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  transition: transform 300ms ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.03);
}

.gallery-tile span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  border-radius: 999px;
  background: rgba(16, 19, 16, 0.82);
  color: var(--paper-strong);
  font-size: 0.68rem;
  font-weight: 850;
  padding: 3px 6px;
}

.video-section {
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 26px);
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(38, 48, 40, 0.1);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #050705;
  object-fit: contain;
}

.video-card div {
  padding: 20px;
}

.video-card h3 {
  min-height: 2.35em;
  font-size: 1.25rem;
}

.video-card p:not(.product-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.proof-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-image img {
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
}

.proof-copy h2 {
  max-width: 14ch;
}

.proof-list {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.proof-list div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.proof-list strong {
  font-size: 1.08rem;
}

.proof-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.reviews-section,
.policies-section {
  border-top: 1px solid var(--line);
}

.rating-card {
  display: grid;
  min-width: 190px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-strong);
  padding: 18px;
  text-align: right;
}

.rating-card strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.rating-card span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

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

.review-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
}

.stars {
  color: var(--accent-dark);
  font-size: 0.94rem;
  letter-spacing: 0.14em;
}

.review-card p {
  margin: 34px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.12;
}

.review-card span {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: var(--muted);
  font-weight: 780;
}

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

.policy-card {
  min-height: 260px;
  background: var(--paper-strong);
}

.policy-card h3 {
  max-width: 12ch;
}

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

.care-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.care-card:hover,
.care-card:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(31, 122, 77, 0.38);
  box-shadow: var(--shadow);
}

.care-card span {
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.care-card h3 {
  margin-top: 44px;
}

.care-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 122, 77, 0.58);
  background: var(--paper-strong);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.social-copy {
  position: sticky;
  top: 100px;
}

.social-copy p:not(.eyebrow) {
  max-width: 50ch;
  margin: 22px 0 0;
  color: var(--muted);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.social-links a {
  display: grid;
  min-height: 132px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.social-links strong {
  font-size: 1.18rem;
}

.social-links span {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 0 22px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent-dark);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 76ch;
  margin: -6px 0 22px;
  color: var(--muted);
}

.closing-cta {
  margin-bottom: 34px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(120deg, rgba(31, 122, 77, 0.2), transparent 42%),
    var(--ink);
  color: var(--paper-strong);
  padding-inline: clamp(24px, 6vw, 64px);
}

.closing-cta h2 {
  max-width: 14ch;
}

.closing-cta .eyebrow {
  color: var(--accent-soft);
}

.closing-cta .button-primary {
  background: var(--paper-strong);
  color: var(--ink);
}

.closing-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-strong);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 32px 0 44px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a {
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  font-weight: 760;
  padding: 9px 12px;
}

.floating-chat {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 120;
  display: grid;
  width: min(330px, calc(100vw - 28px));
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(245, 247, 242, 0.94);
  padding: 10px;
  box-shadow: 0 18px 54px rgba(16, 19, 16, 0.22);
  backdrop-filter: blur(18px);
}

.chat-toggle {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: var(--paper-strong);
  cursor: pointer;
  font-weight: 850;
  padding: 9px 11px;
  text-align: left;
}

.chat-toggle span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.chat-toggle strong {
  font-size: 0.82rem;
}

.floating-chat:not(.is-expanded) {
  grid-template-columns: minmax(0, 1fr) 46px 46px;
  align-items: center;
  gap: 6px;
}

.floating-chat:not(.is-expanded) .chat-composer-label,
.floating-chat:not(.is-expanded) textarea,
.floating-chat:not(.is-expanded) .chat-status {
  display: none;
}

.floating-chat:not(.is-expanded) .chat-actions {
  display: contents;
}

.floating-chat:not(.is-expanded) .chat-button {
  width: 46px;
  min-height: 46px;
  gap: 0;
  border-radius: 14px;
  padding: 0;
}

.floating-chat:not(.is-expanded) .chat-button > span:not(.chat-icon) {
  display: none;
}

.floating-chat:not(.is-expanded) .chat-icon {
  background: transparent;
}

.chat-composer-label {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-chat textarea {
  width: 100%;
  min-height: 74px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.35;
  outline: none;
  padding: 10px 11px;
}

.floating-chat textarea:focus {
  border-color: rgba(31, 122, 77, 0.62);
  box-shadow: 0 0 0 4px rgba(31, 122, 77, 0.12);
}

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

.chat-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--paper-strong);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 8px 12px 8px 8px;
  box-shadow: 0 14px 34px rgba(16, 19, 16, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.chat-button:hover,
.chat-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(16, 19, 16, 0.28);
}

.chat-messenger {
  background: #1264d8;
}

.chat-whatsapp {
  background: #128c4a;
}

.chat-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.chat-icon img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.chat-status {
  min-height: 1.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.3;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .site-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: grid;
    justify-content: stretch;
    max-height: calc(100dvh - 96px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-strong);
    padding: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-radius: 12px;
    padding: 13px 14px;
  }

  .hero,
  .proof-section,
  .social-section,
  .offer-panel,
  .contact-panel,
  .custom-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-copy,
  .hero-visual,
  .hero-commerce {
    grid-column: 1;
    grid-row: auto;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: clamp(420px, 66vw, 620px);
  }

  .problem-grid,
  .care-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-card,
  .product-card-wide {
    grid-column: span 3;
    grid-template-columns: 1fr;
  }

  .product-card-wide .product-image {
    min-height: 270px;
  }

  .catalog-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .social-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 36px, var(--max));
  }

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

  .product-card,
  .product-card-wide {
    grid-column: auto;
  }

  .review-grid,
  .policy-grid,
  .social-links {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: clamp(330px, 58vw, 460px);
  }

  .solution-routes {
    grid-template-columns: 1fr;
  }

  .solution-routes a {
    min-height: auto;
  }

  .solution-routes strong {
    margin-top: 10px;
  }

  .video-card video {
    aspect-ratio: 4 / 3;
  }

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

  .contact-actions .button {
    width: 100%;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    display: none;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-nav {
    inset: 70px 10px auto;
    padding: 10px;
  }

  .hero-actions,
  .promo-strip,
  .site-footer,
  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .promo-strip a {
    width: 100%;
  }

  .button,
  .product-link,
  .video-link,
  .chat-button {
    min-height: 46px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11.5vw, 2.95rem);
    line-height: 0.98;
  }

  h2,
  .offer-panel h2,
  .contact-copy h2,
  .custom-copy h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 9.2vw, 2.65rem);
    line-height: 1.02;
  }

  h3 {
    font-size: clamp(1.16rem, 5.2vw, 1.45rem);
  }

  .eyebrow {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .hero {
    gap: 24px;
    padding-top: 30px;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 6px);
    text-align: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-card-main img {
    height: clamp(208px, 56vw, 280px);
    padding: 8px;
  }

  .hero-card-main {
    width: 100%;
  }

  .hero-card-side,
  .motion-disc {
    display: none;
  }

  .solution-routes {
    margin-top: 18px;
  }

  .solution-routes a {
    padding: 12px;
  }

  .problem-section,
  .products-section,
  .proof-section,
  .care-section,
  .social-section,
  .faq-section,
  .catalog-section,
  .video-section,
  .offers-section,
  .custom-section,
  .reviews-section,
  .policies-section,
  .contact-section,
  .closing-cta {
    padding-block: 56px;
  }

  .offers-section {
    padding-top: 28px;
  }

  .custom-section,
  .contact-section {
    padding-top: 0;
  }

  .product-grid,
  .social-links,
  .review-grid,
  .policy-grid,
  .offer-grid,
  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card-wide {
    grid-column: auto;
  }

  .problem-card,
  .solution-card,
  .care-card {
    min-height: auto;
  }

  .problem-card span,
  .solution-card span,
  .care-card h3 {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-cover img {
    min-height: 280px;
  }

  .carousel-track,
  .carousel-slide img,
  .carousel-slide video {
    min-height: min(300px, 78vw);
  }

  .carousel-controls {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .carousel-controls button {
    width: 42px;
    height: 42px;
  }

  .carousel-controls span {
    font-size: 0.68rem;
  }

  .catalog-highlights {
    grid-template-columns: 1fr;
  }

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

  .media-stats {
    justify-content: flex-start;
  }

  .media-stats span {
    flex: 1 1 100%;
    text-align: center;
  }

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

  .product-body,
  .catalog-body,
  .care-card,
  .policy-card,
  .review-card,
  .social-links a {
    padding: 20px;
  }

  .product-body,
  .catalog-body {
    min-height: auto;
  }

  .product-link,
  .video-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .rating-card {
    text-align: left;
  }

  .contact-actions .button {
    width: 100%;
  }

  .floating-chat {
    right: calc(10px + env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: calc(10px + env(safe-area-inset-left));
    width: auto;
    padding: 8px;
    border-radius: 18px;
  }

  .floating-chat:not(.is-expanded) {
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    align-items: center;
    gap: 6px;
  }

  .chat-toggle {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 0;
    border-radius: 14px;
    background: var(--ink);
    color: var(--paper-strong);
    cursor: pointer;
    font-weight: 850;
    padding: 9px 11px;
    text-align: left;
  }

  .chat-toggle span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
  }

  .chat-toggle strong {
    font-size: 0.82rem;
  }

  .floating-chat:not(.is-expanded) .chat-composer-label,
  .floating-chat:not(.is-expanded) textarea,
  .floating-chat:not(.is-expanded) .chat-status {
    display: none;
  }

  .floating-chat:not(.is-expanded) .chat-actions {
    display: contents;
  }

  .floating-chat:not(.is-expanded) .chat-button {
    width: 44px;
    min-height: 44px;
    gap: 0;
    border-radius: 14px;
    padding: 0;
  }

  .floating-chat:not(.is-expanded) .chat-button > span:not(.chat-icon) {
    display: none;
  }

  .floating-chat:not(.is-expanded) .chat-icon {
    background: transparent;
  }

  .floating-chat textarea {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .chat-composer-label,
  .chat-status {
    font-size: 0.68rem;
  }

  .chat-button {
    min-height: 40px;
    padding: 7px 10px 7px 7px;
    font-size: 0.78rem;
  }

  .chat-icon {
    width: 28px;
    height: 28px;
  }

  .site-footer {
    align-items: flex-start;
  }

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

@media (max-width: 420px) {
  .section,
  .promo-strip,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .hero-card-side {
    width: 48%;
  }

  .product-image,
  .product-image img {
    min-height: 230px;
  }

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

  .chat-actions {
    gap: 6px;
  }

  .chat-button {
    gap: 6px;
    font-size: 0.74rem;
  }

  .chat-icon {
    width: 26px;
    height: 26px;
  }
}
