@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/source-serif-4-latin.woff2") format("woff2");
}

:root {
  --ink: #101a15;
  --ink-soft: #23352c;
  --forest: #0d2118;
  --forest-mid: #174b33;
  --leaf: #7fc35f;
  --leaf-bright: #a8e476;
  --kraft: #b67845;
  --kraft-soft: #dcc0a1;
  --paper: #f6f4ed;
  --paper-deep: #ebe7db;
  --white: #fffef9;
  --muted: #526158;
  --line: rgba(16, 26, 21, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --max: 1320px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shadow: 0 28px 80px rgba(6, 22, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  z-index: 0;
  background: var(--paper);
}

body::selection {
  background: var(--leaf);
  color: var(--forest);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

h1,
h2 {
  margin-bottom: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

h3 {
  letter-spacing: -0.025em;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  margin: 0;
  clip: auto;
  background: var(--white);
  color: var(--forest);
}

:focus-visible {
  outline: 3px solid #f1bd48;
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--forest-mid);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #c5ecad;
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid var(--forest);
  border-radius: 0;
  background: var(--forest);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button svg,
.nav-cta svg,
.text-link svg,
.floating-whatsapp svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
}

.button:hover,
.nav-cta:hover {
  border-color: var(--forest-mid);
  background: var(--forest-mid);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

.button-light:hover {
  border-color: var(--leaf-bright);
  background: var(--leaf-bright);
  color: var(--forest);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--forest-mid);
  font-size: 0.8rem;
  font-weight: 700;
}

.text-link svg {
  transition: transform 220ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link.light {
  color: var(--white);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 237, 0.94);
  backdrop-filter: blur(18px);
}

.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(4, 18, 12, 0.62), rgba(4, 18, 12, 0));
  color: var(--white);
  backdrop-filter: none;
}

.nav-row {
  min-height: 4.65rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.3vw, 2.35rem);
  font-size: 0.78rem;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.28rem;
  height: 1px;
  background: var(--forest);
  transition: right 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  right: 0;
}

.home .primary-nav a::after {
  background: var(--white);
}

.home .nav-cta {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

.home .nav-cta:hover {
  border-color: var(--leaf-bright);
  background: var(--leaf-bright);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 0;
  background: transparent;
}

.nav-toggle svg {
  width: 1.55rem;
}

.hero-cinematic {
  position: relative;
  min-height: max(680px, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest);
  color: var(--white);
}

.hero-media,
.hero-shade,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.88) contrast(1.03);
}

.hero-shade {
  z-index: -3;
  background:
    radial-gradient(circle at 72% 44%, rgba(116, 188, 81, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(5, 20, 13, 0.9) 0%, rgba(5, 20, 13, 0.7) 45%, rgba(5, 20, 13, 0.12) 82%, rgba(5, 20, 13, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 20, 13, 0.15), rgba(5, 20, 13, 0.58));
}

.hero-grain {
  z-index: -2;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 9.5rem 0 7.5rem;
}

.hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3.5rem, 5.2vw, 4.9rem);
  line-height: 0.94;
  text-shadow: 0 8px 44px rgba(0, 0, 0, 0.25);
}

.hero-brand-emblem {
  position: absolute;
  z-index: 2;
  top: 45%;
  right: max(7rem, calc((100% - var(--max)) / 2 + 1rem));
  width: clamp(13rem, 18vw, 18rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(-38%);
  filter: drop-shadow(0 24px 34px rgba(0, 27, 22, 0.26));
}

.hero-brand-emblem span {
  display: none;
}

.hero-brand-emblem img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-lower {
  max-width: 660px;
  margin-top: 2.35rem;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #e3ece5;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions,
.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.45rem;
}

.hero-lower .hero-actions {
  margin-top: 1.7rem;
}

.hero-action {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 420ms var(--ease),
    border-color 420ms var(--ease),
    color 420ms var(--ease),
    transform 420ms var(--ease);
}

.hero-action-primary {
  min-width: 12rem;
  border-color: rgba(255, 254, 249, 0.82);
  background: rgba(255, 254, 249, 0.94);
  color: var(--forest);
}

.hero-action-secondary {
  min-width: 0;
  min-height: 3.1rem;
  justify-content: flex-start;
  padding-inline: 0.2rem;
  border-width: 0 0 1px;
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.hero-action > svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  transition: transform 320ms var(--ease);
}

.hero-action:hover {
  transform: translateY(-2px);
}

.hero-action-primary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest);
}

