:root {
  --cream: #f5f0e7;
  --cream-deep: #e9dfd1;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #191614;
  --muted: #6e665f;
  --burgundy: #74282c;
  --burgundy-bright: #96383e;
  --green: #174e37;
  --green-light: #2d7352;
  --line: rgba(25, 22, 20, 0.13);
  --shell: min(1320px, calc(100% - 48px));
  --radius-lg: 34px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.005em;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

svg {
  width: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

::selection {
  color: var(--white);
  background: var(--burgundy);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0 0;
  border-bottom: 1px solid transparent;
  transition:
    padding 0.35s var(--ease),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  padding: 5px 0;
  border-bottom-color: rgba(116, 40, 44, 0.1);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  box-shadow: 0 10px 32px rgba(40, 24, 17, 0.07);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 72px;
  margin: 0 auto;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(116, 40, 44, 0.13);
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .nav-shell {
  border-bottom-color: transparent;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: 54px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: #39322e;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--burgundy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-shop {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border-radius: 13px;
  background: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
}

.nav-shop:hover {
  background: var(--burgundy-bright);
  transform: translateY(-2px);
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-active span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-active span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  --mouse-x: 50%;
  --mouse-y: 45%;
  position: relative;
  min-height: 810px;
  padding: 142px 0 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    circle 300px at var(--mouse-x) var(--mouse-y),
    rgba(116, 40, 44, 0.075),
    rgba(23, 78, 55, 0.025) 48%,
    transparent 72%
  );
  content: "";
  pointer-events: none;
  transition: background-position 0.18s ease-out;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  background-image: radial-gradient(rgba(23, 78, 55, 0.2) 0.75px, transparent 0.75px);
  background-size: 30px 30px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.55) 42%, transparent 78%);
}

.hero-glow {
  display: none;
}

.hero-background-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-thread {
  position: absolute;
  pointer-events: none;
  will-change: translate, scale, opacity;
}

.hero-thread--one {
  top: 24%;
  left: -150px;
  width: 520px;
  height: 165px;
  border-top: 1px solid rgba(116, 40, 44, 0.22);
  border-radius: 50%;
  opacity: 0.58;
  transform: rotate(-7deg);
  animation: hero-thread-drift 18s ease-in-out infinite alternate;
}

.hero-thread--one::after {
  position: absolute;
  inset: 17px 30px auto 65px;
  height: 100px;
  border-top: 1px solid rgba(116, 40, 44, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-thread--two {
  top: 14%;
  left: 34%;
  width: 245px;
  height: 1px;
  opacity: 0.45;
  background: linear-gradient(90deg, transparent, rgba(23, 78, 55, 0.3), transparent);
  transform: rotate(13deg);
  animation: hero-thread-slide 12s ease-in-out -4s infinite alternate;
}

.hero-thread--three {
  bottom: -50px;
  left: 13%;
  width: 470px;
  height: 190px;
  border: 1px solid rgba(23, 78, 55, 0.12);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.75;
  transform: rotate(-12deg);
  animation: hero-thread-breathe 21s ease-in-out -8s infinite alternate;
}

.hero-thread--three::after {
  position: absolute;
  inset: 22px 34px 0 42px;
  border-top: 1px solid rgba(23, 78, 55, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-thread--four {
  top: 51%;
  right: 41%;
  width: 305px;
  height: 96px;
  border-top: 1px dashed rgba(116, 40, 44, 0.18);
  border-radius: 50%;
  opacity: 0.55;
  transform: rotate(18deg);
  animation: hero-thread-slide 16s ease-in-out -6s infinite alternate-reverse;
}

.hero-thread--five {
  top: 18%;
  right: -135px;
  width: 440px;
  height: 135px;
  border-top: 2px solid rgba(23, 78, 55, 0.075);
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(0.25px);
  transform: rotate(9deg);
  animation: hero-thread-breathe 24s ease-in-out -12s infinite alternate-reverse;
}

@keyframes hero-thread-drift {
  from {
    translate: -10px -6px;
    scale: 0.98;
    opacity: 0.42;
  }
  to {
    translate: 38px 13px;
    scale: 1.03;
    opacity: 0.68;
  }
}

@keyframes hero-thread-slide {
  from {
    translate: -18px 8px;
    opacity: 0.28;
  }
  to {
    translate: 28px -8px;
    opacity: 0.62;
  }
}

@keyframes hero-thread-breathe {
  from {
    translate: 0 9px;
    scale: 0.96;
    opacity: 0.42;
  }
  to {
    translate: 22px -11px;
    scale: 1.045;
    opacity: 0.78;
  }
}

.hero-glow--one {
  top: 90px;
  right: 12%;
  width: 460px;
  height: 460px;
  background: rgba(116, 40, 44, 0.09);
}

.hero-glow--two {
  right: -120px;
  bottom: -140px;
  width: 500px;
  height: 500px;
  background: rgba(23, 78, 55, 0.1);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 100px);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  display: inline-block;
  background: currentColor;
}

.hero h1,
.section h2 {
  margin: 0;
  font-size: clamp(3.1rem, 5.45vw, 5.65rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.04;
}

.hero h1 {
  margin-top: 24px;
  font-size: clamp(2.9rem, 4.35vw, 4.65rem);
}

.hero h1 em {
  display: block;
  color: var(--burgundy);
  font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.06;
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions,
.contact-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.91rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--white);
  background: var(--burgundy);
  box-shadow: 0 16px 30px rgba(116, 40, 44, 0.19);
}

.button--primary:hover {
  background: var(--burgundy-bright);
  box-shadow: 0 20px 34px rgba(116, 40, 44, 0.27);
}

.button--ghost {
  border-color: rgba(25, 22, 20, 0.19);
  background: rgba(255, 255, 255, 0.34);
}

.button--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(255, 255, 255, 0.7);
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.hero-image {
  --parallax: 0px;
  position: absolute;
  inset: 22px 0 8px 20px;
  z-index: -1;
  border-radius: 45% 20% 42% 22% / 38% 31% 32% 27%;
  overflow: hidden;
  transform: translateY(var(--parallax)) rotate(1.5deg);
  box-shadow: 0 34px 80px rgba(67, 37, 26, 0.16);
}

.hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 58%, rgba(23, 78, 55, 0.11));
  content: "";
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transform: scale(1.08);
}

.hero-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 16px 45px rgba(52, 31, 23, 0.16);
  backdrop-filter: blur(15px);
}

.hero-card--quality {
  left: -15px;
  bottom: 52px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 17px;
  animation: float-card 5s ease-in-out infinite;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 12px;
  background: var(--green);
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  font-size: 0.84rem;
}

.hero-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.67rem;
}

.hero-card--delivery {
  top: 38px;
  right: -8px;
  padding: 17px 21px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  animation: float-card 6s ease-in-out 0.8s infinite reverse;
}

.hero-card--delivery span {
  color: var(--burgundy);
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-stamp {
  position: absolute;
  right: 22px;
  bottom: 0;
  width: 102px;
  height: 102px;
  display: grid;
  place-content: center;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--green);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  transform: rotate(8deg);
}

.hero-stamp i {
  width: 4px;
  height: 4px;
  margin: 7px auto;
  border-radius: 50%;
  background: var(--cream);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 34px;
  display: block;
  overflow: hidden;
  background: rgba(25, 22, 20, 0.18);
}

.scroll-cue i::after {
  width: 100%;
  height: 50%;
  display: block;
  background: var(--burgundy);
  content: "";
  animation: scroll-line 1.9s ease-in-out infinite;
}

.benefit-marquee {
  overflow: hidden;
  color: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--green);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marquee 32s linear infinite;
}

