@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/woff2/Poppins-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/woff2/Poppins-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/woff2/Poppins-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/woff2/Poppins-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/woff2/Poppins-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/poppins/woff2/Poppins-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --orange: #61732f;
  --orange-dark: #4d5d25;
  --ink: #2e3340;
  --muted: #74777f;
  --line: #ececec;
  --soft: #f5f5f5;
  --panel: #e6eadf;
  --white: #fff;
  --black: #050505;
  --shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  --container: 1220px;
  --radius: 0;
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes arrowLift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes iconTap {
  0% {
    transform: scale(1) rotate(0);
  }

  45% {
    transform: scale(1.12) rotate(-4deg);
  }

  100% {
    transform: scale(1.06) rotate(0);
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

img,
video {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 60px));
  margin-inline: auto;
}

.section {
  padding: 78px 0;
}

.topbar {
  height: 56px;
  background: #dfe5d8;
  color: #101010;
  font-size: 14px;
  animation: headerIn 520ms ease both;
}

.topbar-inner {
  width: min(var(--container), calc(100% - 60px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.topbar a,
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar a {
  transition: color 180ms ease, transform 180ms ease, filter 180ms ease;
}

.topbar a:hover,
.topbar a:focus-visible {
  color: var(--orange-dark);
  filter: saturate(1.08);
  transform: translateY(-1px);
}

.social-logo {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.contact-logo {
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.topbar .contact-logo {
  width: 20px;
  height: 20px;
}

.topbar .phone-logo {
  width: 22px;
  height: 22px;
}

.topbar .gmail-logo {
  width: 21px;
  height: 17px;
}

.topbar svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 170px;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 0 max(30px, calc((100vw - var(--container)) / 2));
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
  animation: headerIn 640ms 90ms ease both;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 86px;
  height: auto;
  transition: transform 240ms ease;
}

.brand:hover img {
  transform: translateY(-2px) rotate(-2deg);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 170px;
}

.brand-copy strong {
  color: #0a0a0a;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 0;
}

.language-switcher {
  position: relative;
  z-index: 70;
  flex: 0 0 auto;
}

.language-current,
.language-menu button,
.legal-language button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 30px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  opacity: 0.62;
  transition: border-color 180ms ease, background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.language-current {
  width: 34px;
  height: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

.language-current[aria-expanded="true"],
.language-current:hover {
  border: 0;
  background: transparent;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-menu button.active,
.legal-language button.active {
  border-color: var(--orange);
  background: #f4f4ee;
  opacity: 1;
}

.language-current:focus-visible,
.language-menu button:focus-visible,
.legal-language button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.language-menu button:hover,
.legal-language button:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.language-switcher img,
.legal-language img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 0 14px;
  color: #0c0c0c;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.nav-link svg {
  width: 14px;
  height: 14px;
}

.nav-link.active {
  color: var(--orange);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  color: #050505;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  color: var(--orange-dark);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 23px;
  height: 23px;
  stroke-width: 3;
}

.icon-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.menu-mark {
  color: var(--orange);
}

.nav-toggle {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 190px);
  gap: 1px;
  width: max-content;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 7px 10px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

.mega-menu a:hover {
  color: var(--orange);
  background: #fafafa;
}

.mega-menu img {
  width: 34px;
  height: 34px;
  object-fit: cover;
}

.home-blank {
  min-height: 410px;
  background: var(--white);
}

.home-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 45%, rgba(255, 255, 255, 0.26) 100%),
    url("assets/optimized/hero/portada-congelats-2200.webp") center right / cover no-repeat;
}

.home-hero-inner {
  max-width: 660px;
  margin-inline: auto auto;
  padding: 54px 0;
}

.home-hero h1 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.03;
  text-transform: uppercase;
}

.home-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
  max-width: 560px;
}

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

.orange-button-dark {
  background: #303642;
}

.hero-rotator {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #f7f7f7 url("assets/optimized/hero/portada-congelats-2200.webp") center / cover no-repeat;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1800ms ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  animation: heroBreath 9000ms ease-out forwards;
}

.home-intro {
  padding: 58px 0 64px;
  text-align: center;
  background: var(--white);
}

.home-intro-inner {
  max-width: 860px;
}

.home-intro h1 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.03;
  text-transform: uppercase;
}

.home-intro p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
}

.home-intro .hero-actions {
  justify-content: center;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 72px;
  padding-bottom: 36px;
}

.section-title-row h1,
.easy-band h2,
.about-intro h1,
.work-section h2,
.families-section h1,
.catalog-section h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.section-title-row h1 {
  color: var(--black);
  font-size: clamp(25px, 2.5vw, 31px);
}

.orange-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 30px;
  border: 0;
  color: var(--white);
  background: var(--orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.orange-button:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 22px rgba(77, 93, 37, 0.24);
  transform: translateY(-2px);
}

.orange-button:active {
  transform: translateY(0);
}

.product-preview {
  background: #fafafa;
  padding-top: 44px;
}

.tab-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 44px;
}

.tab-strip button {
  border: 0;
  background: transparent;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: default;
}

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

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