.hero-action-secondary:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.hero-action:hover > svg {
  transform: translateX(2px);
}

.hero-action:active {
  transform: translateY(1px) scale(0.985);
}

.hero-video-link {
  position: absolute;
  z-index: 3;
  left: max(1.5rem, calc((100% - var(--max)) / 2));
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.hero-video-link:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.video-play {
  font-size: 0.62rem;
}

@media (max-width: 1120px) and (min-width: 801px) {
  .hero-copy h1 {
    max-width: 58vw;
  }

  .hero-lower {
    max-width: 56vw;
  }

  .hero-brand-emblem {
    right: 2.75rem;
    width: clamp(11.5rem, 20vw, 14rem);
  }

  .catalog-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 2.5rem;
  }

  .catalog-hero h1 {
    font-size: clamp(3.4rem, 6.4vw, 5.25rem);
  }
}

.certification-rail {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(13, 33, 24, 0.2);
  background: var(--white);
  overflow: hidden;
}

.certification-marquee {
  --certification-gap: clamp(3.25rem, 5vw, 6.5rem);
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.certification-track {
  width: max-content;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: certification-scroll 72s linear infinite;
}

.certification-group {
  display: flex;
  flex: none;
  align-items: center;
  gap: var(--certification-gap);
  padding: 1.35rem var(--certification-gap) 1.5rem;
}

.certification-mark {
  width: clamp(7.5rem, 9vw, 9.5rem);
  height: 4.35rem;
  display: grid;
  flex: none;
  place-items: center;
}

.certification-track img {
  width: auto;
  height: clamp(2.5rem, 4vw, 3.8rem);
  max-width: 9rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(24%) sepia(17%) saturate(1265%) hue-rotate(101deg) brightness(88%) contrast(93%);
  opacity: 0.9;
  transition: filter 420ms var(--ease), opacity 420ms var(--ease), transform 420ms var(--ease);
}

.certification-mark:hover img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(17%) saturate(1265%) hue-rotate(101deg) brightness(88%) contrast(93%);
  opacity: 1;
  transform: translateY(-2px) scale(1.045);
}

.certification-marquee:hover .certification-track {
  animation-play-state: paused;
}

@keyframes certification-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em) rotate(2deg);
  animation: char-in 780ms var(--ease) forwards;
  animation-delay: calc(90ms + var(--char-index) * 22ms);
}

[data-split] .word {
  display: inline-block;
  white-space: nowrap;
}

@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

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

.reveal.is-visible {
  animation: reveal-in 780ms var(--ease) both;
}

@keyframes reveal-in {
  from {
    opacity: 0.35;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.65fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2,
.materials h2,
.story h2,
.coverage h2,
.visit-section h2 {
  max-width: 900px;
  font-size: clamp(2.7rem, 5.7vw, 6rem);
  line-height: 0.94;
}

.section-heading > p,
.story-copy > p,
.materials-grid > div:last-child > p,
.coverage p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.scene-intro {
  background: var(--paper);
}

.scene-triptych {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 0.85rem;
}

.scene-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--paper-deep);
}

.scene-card.scene-large {
  min-height: 620px;
  grid-row: 1 / span 2;
}

.scene-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 20, 12, 0.65));
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease), filter 850ms var(--ease);
}