.marquee-group {
  width: max-content;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.marquee-group span,
.marquee-group i {
  padding: 18px 22px;
  white-space: nowrap;
}

.marquee-group span {
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-group i {
  color: #d2a584;
  font-style: normal;
}

.section {
  padding: 120px 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  max-width: 790px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 4.4vw, 4.65rem);
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 7px auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-bottom: 1px solid rgba(23, 78, 55, 0.09);
  background:
    radial-gradient(ellipse at 8% 12%, rgba(116, 40, 44, 0.07), transparent 31%),
    radial-gradient(ellipse at 88% 84%, rgba(23, 78, 55, 0.08), transparent 35%),
    linear-gradient(118deg, #fff 0%, #fdfcf9 52%, #f8fbf9 100%);
  background-size: 165% 165%;
  animation: about-background-shift 16s ease-in-out infinite alternate;
}

.about-section::before {
  position: absolute;
  top: -34%;
  right: 8%;
  width: 42%;
  height: 170%;
  border-right: 1px solid rgba(23, 78, 55, 0.075);
  border-left: 1px solid rgba(116, 40, 44, 0.06);
  content: "";
  pointer-events: none;
  transform: rotate(14deg);
}

.about-atmosphere {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    linear-gradient(108deg, transparent 18%, rgba(116, 40, 44, 0.045) 48%, transparent 73%),
    linear-gradient(124deg, transparent 41%, rgba(23, 78, 55, 0.04) 59%, transparent 78%);
  filter: blur(0);
  animation: about-atmosphere-drift 13s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes about-background-shift {
  from {
    background-position: 0% 30%;
  }

  to {
    background-position: 100% 70%;
  }
}

@keyframes about-atmosphere-drift {
  from {
    transform: translate3d(-1.5%, -0.5%, 0);
  }

  to {
    transform: translate3d(2.5%, 1.5%, 0);
  }
}

.about-simple {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(65px, 8vw, 125px);
}

.about-photo {
  position: relative;
  margin: 0;
  min-height: 590px;
}

.about-photo::before {
  position: absolute;
  inset: 30px -26px -26px 30px;
  border: 1px solid rgba(23, 78, 55, 0.22);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.about-photo::after {
  position: absolute;
  top: 70px;
  left: -34px;
  width: 62px;
  height: 128px;
  opacity: 0.48;
  background-image: radial-gradient(rgba(116, 40, 44, 0.55) 2px, transparent 2px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 62%;
  border-radius: 28px;
  box-shadow: 0 30px 68px rgba(2, 15, 10, 0.33);
  transform: scale(1);
  transition: transform 1.2s var(--ease);
}

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

.about-photo figcaption {
  position: absolute;
  right: -36px;
  bottom: 24px;
  z-index: 2;
  width: min(290px, 72%);
  padding: 17px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(12, 39, 30, 0.92);
  box-shadow: 0 18px 36px rgba(2, 15, 10, 0.28);
  backdrop-filter: blur(12px);
}

.about-photo figcaption strong,
.about-photo figcaption span {
  display: block;
}

.about-photo figcaption strong {
  font-size: 0.91rem;
}

.about-photo figcaption span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-content .eyebrow--light {
  color: var(--burgundy);
}

.about-content h2 {
  max-width: 760px;
  margin: 24px 0 31px;
  color: var(--ink);
  font-size: clamp(2.3rem, 2.75vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.038em;
}

.about-content h2 em {
  display: block;
  color: var(--burgundy);
  font-style: normal;
  white-space: nowrap;
}

.about-content h2 > span {
  display: block;
  white-space: nowrap;
}

.about-content h2 strong {
  color: var(--burgundy);
  font-weight: inherit;
}

.about-content > p {
  max-width: 720px;
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.about-content .button {
  margin-top: 17px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(25, 22, 20, 0.08);
  border-bottom: 1px solid rgba(25, 22, 20, 0.09);
  background:
    linear-gradient(90deg, rgba(116, 40, 44, 0.025), transparent 28%, rgba(23, 78, 55, 0.035)),
    var(--white);
}

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

.trust-item {
  --trust-x: 0px;
  --trust-y: 0px;
  --trust-rx: 0deg;
  --trust-ry: 0deg;
  position: relative;
  min-width: 0;
  padding: 40px clamp(20px, 2.2vw, 36px);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition:
    background 0.35s ease,
    transform 0.35s var(--ease);
}

.trust-item::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 78, 55, 0.075), transparent 70%);
  opacity: 0.6;
  content: "";
  transform: translate3d(
    calc(-50% + var(--trust-x)),
    calc(-50% + var(--trust-y)),
    0
  );
  transition: opacity 0.35s ease;
}

.trust-item::after {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 2px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--green-light));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(25, 22, 20, 0.09);
}

.trust-item:hover {
  background: rgba(23, 78, 55, 0.028);
  transform: translateY(-4px);
}

.trust-item:hover::before {
  opacity: 1;
}

.trust-item:hover::after {
  transform: scaleX(1);
}

.trust-icon {
  position: relative;
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  display: grid;
  place-items: center;
  color: var(--green-light);
  border: 1px solid rgba(23, 78, 55, 0.12);
  border-radius: 25px 9px 25px 9px;
  background:
    radial-gradient(circle at 28% 25%, rgba(255, 255, 255, 0.96), transparent 35%),
    linear-gradient(145deg, rgba(23, 78, 55, 0.08), rgba(116, 40, 44, 0.045));
  box-shadow:
    0 16px 34px rgba(23, 78, 55, 0.09),
    inset 0 0 0 5px rgba(255, 255, 255, 0.45);
  transform:
    perspective(500px)
    translate3d(var(--trust-x), var(--trust-y), 0)
    rotateX(var(--trust-rx))
    rotateY(var(--trust-ry));
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.12s linear;
  will-change: transform;
}

.trust-icon::before {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(116, 40, 44, 0.18);
  border-radius: 20px 7px 20px 7px;
  content: "";
  animation: trust-frame-breathe 5s ease-in-out infinite;
}

.trust-icon::after {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 5px rgba(116, 40, 44, 0.09);
  content: "";
  animation: trust-orbit-dot 4.8s var(--ease) infinite;
}

.trust-icon svg {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  overflow: visible;
  stroke-width: 2.2;
  transition: transform 0.45s var(--ease);
}

.trust-item:hover .trust-icon {
  border-color: rgba(116, 40, 44, 0.2);
  box-shadow:
    0 22px 42px rgba(23, 78, 55, 0.13),
    inset 0 0 0 5px rgba(255, 255, 255, 0.64);
}

.trust-item:hover .trust-icon svg {
  transform: scale(1.06);
}

.trust-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.trust-item p {
  max-width: 230px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.trust-truck {
  animation: trust-truck-drive 5.4s var(--ease) infinite;
}

.trust-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: trust-wheel-spin 1.35s linear infinite;
}

.trust-speed {
  opacity: 0;
  animation: trust-speed-line 5.4s ease-in-out infinite;
}

.trust-speed--two {
  animation-delay: 0.16s;
}

.trust-package,
.trust-package-line {
  color: var(--burgundy);
  transform-box: fill-box;
  transform-origin: center;
  animation: trust-package-bounce 5.4s var(--ease) infinite;
}

.trust-return-arrow {
  transform-origin: 32px 32px;
  animation: trust-return-rotate 5.8s var(--ease) infinite;
}

.trust-return-orbit {
  color: var(--burgundy);
  transform-origin: 32px 32px;
  animation: trust-return-orbit 7.2s linear infinite;
}

.trust-return-orbit circle {
  fill: currentColor;
  stroke: none;
}

.trust-return-number {
  fill: var(--burgundy);
  stroke: none;
  font-size: 16px;
  font-weight: 850;
  animation: trust-number-pulse 2.9s ease-in-out infinite;
}

.trust-bubble {
  transform-box: fill-box;
  transform-origin: center;
}

.trust-bubble--back {
  opacity: 0.48;
  animation: trust-chat-back 4s ease-in-out infinite;
}

.trust-bubble--front {
  animation: trust-chat-front 4s ease-in-out infinite;
}

.trust-chat-dots circle {
  fill: var(--burgundy);
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: trust-dot-pulse 1.8s ease-in-out infinite;
}

.trust-chat-dots circle:nth-child(2) {
  animation-delay: 0.2s;
}

.trust-chat-dots circle:nth-child(3) {
  animation-delay: 0.4s;
}

.trust-chat-signal {
  color: var(--burgundy);
  opacity: 0;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  animation: trust-chat-signal 4s ease-in-out infinite;
}

.trust-shield {
  opacity: 0.22;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  animation: trust-shield-draw 5.2s var(--ease) infinite;
}

.trust-lock-shackle {
  transform-origin: 32px 28px;
  animation: trust-lock-close 5.2s var(--ease) infinite;
}

.trust-lock-key,
.trust-lock-dot {
  color: var(--burgundy);
}

.trust-lock-dot {
  fill: var(--burgundy);
  stroke: var(--burgundy);
  transform-box: fill-box;
  transform-origin: center;
  animation: trust-lock-pulse 5.2s ease-in-out infinite;
}

.trust-security-scan {
  color: var(--burgundy);
  opacity: 0;
  animation: trust-security-scan 5.2s ease-in-out infinite;
}

@keyframes trust-truck-drive {
  0% {
    opacity: 0;
    transform: translateX(-15px);
  }

  13% {
    opacity: 1;
  }

  28%,
  65% {
    opacity: 1;
    transform: translateX(1px);
  }

  82% {
    opacity: 0;
    transform: translateX(17px);
  }

  100% {
    opacity: 0;
    transform: translateX(-15px);
  }
}

@keyframes trust-wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes trust-speed-line {
  0%,
  14%,
  100% {
    opacity: 0;
    transform: translateX(9px);
  }

  24%,
  68% {
    opacity: 0.72;
    transform: translateX(0);
  }

  79% {
    opacity: 0;
    transform: translateX(8px);
  }
}

@keyframes trust-package-bounce {
  0%,
  30%,
  64%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px) rotate(-2deg);
  }

  48% {
    transform: translateY(0) rotate(1deg);
  }
}