.highlight-grid .product-card {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.highlight-grid .product-card img {
  object-fit: cover;
  margin-bottom: 24px;
}

.highlight-grid .product-card h2 {
  min-height: 0;
  margin-bottom: 0;
  text-align: center;
}

.highlight-grid .product-card:hover {
  border-color: transparent;
  box-shadow: none;
}

.highlight-grid .product-card h2::after {
  display: none;
}

.torm-frit-feature {
  padding: 72px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  background: var(--white);
}

.torm-frit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.torm-frit-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(97, 115, 47, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 52px rgba(46, 51, 64, 0.1);
}

.torm-frit-visual img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.torm-frit-copy {
  max-width: 580px;
}

.torm-frit-copy .eyebrow {
  color: #93690f;
}

.torm-frit-copy h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.torm-frit-copy p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

.torm-frit-copy .torm-frit-lede {
  max-width: 520px;
  margin-bottom: 14px;
  color: #4c3a08;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.torm-frit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 28px;
}

.torm-frit-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(192, 138, 23, 0.38);
  color: #39431f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.torm-frit-points svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #c08a17;
  stroke-width: 2.4;
}

.product-card {
  min-height: 448px;
  padding: 0 15px 18px;
  background: var(--white);
  border: 1px solid #efefef;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(97, 115, 47, 0.24);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  margin-bottom: 22px;
  transition: transform 520ms ease;
}

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

.product-card h2 {
  min-height: 74px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.product-card h2::after {
  content: "";
  display: block;
  height: 8px;
  margin-top: 14px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #f5f5f5;
}

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

.product-card a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card svg,
.product-card a svg {
  width: 14px;
  height: 14px;
}

.ardo-feature {
  padding: 58px 0 72px;
  border-top: 1px solid rgba(97, 115, 47, 0.12);
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.ardo-feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 44px;
  align-items: center;
}

.ardo-copy {
  max-width: 430px;
}

.ardo-logo {
  display: block;
  width: min(310px, 100%);
  height: auto;
  margin: 4px 0 20px;
}

.ardo-copy h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(30px, 3.3vw, 48px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.ardo-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.75;
}

.ardo-copy .orange-button {
  margin-top: 28px;
}

.ardo-carousel {
  position: relative;
  min-width: 0;
}

.ardo-carousel-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(97, 115, 47, 0.16);
  border-radius: 8px;
  background: #e6eadf;
  box-shadow: 0 22px 48px rgba(20, 30, 11, 0.13);
}

.ardo-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.012);
  transition: opacity 520ms ease, transform 900ms ease;
}

.ardo-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.ardo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ardo-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(97, 115, 47, 0.18);
  border-radius: 50%;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(20, 30, 11, 0.13);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.ardo-carousel-prev {
  left: 14px;
}

.ardo-carousel-next {
  right: 14px;
}

.ardo-carousel-button:hover,
.ardo-carousel-button:focus-visible {
  color: var(--white);
  background: var(--orange);
  transform: translateY(-50%) scale(1.04);
}

.ardo-carousel-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.6;
}

.ardo-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.ardo-carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(97, 115, 47, 0.18);
  border-radius: 50%;
  background: #d9dfcf;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ardo-carousel-dots button:hover,
.ardo-carousel-dots button:focus-visible,
.ardo-carousel-dots button.is-active {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(97, 115, 47, 0.14);
  transform: scale(1.12);
}

.easy-band {
  color: var(--white);
  background: var(--orange);
  padding: 58px 0 98px;
}

.easy-band h2 {
  color: var(--white);
  margin-bottom: 66px;
  font-size: clamp(34px, 4vw, 48px);
  text-transform: uppercase;
}

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

.easy-grid article,
.facilities-grid article,
.stats-grid article,
.work-grid article {
  transition: transform 220ms ease;
}

.easy-grid article:hover,
.facilities-grid article:hover,
.stats-grid article:hover,
.work-grid article:hover {
  transform: translateY(-5px);
}

.easy-grid strong {
  display: block;
  margin-bottom: 2px;
  font-size: 21px;
  font-weight: 800;
}

.easy-grid h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.3;
  text-transform: uppercase;
}

.easy-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

.frost-strip {
  height: 210px;
  overflow: hidden;
  background: #1a3145;
}

.frost-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.facilities {
  padding: 92px 0 124px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
  text-align: center;
}

.facilities svg {
  width: 24px;
  height: 24px;
  margin-inline: auto;
  color: var(--orange);
  fill: var(--orange);
  stroke-width: 2.4;
  transition: transform 260ms ease;
}

.facilities-grid article:hover svg {
  transform: scale(1.12) rotate(-3deg);
}

.facilities h2 {
  margin: 12px 0 13px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.facilities p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.sales-map-section {
  padding: 78px 0 92px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(30, 38, 16, 0.22), rgba(255, 255, 255, 0.06)),
    var(--orange-dark);
}

.sales-map-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 34px;
}

.sales-map-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.sales-map-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.75;
}

.sales-map-frame {
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(226, 211, 145, 0.78);
  border-radius: 8px;
  background: #e2e8d7;
  box-shadow: 0 22px 54px rgba(29, 34, 12, 0.28);
}

#sales-map {
  width: 100%;
  height: 100%;
}

.sales-map-section .leaflet-container {
  background: #e2e8d7;
  font-family: Poppins, Arial, sans-serif;
}

.sales-map-section .leaflet-tile {
  filter: saturate(0.86) sepia(0.1) hue-rotate(8deg) contrast(0.98);
}

.leaflet-container img {
  max-width: none;
}