.scene-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.scene-card span {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  bottom: 1.15rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.featured {
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

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

.product-card[hidden] {
  display: none;
}

.product-image,
.product-visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eeeee7;
}

.product-image {
  aspect-ratio: 1;
  border-radius: 0 3.4rem 0 0;
}

.product-image img,
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 650ms var(--ease);
}

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

.product-image--pending,
.product-visual--pending {
  background:
    radial-gradient(circle at 75% 18%, rgba(13, 191, 205, 0.16), transparent 34%),
    linear-gradient(145deg, #f8f7ef, #e7f4f1);
}

.product-image--pending img,
.product-visual--pending img {
  position: absolute;
  inset: 0;
  width: 34%;
  height: 34%;
  margin: auto;
  object-fit: contain;
  filter: saturate(0.86);
}

.product-card:hover .product-image--pending img {
  transform: scale(1.025);
}

.image-status {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  padding: 0.36rem 0.52rem;
  background: rgba(255, 254, 249, 0.88);
  color: var(--muted);
  font-size: 0.62rem;
  backdrop-filter: blur(7px);
}

.product-card-copy {
  padding: 1rem 0.1rem 0;
}

.product-card-copy > p {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.product-card .text-link {
  margin-top: 0.75rem;
  font-size: 0.7rem;
}

.catalog-editorial {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--paper-deep);
}

.catalog-editorial::after {
  content: "2026";
  position: absolute;
  right: -0.03em;
  bottom: -0.3em;
  color: rgba(13, 33, 24, 0.035);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(13rem, 30vw, 31rem);
  line-height: 0.75;
  pointer-events: none;
}

.catalog-editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.catalog-editorial-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--forest);
  box-shadow: 0 32px 75px rgba(13, 33, 24, 0.16);
}

.catalog-editorial-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 52%;
}

.catalog-editorial-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 29, 20, 0.9) 0%, rgba(7, 29, 20, 0.52) 46%, rgba(7, 29, 20, 0.06) 82%),
    linear-gradient(180deg, rgba(7, 29, 20, 0.08), rgba(7, 29, 20, 0.48));
}

.catalog-editorial-cover .catalog-editorial-logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: clamp(5rem, 10vw, 7.25rem);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 20, 15, 0.24));
}

.catalog-editorial-cover figcaption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.35rem;
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 1.08;
}

.catalog-editorial-cover figcaption span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-editorial-cover figcaption strong {
  margin-top: 0.35rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-catalog-cover {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 5rem);
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 197, 216, 0.18), transparent 32%),
    linear-gradient(145deg, #ffffff, #edf9f6);
}

.brand-catalog-cover img {
  width: min(62%, 390px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.brand-catalog-cover figcaption,
.brand-catalog-cover > span {
  position: absolute;
  right: 1.25rem;
  bottom: 1rem;
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-editorial-copy h2 {
  max-width: 570px;
  font-size: clamp(3rem, 5.4vw, 5.9rem);
  line-height: 0.92;
}

.catalog-editorial-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 1.55rem 0 0;
  color: var(--muted);
}

.catalog-editorial-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.35rem;
}

.home-film {
  padding: clamp(4rem, 7vw, 7rem) 0;
  background: var(--forest);
  color: var(--white);
}

.home-film-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.home-film-heading p,
.home-film-heading span {
  margin: 0;
}

.home-film-heading span {
  color: #b8c8be;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}

.home-film video {
  width: 100%;
  max-height: min(80svh, 920px);
  background: #07170f;
  object-fit: contain;
  box-shadow: 0 35px 90px rgba(1, 14, 8, 0.42);
}

.catalog-cover {
  position: relative;
  max-width: 620px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.36);
  transform: rotate(-2deg);
}

.catalog-cover img {
  width: 100%;
}

.catalog-cover > span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.6rem;
  background: rgba(13, 33, 24, 0.86);
  color: var(--white);
  font-size: 0.64rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.materials {
  background: var(--paper-deep);
}

.materials-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: center;
}

.material-orbit {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
}