@keyframes trust-return-rotate {
  0%,
  20% {
    transform: rotate(0);
  }

  48%,
  72% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes trust-return-orbit {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes trust-number-pulse {
  0%,
  100% {
    opacity: 0.75;
  }

  50% {
    opacity: 1;
  }
}

@keyframes trust-chat-back {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(2px, -3px);
  }
}

@keyframes trust-chat-front {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-2px, 3px);
  }
}

@keyframes trust-chat-signal {
  0%,
  18%,
  100% {
    opacity: 0;
    stroke-dashoffset: 19;
  }

  38%,
  70% {
    opacity: 0.75;
    stroke-dashoffset: 0;
  }
}

@keyframes trust-dot-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes trust-lock-close {
  0%,
  16% {
    transform: translateY(-5px);
  }

  42%,
  76% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes trust-shield-draw {
  0%,
  10% {
    opacity: 0.08;
    stroke-dashoffset: 140;
  }

  42%,
  78% {
    opacity: 0.34;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0.08;
    stroke-dashoffset: -140;
  }
}

@keyframes trust-lock-pulse {
  0%,
  30%,
  100% {
    opacity: 0.45;
  }

  48%,
  78% {
    opacity: 1;
  }
}

@keyframes trust-security-scan {
  0%,
  38%,
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }

  48% {
    opacity: 0.8;
  }

  72% {
    opacity: 0;
    transform: translateY(24px);
  }
}

@keyframes trust-frame-breathe {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.72;
    transform: scale(1);
  }
}

@keyframes trust-orbit-dot {
  0%,
  100% {
    transform: translate(0, 0);
  }

  30% {
    transform: translate(-8px, 4px);
  }

  62% {
    transform: translate(-4px, 11px);
  }
}

.catalogue-business-flow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 20%, rgba(116, 40, 44, 0.04), transparent 25%),
    radial-gradient(circle at 94% 75%, rgba(23, 78, 55, 0.05), transparent 27%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfa 48%, #ffffff 100%);
}

.catalogue-business-flow::before {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -52%;
  width: 75%;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(23, 78, 55, 0.014) 40%,
    rgba(116, 40, 44, 0.032) 50%,
    rgba(23, 78, 55, 0.014) 60%,
    transparent 80%
  );
  content: "";
  pointer-events: none;
  transform: skewX(-10deg);
  animation: catalogue-flow-sheen 22s ease-in-out infinite alternate;
}

.catalogue-business-flow .product-categories-footer {
  border-bottom: 0;
}

.categories {
  position: relative;
  padding-bottom: clamp(52px, 5vw, 82px);
  overflow: hidden;
  background: transparent;
}

.categories::before {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -45%;
  width: 78%;
  opacity: 0.7;
  background: linear-gradient(
    110deg,
    transparent 18%,
    rgba(23, 78, 55, 0.018) 39%,
    rgba(116, 40, 44, 0.04) 50%,
    rgba(23, 78, 55, 0.018) 61%,
    transparent 82%
  );
  content: "";
  pointer-events: none;
  transform: skewX(-10deg);
  animation: categories-sheen 16s ease-in-out infinite alternate;
}

.categories .section-shell {
  position: relative;
  z-index: 2;
}

.categories-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.categories-orbit {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform;
}

.categories-orbit--one {
  top: 7%;
  left: -13%;
  width: 510px;
  height: 270px;
  border: 1px solid rgba(116, 40, 44, 0.105);
  box-shadow:
    0 0 0 32px rgba(116, 40, 44, 0.014),
    0 0 0 76px rgba(116, 40, 44, 0.008);
  transform: rotate(-22deg);
  animation: categories-orbit-one 18s ease-in-out infinite alternate;
}

.categories-orbit--two {
  right: -15%;
  bottom: 3%;
  width: 590px;
  height: 310px;
  border: 1px solid rgba(23, 78, 55, 0.115);
  box-shadow:
    0 0 0 38px rgba(23, 78, 55, 0.014),
    0 0 0 90px rgba(23, 78, 55, 0.008);
  transform: rotate(18deg);
  animation: categories-orbit-two 21s ease-in-out infinite alternate;
}

.categories-symbol {
  position: absolute;
  width: 105px;
  height: 105px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
  opacity: 0.12;
  will-change: transform;
}

.categories-symbol--leaf {
  top: 27%;
  right: 2.8%;
  color: var(--green);
  animation: categories-symbol-leaf 11s ease-in-out infinite alternate;
}

.categories-symbol--spice {
  bottom: 16%;
  left: 2.4%;
  width: 82px;
  height: 82px;
  color: var(--burgundy);
  animation: categories-symbol-spice 14s ease-in-out infinite alternate;
}

.categories-symbol--crystal {
  top: 9%;
  left: 72%;
  width: 62px;
  height: 62px;
  color: var(--green);
  opacity: 0.09;
  animation: categories-symbol-crystal 13s ease-in-out infinite alternate;
}

.categories-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.categories-light--one {
  top: 6%;
  right: -9%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(116, 40, 44, 0.12);
  box-shadow: 0 0 0 70px rgba(116, 40, 44, 0.025);
  animation: product-light-one 13s ease-in-out infinite alternate;
}

.categories-light--two {
  bottom: -10%;
  left: -8%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(23, 78, 55, 0.13);
  box-shadow: 0 0 0 54px rgba(23, 78, 55, 0.025);
  animation: product-light-two 15s ease-in-out infinite alternate;
}

.product-categories-heading {
  max-width: 940px;
  margin: 0 auto 58px;
  text-align: center;
}

.product-categories-heading .eyebrow {
  justify-content: center;
}

.product-categories-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.75rem, 4.6vw, 4.8rem);
}