.sales-map-label {
  padding: 6px 12px;
  border: 1px solid rgba(97, 115, 47, 0.16);
  border-radius: 999px;
  color: var(--orange-dark);
  background: rgba(255, 255, 250, 0.95);
  box-shadow: 0 8px 20px rgba(29, 34, 12, 0.16);
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.sales-map-label-home {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(226, 211, 145, 0.92), 0 8px 22px rgba(29, 34, 12, 0.22);
}

.sales-map-section .leaflet-tooltip-left::before,
.sales-map-section .leaflet-tooltip-right::before,
.sales-map-section .leaflet-tooltip-top::before,
.sales-map-section .leaflet-tooltip-bottom::before {
  display: none;
}

.sales-map-section .leaflet-control-zoom {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(29, 34, 12, 0.18);
}

.sales-map-section .leaflet-control-zoom a {
  border: 0;
  color: var(--orange-dark);
  background: rgba(255, 255, 250, 0.95);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 800;
}

.sales-map-section .leaflet-control-zoom a + a {
  border-top: 1px solid rgba(97, 115, 47, 0.16);
}

.sales-map-section .leaflet-control-zoom a:hover,
.sales-map-section .leaflet-control-zoom a:focus {
  color: var(--orange);
  background: #f5f7ef;
}

.sales-map-section .leaflet-control-attribution {
  padding: 4px 9px;
  border-radius: 999px;
  color: rgba(77, 93, 37, 0.82);
  background: rgba(255, 255, 250, 0.88);
  font-family: Poppins, Arial, sans-serif;
  font-size: 10px;
  box-shadow: 0 6px 18px rgba(29, 34, 12, 0.1);
}

.sales-map-section .leaflet-control-attribution a {
  color: var(--orange-dark);
}

.sustainability-section {
  margin-top: 58px;
  padding: 54px 0 58px;
  color: var(--white);
  background: var(--orange);
}

.sustainability-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.sustainability-copy {
  max-width: 560px;
}

.sustainability-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.06;
}

.sustainability-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.8;
}

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

.sustainability-panel article {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.sustainability-panel i {
  display: inline-flex;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  color: #f0b84b;
  stroke-width: 2.2;
}

.sustainability-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 1.2vw, 21px);
  font-weight: 900;
  line-height: 1.2;
}

.sustainability-panel p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.inner-hero {
  height: 400px;
  overflow: hidden;
  background: #f7f7f7;
}

.inner-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero img {
  object-position: center;
}

.narrow {
  width: min(940px, calc(100% - 60px));
}

.about-intro {
  padding-top: 68px;
  padding-bottom: 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  max-width: 1050px;
}

.family-photo {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: transparent;
}

.family-photo img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  transition: transform 700ms ease;
}

.family-photo:hover img {
  transform: scale(1.018);
}

.about-copy {
  grid-column: 2;
  grid-row: 2;
  text-align: left;
  max-width: 620px;
}

.about-intro h1 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 24px;
  text-align: left;
}

.about-intro p {
  margin: 0 0 10px;
  color: #161616;
  font-size: 15px;
  line-height: 1.85;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.about-stats {
  padding-top: 40px;
  padding-bottom: 70px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 90px 160px;
  text-align: center;
}

.stats-grid article:nth-child(n + 4) {
  grid-column: auto;
}

.stats-grid strong {
  display: block;
  color: var(--orange);
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 15px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.6;
  text-transform: uppercase;
}

.work-section {
  padding-top: 58px;
}

.work-section h2 {
  margin-bottom: 46px;
}

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

.work-grid article {
  text-align: center;
}

.work-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: center;
}

.work-grid .work-icon {
  display: block;
}

.work-grid .work-icon svg {
  width: 82px;
  height: 82px;
  padding: 18px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  stroke-width: 1.8;
  object-fit: contain;
  margin: 0 auto 20px;
  transition: transform 260ms ease, background 260ms ease;
}

.work-grid article:hover .work-icon svg {
  background: var(--orange-dark);
  transform: translateY(-3px) scale(1.04);
}

.work-chevron {
  display: none;
}

.work-title {
  display: block;
  margin: 0 0 13px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.work-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.families-section {
  padding-top: 56px;
}

.families-section h1 {
  margin-bottom: 60px;
}

.product-family-intro,
.catalog-intro {
  width: min(820px, 100%);
  margin: -34px auto 48px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.catalog-intro {
  margin-top: -20px;
  margin-bottom: 56px;
}

.families-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px 20px;
}

.family-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #ddd;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.family-card:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  transform: translateY(-6px);
}

.family-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 720ms ease;
}

.family-card:hover img {
  transform: scale(1.07);
}

.family-card--precuinats img {
  object-position: center 68%;
}

.family-card--oli img {
  object-position: center 64%;
}

.family-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}

.family-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 1;
  padding: 0 18px;
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.family-card--ambient span {
  bottom: 22px;
}

.family-card--empty {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: #f4f4ee;
}

.family-card--empty::after {
  display: none;
}

.family-card--empty span {
  position: static;
  padding: 0 22px 24px;
  color: #151515;
  text-shadow: none;
}

.catalog-section {
  padding-top: 56px;
}

.catalog-section h1 {
  margin-bottom: 64px;
}

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