.orbit-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(13, 33, 24, 0.26);
  border-radius: 50%;
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(13, 33, 24, 0.12);
  border-radius: 50%;
}

.orbit-ring::before { inset: 14%; }
.orbit-ring::after { inset: 31%; }

.orbit-logo {
  width: 40%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(13, 33, 24, 0.2));
}

.orbit-label {
  position: absolute;
  display: grid;
  width: 5.3rem;
  height: 5.3rem;
  place-items: center;
  border: 1px solid rgba(13, 33, 24, 0.18);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(13, 33, 24, 0.08);
  animation: float 5s ease-in-out infinite;
}

.orbit-label-1 { top: 0; left: 42%; }
.orbit-label-2 { right: 0; top: 43%; animation-delay: -1.4s; }
.orbit-label-3 { bottom: 0; left: 43%; animation-delay: -2.7s; }
.orbit-label-4 { left: 0; top: 42%; animation-delay: -4s; }

@keyframes float {
  50% { transform: translateY(-10px); }
}

.material-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.material-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.material-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.material-card h3,
.material-card p {
  margin-bottom: 0;
}

.material-card h3 {
  font-size: 0.98rem;
}

.material-card p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.page-hero {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--paper-deep);
}

.page-hero.compact {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.page-hero h1,
.contact-hero h1,
.pdf-catalog-hero h1,
.about-hero h1 {
  max-width: 1100px;
  font-size: clamp(3.5rem, 8vw, 8.4rem);
  line-height: 0.89;
}

.page-hero > .container > p:last-child {
  max-width: 720px;
  margin: 2rem 0 0;
  color: var(--muted);
}

.page-hero a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.catalog-hero {
  padding: clamp(3.75rem, 6vw, 6.25rem) 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 183, 199, 0.16), transparent 33%),
    #dbeae5;
}

.catalog-hero .eyebrow,
.catalog-hero-copy > p:last-child {
  color: rgba(13, 33, 24, 0.72);
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.catalog-hero h1 {
  max-width: 800px;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.91;
}

.catalog-hero-copy > p:last-child {
  max-width: 610px;
  margin: 1.6rem 0 0;
}

.catalog-hero-visual {
  margin: 0;
}

.catalog-hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 61% 52%;
  box-shadow: 0 28px 65px rgba(13, 51, 37, 0.16);
}

.catalog-hero-visual figcaption {
  margin-top: 0.75rem;
  color: rgba(13, 33, 24, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  color: var(--muted);
  font-size: 0.7rem;
}

.breadcrumbs a:hover {
  color: var(--forest);
}

.catalog-tools {
  position: sticky;
  z-index: 15;
  top: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 237, 0.94);
  backdrop-filter: blur(16px);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--ink);
}

.search-box svg {
  width: 1.1rem;
}