.product-categories-heading h2 em {
  color: var(--green);
  font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.product-categories-heading > p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.product-category-card {
  --card-delay: 0s;
  --card-rx: 0deg;
  --card-ry: 0deg;
  --visual-x: 0px;
  --visual-y: 0px;
  --spot-x: 50%;
  --spot-y: 50%;
  --accent: var(--burgundy);
  --accent-soft: rgba(116, 40, 44, 0.12);
  --visual-bg: linear-gradient(145deg, #f7eee9, #fffaf6);
  position: relative;
  min-height: 470px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(57, 43, 34, 0.11);
  border-radius: 28px 8px 28px 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 24px 54px rgba(45, 34, 26, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  transform:
    rotateX(var(--card-rx))
    rotateY(var(--card-ry))
    translateZ(0);
  transform-style: preserve-3d;
  transition:
    border-radius 0.55s var(--ease),
    box-shadow 0.45s ease,
    transform 0.13s linear;
  will-change: transform;
}

.product-category-card::before {
  position: absolute;
  inset: 11px;
  z-index: 5;
  border: 1px solid color-mix(in srgb, var(--accent) 14%, transparent);
  border-radius: 20px 5px 20px 5px;
  content: "";
  opacity: 0.75;
  pointer-events: none;
  transition:
    inset 0.45s var(--ease),
    opacity 0.35s ease;
}

.product-category-card::after {
  position: absolute;
  top: 29px;
  right: 29px;
  z-index: 6;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 7px var(--accent-soft),
    0 0 28px var(--accent-soft);
  content: "";
  animation: product-card-signal 3.2s ease-in-out infinite;
}

.product-category-card--casings {
  --accent: #7a2c31;
  --accent-soft: rgba(122, 44, 49, 0.13);
  --visual-bg: linear-gradient(145deg, #f5e9e6 0%, #fffaf7 100%);
}

.product-category-card--spices {
  --accent: #9b572b;
  --accent-soft: rgba(155, 87, 43, 0.14);
  --visual-bg: linear-gradient(145deg, #f4ead9 0%, #fffaf1 100%);
}

.product-category-card--equipment {
  --accent: #215f48;
  --accent-soft: rgba(33, 95, 72, 0.13);
  --visual-bg: linear-gradient(145deg, #e6f0eb 0%, #f8fcfa 100%);
}

.product-category-card--covers {
  --accent: #765062;
  --accent-soft: rgba(118, 80, 98, 0.13);
  --visual-bg: linear-gradient(145deg, #eee8ed 0%, #fcf9fb 100%);
}

.product-category-card--salt {
  --accent: #3e735d;
  --accent-soft: rgba(62, 115, 93, 0.13);
  --visual-bg: linear-gradient(145deg, #eaf1ed 0%, #fbfdfc 100%);
}

.product-category-card--seeds {
  --accent: #80653b;
  --accent-soft: rgba(128, 101, 59, 0.14);
  --visual-bg: linear-gradient(145deg, #f1ebdd 0%, #fffdf7 100%);
}

.product-category-visual {
  position: relative;
  z-index: 1;
  min-height: 222px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--accent-soft);
  border-radius: 20px 5px 20px 5px;
  background: var(--visual-bg);
  transform: translateZ(18px);
}

.product-category-visual::before,
.product-category-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.product-category-visual::before {
  top: -47%;
  right: -18%;
  width: 225px;
  height: 225px;
  border: 1px solid var(--accent-soft);
  box-shadow: 0 0 0 34px color-mix(in srgb, var(--accent) 3%, transparent);
  animation: category-orbit 12s ease-in-out infinite alternate;
}

.product-category-visual::after {
  bottom: -75px;
  left: -34px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-soft), transparent 69%);
  animation: category-glow 8s ease-in-out infinite alternate;
}

.product-category-visual svg {
  position: relative;
  z-index: 2;
  width: min(78%, 270px);
  height: 178px;
  overflow: visible;
  color: var(--accent);
  transform: translate3d(var(--visual-x), var(--visual-y), 0);
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.product-category-visual svg * {
  vector-effect: non-scaling-stroke;
}

.product-category-spotlight {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.62), transparent 31%);
  mix-blend-mode: soft-light;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.product-category-number {
  position: absolute;
  top: 29px;
  left: 30px;
  z-index: 6;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.product-category-copy {
  position: relative;
  z-index: 4;
  padding: 26px 20px 20px;
  display: flex;
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
  transform: translateZ(28px);
}

.product-category-kicker {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-category-copy h3 {
  margin: 0;
  margin-top: 8px;
  font-size: clamp(1.65rem, 2.15vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-category-copy p {
  max-width: 340px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.product-category-link {
  margin-top: auto;
  padding-top: 19px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-category-link svg {
  transition: transform 0.35s var(--ease);
}

.product-category-card:hover {
  border-radius: 8px 28px 8px 28px;
  box-shadow:
    0 32px 70px rgba(45, 34, 26, 0.15),
    0 0 0 1px var(--accent-soft);
}

.product-category-card:hover::before {
  inset: 8px;
  opacity: 1;
}

.product-category-card:hover .product-category-visual svg {
  transform:
    translate3d(var(--visual-x), var(--visual-y), 0)
    scale(1.045);
}

.product-category-card:hover .product-category-spotlight {
  opacity: 1;
}

.product-category-card:hover .product-category-link svg {
  transform: translateX(6px);
}

.visual-casing {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 8;
}

.visual-casing--one {
  stroke-dasharray: 18 10;
  animation: casing-flow 7s linear infinite;
}

.visual-casing--two {
  opacity: 0.42;
  stroke-width: 3;
  animation: casing-sway 6s ease-in-out infinite alternate;
}

.visual-casing-dot {
  fill: currentColor;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: casing-dot 2.4s ease-in-out infinite;
}

.visual-casing-dot--two {
  animation-delay: -1.1s;
}

.visual-spice-bowl,
.visual-spice-mound,
.visual-spice-leaf,
.visual-spice-star {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-spice-bowl {
  fill: color-mix(in srgb, var(--accent) 9%, transparent);
  stroke-width: 3;
}

.visual-spice-mound {
  stroke-width: 2.5;
}

.visual-spice-orbit {
  transform-box: view-box;
  transform-origin: center;
  animation: spice-orbit 18s linear infinite;
}

.visual-spice-grain,
.visual-spice-speck {
  fill: currentColor;
  stroke: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: spice-float 2.8s ease-in-out infinite alternate;
}

.visual-spice-grain--two,
.visual-spice-speck--two {
  animation-delay: -0.8s;
}

.visual-spice-grain--three,
.visual-spice-speck--three {
  animation-delay: -1.6s;
}

.visual-spice-leaf,
.visual-spice-star {
  stroke-width: 2;
}

.visual-gear {
  fill: color-mix(in srgb, var(--accent) 7%, transparent);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
}

.visual-gear--large {
  animation: gear-spin 14s linear infinite;
}

.visual-gear--small {
  animation: gear-spin-back 9s linear infinite;
}

.visual-equipment-line,
.visual-equipment-pulse {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
}

.visual-equipment-line {
  opacity: 0.24;
  stroke-width: 2;
}

.visual-equipment-pulse {
  stroke-dasharray: 18 17;
  stroke-width: 4;
  animation: equipment-pulse 3.2s linear infinite;
}

.visual-cover {
  fill: color-mix(in srgb, var(--accent) 7%, transparent);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transform-box: fill-box;
  transform-origin: center;
}

.visual-cover--back {
  opacity: 0.42;
  animation: cover-float 6.5s ease-in-out infinite alternate;
}

.visual-cover--front {
  animation: cover-float 5s ease-in-out -2s infinite alternate-reverse;
}

.visual-cover-mesh {
  stroke-dasharray: 9 6;
  animation: mesh-flow 5s linear infinite;
}

.visual-cover-thread {
  fill: none;
  opacity: 0.55;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 3;
  animation: cover-thread 5s ease-in-out infinite alternate;
}

.visual-salt-bowl,
.visual-salt-mound {
  fill: color-mix(in srgb, var(--accent) 7%, transparent);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-salt-bowl {
  stroke-width: 3;
}

.visual-salt-mound {
  fill: none;
  stroke-width: 2.5;
}

.visual-crystal {
  fill: color-mix(in srgb, var(--accent) 15%, white);
  stroke: currentColor;
  stroke-width: 1.7;
  transform-box: fill-box;
  transform-origin: center;
  animation: crystal-fall 4.2s ease-in infinite;
}

.visual-crystal--two {
  animation-delay: -0.7s;
}

.visual-crystal--three {
  animation-delay: -1.5s;
}

.visual-crystal--four {
  animation-delay: -2.3s;
}

.visual-crystal--five {
  animation-delay: -3.1s;
}

.visual-crystal--six {
  animation-delay: -3.7s;
}

.visual-seed-orbit {
  transform-box: view-box;
  transform-origin: center;
  animation: seed-orbit 22s linear infinite;
}

.visual-seed {
  fill: color-mix(in srgb, var(--accent) 17%, transparent);
  stroke: currentColor;
  stroke-width: 2.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: seed-float 3.6s ease-in-out infinite alternate;
}

.visual-seed--two {
  animation-delay: -0.9s;
}

.visual-seed--three {
  animation-delay: -1.8s;
}

.visual-seed--four {
  animation-delay: -2.7s;
}

.visual-seed-leaf {
  fill: color-mix(in srgb, var(--accent) 6%, transparent);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: seed-leaf 5.5s ease-in-out infinite alternate;
}

.visual-seed-leaf--small {
  fill: none;
  opacity: 0.7;
  stroke-width: 2;
  animation-delay: -2s;
}

.product-category-grid:not(.is-visible) .product-category-card {
  opacity: 0;
  clip-path: inset(14% 0 14% 0 round 28px);
}

.product-category-grid.is-visible .product-category-card {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0);
  transition:
    border-radius 0.55s var(--ease),
    box-shadow 0.45s ease,
    clip-path 0.8s var(--ease) var(--card-delay),
    opacity 0.65s ease var(--card-delay),
    transform 0.13s linear;
}

.product-category-grid.is-visible .product-category-card:nth-child(2) {
  --card-delay: 0.07s;
}

.product-category-grid.is-visible .product-category-card:nth-child(3) {
  --card-delay: 0.14s;
}

.product-category-grid.is-visible .product-category-card:nth-child(4) {
  --card-delay: 0.21s;
}

.product-category-grid.is-visible .product-category-card:nth-child(5) {
  --card-delay: 0.28s;
}

.product-category-grid.is-visible .product-category-card:nth-child(6) {
  --card-delay: 0.35s;
}

.product-categories-footer {
  margin-top: 30px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.product-categories-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-categories-footer a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-categories-footer a svg,
.text-link svg {
  transition: transform 0.3s var(--ease);
}

.product-categories-footer a:hover svg,
.text-link:hover svg {
  transform: translateX(5px);
}

@keyframes catalogue-flow-sheen {
  from {
    transform: translate3d(0, 0, 0) skewX(-10deg);
  }

  to {
    transform: translate3d(165vw, 0, 0) skewX(-10deg);
  }
}

@keyframes categories-sheen {
  from {
    transform: translate3d(0, 0, 0) skewX(-10deg);
  }

  to {
    transform: translate3d(150vw, 0, 0) skewX(-10deg);
  }
}

@keyframes categories-orbit-one {
  from {
    transform: translate3d(-28px, -8px, 0) rotate(-24deg) scale(0.96);
  }

  to {
    transform: translate3d(54px, 32px, 0) rotate(-17deg) scale(1.07);
  }
}

@keyframes categories-orbit-two {
  from {
    transform: translate3d(35px, 22px, 0) rotate(21deg) scale(1.04);
  }

  to {
    transform: translate3d(-48px, -30px, 0) rotate(14deg) scale(0.94);
  }
}

@keyframes categories-symbol-leaf {
  from {
    transform: translate3d(0, -12px, 0) rotate(-7deg);
  }

  to {
    transform: translate3d(-26px, 24px, 0) rotate(9deg);
  }
}

@keyframes categories-symbol-spice {
  from {
    transform: translate3d(-10px, 12px, 0) rotate(-13deg) scale(0.92);
  }

  to {
    transform: translate3d(30px, -18px, 0) rotate(22deg) scale(1.08);
  }
}

@keyframes categories-symbol-crystal {
  from {
    transform: translate3d(-13px, 9px, 0) rotate(-12deg);
  }

  to {
    transform: translate3d(18px, -16px, 0) rotate(18deg);
  }
}

@keyframes product-light-one {
  from {
    transform: translate3d(-4%, -3%, 0) scale(0.95);
  }

  to {
    transform: translate3d(7%, 5%, 0) scale(1.05);
  }
}

@keyframes product-light-two {
  from {
    transform: translate3d(5%, 1%, 0) scale(1);
  }

  to {
    transform: translate3d(-7%, -5%, 0) scale(1.08);
  }
}

@keyframes product-card-signal {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes category-orbit {
  from {
    transform: translate3d(-8px, -5px, 0) rotate(-6deg) scale(0.95);
  }

  to {
    transform: translate3d(15px, 12px, 0) rotate(9deg) scale(1.07);
  }
}

@keyframes category-glow {
  from {
    opacity: 0.45;
    transform: translate3d(-8px, 5px, 0) scale(0.9);
  }

  to {
    opacity: 0.9;
    transform: translate3d(20px, -8px, 0) scale(1.18);
  }
}

@keyframes casing-flow {
  to {
    stroke-dashoffset: -112;
  }
}

@keyframes casing-sway {
  from {
    transform: translate3d(-4px, 3px, 0) rotate(-1.5deg);
  }

  to {
    transform: translate3d(5px, -4px, 0) rotate(1.5deg);
  }
}

@keyframes casing-dot {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.7);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

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

@keyframes spice-float {
  from {
    transform: translateY(4px) rotate(-5deg) scale(0.88);
  }

  to {
    transform: translateY(-5px) rotate(6deg) scale(1.12);
  }
}

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

@keyframes gear-spin-back {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes equipment-pulse {
  to {
    stroke-dashoffset: -70;
  }
}

@keyframes cover-float {
  from {
    transform: translate3d(-4px, 3px, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(6px, -5px, 0) rotate(1.5deg);
  }
}

@keyframes mesh-flow {
  to {
    stroke-dashoffset: -60;
  }
}

@keyframes cover-thread {
  from {
    transform: translateX(-5px);
  }

  to {
    transform: translateX(7px);
  }
}

@keyframes crystal-fall {
  0% {
    opacity: 0;
    transform: translateY(-18px) rotate(0deg) scale(0.7);
  }

  18% {
    opacity: 1;
  }

  78% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateY(50px) rotate(135deg) scale(1);
  }
}

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

@keyframes seed-float {
  from {
    transform: translateY(3px) rotate(-5deg) scale(0.92);
  }

  to {
    transform: translateY(-6px) rotate(6deg) scale(1.08);
  }
}

@keyframes seed-leaf {
  from {
    transform: rotate(-2deg) scale(0.98);
  }

  to {
    transform: rotate(2deg) scale(1.02);
  }
}

.b2b-section {
  position: relative;
  padding-top: clamp(42px, 4vw, 68px);
  padding-bottom: clamp(95px, 10vw, 155px);
  overflow: hidden;
  background: transparent;
}

.b2b-section::before {
  display: none;
}

.b2b-panel {
  position: relative;
  padding: clamp(48px, 6vw, 82px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 40px 12px 40px 12px;
  background:
    radial-gradient(circle at 84% 13%, rgba(255, 255, 255, 0.105), transparent 26%),
    radial-gradient(circle at 10% 100%, rgba(116, 40, 44, 0.2), transparent 32%),
    linear-gradient(135deg, #113929 0%, #174e37 58%, #1c5940 100%);
  box-shadow:
    0 38px 85px rgba(27, 45, 35, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

.b2b-panel::before {
  position: absolute;
  top: -30%;
  left: -46%;
  width: 52%;
  height: 170%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.045),
    transparent
  );
  content: "";
  pointer-events: none;
  transform: skewX(-12deg);
  animation: b2b-panel-sheen 12s ease-in-out infinite;
}

.b2b-panel::after {
  position: absolute;
  right: -135px;
  bottom: -205px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 68px rgba(255, 255, 255, 0.025),
    0 0 0 138px rgba(255, 255, 255, 0.014);
  content: "";
  pointer-events: none;
  animation: b2b-ring-drift 16s ease-in-out infinite alternate;
}

.b2b-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(55px, 8vw, 118px);
}

.eyebrow--light {
  color: #ddbda5;
}

.b2b-copy {
  position: relative;
  z-index: 2;
}

.b2b-copy h2 {
  max-width: none;
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(2.8rem, 3.85vw, 4.15rem);
  line-height: 0.98;
}

.b2b-copy h2 > span {
  display: block;
  white-space: nowrap;
}

.b2b-copy > p {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.75;
}

.b2b-copy .button {
  margin-top: 32px;
}

.button--cream {
  color: var(--green);
  background: var(--cream);
}

.button--cream:hover {
  color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.17);
}

.b2b-stats {
  max-width: 570px;
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.b2b-stats > div {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.b2b-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.b2b-stats strong,
.b2b-stats span {
  display: block;
}

.b2b-stats strong {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -0.025em;
}

.b2b-stats span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  line-height: 1.35;
}

.b2b-configurator {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 28px 8px 28px 8px;
  background:
    radial-gradient(circle at 93% 0%, rgba(23, 78, 55, 0.09), transparent 33%),
    rgba(255, 255, 255, 0.93);
  box-shadow:
    0 28px 65px rgba(4, 24, 15, 0.27),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.b2b-configurator::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(23, 78, 55, 0.08);
  border-radius: 20px 5px 20px 5px;
  content: "";
  pointer-events: none;
}

.b2b-configurator-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(25, 22, 20, 0.09);
}

.b2b-configurator-head span,
.b2b-configurator-head strong {
  display: block;
}

.b2b-configurator-head span {
  color: var(--burgundy);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.b2b-configurator-head strong {
  margin-top: 5px;
  font-size: 1rem;
}

.b2b-configurator-head > i {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 8px rgba(45, 115, 82, 0.1);
  animation: b2b-status-pulse 2.8s ease-in-out infinite;
}

.b2b-model {
  position: relative;
  z-index: 2;
  height: 250px;
  margin-top: 18px;
  overflow: hidden;
}

.b2b-model::before {
  position: absolute;
  inset: 16% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 78, 55, 0.08), transparent 66%);
  content: "";
  animation: b2b-model-breathe 6s ease-in-out infinite;
}

.b2b-model-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.b2b-model-ring--one {
  width: 158px;
  height: 158px;
  margin: -79px 0 0 -79px;
  border: 1px dashed rgba(23, 78, 55, 0.22);
  animation: b2b-model-ring 18s linear infinite;
}

.b2b-model-ring--two {
  width: 202px;
  height: 202px;
  margin: -101px 0 0 -101px;
  border: 1px solid rgba(116, 40, 44, 0.09);
  box-shadow: 0 0 0 18px rgba(23, 78, 55, 0.018);
  animation: b2b-model-ring-back 24s linear infinite;
}

.b2b-model-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(116, 40, 44, 0.3);
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 1.4;
  animation: b2b-model-flow 4s linear infinite;
}

.b2b-model-node {
  position: absolute;
  z-index: 3;
  width: 150px;
  padding: 13px 14px;
  border: 1px solid rgba(23, 78, 55, 0.11);
  border-radius: 13px 4px 13px 4px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 10px 24px rgba(27, 46, 36, 0.08);
  will-change: transform;
}

.b2b-model-node strong,
.b2b-model-node small {
  display: block;
}

.b2b-model-node strong {
  color: var(--green);
  font-size: 0.78rem;
  line-height: 1.25;
}

.b2b-model-node small {
  margin-top: 4px;
  color: #918b84;
  font-size: 0.6rem;
}

.b2b-model-node--scale {
  top: 8px;
  left: 0;
  animation: b2b-model-node-one 6.5s ease-in-out infinite;
}

.b2b-model-node--delivery {
  top: 8px;
  right: 0;
  animation: b2b-model-node-two 7.2s ease-in-out -2.4s infinite;
}

.b2b-model-node--support {
  bottom: 2px;
  left: 50%;
  margin-left: -75px;
  animation: b2b-model-node-three 6.8s ease-in-out -1.2s infinite;
}

.b2b-model-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 112px;
  height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--white);
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, #174e37, #246a4d);
  box-shadow:
    0 18px 38px rgba(23, 78, 55, 0.24),
    0 0 0 8px rgba(23, 78, 55, 0.07);
  text-align: center;
  transform: translate(-50%, -50%);
}

.b2b-model-core::before {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(23, 78, 55, 0.18);
  border-radius: inherit;
  content: "";
  animation: b2b-model-core-pulse 3.8s ease-in-out infinite;
}

.b2b-model-core i {
  width: 7px;
  height: 7px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: #e2bea3;
  box-shadow: 0 0 0 5px rgba(226, 190, 163, 0.14);
}

.b2b-model-core span,
.b2b-model-core strong {
  display: block;
}

.b2b-model-core span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.b2b-model-core strong {
  margin-top: 4px;
  font-size: 0.7rem;
  line-height: 1.18;
}

.b2b-configurator-status {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 12px 1fr 20px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(23, 78, 55, 0.1);
  border-radius: 14px;
  background: rgba(23, 78, 55, 0.045);
}

.b2b-configurator-status > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #65bb8f;
  box-shadow: 0 0 0 6px rgba(101, 187, 143, 0.11);
  animation: b2b-status-pulse 2.8s ease-in-out infinite;
}

.b2b-configurator-status strong,
.b2b-configurator-status small {
  display: block;
}

.b2b-configurator-status strong {
  color: var(--green);
  font-size: 0.75rem;
}

.b2b-configurator-status small {
  margin-top: 2px;
  color: #918b84;
  font-size: 0.57rem;
}

.b2b-configurator-status svg {
  color: var(--green);
}

.b2b-benefits {
  position: relative;
  z-index: 2;
  margin-top: clamp(46px, 6vw, 72px);
  padding-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.b2b-benefit {
  min-width: 0;
  padding: 4px 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.b2b-benefit:first-child {
  padding-left: 0;
  border-left: 0;
}

.b2b-benefit:last-child {
  padding-right: 0;
}

.b2b-benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #e2bea3;
  border: 1px solid rgba(226, 190, 163, 0.18);
  border-radius: 15px 5px 15px 5px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    transform 0.4s var(--ease);
}

.b2b-benefit-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.b2b-benefit strong,
.b2b-benefit span {
  display: block;
}

.b2b-benefit strong {
  padding-top: 1px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  line-height: 1.35;
}

.b2b-benefit span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
  line-height: 1.45;
}

.b2b-benefit:hover .b2b-benefit-icon {
  color: var(--green);
  background: #f6eee7;
  transform: translateY(-4px) rotate(-2deg);
}

.b2b-benefit--price .b2b-benefit-icon svg {
  animation: b2b-tag-float 4.8s ease-in-out infinite alternate;
}

.b2b-truck-line {
  stroke-dasharray: 5 5;
  animation: b2b-truck-road 1.8s linear infinite;
}

.b2b-benefit--delivery .b2b-benefit-icon svg {
  animation: b2b-truck-bounce 2.7s ease-in-out infinite;
}

.b2b-help-wave {
  stroke-dasharray: 20;
  animation: b2b-help-line 3s ease-in-out infinite;
}

.b2b-pin-core {
  transform-box: fill-box;
  transform-origin: center;
  animation: b2b-pin-pulse 2.6s ease-in-out infinite;
}

@keyframes b2b-panel-sheen {
  0%,
  12% {
    transform: translateX(0) skewX(-12deg);
  }

  72%,
  100% {
    transform: translateX(310%) skewX(-12deg);
  }
}

@keyframes b2b-ring-drift {
  from {
    transform: translate3d(30px, 24px, 0) scale(0.94);
  }

  to {
    transform: translate3d(-45px, -34px, 0) scale(1.08);
  }
}

@keyframes b2b-status-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes b2b-model-breathe {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.06);
  }
}

@keyframes b2b-model-ring {
  to {
    transform: rotate(360deg);
  }
}

@keyframes b2b-model-ring-back {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes b2b-model-flow {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes b2b-model-node-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.5deg);
  }

  50% {
    transform: translate3d(4px, -4px, 0) rotate(0.7deg);
  }
}

@keyframes b2b-model-node-two {
  0%,
  100% {
    transform: translate3d(0, -2px, 0) rotate(0.5deg);
  }

  50% {
    transform: translate3d(-4px, 3px, 0) rotate(-0.7deg);
  }
}

@keyframes b2b-model-node-three {
  0%,
  100% {
    transform: translate3d(-3px, 0, 0);
  }

  50% {
    transform: translate3d(3px, -4px, 0);
  }
}

@keyframes b2b-model-core-pulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

@keyframes b2b-tag-float {
  from {
    transform: translateY(2px) rotate(-3deg);
  }

  to {
    transform: translateY(-3px) rotate(3deg);
  }
}

@keyframes b2b-truck-road {
  to {
    stroke-dashoffset: -20;
  }
}

@keyframes b2b-truck-bounce {
  0%,
  100% {
    transform: translate3d(-1px, 0, 0);
  }

  45% {
    transform: translate3d(2px, -1.5px, 0);
  }

  60% {
    transform: translate3d(3px, 0, 0);
  }
}

@keyframes b2b-help-line {
  0%,
  100% {
    opacity: 0.45;
    stroke-dashoffset: 20;
  }

  50% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes b2b-pin-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

.story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 20%, rgba(116, 40, 44, 0.11), transparent 26%),
    linear-gradient(135deg, #ede2d3 0%, #f8f3eb 48%, #eef2ea 100%);
}

.story-section::before {
  position: absolute;
  top: -240px;
  left: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23, 78, 55, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(23, 78, 55, 0.025),
    0 0 0 140px rgba(23, 78, 55, 0.018);
  content: "";
}

.story-section .section-shell {
  position: relative;
  z-index: 2;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(450px, 0.92fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.story-media {
  position: relative;
  min-height: 630px;
}

.story-media::before {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 70%;
  height: 74%;
  border: 1px solid rgba(116, 40, 44, 0.3);
  border-radius: 30px;
  content: "";
}

.story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(48, 31, 22, 0.17);
}

.story-caption {
  position: absolute;
  right: -34px;
  bottom: 33px;
  width: min(300px, 70%);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  border-radius: 16px;
  background: var(--burgundy);
  box-shadow: 0 20px 42px rgba(116, 40, 44, 0.26);
}

.story-caption span {
  color: #e2b8a1;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.story-caption p {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 750;
}

.story-copy h2 {
  margin-top: 22px;
  font-size: clamp(2.75rem, 4.2vw, 4.5rem);
}

.story-copy > p {
  margin: 26px 0 34px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.story-list > li > span {
  padding-top: 3px;
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.story-list strong {
  font-size: 0.95rem;
}

.story-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 82%, rgba(116, 40, 44, 0.075), transparent 24%),
    linear-gradient(160deg, #fffdf8 0%, #f4f1e9 58%, #f0f4ee 100%);
}

.reviews-section::before {
  position: absolute;
  top: 50px;
  right: -110px;
  color: rgba(23, 78, 55, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35rem;
  line-height: 0.7;
  content: "“";
  pointer-events: none;
}

.reviews-section .section-shell {
  position: relative;
  z-index: 2;
}

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

.review-source {
  justify-self: end;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(23, 78, 55, 0.11);
  border-radius: 15px 5px 15px 5px;
  background: rgba(255, 255, 255, 0.7);
}

.review-source > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(145deg, #4285f4, #34a853);
  font-size: 0.8rem;
  font-weight: 850;
}

.review-source strong,
.review-source small {
  display: block;
}

.review-source strong {
  font-size: 0.75rem;
}

.review-source small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  min-height: 370px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.review-card:hover {
  border-color: rgba(116, 40, 44, 0.23);
  box-shadow: 0 24px 50px rgba(57, 34, 23, 0.09);
  transform: translateY(-7px);
}

.quote-mark {
  position: absolute;
  top: 14px;
  right: 24px;
  color: rgba(116, 40, 44, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
}

.review-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 9px;
  color: var(--green);
  border: 1px solid rgba(23, 78, 55, 0.1);
  border-radius: 99px;
  background: rgba(23, 78, 55, 0.045);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 26px 0 30px;
  color: #4b433e;
  font-size: 0.93rem;
  line-height: 1.72;
}

.review-card footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card footer > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card footer strong,
.review-card footer small {
  display: block;
}

.review-card footer strong {
  font-size: 0.82rem;
}

.review-card footer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-section {
  position: relative;
  padding-top: clamp(42px, 3.5vw, 62px);
  padding-bottom: clamp(125px, 11vw, 200px);
  overflow: visible;
  background:
    radial-gradient(circle at 9% 12%, rgba(150, 56, 62, 0.3), transparent 31%),
    radial-gradient(circle at 86% 78%, rgba(255, 255, 255, 0.075), transparent 30%),
    linear-gradient(135deg, #0d3425 0%, #174e37 52%, #1f6348 100%);
}

.contact-section::after {
  position: absolute;
  right: -5%;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.023);
  font-size: clamp(8rem, 17vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.75;
  content: "ZIELOMIX";
  pointer-events: none;
  white-space: nowrap;
  animation: contact-word-drift 18s ease-in-out infinite alternate;
}

.contact-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-motion::before,
.contact-motion::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(3px);
  will-change: transform;
}

.contact-motion::before {
  top: 12%;
  left: 28%;
  width: 270px;
  height: 270px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 68%);
  animation: contact-glow-one 13s ease-in-out infinite alternate;
}

.contact-motion::after {
  right: 17%;
  bottom: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(116, 40, 44, 0.18), transparent 68%);
  animation: contact-glow-two 16s ease-in-out infinite alternate;
}

.contact-orbit {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform;
}

.contact-orbit--one {
  top: -170px;
  right: -120px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.018),
    0 0 0 112px rgba(255, 255, 255, 0.009);
  animation: contact-orbit-one 18s ease-in-out infinite alternate;
}

.contact-orbit--two {
  bottom: -230px;
  left: -170px;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(226, 190, 163, 0.16);
  box-shadow:
    0 0 0 62px rgba(226, 190, 163, 0.018),
    0 0 0 126px rgba(226, 190, 163, 0.009);
  animation: contact-orbit-two 21s ease-in-out infinite alternate;
}

.contact-route-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.105);
  stroke-dasharray: 9 15;
  stroke-linecap: round;
  stroke-width: 1.2;
  animation: contact-route-flow 16s linear infinite;
}

.contact-route-lines path:nth-child(2) {
  stroke: rgba(226, 190, 163, 0.14);
  stroke-dasharray: 5 19;
}

.contact-section .section-shell {
  position: relative;
  z-index: 2;
}

.contact-panel {
  position: relative;
  margin-top: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px 10px 38px 10px;
  background:
    radial-gradient(circle at 77% 10%, rgba(255, 255, 255, 0.075), transparent 28%),
    rgba(7, 38, 26, 0.78);
  box-shadow:
    0 28px 72px rgba(2, 22, 14, 0.24),
    0 -10px 32px rgba(27, 66, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-panel::before {
  position: absolute;
  top: 0;
  left: 9%;
  width: 26%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e2bea3, transparent);
  content: "";
  animation: contact-accent-line 8s ease-in-out infinite alternate;
}

.contact-copy {
  position: relative;
  z-index: 2;
  padding: clamp(46px, 5.5vw, 76px);
}

.contact-copy h2 {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(2.7rem, 3.75vw, 4.05rem);
  line-height: 1;
}

.contact-copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.75;
}

.contact-status {
  margin-top: 28px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 10px 1fr;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px 5px 15px 5px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-status > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58ad7e;
  box-shadow: 0 0 0 6px rgba(88, 173, 126, 0.11);
  animation: contact-status-pulse 2.8s ease-in-out infinite;
}

.contact-status p,
.contact-status strong,
.contact-status small {
  margin: 0;
  display: block;
}

.contact-status strong {
  color: #f1d1ba;
  font-size: 0.71rem;
}

.contact-status small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
}

.contact-details {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.contact-detail-card {
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 16px 5px 16px 5px;
  background: rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s var(--ease);
}

.contact-detail-card:hover {
  border-color: rgba(226, 190, 163, 0.3);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 30px rgba(2, 25, 15, 0.15);
  transform: translateX(4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  color: #f0cdb5;
  border: 1px solid rgba(226, 190, 163, 0.14);
  border-radius: 13px 4px 13px 4px;
  background: rgba(255, 255, 255, 0.075);
}

.contact-icon--text {
  font-size: 0.65rem;
  font-weight: 900;
}

.contact-details p,
.contact-details small,
.contact-details strong {
  margin: 0;
  display: block;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.contact-details strong {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.84rem;
}

.contact-section .text-link {
  color: #f0cdb5;
}

.contact-visual {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(226, 190, 163, 0.16);
  border-radius: 28px 7px 28px 7px;
  background:
    radial-gradient(circle at 50% 49%, rgba(88, 173, 126, 0.16), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(226, 190, 163, 0.13), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #0b3f2c;
  box-shadow:
    0 24px 55px rgba(2, 25, 15, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-visual::before,
.contact-visual::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
  filter: blur(8px);
  pointer-events: none;
}

.contact-visual::before {
  top: -17%;
  right: -13%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(132, 200, 163, 0.2), transparent 69%);
  animation: process-glow-a 11s ease-in-out infinite alternate;
}

.contact-visual::after {
  bottom: -22%;
  left: -12%;
  width: 410px;
  height: 410px;
  background: radial-gradient(circle, rgba(116, 40, 44, 0.17), transparent 69%);
  animation: process-glow-b 14s ease-in-out infinite alternate;
}

.process-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.033) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000 12%, transparent 76%);
  animation: process-grid-drift 24s linear infinite;
}

.process-route {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(226, 190, 163, 0.42);
  stroke-dasharray: 5 13;
  stroke-linecap: round;
  stroke-width: 1.3;
  pointer-events: none;
}

.process-route path {
  animation: process-route-flow 12s linear infinite;
}

.process-route path:nth-child(2) {
  stroke: rgba(88, 173, 126, 0.5);
  stroke-dasharray: 3 14;
  animation-duration: 15s;
  animation-direction: reverse;
}

.process-route path:nth-child(3) {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-dasharray: 7 17;
  animation-duration: 17s;
}

.process-route path:nth-child(4) {
  stroke: rgba(226, 190, 163, 0.34);
  stroke-dasharray: 4 15;
  animation-duration: 14s;
  animation-direction: reverse;
}

.process-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.process-ring::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2bea3;
  box-shadow: 0 0 0 7px rgba(226, 190, 163, 0.08);
  content: "";
}

.process-ring--outer {
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  animation: process-ring-spin 28s linear infinite;
}

.process-ring--inner {
  width: 245px;
  height: 245px;
  border: 1px dashed rgba(88, 173, 126, 0.23);
  transform: translate(-50%, -50%);
  animation: process-ring-spin-reverse 22s linear infinite;
}

.process-ring--inner::after {
  top: auto;
  right: 24px;
  bottom: 15px;
  left: auto;
  width: 7px;
  height: 7px;
  background: #58ad7e;
  box-shadow: 0 0 0 6px rgba(88, 173, 126, 0.08);
}

.process-node {
  position: absolute;
  z-index: 3;
  width: 205px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px 5px 17px 5px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 32px rgba(2, 25, 15, 0.16);
  backdrop-filter: blur(13px);
  animation: process-node-float 5.8s ease-in-out infinite;
}

.process-node--advice {
  top: 17%;
  left: 7%;
}

.process-node--packing {
  top: 16%;
  right: 6%;
  animation-delay: -2s;
}

.process-node--delivery {
  right: 8%;
  bottom: 15%;
  animation-delay: -4s;
}

.process-node--scale {
  bottom: 15%;
  left: 7%;
  animation-delay: -3s;
}

.process-node-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  color: #f0cdb5;
  border: 1px solid rgba(226, 190, 163, 0.16);
  border-radius: 12px 4px 12px 4px;
  background: rgba(226, 190, 163, 0.08);
}

.process-node-icon svg,
.process-core-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.process-node p,
.process-node strong,
.process-node small {
  margin: 0;
  display: block;
}

.process-node strong {
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.76rem;
}

.process-node small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
}

.process-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 174px;
  height: 174px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 190, 163, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.16), transparent 33%),
    #155a40;
  box-shadow:
    0 0 0 13px rgba(255, 255, 255, 0.035),
    0 0 0 31px rgba(88, 173, 126, 0.045),
    0 24px 48px rgba(2, 25, 15, 0.24);
  transform: translate(-50%, -50%);
  animation: process-core-float 5s ease-in-out infinite;
}