.catalog-grid article,
.magazine-grid article {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.catalog-grid h2,
.magazine-grid h2 {
  min-height: 36px;
  margin: 0 0 34px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.catalog-placeholder {
  width: min(204px, 70%);
  aspect-ratio: 0.71;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  color: #e1e6ed;
  background: #f2f4f4;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18);
}

.catalog-placeholder svg {
  width: 96px;
  height: 96px;
  stroke-width: 0.7;
}

.catalog-placeholder.small {
  width: min(160px, 70%);
}

.catalog-cover {
  display: block;
  width: min(230px, 78%);
  aspect-ratio: 848 / 1200;
  margin: 0 auto 30px;
  background: #f4f4f4;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.catalog-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
}

.catalog-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.catalog-grid p,
.magazine-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.catalog-grid p {
  min-height: 54px;
}

.catalog-link {
  margin: auto auto 0;
}

.magazines-title {
  margin-top: 86px !important;
}

.contact-section {
  padding-top: 48px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 375px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-info a {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  min-height: 104px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(97, 115, 47, 0.18);
  background: transparent;
  transition: border-color 200ms ease, transform 200ms ease;
}

.contact-info a:hover {
  border-color: rgba(97, 115, 47, 0.38);
  transform: translateX(4px);
}

.contact-info svg {
  width: 58px;
  height: 58px;
  padding: 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  stroke-width: 2.6;
  transition: transform 220ms ease, background 220ms ease;
}

.contact-info a:hover svg {
  background: var(--orange-dark);
  transform: scale(1.06);
}

.contact-info .social-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.contact-info .contact-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.contact-info .phone-logo {
  width: 74px;
  height: 74px;
}

.contact-info .gmail-logo {
  width: 46px;
  height: 36px;
}

.contact-info a:hover .social-logo,
.contact-info a:hover .contact-logo {
  animation: iconTap 360ms ease both;
  transform: scale(1.06);
}

.contact-info strong {
  display: block;
  color: #0e0e0e;
  font-size: 15px;
  margin-bottom: 5px;
}

.contact-info span {
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
}

.message-form,
.warehouse-map {
  min-height: 520px;
  background: var(--panel);
}

.message-form {
  padding: 48px 40px;
}

.warehouse-map {
  overflow: hidden;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.warehouse-map:hover {
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.warehouse-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  min-height: 520px;
  border: 0;
}

.message-form h1 {
  margin: 0 0 6px;
  color: #030303;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.message-form p {
  margin: 0 0 10px;
  color: #1e1e1e;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 38px 0 28px;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #111;
  border-radius: 0;
  color: #111;
  background: transparent;
  outline: none;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 92px;
  resize: vertical;
}

.form-note {
  margin-top: 20px !important;
  color: var(--orange) !important;
  font-weight: 700;
}

.form-note-static {
  color: var(--orange) !important;
  font-weight: 700;
}

.site-footer {
  padding: 64px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #0a0a0a;
  font-size: 27px !important;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, transform 220ms ease;
}

.footer-logo img {
  width: 76px;
  height: auto;
  transition: transform 260ms ease;
}

.footer-logo:hover,
.footer-logo:focus-visible {
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.footer-logo:hover img,
.footer-logo:focus-visible img {
  transform: rotate(-2deg) scale(1.04);
}

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

.footer-nav a {
  position: relative;
  padding: 0 12px;
  color: #111;
  font-size: 14px;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange-dark);
  transform: translateY(-2px);
}

.footer-nav a:hover::before,
.footer-nav a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.footer-nav a.active {
  color: var(--orange);
}

.footer-nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transition: transform 220ms ease, opacity 180ms ease;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px 28px;
  width: min(900px, calc(100% - 60px));
  margin: 52px auto 0;
}

.footer-contact a {
  position: relative;
  grid-column: span 2;
  align-items: center;
  justify-content: center;
  color: #060606;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  transition: color 180ms ease, filter 180ms ease, transform 220ms ease;
}

.footer-contact a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: min(82px, 80%);
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
  transition: opacity 180ms ease, transform 220ms ease;
}

.footer-contact a:nth-child(4) {
  grid-column: 2 / span 2;
}

.footer-contact a:nth-child(5) {
  grid-column: 4 / span 2;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange);
  filter: saturate(1.08);
  transform: translateY(-4px);
}

.footer-contact a:hover::after,
.footer-contact a:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.footer-contact svg {
  width: 44px;
  height: 44px;
  stroke-width: 3;
  transition: color 180ms ease, transform 240ms ease;
}

.footer-contact .social-logo,
.footer-contact .contact-logo {
  width: 38px;
  height: 38px;
  transition: filter 180ms ease, transform 240ms ease;
}

.footer-contact a:hover svg,
.footer-contact a:focus-visible svg,
.footer-contact a:hover .social-logo,
.footer-contact a:focus-visible .social-logo,
.footer-contact a:hover .contact-logo,
.footer-contact a:focus-visible .contact-logo {
  animation: iconTap 360ms ease both;
}

.footer-contact .phone-logo {
  width: 42px;
  height: 42px;
}

.footer-contact .gmail-logo {
  width: 38px;
  height: 30px;
}

.footer-address-short {
  display: none;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(620px, calc(100% - 48px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(97, 115, 47, 0.18);
  color: #333;
  font-size: 13px;
}

.footer-legal a {
  position: relative;
  color: #333;
  transition: color 180ms ease;
}

.footer-legal.reveal-ready {
  opacity: 1;
  filter: none;
  transform: none;
}

.footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--orange);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 180ms ease, transform 220ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--orange-dark);
}