.search-box input {
  width: 100%;
  min-height: 3rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.filter-row {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.9rem 0 0.2rem;
  scrollbar-width: thin;
}

.filter-button {
  flex: none;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.67rem;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.result-count {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.67rem;
}

.catalog-section {
  padding-top: 4.5rem;
}

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

.catalog-empty {
  padding: 7rem 0;
  text-align: center;
}

.catalog-empty h2 {
  font-size: 3rem;
}

.catalog-empty p {
  color: var(--muted);
}

.pdf-catalog-hero {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: var(--forest);
  color: var(--white);
}

.pdf-catalog-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.hero-cover {
  max-width: 560px;
}

.pdf-catalog-grid > div:last-child > p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 2rem;
  color: #b8c8bd;
}

.catalog-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.catalog-facts article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-facts strong {
  color: var(--forest-mid);
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.catalog-facts span {
  color: var(--muted);
  font-size: 0.72rem;
}

.product-detail {
  padding: 3.5rem 0 clamp(6rem, 10vw, 10rem);
  background: var(--white);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.product-visual {
  aspect-ratio: 1;
  border-radius: 0 6rem 0 0;
}

.product-info h1 {
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  line-height: 0.92;
}

.product-lead {
  margin: 1.7rem 0;
  color: var(--muted);
}

.quote-note {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem 0;
  margin: 1.4rem 0 1.8rem;
  border-block: 1px solid var(--line);
}

.quote-note span {
  color: var(--muted);
  font-size: 0.78rem;
}

.product-info > .text-link {
  display: flex;
  width: max-content;
  margin-top: 1.1rem;
}

.product-support {
  padding: 1.35rem 0;
  background: var(--leaf-bright);
}

.product-support .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.product-support p {
  margin-bottom: 0;
}

.product-support a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-support svg {
  width: 1rem;
}

.about-hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.about-hero > img,
.about-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-hero > img {
  object-fit: cover;
}

.about-hero-shade {
  background: linear-gradient(180deg, rgba(5, 20, 13, 0.08), rgba(5, 20, 13, 0.88));
}

.about-hero .container {
  position: relative;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.story-copy > p {
  font-size: 1rem;
}

.values {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.values article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.values h3,
.values p {
  margin-bottom: 0;
}

.values h3 {
  font-size: 1rem;
}

.values p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.company-film {
  padding: clamp(6rem, 10vw, 9rem) 0 clamp(4rem, 7vw, 6rem);
  background: var(--forest);
  color: var(--white);
}

.company-film-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
}

.company-film h2 {
  max-width: 520px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.company-film p:last-child {
  max-width: 430px;
  color: #b8c8be;
}

.company-film video {
  width: 100%;
  background: #07170f;
  box-shadow: 0 35px 90px rgba(1, 14, 8, 0.42);
}

.brand-film-still {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #07170f;
  box-shadow: 0 35px 90px rgba(1, 14, 8, 0.42);
}

.brand-film-still img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.brand-film-still figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.65rem;
  background: rgba(5, 20, 13, 0.72);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.visual-archive {
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(6rem, 10vw, 10rem);
  border-top: 1px solid var(--line-light);
  background: var(--forest);
  color: var(--white);
}

.visual-archive .section-heading > p {
  color: #aebfb4;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.archive-image {
  position: relative;
  min-height: 290px;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: #183428;
}

.archive-image-1 { grid-column: span 7; min-height: 520px; }
.archive-image-2 { grid-column: span 5; min-height: 520px; }
.archive-image-3 { grid-column: span 5; }
.archive-image-4 { grid-column: span 7; }

.archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.archive-image:hover img {
  transform: scale(1.03);
}

.archive-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 18, 11, 0.7));
}

.archive-image figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 0.8rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coverage-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.coverage p {
  max-width: 650px;
  margin-top: 1.7rem;
}

.coverage .button {
  margin-top: 1.5rem;
}

.address-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-top: 5px solid var(--leaf);
  background: var(--forest);
  color: var(--white);
  font-style: normal;
}

.address-card span {
  color: #aebfb4;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-card strong {
  font-family: "Source Serif 4", serif;
  font-size: 1.6rem;
  line-height: 1.15;
}

.address-card a {
  color: #dce7df;
  font-size: 0.78rem;
}

.contact-hero {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: var(--forest);
  color: var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.contact-hero-grid > div:first-child > p:last-child {
  max-width: 710px;
  margin: 2rem 0 0;
  color: #b5c5ba;
}

.primary-contact {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.primary-contact span {
  color: #aebfb4;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-contact a:first-of-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--leaf-bright);
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.04em;
}

.primary-contact svg {
  width: 1.3rem;
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.rep-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rep-card h3 {
  margin-bottom: auto;
  font-family: "Source Serif 4", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

.rep-card a {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.68rem;
  overflow-wrap: anywhere;
}

.rep-card a:hover {
  color: var(--forest);
}

.visit-section {
  padding: clamp(6rem, 10vw, 9rem) 0;
  background: var(--kraft);
  color: var(--forest);
}

.visit-section .eyebrow {
  color: rgba(13, 33, 24, 0.68);
}

.visit-section .button {
  margin-top: 2rem;
}

.secondary-contact {
  display: grid;
  gap: 0.7rem;
  padding: 1.7rem;
  border: 1px solid rgba(13, 33, 24, 0.28);
}

.secondary-contact h3 {
  margin-bottom: 0.8rem;
}

.secondary-contact a {
  font-size: 0.78rem;
}

.content-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 2.8rem 0 0.9rem;
  font-size: 2.1rem;
  line-height: 1.05;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  color: var(--forest-mid);
  text-decoration: underline;
}

.site-footer {
  position: relative;
  z-index: 5;
  margin-top: -4rem;
  padding: 3.75rem 0 1.25rem;
  background: #07170f;
  color: #d7e4da;
  box-shadow: 0 -24px 64px rgba(3, 15, 9, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.brand-footer {
  color: var(--white);
}

.footer-brand > p {
  max-width: 430px;
  margin-top: 1.2rem;
  color: #91a297;
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.68rem;
  font-size: 0.76rem;
}

.footer-grid h2 {
  margin-bottom: 0.7rem;
  color: #82978a;
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--leaf-bright);
}

.footer-grid span {
  color: #82978a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #71867a;
  font-size: 0.66rem;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 1.2rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  right: 1rem;
  bottom: 1rem;
  width: 3.65rem;
  height: 3.65rem;
  display: grid;
  place-items: center;
  align-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 38px rgba(7, 54, 29, 0.28);
  transition: transform 220ms var(--ease), background 220ms ease, box-shadow 220ms ease;
}

.floating-whatsapp:hover {
  background: #20c45c;
  box-shadow: 0 20px 44px rgba(7, 54, 29, 0.34);
  transform: translateY(-3px) scale(1.035);
}

.floating-whatsapp:active {
  transform: translateY(0) scale(0.97);
}

.floating-whatsapp .whatsapp-mark {
  width: 2.05rem;
  height: 2.05rem;
}

@media (max-width: 1120px) {
  .nav-row {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-cta {
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 4.65rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.5rem 1.4rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .home .primary-nav {
    border-bottom-color: rgba(255, 255, 255, 0.18);
    background: rgba(7, 25, 17, 0.96);
    color: var(--white);
    backdrop-filter: blur(18px);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 0.78rem 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

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

  .nav-row {
    min-height: 4.65rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .nav-row .nav-cta {
    display: none;
  }

  .primary-nav {
    top: 4.65rem;
  }

  .hero-cinematic {
    min-height: max(640px, 100svh);
  }

  .hero-copy {
    padding: 8.5rem 0 7.5rem;
  }

  .hero-copy h1 {
    max-width: 620px;
    font-size: clamp(3.15rem, 11.5vw, 4.9rem);
    line-height: 0.94;
  }

  .hero-brand-emblem {
    display: none;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 1.7rem;
    margin-top: 1.8rem;
  }

  .hero-lead {
    max-width: 92%;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-video-link {
    left: 0.75rem;
    bottom: 0.85rem;
  }

  .certification-marquee {
    --certification-gap: 2.6rem;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }

  .certification-group {
    padding-block: 0.95rem 1.1rem;
  }

  .certification-mark {
    width: 7rem;
    height: 3.6rem;
  }

  .certification-track img {
    height: 2.6rem;
  }

  .section-heading,
  .materials-grid,
  .catalog-hero-grid,
  .pdf-catalog-grid,
  .story-grid,
  .company-film-grid,
  .coverage-grid,
  .contact-hero-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 1.5rem;
    align-items: start;
  }

  .scene-triptych {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .scene-card,
  .scene-card.scene-large {
    min-height: 390px;
    grid-row: auto;
  }

  .pdf-catalog-grid {
    max-width: 650px;
  }

  .catalog-editorial-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .catalog-editorial-cover {
    max-width: 760px;
  }

  .catalog-hero-grid {
    max-width: 760px;
    gap: 2.5rem;
  }

  .catalog-hero-visual {
    max-width: 680px;
  }

  .catalog-cover {
    width: 88%;
    margin-inline: auto;
  }

  .materials-grid {
    gap: 4rem;
  }

  .material-orbit {
    max-width: 520px;
  }

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

  .product-visual {
    max-width: 680px;
  }

  .archive-image,
  .archive-image-1,
  .archive-image-2,
  .archive-image-3,
  .archive-image-4 {
    grid-column: span 6;
    min-height: 310px;
  }

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

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 5.5rem 0;
  }

  .section-heading h2,
  .materials h2,
  .story h2,
  .coverage h2,
  .visit-section h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .product-grid,
  .product-grid-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 0.62rem;
  }

  .product-card h3 {
    font-size: 0.84rem;
  }

  .product-card .text-link {
    display: none;
  }

  .product-image {
    border-radius: 0 2rem 0 0;
  }

  .hero-copy {
    padding-bottom: 8.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .hero-lower .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-action,
  .hero-action-primary,
  .hero-action-secondary {
    width: 100%;
    min-width: 0;
  }

  .hero-action-secondary {
    width: max-content;
    align-self: flex-start;
  }

  .catalog-editorial {
    padding: 4.25rem 0 5.5rem;
  }

  .catalog-editorial-grid {
    gap: 2.2rem;
  }

  .catalog-editorial::after {
    display: none;
  }

  .catalog-editorial-cover {
    width: calc(100% + 1.5rem);
    max-width: none;
    margin-left: -0.75rem;
    box-shadow: 0 22px 50px rgba(13, 33, 24, 0.13);
  }

  .catalog-editorial-cover .catalog-editorial-logo {
    top: 1rem;
    left: 1rem;
    width: 4.6rem;
  }

  .catalog-editorial-cover figcaption {
    left: 1rem;
    bottom: 0.9rem;
  }

  .catalog-editorial-copy .eyebrow {
    margin-bottom: 0.9rem;
  }

  .catalog-editorial-copy h2 {
    max-width: 9.5em;
    font-size: clamp(2.75rem, 11.8vw, 3.65rem);
    line-height: 0.96;
  }

  .catalog-editorial-copy > p:not(.eyebrow) {
    margin-top: 1.2rem;
    font-size: 0.95rem;
  }

  .catalog-editorial-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 1.8rem;
  }

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

  .material-orbit {
    width: 100%;
  }

  .orbit-label {
    width: 4.3rem;
    height: 4.3rem;
    font-size: 0.65rem;
  }

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

  .archive-image,
  .archive-image-1,
  .archive-image-2,
  .archive-image-3,
  .archive-image-4 {
    grid-column: auto;
    min-height: 300px;
  }

  .archive-image:nth-child(3n + 1) {
    min-height: 430px;
  }

  .product-info h1,
  .page-hero h1,
  .contact-hero h1,
  .pdf-catalog-hero h1,
  .about-hero h1 {
    font-size: clamp(3.2rem, 15.5vw, 5rem);
  }

  .catalog-hero {
    padding: 3.5rem 0 4rem;
  }

  .catalog-hero h1 {
    max-width: 9em;
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

  .catalog-hero-copy > p:last-child {
    margin-top: 1.25rem;
  }

  .catalog-hero-visual img {
    aspect-ratio: 16 / 11;
  }

  .product-support .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .primary-contact a:first-of-type {
    font-size: 2rem;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .site-footer {
    position: relative;
    margin-top: -1.5rem;
    min-height: 0;
  }

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

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 3.35rem;
    height: 3.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  [data-split] .char {
    opacity: 1;
    transform: none;
  }

  .certification-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .certification-track {
    animation: none !important;
  }

  .certification-group[aria-hidden="true"] {
    display: none;
  }
}