.process-core-pulse {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(226, 190, 163, 0.2);
  border-radius: 50%;
  animation: process-core-pulse 3.6s ease-out infinite;
}

.process-core-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  color: #f0cdb5;
  border: 1px solid rgba(226, 190, 163, 0.24);
  border-radius: 15px 5px 15px 5px;
  background: rgba(255, 255, 255, 0.08);
}

.process-core small,
.process-core strong {
  display: block;
  text-align: center;
}

.process-core small {
  margin-top: 12px;
  color: #e2bea3;
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.process-core strong {
  margin-top: 4px;
  color: #fff;
  font-size: 0.88rem;
}

@keyframes process-route-flow {
  to {
    stroke-dashoffset: -180;
  }
}

@keyframes process-ring-spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes process-ring-spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0);
  }
}

@keyframes process-node-float {
  0%,
  100% {
    transform: translate3d(0, -4px, 0);
  }

  50% {
    transform: translate3d(0, 7px, 0);
  }
}

@keyframes process-core-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(-4px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(5px);
  }
}

@keyframes process-core-pulse {
  0% {
    opacity: 0;
    transform: scale(0.83);
  }

  35% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes process-grid-drift {
  to {
    background-position: 38px 38px;
  }
}

@keyframes process-glow-a {
  from {
    opacity: 0.55;
    transform: translate3d(18px, -12px, 0) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translate3d(-34px, 28px, 0) scale(1.13);
  }
}

@keyframes process-glow-b {
  from {
    opacity: 0.45;
    transform: translate3d(-20px, 20px, 0) scale(1.08);
  }

  to {
    opacity: 0.86;
    transform: translate3d(38px, -26px, 0) scale(0.9);
  }
}

@keyframes contact-orbit-one {
  from {
    transform: translate3d(25px, -18px, 0) scale(0.96);
  }

  to {
    transform: translate3d(-38px, 32px, 0) scale(1.07);
  }
}

@keyframes contact-word-drift {
  from {
    transform: translate3d(4%, 0, 0);
  }

  to {
    transform: translate3d(-8%, -5%, 0);
  }
}

@keyframes contact-glow-one {
  from {
    opacity: 0.5;
    transform: translate3d(-28px, -18px, 0) scale(0.88);
  }

  to {
    opacity: 1;
    transform: translate3d(55px, 34px, 0) scale(1.16);
  }
}

@keyframes contact-glow-two {
  from {
    opacity: 0.46;
    transform: translate3d(30px, 24px, 0) scale(1.08);
  }

  to {
    opacity: 0.9;
    transform: translate3d(-48px, -32px, 0) scale(0.91);
  }
}

@keyframes contact-orbit-two {
  from {
    transform: translate3d(-20px, 22px, 0) scale(1.04);
  }

  to {
    transform: translate3d(42px, -30px, 0) scale(0.95);
  }
}

@keyframes contact-route-flow {
  to {
    stroke-dashoffset: -240;
  }
}

@keyframes contact-accent-line {
  from {
    transform: translateX(-12%) scaleX(0.72);
  }

  to {
    transform: translateX(220%) scaleX(1.1);
  }
}

@keyframes contact-status-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.84);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #171815;
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 72px 0 60px;
  display: grid;
  grid-template-columns: 1fr auto 58px;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}