.footer-legal a:hover::after,
.footer-legal a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.to-top {
  position: fixed;
  right: 74px;
  bottom: 18px;
  z-index: 110;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--white);
  background: #2d3441;
  box-shadow: 0 10px 24px rgba(23, 30, 43, 0.22);
  cursor: pointer;
  overflow: hidden;
  transition: background 180ms ease, box-shadow 180ms ease, transform 220ms ease;
}

.to-top::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 180ms ease, transform 240ms ease;
}

.to-top:hover,
.to-top:focus-visible {
  background: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(77, 93, 37, 0.28);
  transform: translateY(-4px) scale(1.03);
}

.to-top:hover::before,
.to-top:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.to-top svg {
  position: relative;
  width: 22px;
  height: 22px;
  z-index: 1;
}

.to-top:hover svg,
.to-top:focus-visible svg {
  animation: arrowLift 760ms ease infinite;
}

.legal-page {
  background: #f7f7f7;
}

.legal-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px max(30px, calc((100vw - var(--container)) / 2));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.legal-actions,
.legal-language {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-home-link {
  color: var(--orange);
  font-weight: 800;
  white-space: nowrap;
}

.legal-language button {
  border-color: var(--line);
  background: var(--white);
}

.legal-language button.active {
  border-color: var(--orange);
  background: #f4f4ee;
}

.legal-main {
  padding: 72px 0;
}

.legal-footer-email {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 800;
}

.legal-hero,
.legal-content {
  background: var(--white);
  padding: 42px;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 42px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.sustainability-section .eyebrow {
  color: #fff;
  opacity: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.legal-content {
  color: #222;
}

.legal-update {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
}

.legal-section {
  margin-top: 32px;
}

.legal-section h2 {
  margin: 0 0 10px;
}

.reveal-ready {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    filter 680ms ease,
    transform 680ms ease,
    background 200ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

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

@media (max-width: 1120px) {
  .site-header {
    height: auto;
    min-height: 118px;
    padding: 22px 30px;
  }

  .brand img,
  .footer-logo img {
    width: 74px;
  }

  .brand-copy strong {
    font-size: 24px;
  }

  .main-nav {
    gap: 10px;
  }

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

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

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

  .about-layout {
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
    gap: 16px 28px;
  }

  .about-copy {
    display: block;
    grid-column: 2;
    grid-row: 2;
  }

  .about-intro h1 {
    grid-column: 1 / -1;
    grid-row: 1;
    margin: 0 0 10px;
    text-align: center;
  }

  .family-photo {
    grid-column: 1;
    grid-row: 2;
  }
}

@media (max-width: 820px) {
  .container,
  .topbar-inner,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .legal-site-header {
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
  }

  .legal-site-header .brand {
    order: 0;
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .legal-site-header .brand img {
    width: 44px;
  }

  .legal-site-header .brand > span:last-child {
    display: grid;
    min-width: 0;
    gap: 2px;
  }

  .legal-site-header .brand strong,
  .legal-site-header .brand small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .legal-site-header .brand strong {
    font-size: 18px;
    line-height: 1.1;
  }

  .legal-site-header .brand small {
    font-size: 9px;
    line-height: 1.2;
  }

  .legal-actions {
    order: 1;
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
  }

  .legal-home-link {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .legal-language {
    gap: 2px;
  }

  .legal-language button {
    width: 28px;
    height: 24px;
    border-color: transparent;
    background: transparent;
    opacity: 0.86;
  }

  .legal-language button.active {
    border-color: transparent;
    background: transparent;
    box-shadow: inset 0 -2px 0 var(--orange);
    opacity: 1;
  }

  .legal-language img {
    width: 22px;
    height: 15px;
    box-shadow: none;
  }

  .legal-main {
    padding: 28px 0 44px;
  }

  .legal-hero,
  .legal-content {
    padding: 26px 18px;
  }

  .legal-hero h1 {
    font-size: clamp(32px, 11vw, 42px);
    line-height: 1.02;
  }

  .topbar {
    height: auto;
    padding: 10px 0;
  }

  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .topbar .social-link {
    gap: 0;
    font-size: 0;
  }

  .site-header {
    min-height: 86px;
    padding: 16px;
    gap: 8px;
    justify-content: space-between;
  }

  .brand {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .brand img {
    width: 64px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 10px;
    white-space: nowrap;
  }

  .nav-toggle {
    order: 3;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    color: var(--orange);
    background: transparent;
  }

  .nav-toggle svg {
    width: 28px;
    height: 28px;
  }

  .main-nav {
    order: 4;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 86vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 110px 26px 30px;
    z-index: 130;
    isolation: isolate;
    background: #fff;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
    pointer-events: none;
    transform: none;
    transition:
      clip-path 180ms ease,
      visibility 0s linear 180ms;
  }

  body.nav-open .main-nav {
    visibility: visible;
    clip-path: inset(0);
    pointer-events: auto;
    transition: clip-path 180ms ease;
  }

  .nav-link {
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-link svg {
    display: none;
  }

  .icon-button {
    display: none;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .language-menu {
    right: auto;
    left: 50%;
    transform: translate(-50%, -4px);
  }

  .language-switcher.open .language-menu {
    transform: translate(-50%, 0);
  }

  .mega-menu {
    display: none;
  }

  .home-blank {
    min-height: 260px;
  }

  .hero-rotator {
    height: 180px;
  }

  .hero-slide {
    transform: none;
    will-change: opacity;
  }

  .hero-slide.is-active {
    animation: none;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.82) 100%),
      url("assets/optimized/hero/portada-congelats-2200.webp") center / cover no-repeat;
  }

  .section {
    padding: 40px 0;
  }

  .home-intro {
    padding: 42px 0 46px;
  }

  .home-intro h1,
  .section-title-row h1,
  .easy-band h2,
  .about-intro h1,
  .work-section h2,
  .families-section h1,
  .catalog-section h1 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .home-intro p:not(.eyebrow),
  .about-intro p,
  .product-family-intro,
  .catalog-intro {
    font-size: 14px;
    line-height: 1.65;
  }

  .section-title-row,
  .footer-nav,
  .footer-nav nav {
    flex-direction: column;
  }

  .section-title-row {
    gap: 20px;
  }

  .tab-strip {
    flex-wrap: wrap;
  }

  .easy-grid,
  .facilities-grid,
  .torm-frit-layout,
  .ardo-feature-layout,
  .sustainability-layout,
  .sustainability-panel,
  .sales-map-copy,
  .stats-grid,
  .work-grid,
  .about-layout,
  .contact-layout,
  .footer-contact {
    grid-template-columns: 1fr;
  }

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

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

  .highlight-grid .product-card img {
    margin-bottom: 14px;
  }

  .highlight-grid .product-card h2 {
    font-size: 13px;
    line-height: 1.25;
  }

  .torm-frit-feature {
    padding: 46px 0 50px;
  }

  .torm-frit-layout {
    gap: 28px;
  }

  .torm-frit-copy {
    max-width: none;
    text-align: center;
  }

  .torm-frit-visual {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .torm-frit-copy .torm-frit-lede,
  .torm-frit-copy p {
    margin-inline: auto;
  }

  .torm-frit-points {
    max-width: 640px;
    margin-inline: auto;
  }

  .torm-frit-copy .orange-button {
    margin-top: 2px;
  }

  .ardo-feature {
    padding: 42px 0 48px;
  }

  .ardo-feature-layout {
    gap: 26px;
  }

  .ardo-copy {
    max-width: none;
    text-align: center;
  }

  .ardo-logo {
    width: min(300px, 74vw);
    margin-inline: auto;
  }

  .ardo-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin-inline: auto;
    font-size: 14px;
    line-height: 1.65;
  }

  .ardo-copy .orange-button {
    margin-top: 22px;
  }

  .ardo-carousel-stage {
    aspect-ratio: 4 / 3;
  }

  .ardo-carousel {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .ardo-carousel-button {
    width: 38px;
    height: 38px;
  }

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

  .family-card span {
    bottom: 14px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.15;
  }

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

  .inner-hero {
    height: 180px;
  }

  .product-preview {
    padding-top: 34px;
  }

  .product-card {
    min-height: 0;
    padding: 0 8px 14px;
  }

  .product-card h2 {
    min-height: 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .easy-band {
    padding: 34px 0 40px;
  }

  .easy-band h2 {
    width: min(100% - 32px, var(--container));
    margin: 0 auto 24px;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.04;
    text-align: left;
  }

  .easy-grid {
    gap: 0;
  }

  .easy-grid article {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 4px 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .easy-grid article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .easy-grid article:hover {
    transform: none;
  }

  .frost-strip {
    height: 150px;
  }

  .easy-grid strong {
    grid-row: 1 / 3;
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
  }

  .easy-grid h3 {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1.25;
  }

  .easy-grid p {
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
  }

  .facilities {
    padding: 48px 0 58px;
  }

  .facilities-grid {
    gap: 30px;
  }

  .about-intro {
    padding-top: 46px;
    padding-bottom: 30px;
  }

  .about-layout {
    grid-template-columns: minmax(118px, 34%) minmax(0, 1fr);
    align-items: flex-start;
    gap: 16px;
    max-width: none;
  }

  .about-copy {
    display: block;
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    max-width: none;
  }

  .about-intro h1 {
    grid-column: 1 / -1;
    margin: 0 0 10px;
    font-size: clamp(24px, 8vw, 32px);
    text-align: center;
  }

  .family-photo {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    margin: 0;
  }

  .family-photo img {
    width: 100%;
    max-height: 360px;
    margin-inline: 0;
  }

  .about-copy p {
    width: auto;
    margin-bottom: 6px;
    font-size: 11px;
    line-height: 1.45;
    text-align: justify;
    text-align-last: left;
  }

  .about-stats {
    padding-top: 24px;
    padding-bottom: 42px;
  }

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

  .stats-grid strong {
    font-size: 20px;
  }

  .stats-grid span {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.25;
  }

  .sustainability-section {
    margin-top: 36px;
    padding: 36px 0 42px;
  }

  .sustainability-layout {
    gap: 24px;
  }

  .sustainability-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(27px, 8vw, 38px);
  }

  .sustainability-copy > p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.62;
  }

  .sustainability-panel {
    gap: 22px;
  }

  .sustainability-panel article {
    min-height: 0;
    padding: 0;
  }

  .sustainability-panel i {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
  }

  .sustainability-panel h3 {
    font-size: 17px;
  }

  .sustainability-panel p:not(.eyebrow) {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .work-section {
    padding-top: 36px;
  }

  .work-section h2 {
    margin-bottom: 18px;
    font-size: clamp(24px, 7vw, 32px);
    text-align: left;
  }

  .work-grid {
    gap: 0;
    border-top: 1px solid #e2e8d7;
  }

  .work-grid article {
    border-bottom: 1px solid #e2e8d7;
    text-align: left;
  }

  .work-grid article:hover {
    transform: none;
  }

  .work-toggle {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    cursor: pointer;
    text-align: left;
  }

  .work-grid .work-icon svg {
    width: 32px;
    height: 32px;
    padding: 7px;
    margin: 0;
  }

  .work-grid article:hover .work-icon svg {
    background: var(--orange);
    transform: none;
  }

  .work-title {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
  }

  .work-chevron {
    display: block;
    width: 16px;
    height: 16px;
    padding: 0;
    margin: 0;
    color: var(--orange);
    background: transparent;
    border-radius: 0;
    stroke-width: 2.4;
    transition: transform 180ms ease;
  }

  .work-grid p {
    display: none;
    padding: 0 0 16px 48px;
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
  }

  .work-grid article.is-open p {
    display: block;
  }

  .work-grid article.is-open .work-chevron {
    transform: rotate(180deg);
  }

  .families-section h1,
  .catalog-section h1 {
    margin-bottom: 34px;
  }

  .catalog-cover {
    width: min(150px, 84%);
    margin-bottom: 18px;
  }

  .catalog-grid h2,
  .magazine-grid h2 {
    min-height: 44px;
    margin-bottom: 18px;
    font-size: 14px;
  }

  .catalog-grid p,
  .magazine-grid p {
    font-size: 13px;
    line-height: 1.5;
  }

  .catalog-grid p {
    min-height: 60px;
  }

  .catalog-link {
    margin-top: auto;
  }

  .sales-map-copy {
    align-items: flex-start;
    gap: 18px;
  }

  .sales-map-frame {
    height: 430px;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-info {
    gap: 14px;
    justify-items: center;
  }

  .contact-info a {
    width: min(270px, 100%);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    min-height: 0;
    padding: 14px 0 16px;
    text-align: center;
  }

  .contact-info a:hover {
    transform: translateY(-2px);
  }

  .contact-info strong,
  .contact-info span {
    text-align: center;
  }

  .contact-info svg,
  .contact-info .social-logo,
  .contact-info .contact-logo {
    width: 44px;
    height: 44px;
  }

  .contact-info .gmail-logo {
    width: 38px;
    height: 30px;
  }

  .contact-info .phone-logo {
    width: 54px;
    height: 54px;
  }

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

  .message-form {
    padding: 32px 22px;
  }

  .warehouse-map,
  .warehouse-map iframe {
    min-height: 300px;
  }

  .warehouse-map iframe {
    height: 300px;
  }

  .site-footer {
    padding: 28px 0 26px;
  }

  .footer-nav {
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .footer-logo {
    gap: 8px;
    font-size: 16px !important;
  }

  .footer-logo img {
    width: 42px;
  }

  .footer-nav nav {
    display: flex;
    width: min(330px, 100%);
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
  }

  .footer-nav nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0 0 4px;
    font-size: 10px;
    font-weight: 700;
  }

  .footer-nav nav a.active::after {
    left: 50%;
    right: auto;
    bottom: 0;
    width: 26px;
    height: 2px;
    transform: translateX(-50%);
  }

  .footer-contact {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px 6px;
    width: min(330px, calc(100% - 24px));
    margin-top: 22px;
  }

  .footer-contact a {
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 4px;
    justify-content: flex-start;
    font-size: 9px;
    line-height: 1.12;
    text-align: center;
  }

  .footer-contact a:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .footer-contact a:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .footer-contact span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-contact svg,
  .footer-contact .social-logo,
  .footer-contact .contact-logo {
    width: 27px;
    height: 27px;
  }

  .footer-contact .phone-logo {
    width: 30px;
    height: 30px;
  }

  .footer-contact .gmail-logo {
    width: 27px;
    height: 21px;
  }

  .footer-address-long {
    display: none;
  }

  .footer-address-short {
    display: inline;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 8px 14px;
    width: min(330px, calc(100% - 24px));
    margin-top: 18px;
    padding-top: 14px;
    font-size: 10px;
  }

  .footer-legal span {
    display: none;
  }

  .to-top {
    position: fixed;
    right: 14px;
    bottom: 14px;
    width: 38px;
    height: 38px;
    margin: 0;
  }
}

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

  .hero-slide {
    animation: none;
    transition: none;
  }

  .ardo-slide {
    transition: none;
  }

  .reveal-ready {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

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

  .legal-site-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .legal-site-header .brand {
    gap: 7px;
  }

  .legal-site-header .brand img {
    width: 36px;
  }

  .legal-site-header .brand strong {
    font-size: 16px;
  }

  .legal-site-header .brand small {
    font-size: 8px;
  }

  .legal-home-link {
    display: none;
  }

  .legal-language button {
    width: 26px;
    height: 22px;
  }

  .legal-language img {
    width: 21px;
    height: 14px;
  }

  .legal-hero,
  .legal-content {
    padding: 22px 16px;
  }

  .topbar {
    padding: 7px 0;
    font-size: 11px;
  }

  .topbar-inner {
    width: min(100% - 20px, var(--container));
    flex-wrap: nowrap;
    gap: 8px;
  }

  .topbar a {
    gap: 5px;
    white-space: nowrap;
  }

  .topbar svg,
  .topbar .contact-logo {
    width: 14px;
    height: 14px;
  }

  .topbar .phone-logo {
    width: 16px;
    height: 16px;
  }

  .topbar .gmail-logo {
    width: 16px;
    height: 13px;
  }

  .topbar .social-link {
    gap: 0;
    font-size: 0;
  }

  .topbar .social-logo {
    width: 18px;
    height: 18px;
  }

  .brand img {
    width: 50px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 9px;
  }

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

  .main-nav {
    inset: 0;
    width: 100vw;
  }

  .footer-contact a {
    font-size: 8.5px;
  }

  .footer-contact svg,
  .footer-contact .social-logo,
  .footer-contact .contact-logo {
    width: 26px;
    height: 26px;
  }

  .footer-contact .phone-logo {
    width: 29px;
    height: 29px;
  }

  .footer-contact .gmail-logo {
    width: 27px;
    height: 21px;
  }

  .hero-rotator,
  .inner-hero {
    height: 160px;
  }

  .home-intro {
    padding: 34px 0 38px;
  }

  .section {
    padding: 34px 0;
  }

  .torm-frit-feature {
    padding: 34px 0 38px;
  }

  .torm-frit-layout {
    gap: 22px;
  }

  .torm-frit-visual img {
    height: 330px;
    max-height: none;
    aspect-ratio: auto;
  }

  .torm-frit-copy h2 {
    font-size: clamp(34px, 14vw, 46px);
  }

  .torm-frit-copy .torm-frit-lede {
    font-size: 17px;
  }

  .torm-frit-copy p {
    font-size: 13px;
    line-height: 1.6;
  }

  .torm-frit-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .torm-frit-points span {
    justify-content: center;
    padding-top: 10px;
    font-size: 12px;
  }

  .ardo-feature {
    padding: 34px 0 40px;
  }

  .ardo-logo {
    margin-bottom: 18px;
    width: min(190px, 60vw);
  }

  .ardo-copy h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .ardo-carousel-stage {
    aspect-ratio: 4 / 3;
  }

  .ardo-carousel {
    width: min(100%, 304px);
  }

  .torm-frit-visual {
    width: min(100%, 286px);
  }

  .ardo-carousel-button {
    width: 34px;
    height: 34px;
  }

  .ardo-carousel-prev {
    left: 8px;
  }

  .ardo-carousel-next {
    right: 8px;
  }

  .about-intro {
    padding-top: 40px;
    padding-bottom: 26px;
  }

  .about-intro h1 {
    margin-bottom: 8px;
    font-size: clamp(25px, 8.5vw, 30px);
  }

  .family-photo {
    margin-bottom: 0;
  }

  .family-photo img {
    width: 100%;
    max-height: 330px;
  }

  .about-copy p {
    font-size: 10.4px;
    line-height: 1.42;
  }

  .about-stats {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .stats-grid {
    gap: 8px;
  }

  .stats-grid strong {
    font-size: 18px;
  }

  .stats-grid span {
    font-size: 9px;
  }

  .easy-band {
    padding: 30px 0 34px;
  }

  .easy-band h2 {
    width: min(100% - 24px, var(--container));
    margin-bottom: 18px;
    font-size: 27px;
  }

  .easy-grid article {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 3px 12px;
    padding: 13px 0;
  }

  .easy-grid strong {
    font-size: 16px;
  }

  .easy-grid h3,
  .easy-grid p {
    font-size: 11px;
  }

  .easy-grid p {
    line-height: 1.45;
  }

  .frost-strip {
    height: 112px;
  }

  .highlight-grid {
    gap: 8px;
  }

  .highlight-grid .product-card h2 {
    font-size: 11px;
  }

  .highlight-grid .product-card img {
    margin-bottom: 10px;
  }

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

  .work-section h2 {
    margin-bottom: 14px;
    font-size: 25px;
  }

  .work-toggle {
    grid-template-columns: 32px minmax(0, 1fr) 16px;
    min-height: 50px;
    gap: 9px;
  }

  .work-grid .work-icon svg {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .work-title {
    font-size: 12px;
  }

  .work-grid p {
    padding: 0 0 13px 41px;
    font-size: 11px;
    line-height: 1.5;
  }

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

  .family-card span {
    bottom: 10px;
    padding: 0 8px;
    font-size: 12px;
  }

  .families-grid {
    gap: 10px;
  }

  .catalog-grid,
  .magazine-grid {
    gap: 28px 14px;
  }

  .catalog-grid h2,
  .magazine-grid h2 {
    min-height: 38px;
    margin-bottom: 12px;
    font-size: 13px;
  }

  .catalog-grid p,
  .magazine-grid p {
    font-size: 12px;
    line-height: 1.45;
  }

  .catalog-grid p {
    min-height: 54px;
  }

  .catalog-cover {
    width: min(132px, 86%);
  }

  .catalog-link {
    margin-top: 10px;
  }

  .catalog-link .orange-button {
    min-height: 36px;
    padding: 9px 10px;
    font-size: 10px;
  }

  .warehouse-map,
  .warehouse-map iframe {
    min-height: 280px;
  }

  .warehouse-map iframe {
    height: 280px;
  }

  .orange-button {
    min-height: 40px;
    padding: 11px 18px;
    font-size: 12px;
  }

  .to-top {
    right: 12px;
    bottom: 12px;
    width: 36px;
    height: 36px;
  }
}