.footer-brand img {
  width: 180px;
  height: 74px;
  padding: 7px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--cream);
}

.footer-brand p {
  max-width: 420px;
  margin: 20px 0 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: clamp(50px, 7vw, 100px);
}

.footer-links > div {
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  font-size: 0.78rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-cta {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--cream);
  transform: rotate(-90deg);
  transition:
    transform 0.35s var(--ease),
    background 0.3s ease;
}

.footer-cta:hover {
  background: var(--white);
  transform: rotate(-90deg) translateX(4px);
}

.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

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

@keyframes category-image-in {
  from {
    opacity: 0.65;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes scroll-line {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(210%);
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1160px) {
  .desktop-nav {
    gap: 22px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
    gap: 45px;
  }

  .hero-media {
    min-height: 510px;
  }

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

  .b2b-main {
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
    gap: 50px;
  }

  .story-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 65px;
  }

  .contact-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .desktop-nav,
  .nav-shop {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 130px max(24px, calc((100vw - 720px) / 2)) 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    background: var(--cream);
    transform: translateY(-20px);
    transition:
      opacity 0.35s ease,
      transform 0.45s var(--ease),
      visibility 0.35s;
  }

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

  .mobile-menu nav {
    margin-bottom: 38px;
  }

  .mobile-menu nav a {
    padding: 13px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .mobile-menu nav a span {
    color: var(--burgundy);
    font-size: 0.62rem;
    letter-spacing: 0.13em;
  }

  .mobile-menu .button {
    align-self: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 142px 0 80px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-image {
    inset: 0 3%;
  }

  .hero-card--quality {
    left: 0;
  }

  .hero-card--delivery {
    right: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    margin: 0;
  }

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

  .catalogue-business-flow .categories {
    padding-bottom: 58px;
  }

  .catalogue-business-flow .b2b-section {
    padding-top: 42px;
  }

  .b2b-main {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .b2b-configurator {
    width: min(680px, 100%);
  }

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

  .b2b-benefit:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .b2b-benefit:nth-child(n + 3) {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .story-media {
    min-height: 540px;
  }

  .story-copy {
    max-width: 680px;
  }

  .section-heading--reviews {
    grid-template-columns: 1fr auto;
  }

  .reviews-track {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 280px;
  }

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

  .contact-visual {
    min-height: 430px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 24px;
  }

  .site-header {
    padding: 8px 0 0;
  }

  .nav-shell {
    height: 62px;
    padding: 6px 4px;
  }

  .brand img {
    width: 122px;
    height: 46px;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding: 108px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-media {
    min-height: 390px;
  }

  .hero-image {
    inset: 0;
    border-radius: 31% 15% 30% 14% / 28% 22% 26% 20%;
  }

  .hero-card--quality {
    bottom: 22px;
    padding: 11px 12px;
  }

  .hero-card-icon {
    width: 34px;
    height: 34px;
  }

  .hero-card--delivery {
    top: -14px;
    padding: 12px 14px;
  }

  .hero-card--delivery span {
    font-size: 1rem;
  }

  .hero-stamp {
    right: 5px;
    bottom: -15px;
    width: 78px;
    height: 78px;
    font-size: 0.5rem;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

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

  .catalogue-business-flow .categories {
    padding-bottom: 42px;
  }

  .catalogue-business-flow .b2b-section {
    padding-top: 30px;
  }

  .product-category-card {
    min-height: 440px;
  }

  .product-category-copy {
    inset: auto;
    padding: 24px 14px 16px;
  }

  .product-category-visual {
    min-height: 202px;
  }

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

  .b2b-panel {
    padding: 42px 22px;
    border-radius: 28px 8px 28px 8px;
  }

  .b2b-copy h2 {
    font-size: clamp(1.68rem, 8.3vw, 2.65rem);
  }

  .b2b-copy .button {
    width: 100%;
    padding: 0 16px;
  }

  .b2b-configurator {
    padding: 24px 18px;
  }

  .b2b-model-node {
    width: 108px;
    padding: 9px 8px;
  }

  .b2b-model-node strong {
    font-size: 0.66rem;
  }

  .b2b-model-node small {
    font-size: 0.53rem;
  }

  .b2b-model-node--support {
    margin-left: -54px;
  }

  .b2b-model-core {
    width: 100px;
    height: 100px;
  }

  .b2b-stats {
    grid-template-columns: 1fr 1fr;
  }

  .b2b-stats > div:last-child {
    grid-column: span 2;
    margin-top: 18px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

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

  .b2b-benefit,
  .b2b-benefit:nth-child(odd),
  .b2b-benefit:nth-child(n + 3) {
    margin-top: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .b2b-benefit:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .story-media {
    min-height: 390px;
  }

  .story-media::before {
    top: -11px;
    right: -7px;
  }

  .story-caption {
    right: 12px;
    bottom: 15px;
  }

  .section-heading--reviews {
    grid-template-columns: 1fr;
  }

  .review-source {
    justify-self: start;
  }

  .review-card {
    min-height: 340px;
    padding: 27px 23px;
  }

  .contact-copy {
    padding: 43px 22px;
  }

  .contact-section {
    padding-top: 36px;
    padding-bottom: 110px;
  }

  .contact-panel {
    margin-top: 0;
    padding: 8px;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .contact-visual {
    min-height: 510px;
  }

  .process-ring--outer {
    width: 270px;
    height: 270px;
  }

  .process-ring--inner {
    width: 190px;
    height: 190px;
  }

  .process-node {
    width: 158px;
    padding: 10px;
    gap: 8px;
  }

  .process-node--advice {
    top: 7%;
    left: 4%;
  }

  .process-node--packing {
    top: 7%;
    right: 4%;
  }

  .process-node--delivery {
    right: 5%;
    bottom: 18%;
  }

  .process-node--scale {
    bottom: 18%;
    left: 4%;
  }

  .process-node-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .process-node-icon svg {
    width: 18px;
  }

  .process-node strong {
    font-size: 0.66rem;
  }

  .process-node small {
    font-size: 0.54rem;
  }

  .process-core {
    top: 52%;
    width: 132px;
    height: 132px;
  }

  .process-core-icon {
    width: 39px;
    height: 39px;
  }

  .process-core small {
    margin-top: 8px;
    font-size: 0.49rem;
  }

  .process-core strong {
    font-size: 0.73rem;
  }

  .footer-shell {
    padding-top: 55px;
    grid-template-columns: 1fr 48px;
    gap: 40px 20px;
  }

  .footer-links {
    gap: 45px;
    justify-content: space-between;
  }

  .footer-cta {
    width: 48px;
    height: 48px;
  }

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

@media (max-width: 980px) {
  .about-simple {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .about-photo {
    width: min(680px, calc(100% - 24px));
    min-height: 540px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(25, 22, 20, 0.09);
  }
}

@media (max-width: 620px) {
  .about-simple {
    gap: 54px;
  }

  .about-photo {
    width: calc(100% - 12px);
    min-height: 390px;
  }

  .about-photo::before {
    inset: 18px -14px -14px 18px;
  }

  .about-photo::after {
    display: none;
  }

  .about-photo img {
    border-radius: 22px;
  }

  .about-photo figcaption {
    right: -12px;
    bottom: 18px;
    width: min(270px, 80%);
  }

  .about-content h2 {
    font-size: clamp(2.25rem, 10.2vw, 3rem);
  }

  .about-content h2 em {
    white-space: normal;
  }

  .about-content h2 > span {
    white-space: normal;
  }

  .about-content > p {
    font-size: 0.95rem;
  }

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

  .trust-item {
    padding: 27px 12px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid rgba(25, 22, 20, 0.09);
    border-left: 0;
  }

  .trust-item p {
    max-width: none;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    transform: none;
  }
}
