:root {
  --bg: #0b0c0b;
  --bg-soft: #131514;
  --surface: rgba(254, 254, 254, 0.06);
  --surface-strong: rgba(254, 254, 254, 0.1);
  --line: rgba(254, 254, 254, 0.14);
  --text: #fefefe;
  --muted: #b9b4ae;
  --silver: #8f8a86;
  --navy: #0f274b;
  --gold: #fecc03;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: min(1200px, calc(100vw - 40px));
  --anchor-offset: 150px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

:where([id]) {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 39, 75, 0.35), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(254, 204, 3, 0.08), transparent 22%),
    linear-gradient(180deg, #121311 0%, #0b0c0b 55%, #090a09 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  padding-top: 118px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  transform: translateX(-50%);
  padding: 20px 0;
  background:
    linear-gradient(180deg, rgba(17, 25, 34, 0.98), rgba(17, 25, 34, 0.92)),
    rgba(17, 25, 34, 0.96);
  backdrop-filter: blur(20px);
  gap: 28px;
}

.site-header.is-scrolled {
  padding: 14px 0;
}

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

.brand__logo {
  display: block;
  height: 58px;
  width: auto;
  object-fit: contain;
}

.brand__text,
.site-nav {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}

.site-nav__links,
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav__links {
  flex-wrap: wrap;
}

.language-switcher {
  position: relative;
}

.site-nav a {
  color: rgba(254, 254, 254, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-switch--trigger:hover,
.lang-switch--trigger:focus-visible {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.04);
}

.lang-switch--trigger {
  color: rgba(254, 254, 254, 0.88);
  cursor: pointer;
}

.lang-switch.is-active {
  background: rgba(254, 204, 3, 0.12);
  border-color: rgba(254, 204, 3, 0.4);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(11, 12, 11, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
}

.language-option.is-active,
.language-option:hover {
  background: rgba(254, 254, 254, 0.06);
}

.language-code {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(254, 204, 3, 0.4);
  border-radius: 6px;
  background: rgba(254, 204, 3, 0.08);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
}

.lang-switch--trigger .language-code {
  min-width: 52px;
  height: 40px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 1.05rem;
}

.language-name {
  white-space: nowrap;
}

.quick-order-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0b0c0b, #0b0c0b) padding-box,
    linear-gradient(90deg, #00d2ff, #8c34ff) border-box;
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.quick-order-button__arrow {
  font-size: 1.8rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto 5px;
  background: var(--text);
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 40px 0 110px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.56fr);
  gap: 30px;
  align-items: start;
  min-height: calc(100vh - 104px);
  padding: 34px 36px 20px;
  overflow: hidden;
}

.hero__backdrop,
.hero__glow {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  pointer-events: none;
}

.hero__backdrop {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.76) 0%, rgba(8, 9, 10, 0.62) 24%, rgba(8, 9, 10, 0.28) 44%, rgba(8, 9, 10, 0.08) 62%, rgba(8, 9, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at 72% 26%, rgba(143, 138, 134, 0.08), transparent 22%),
    url("../img/hero-banner.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero__glow {
  inset: auto 40px 30px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 204, 3, 0.22), transparent 70%);
  filter: blur(10px);
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: start;
  max-width: 820px;
  padding: 8px 0 0;
  text-align: left;
}

.hero__topline {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 680px);
  margin-bottom: 26px;
}

.hero__topline-label {
  color: rgba(254, 204, 3, 0.9);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero__topline-line,
.hero__benefits-line {
  position: relative;
  display: block;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(254, 204, 3, 0.5), rgba(254, 204, 3, 0.08));
}

.hero__topline-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
  box-shadow: 0 0 14px rgba(254, 204, 3, 0.7);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  font-size: clamp(2.2rem, 3vw, 3.55rem);
  line-height: 1.04;
  white-space: normal;
}

h2 {
  max-width: none;
  font-size: clamp(2.05rem, 3vw, 3.6rem);
  white-space: normal;
}

.hero__lede,
.intro-grid__content > p,
.split-panel__copy p,
.dealer-panel__copy p,
.logistics-banner p,
.contact-copy p,
.info-card p,
.portfolio-card p,
.sourcing__card p {
  color: rgba(254, 254, 254, 0.8);
  line-height: 1.75;
}

.hero__lede {
  max-width: 27ch;
  margin: 34px 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--gold), #deb216);
  color: #0b0c0b;
  font-weight: 700;
}

.button--ghost {
  border-color: var(--line);
  background: rgba(21, 23, 28, 0.74);
}

.hero__feature-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: 530px;
  margin-top: 12px;
  padding: 34px 34px;
  border: 1px solid rgba(254, 204, 3, 0.3);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.84), rgba(11, 11, 11, 0.78));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero__feature {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  align-items: start;
}

.hero__feature-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(254, 204, 3, 0.44);
  border-radius: 50%;
  color: var(--gold);
}

.hero__feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero__feature strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
  font-weight: 600;
}

.hero__feature p {
  margin: 0;
  color: rgba(254, 254, 254, 0.74);
  line-height: 1.55;
  font-size: 1rem;
}

.hero__benefits {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  gap: 24px;
  margin-top: -8px;
  padding: 34px 38px 32px;
  border: 1px solid rgba(254, 254, 254, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(14, 15, 16, 0.72), rgba(9, 10, 10, 0.78));
  backdrop-filter: blur(12px);
}

.hero__benefits-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__benefits-head span:first-child {
  color: rgba(254, 204, 3, 0.86);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

.hero__stats article,
.intro-grid,
.split-panel,
.dealer-panel,
.contact-layout,
.logistics-banner {
  border: 1px solid var(--line);
  background: rgba(254, 254, 254, 0.035);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero__stats article {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: start;
  min-height: 0;
  padding: 14px 28px 8px 0;
  border: 0;
  border-right: 1px solid rgba(254, 204, 3, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.hero__stat-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(254, 204, 3, 0.34);
  border-radius: 50%;
  color: var(--gold);
  overflow: hidden;
}

.hero__stat-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero__stats article:nth-child(2),
.hero__stats article:nth-child(3) {
  padding-left: 28px;
}

.hero__stats article:last-child {
  border-right: 0;
}

.hero__stats span,
.portfolio-card .tag,
.journal-card__meta {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__stat-copy span {
  color: rgba(254, 254, 254, 0.82);
}

.hero__stats strong,
.timeline__item strong,
.process-grid strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-heading :is(h1, h2) {
  margin: 0;
  max-width: none;
  font-size: clamp(1.95rem, 2.55vw, 3rem);
  line-height: 1.08;
  white-space: normal;
}

.intro-grid,
.split-panel,
.dealer-panel,
.contact-layout {
  display: grid;
  gap: 30px;
  padding: 34px;
  border-radius: var(--radius);
}

.intro-grid,
.contact-layout {
  grid-template-columns: 1fr 1fr;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.feature-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.03);
  color: rgba(254, 254, 254, 0.88);
}

.contact-layout--partner {
  position: relative;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.12fr);
  gap: 32px;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 58px);
  border: 1px solid rgba(254, 254, 254, 0.13);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(19, 24, 26, 0.92), rgba(8, 10, 10, 0.96));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.38);
}

.contact-layout--partner .contact-copy,
.contact-layout--partner .contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-layout--partner .contact-copy h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 3.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.contact-layout--partner .contact-copy > p:not(.eyebrow) {
  margin: clamp(26px, 3vw, 48px) 0 0;
  padding: 24px;
  border: 1px solid rgba(254, 254, 254, 0.08);
  border-radius: 18px 18px 0 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  color: rgba(254, 254, 254, 0.72);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.75;
}

.contact-layout--partner .feature-list {
  display: grid;
  gap: 8px;
  margin-top: 0;
  padding: 0 24px 24px;
  border: 1px solid rgba(254, 254, 254, 0.08);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
}

.contact-layout--partner .feature-list span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-layout--partner .feature-list span.feature-list__item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(254, 254, 254, 0.13);
  border-radius: 12px;
  background: rgba(8, 10, 10, 0.34);
  color: var(--white);
}

.contact-layout--partner .feature-list__icon,
.contact-layout--partner .feature-list__arrow {
  color: var(--gold);
  font-weight: 700;
}

.contact-layout--partner .feature-list__text {
  color: rgba(254, 254, 254, 0.88);
}

.contact-form--partner {
  padding: clamp(22px, 2.2vw, 36px);
  border: 1px solid rgba(254, 254, 254, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.045), transparent 34%),
    rgba(10, 13, 14, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.cards-grid--services {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.catalog-empty {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.cards-grid--portfolio,
.cards-grid--journal,
.sourcing__grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.category-card,
.portfolio-card,
.journal-card,
.sourcing__card,
.process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.25));
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 260px;
  color: #fffddc;
  text-align: center;
}

.info-card::before,
.category-card::before,
.portfolio-card::before,
.journal-card::before,
.sourcing__card::before,
.process-grid article::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 254, 254, 0.08), transparent 68%);
}

.info-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 12, 11, 0.02), rgba(11, 12, 11, 0.34)),
    linear-gradient(90deg, rgba(11, 12, 11, 0.18), rgba(11, 12, 11, 0.03));
  pointer-events: none;
}

.info-card > *:not(.info-card__image) {
  position: relative;
  z-index: 2;
}

.info-card h3,
.portfolio-card h3,
.journal-card h3,
.sourcing__card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.info-card h3 {
  max-width: 92%;
  margin: 0;
  color: #fffddc;
  font-size: clamp(1.05rem, 1.08vw, 1.24rem);
  line-height: 1.18;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.info-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(254, 204, 3, 0.55);
  border-radius: 999px;
  color: #fecc03;
  font-weight: 700;
  background: rgba(11, 12, 11, 0.38);
  backdrop-filter: blur(10px);
}

.category-card {
  display: grid;
  place-items: start start;
  min-height: 260px;
  padding-top: 34px;
  isolation: isolate;
  background: #090a09;
}

.category-card span {
  position: relative;
  z-index: 2;
  color: #fffddc;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.category-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0), rgba(7, 8, 8, 0.24)),
    linear-gradient(90deg, rgba(7, 8, 8, 0.16), rgba(7, 8, 8, 0));
}

.split-panel {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.timeline__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(254, 254, 254, 0.03);
  color: var(--white);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.timeline__item:hover {
  border-color: rgba(254, 204, 3, 0.45);
  background: rgba(254, 254, 254, 0.055);
  transform: translateY(-2px);
}

.timeline__item p {
  margin: 0;
  color: rgba(254, 254, 254, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.private-label-infographic {
  padding-top: clamp(34px, 4vw, 70px);
  padding-bottom: clamp(34px, 4vw, 70px);
}

.private-label-infographic__title {
  margin: 0 0 clamp(22px, 3vw, 46px);
  width: 100%;
  max-width: none;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.65vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: wrap;
}

.private-label-infographic__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  align-items: start;
}

.private-label-infographic__image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(254, 204, 3, 0.28);
  border-radius: clamp(18px, 2vw, 34px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.timeline__item span,
.process-grid span {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
}

.sourcing__grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.sourcing__card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 0;
  border-radius: 28px;
  color: var(--white);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.sourcing__card:hover {
  border-color: rgba(254, 204, 3, 0.48);
  transform: translateY(-2px);
}

.sourcing__card-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1200 / 640;
  height: auto;
  object-fit: cover;
  border-radius: 28px;
}

.sourcing__card-content {
  position: relative;
  z-index: 2;
  padding: 24px 28px 30px;
}

.sourcing__card-content h3 {
  margin-bottom: 14px;
}

.sourcing-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: center;
}

.sourcing-detail__copy h1 {
  max-width: 820px;
}

.sourcing-detail__media {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(254, 204, 3, 0.42);
  border-radius: 22px;
  background: rgba(254, 254, 254, 0.03);
}

.sourcing-detail__media img,
.sourcing-detail__media .service-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.dealer-section {
  display: grid;
  gap: clamp(20px, 2.8vw, 44px);
}

.dealer-section__title {
  width: 100%;
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.95rem, 2.55vw, 3.1rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: normal;
}

.dealer-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.dealer-panel__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(15, 39, 75, 0.32), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

.dealer-panel__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.dealer-panel__copy {
  align-self: center;
}

.map-ring,
.map-dot {
  position: absolute;
}

.map-ring {
  inset: 50%;
  border: 1px solid rgba(254, 254, 254, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring--one {
  width: 280px;
  height: 280px;
}

.map-ring--two {
  width: 380px;
  height: 380px;
}

.map-ring--three {
  width: 500px;
  height: 500px;
}

.map-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(254, 204, 3, 0.7);
}

.map-dot--eu {
  top: 32%;
  left: 48%;
}

.map-dot--mena {
  top: 48%;
  left: 56%;
}

.map-dot--asia {
  top: 38%;
  left: 70%;
}

.map-dot--americas {
  top: 44%;
  left: 28%;
}

.portfolio-card,
.journal-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.portfolio-card,
.journal-card {
  color: inherit;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible,
.journal-card:hover,
.journal-card:focus-visible {
  border-color: rgba(254, 204, 3, 0.55);
  transform: translateY(-3px);
}

.portfolio-card:focus-visible,
.journal-card:focus-visible {
  outline: 2px solid rgba(254, 204, 3, 0.75);
  outline-offset: 4px;
}

.portfolio-card--image {
  min-height: 360px;
}

.portfolio-card__image,
.journal-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.portfolio-card--image::after,
.journal-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 12, 11, 0.08), rgba(11, 12, 11, 0.7)),
    linear-gradient(90deg, rgba(11, 12, 11, 0.35), rgba(11, 12, 11, 0.08));
  pointer-events: none;
}

.journal-card--image {
  min-height: 360px;
}

.portfolio-card > *:not(.portfolio-card__image),
.journal-card > *:not(.journal-card__image) {
  position: relative;
  z-index: 2;
}

.portfolio-card__link,
.journal-card__link,
.text-link {
  margin-top: 22px;
  color: var(--gold);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.logistics-banner {
  display: grid;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius);
}

.logistics-banner--image {
  padding: 0;
  overflow: hidden;
}

.logistics-banner__image {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 3;
  height: auto;
  object-fit: cover;
  border: 0;
  border-radius: inherit;
}

.logistics-banner p {
  max-width: 82ch;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
}

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

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

.field-grid__full {
  grid-column: 1 / -1;
}

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

.contact-form span {
  color: rgba(254, 254, 254, 0.82);
  font-size: 0.92rem;
}

.contact-form--partner span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.contact-form--partner input,
.contact-form--partner select,
.contact-form--partner textarea {
  min-height: 54px;
  border-color: rgba(254, 254, 254, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(5, 7, 8, 0.34);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form--partner textarea {
  min-height: 106px;
  resize: vertical;
}

.contact-form--partner input::placeholder,
.contact-form--partner textarea::placeholder {
  color: rgba(254, 254, 254, 0.43);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(254, 204, 3, 0.55);
  border-color: rgba(254, 204, 3, 0.55);
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-form--partner .checkbox-field {
  justify-self: center;
  gap: 10px;
  margin-top: -2px;
}

.contact-form--partner .checkbox-field span {
  color: rgba(254, 254, 254, 0.56);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.contact-form--partner .contact-form__submit {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(254, 204, 3, 0.62);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 236, 179, 0.82), rgba(165, 112, 36, 0.82)),
    var(--gold);
  color: #15120a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form--partner .contact-form__submit span {
  color: inherit;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.form-feedback {
  min-height: 1.5em;
  margin: 0;
  color: var(--gold);
}

.site-footer {
  width: var(--container);
  margin: 0 auto;
  padding: 30px 0 40px;
  color: rgba(254, 254, 254, 0.74);
  border-top: 1px solid var(--line);
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__top {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.site-footer__brandline {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__logo {
  display: block;
  height: 78px;
  width: auto;
  object-fit: contain;
}

.site-footer__tagline {
  margin: 0;
  max-width: 420px;
  color: rgba(254, 254, 254, 0.88);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer__social {
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__social--fallback {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-footer__social--image {
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
  color: var(--gold);
  transform: translateY(-2px);
}

.site-footer__social--fallback:hover,
.site-footer__social--fallback:focus-visible {
  border-color: rgba(254, 204, 3, 0.58);
  color: var(--gold);
}

.site-footer__socials svg,
.site-footer__socials img {
  display: block;
}

.site-footer__socials svg {
  width: 21px;
  height: 21px;
}

.site-footer__socials svg {
  fill: currentColor;
}

.site-footer__socials img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-footer__social--twitter_x.site-footer__social--image img {
  filter: brightness(0) invert(1);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(160px, 1fr));
  gap: 30px;
  align-items: start;
  padding: 34px 0 28px;
}

.site-footer__col {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.site-footer__col h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.site-footer__col p,
.site-footer__col a {
  margin: 0;
  color: rgba(254, 254, 254, 0.82);
  line-height: 1.55;
  font-size: 0.98rem;
  word-break: normal;
}

.site-footer__col--contact {
  padding-right: 10px;
}

.site-footer__legaltext {
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
}

.site-footer__legaltext p {
  margin: 0;
  color: rgba(254, 254, 254, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer__bottomlinks {
  display: flex;
  gap: 28px;
}

.section--inner {
  min-height: calc(100vh - 180px);
  padding-top: 70px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}

.breadcrumbs a {
  flex: 0 0 auto;
}

.breadcrumbs a:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
}

.content-page {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(254, 254, 254, 0.035);
  box-shadow: var(--shadow);
}

.content-page__title {
  margin-bottom: 18px;
  max-width: none;
  font-size: clamp(2.4rem, 3.7vw, 4rem);
  line-height: 1.04;
  white-space: normal;
}

.content-page__intro {
  max-width: 70ch;
  margin: 0 0 26px;
  color: rgba(254, 254, 254, 0.8);
  line-height: 1.75;
}

.content-body {
  color: rgba(254, 254, 254, 0.84);
  line-height: 1.8;
}

.content-body p {
  margin: 0 0 18px;
}

.representatives-page {
  display: grid;
  gap: 24px;
}

.representatives-page__lead {
  max-width: 72ch;
  margin: 0;
  color: rgba(254, 254, 254, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.65;
}

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

.representative-card,
.representatives-empty {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.representative-card {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.representative-card__country {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.representative-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 1.7vw, 1.9rem);
  line-height: 1.12;
}

.representative-card__section {
  display: grid;
  gap: 6px;
}

.representative-card__section span {
  color: rgba(254, 254, 254, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.representative-card__section p {
  margin: 0;
  color: rgba(254, 254, 254, 0.82);
  line-height: 1.6;
}

.representatives-empty {
  padding: 30px;
}

.representatives-empty h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.representatives-empty p {
  margin: 0;
  color: rgba(254, 254, 254, 0.74);
  line-height: 1.65;
}

.service-template {
  display: grid;
  gap: 22px;
  padding-top: 36px;
}

.service-template__top {
  display: block;
}

.service-template__breadcrumbs {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 8px;
  background: rgba(14, 16, 17, 0.68);
}

.service-template__breadcrumbs {
  align-content: center;
}

.service-block {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 88% 18%, rgba(254, 204, 3, 0.06), transparent 28%),
    linear-gradient(135deg, rgba(23, 27, 29, 0.76), rgba(14, 15, 13, 0.72));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.service-hero h1,
.service-block h2 {
  max-width: none;
  white-space: normal;
}

.service-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 3.55vw, 4.1rem);
  line-height: 1.02;
}

.service-hero h2 {
  margin-bottom: 22px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.12rem, 1.35vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.service-richtext {
  max-width: 66ch;
  color: rgba(254, 254, 254, 0.84);
  line-height: 1.65;
}

.service-richtext p {
  margin: 0 0 16px;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 28px;
  border: 1px solid rgba(254, 204, 3, 0.65);
  border-radius: 7px;
  color: var(--gold);
  font-weight: 700;
  background: rgba(11, 12, 11, 0.52);
}

.service-hero__media,
.service-result__media {
  margin: 0;
}

.service-hero__media img,
.service-result__media img,
.service-image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 300px;
  border: 1px solid rgba(212, 175, 55, 0.56);
  border-radius: 6px;
  background: rgba(254, 254, 254, 0.03);
}

.service-hero__media img {
  display: block;
  height: 300px;
  object-fit: cover;
}

.service-result__media img {
  display: block;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.service-image-placeholder svg,
.service-process__thumb svg {
  width: 112px;
  max-width: 45%;
  stroke: rgba(212, 175, 55, 0.72);
  fill: none;
  stroke-width: 1.6;
}

.service-hero__media figcaption,
.service-result__media figcaption {
  margin-top: 12px;
  color: rgba(254, 254, 254, 0.55);
  font-size: 0.84rem;
}

.service-block > h2,
.service-result h2,
.service-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1;
}

.service-process__list {
  display: grid;
  gap: 10px;
}

.service-process__item {
  display: grid;
  grid-template-columns: 74px minmax(420px, 1fr) minmax(220px, 300px);
  gap: 24px;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 8px;
  background: rgba(11, 12, 11, 0.35);
}

.service-process__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(254, 204, 3, 0.62);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-process__icon img {
  display: block;
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.service-process__item h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.service-process__copy {
  min-width: 0;
}

.service-process__copy p {
  max-width: none;
}

.service-process__item p,
.service-audience p,
.service-result p,
.service-cta p {
  margin: 0;
  color: rgba(254, 254, 254, 0.78);
  line-height: 1.58;
}

.service-process__thumb {
  display: grid;
  place-items: center;
  min-height: 78px;
  aspect-ratio: 15 / 4;
  overflow: hidden;
  border: 1px dashed rgba(212, 175, 55, 0.45);
  border-radius: 4px;
  background: rgba(254, 254, 254, 0.025);
}

.service-process__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.service-audience__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-audience__grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  text-align: center;
  background: rgba(11, 12, 11, 0.28);
}

.service-audience__grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(254, 204, 3, 0.65);
  border-radius: 10px;
  overflow: hidden;
}

.service-audience__grid span img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.service-result {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.service-result__media .service-image-placeholder {
  min-height: 220px;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-cta h2 {
  margin-bottom: 12px;
}

.product-items-section {
  margin-top: 32px;
}

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

.product-item-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(254, 254, 254, 0.18);
  border-radius: 34px;
  background: #11151b;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.product-item-card--featured {
  height: clamp(620px, 72vh, 760px);
  min-height: 0;
  transform: none;
}

.product-item-card--featured .product-item-card__content h1 {
  display: block;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 1.65vw, 2.05rem);
  line-height: 1;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-item-card--featured .product-item-card__content {
  inset: 38px auto auto 38px;
  width: calc(100% - 76px);
  max-height: calc(100% - 170px);
  padding: 0;
  overflow: hidden;
}

.product-item-card--featured .product-item-card__content p {
  display: none;
}

.product-item-card--featured .product-item-card__tags {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 126px;
  z-index: 4;
  gap: 8px;
  margin: 0;
}

.product-item-card--featured .product-item-card__tags span {
  padding: 7px 11px;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
}

.product-item-card--featured .product-item-card__button {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 88px;
  z-index: 4;
  width: auto;
  padding: 15px 18px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
}

.product-item-card__image,
.product-item-card__shade,
.product-item-card__overlay-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-item-card__image {
  object-fit: cover;
}

.product-item-card__shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 11, 15, 0.02) 22%, rgba(16, 24, 35, 0.2) 48%, rgba(23, 34, 50, 0.94) 100%),
    linear-gradient(90deg, rgba(8, 11, 15, 0.18), rgba(8, 11, 15, 0));
}

.product-item-card__overlay-link {
  z-index: 3;
  display: block;
}

.product-item-card__badge {
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 4;
  pointer-events: none;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.18);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.product-item-card__content {
  position: absolute;
  inset: 30px 0 auto;
  z-index: 4;
  padding: 24px 28px 0;
  color: #fff;
  pointer-events: none;
}

.product-item-card__content h3 {
  max-width: 100%;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1rem, 1.15vw, 1.42rem);
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-item-card__content p {
  display: -webkit-box;
  max-width: 32ch;
  margin: 0 0 18px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.45;
}

.product-item-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.product-item-card__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.product-item-card__button {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 96px;
  z-index: 5;
  display: block;
  width: auto;
  padding: 17px 20px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-size: 1.05rem;
  font-weight: 900;
  text-align: center;
  pointer-events: auto;
}

.product-item-card__activity {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 22px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1.55fr;
  align-items: center;
  min-height: 58px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  background: transparent;
}

.product-item-card__metric {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.product-item-card__metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  bottom: 5px;
  width: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.product-item-card__metric svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-item-card__metric[data-product-like] svg {
  fill: transparent;
}

.product-item-card__metric.is-active,
.product-item-card__metric.is-copied {
  color: #fecc03;
}

.product-item-card__metric.is-active svg {
  fill: currentColor;
}

.product-detail__layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(360px, 1.18fr);
  gap: 34px;
  align-items: stretch;
  max-height: clamp(620px, 72vh, 760px);
}

.product-detail__panel {
  display: flex;
  min-height: 0;
  max-height: clamp(620px, 72vh, 760px);
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(254, 204, 3, 0.08), transparent 34%),
    rgba(254, 254, 254, 0.035);
  box-shadow: var(--shadow);
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.product-detail__text {
  min-height: 0;
  overflow-y: auto;
  padding-right: 12px;
}

.product-detail__text::-webkit-scrollbar {
  width: 6px;
}

.product-detail__text::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(254, 204, 3, 0.45);
}

.product-detail__panel .button {
  flex: 0 0 auto;
  margin-top: 24px;
}

.quick-order-page {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.quick-order-page__info,
.quick-order-formpanel {
  display: grid;
  gap: 28px;
}

.quick-order-topcards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.quick-contact-card,
.quick-order-person,
.quick-order-formpanel {
  border: 1px solid rgba(126, 111, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(13, 14, 40, 0.98), rgba(12, 14, 34, 0.98));
  box-shadow: var(--shadow);
}

.quick-contact-card {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 30px 24px;
  color: inherit;
  text-align: center;
  text-decoration: none;
}

.quick-contact-card__icon {
  margin-bottom: 18px;
  font-size: 4.6rem;
  line-height: 1;
  background: linear-gradient(135deg, #16c7ff, #d424ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quick-contact-card__value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.quick-order-person {
  padding: 30px;
}

.quick-order-person__title,
.quick-order-formpanel__header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.06;
  letter-spacing: 0;
}

.quick-order-person__title {
  max-width: none;
  font-size: clamp(2.35rem, 3.6vw, 4.1rem);
}

.quick-order-person__line {
  height: 1px;
  margin: 30px 0 28px;
  background: rgba(255, 255, 255, 0.12);
}

.quick-order-person__label {
  margin: 0 0 18px;
  color: rgba(254, 254, 254, 0.86);
  font-size: 1.2rem;
  font-weight: 700;
}

.quick-order-person__profile {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 22px;
  align-items: center;
}

.quick-order-person__avatar {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #cfd8ff);
  color: #101427;
  font-size: 2rem;
  font-weight: 800;
}

.quick-order-person__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-order-person__name {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
}

.quick-order-person__role {
  margin: 0;
  color: rgba(254, 254, 254, 0.84);
  font-size: 1.2rem;
}

.quick-order-person__messengers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.messenger-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 72px;
  border-radius: 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.messenger-button--telegram {
  background: linear-gradient(135deg, #315fe2, #4e81ff);
}

.messenger-button--viber {
  background: linear-gradient(135deg, #6d2fd9, #9147ff);
}

.messenger-button--whatsapp {
  background: linear-gradient(135deg, #08b80d, #17d61d);
}

.quick-order-formpanel {
  padding: 34px;
}

.quick-order-formpanel__header h2 {
  font-size: clamp(2.35rem, 3.4vw, 4rem);
}

.quick-order-formpanel__header p {
  margin: 22px 0 0;
  color: rgba(254, 254, 254, 0.9);
  font-size: 1.2rem;
  font-weight: 700;
}

.quick-order-form .field-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quick-order-form .field-grid label:first-child {
  max-width: 380px;
}

.quick-order-form input,
.quick-order-form select,
.quick-order-form textarea {
  border-radius: 22px;
  background: #f7f7f5;
  color: #111;
  border-color: rgba(255, 255, 255, 0.12);
  padding: 20px 22px;
}

.quick-order-form textarea {
  min-height: 210px;
}

.quick-order-form span {
  color: rgba(254, 254, 254, 0.92);
  font-size: 0.98rem;
}

.quick-order-form .checkbox-field span {
  color: rgba(254, 254, 254, 0.76);
}

.quick-order-form__submit {
  min-width: 320px;
  min-height: 64px;
  border-radius: 14px;
  background: linear-gradient(90deg, #8f7eff, #4d63ff);
  color: #fff;
}

.contact-page-shell {
  margin-top: -34px;
  padding-top: 0;
  padding-bottom: 34px;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(34px, 5vw, 92px);
  padding: clamp(20px, 2.5vw, 34px) 0 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 98% 6%, rgba(212, 175, 55, 0.1), transparent 25%),
    radial-gradient(circle at 0% 82%, rgba(212, 175, 55, 0.13), transparent 32%);
}

.contact-page--directory {
  align-items: start;
}

.contact-page__left,
.contact-page__right,
.contact-page-group {
  display: grid;
  align-content: start;
}

.contact-page__left {
  gap: 24px;
}

.contact-page__left h1,
.contact-page-group h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  letter-spacing: 0;
}

.contact-page__left h1 {
  font-size: clamp(4.2rem, 6.3vw, 7.5rem);
  line-height: 0.88;
}

.contact-page-group h2 {
  font-size: clamp(2.5rem, 3.2vw, 4rem);
  line-height: 0.95;
}

.contact-page__divider {
  position: relative;
  width: 190px;
  height: 1px;
  background: rgba(212, 175, 55, 0.72);
}

.contact-page__divider::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 9px;
  height: 9px;
  background: #f3c878;
  transform: translateY(-50%) rotate(45deg);
}

.contact-page__left > p {
  max-width: 440px;
  margin: 0;
  color: rgba(254, 254, 254, 0.72);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  line-height: 1.65;
}

.contact-page__contact-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.contact-line-card,
.contact-channel,
.contact-social,
.contact-page__bottom {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(10, 13, 14, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.contact-line-card {
  display: grid;
  grid-template-columns: 58px 1fr 32px;
  gap: 18px;
  align-items: center;
  min-height: 106px;
  padding: 18px 24px;
  color: var(--white);
  text-decoration: none;
}

.contact-line-card__icon,
.contact-info-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  color: #f3c878;
  background: rgba(212, 175, 55, 0.06);
}

.contact-line-card__icon svg,
.contact-info-card__icon svg,
.contact-channel__icon svg,
.contact-social span svg {
  width: 60%;
  height: 60%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-line-card__body {
  display: grid;
  gap: 8px;
}

.contact-line-card__body > span,
.contact-info-card h3 {
  color: #f3c878;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-line-card strong {
  font-size: clamp(1.25rem, 1.45vw, 1.7rem);
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-line-card__arrow {
  color: #f3c878;
  font-size: 1.4rem;
}

.contact-page__right {
  gap: 42px;
}

.contact-page-group {
  gap: 22px;
}

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

.contact-channel {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 220px;
  padding: 28px 18px 22px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
}

.contact-channel__icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 2px;
}

.contact-channel__icon svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.7;
}

.contact-channel--telegram .contact-channel__icon {
  color: #2fb5ff;
  filter: drop-shadow(0 0 18px rgba(47, 181, 255, 0.34));
}

.contact-channel--viber .contact-channel__icon {
  color: #a667ff;
  filter: drop-shadow(0 0 18px rgba(166, 103, 255, 0.34));
}

.contact-channel--whatsapp .contact-channel__icon {
  color: #69ee5e;
  filter: drop-shadow(0 0 18px rgba(105, 238, 94, 0.34));
}

.contact-channel strong {
  color: currentColor;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-channel > span:not(.contact-channel__icon) {
  color: rgba(254, 254, 254, 0.68);
}

.contact-channel em {
  color: #f3c878;
  font-style: normal;
  font-size: 1.35rem;
}

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

.contact-social {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-height: 136px;
  padding: 22px 12px;
  color: var(--white);
  text-align: center;
  text-decoration: none;
}

.contact-social span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.contact-social span svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.8;
}

.contact-social strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-social--instagram span {
  color: #ff7a45;
}

.contact-social--linkedin span,
.contact-social--facebook span {
  color: #4aa8ff;
}

.contact-social--youtube span {
  color: #ff4b58;
}

.contact-page__bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  padding: 30px 34px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 0 34px;
}

.contact-info-card + .contact-info-card {
  border-left: 1px solid rgba(212, 175, 55, 0.28);
}

.contact-info-card:first-child {
  padding-left: 0;
}

.contact-info-card:last-child {
  padding-right: 0;
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
}

.contact-info-card h3 {
  margin: 0 0 10px;
}

.contact-info-card p {
  margin: 0;
  color: rgba(254, 254, 254, 0.72);
  line-height: 1.65;
}

.quick-order-shell {
  margin-top: -42px;
  padding-top: 0;
  padding-bottom: 24px;
  min-height: calc(100vh - 118px);
}

.quick-order-shell .breadcrumbs {
  display: none;
}

.quick-order-page {
  grid-template-columns: minmax(320px, 0.66fr) minmax(560px, 1.34fr);
  gap: clamp(18px, 2vw, 32px);
  align-items: stretch;
  padding: clamp(16px, 1.6vw, 26px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(212, 175, 55, 0.16), transparent 27%),
    linear-gradient(135deg, rgba(19, 24, 26, 0.94), rgba(8, 10, 10, 0.97));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
}

.quick-order-page__info,
.quick-order-formpanel {
  gap: 14px;
}

.quick-order-page__info {
  align-content: start;
  grid-auto-rows: max-content;
}

.quick-order-topcards {
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 430px;
}

.quick-contact-card,
.quick-order-person,
.quick-order-formpanel {
  border-color: rgba(212, 175, 55, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at center top, rgba(255, 255, 255, 0.045), transparent 40%),
    rgba(10, 13, 14, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.quick-contact-card {
  grid-template-columns: 34px 1fr 16px;
  column-gap: 12px;
  place-items: center start;
  min-height: 64px;
  padding: 11px 16px;
  text-align: left;
}

.quick-contact-card::after {
  content: "›";
  color: #f3c878;
  font-size: 1.4rem;
  line-height: 1;
}

.quick-contact-card__icon {
  grid-row: auto;
  margin-bottom: 0;
  color: #f3c878;
  background: none;
  width: 28px;
  height: 28px;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.quick-contact-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact-card:nth-child(2) .quick-contact-card__icon svg path:last-child {
  fill: currentColor;
  stroke-width: 0;
}

.quick-contact-card__label {
  align-self: end;
  margin: 0;
  color: rgba(254, 254, 254, 0.72);
  font-size: 0.78rem;
}

.quick-contact-card__value {
  grid-column: 2;
  align-self: start;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-order-person {
  padding: 18px;
}

.quick-order-person__title {
  max-width: none;
  font-size: clamp(0.98rem, 1.05vw, 1.18rem);
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-order-person__line {
  margin: 14px 0 12px;
  background: rgba(212, 175, 55, 0.55);
}

.quick-order-person__label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.84rem;
}

.quick-order-person__profile {
  grid-template-columns: 58px 1fr;
  gap: 12px;
}

.quick-order-person__avatar {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255, 255, 255, 0.04));
  color: #f3c878;
  font-size: 1.2rem;
}

.quick-order-person__name {
  font-size: clamp(1.05rem, 1.25vw, 1.45rem);
  line-height: 1.05;
}

.quick-order-person__role {
  font-size: 0.82rem;
  line-height: 1.45;
}

.quick-order-person__messengers {
  gap: 8px;
  margin-top: 14px;
}

.messenger-button {
  min-height: 42px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
}

.messenger-button--telegram {
  background: linear-gradient(135deg, rgba(27, 148, 220, 0.22), rgba(255, 255, 255, 0.035));
}

.messenger-button--viber {
  background: linear-gradient(135deg, rgba(115, 55, 210, 0.22), rgba(255, 255, 255, 0.035));
}

.messenger-button--whatsapp {
  background: linear-gradient(135deg, rgba(28, 190, 75, 0.22), rgba(255, 255, 255, 0.035));
}

.quick-order-formpanel {
  align-content: start;
  padding: clamp(18px, 1.65vw, 28px);
}

.quick-order-formpanel__header h2 {
  font-size: clamp(1.75rem, 2.25vw, 2.8rem);
}

.quick-order-formpanel__header p {
  max-width: 56ch;
  margin-top: 8px;
  color: rgba(254, 254, 254, 0.86);
  font-size: clamp(0.86rem, 0.95vw, 1rem);
  line-height: 1.45;
}

.quick-order-form .field-grid {
  gap: 9px 14px;
}

.quick-order-form .field-grid label:first-child {
  max-width: none;
}

.quick-order-form label {
  gap: 6px;
}

.quick-order-form span {
  color: #f3c878;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-order-form input,
.quick-order-form select,
.quick-order-form textarea {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(5, 7, 8, 0.34);
  color: var(--white);
}

.quick-order-form input::placeholder,
.quick-order-form textarea::placeholder {
  color: rgba(254, 254, 254, 0.44);
}

.quick-order-form textarea {
  min-height: clamp(66px, 7vh, 84px);
  resize: vertical;
}

.quick-order-form .checkbox-field {
  gap: 12px;
  align-items: start;
}

.quick-order-form .checkbox-field span {
  color: rgba(254, 254, 254, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.quick-order-form__submit {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(254, 204, 3, 0.62);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 236, 179, 0.82), rgba(165, 112, 36, 0.82)),
    var(--gold);
  color: #15120a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-order-form__submit span {
  color: inherit;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.footer-note {
  margin: 0;
}

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

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

@media (max-width: 1180px) {
  .cards-grid--services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero__feature-panel {
    max-width: 560px;
    justify-self: end;
  }

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

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

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

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-block;
    z-index: 40;
  }

  .site-nav {
    position: fixed;
    inset: 84px 20px auto;
    display: grid;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(11, 12, 11, 0.96);
    transform: scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav__links,
  .site-nav__actions {
    display: grid;
    gap: 14px;
  }

  .site-nav__actions {
    justify-items: start;
  }

  .language-switcher__menu {
    left: 0;
    right: auto;
  }

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

  .section-heading :is(h1, h2) {
    white-space: normal;
  }

  .dealer-section__title {
    white-space: normal;
  }

  .intro-grid,
  .split-panel,
  .dealer-panel,
  .contact-layout,
  .product-detail__layout,
  .service-template__top,
  .service-hero,
  .service-result,
  .sourcing-detail__hero,
  .cards-grid--portfolio,
  .cards-grid--journal,
  .sourcing__grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .dealer-panel__map {
    aspect-ratio: 1 / 1;
  }

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

  .field-grid,
  .timeline,
  .representatives-grid,
  .service-audience__grid,
  .private-label-infographic__grid {
    grid-template-columns: 1fr;
  }

  .service-process__item {
    grid-template-columns: 64px 1fr;
  }

  .service-process__thumb {
    grid-column: 1 / -1;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero__stats article,
  .hero__stats article:nth-child(2),
  .hero__stats article:nth-child(3) {
    grid-template-columns: 64px 1fr;
    padding: 0;
    border-right: 0;
  }

  .site-footer {
    padding-top: 24px;
  }

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

  .site-footer__top,
  .site-footer__bottom,
  .site-footer__brandline {
    flex-direction: column;
    align-items: flex-start;
  }

  .quick-order-page,
  .contact-page,
  .contact-messenger-grid,
  .contact-page__bottom,
  .quick-order-topcards,
  .quick-order-person__messengers {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-info-card:first-child,
  .contact-info-card:last-child {
    padding: 22px 0;
  }

  .contact-info-card + .contact-info-card {
    border-top: 1px solid rgba(212, 175, 55, 0.28);
    border-left: 0;
  }

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

  .quick-order-form .field-grid label:first-child {
    max-width: none;
  }

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

  .product-item-card {
    min-height: 480px;
  }

  .product-item-card--featured {
    height: clamp(560px, 82vh, 700px);
  }

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

  .sourcing-detail__media,
  .sourcing-detail__media img,
  .sourcing-detail__media .service-image-placeholder {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  :root {
    --anchor-offset: 108px;
  }

  .site-shell {
    padding-top: 92px;
  }

  .section {
    padding: 24px 0 84px;
  }

  .hero {
    min-height: auto;
    padding: 26px 16px 16px;
  }

  .brand__logo {
    height: 48px;
  }

  .hero__copy,
  .intro-grid,
  .split-panel,
  .dealer-panel,
  .contact-layout,
  .contact-page,
  .logistics-banner {
    padding: 24px;
  }

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

  .contact-page__bottom {
    padding: 18px 22px;
  }

  .contact-line-card {
    grid-template-columns: 48px 1fr 24px;
    padding: 16px;
  }

  .contact-line-card__icon {
    width: 48px;
    height: 48px;
  }

  .logistics-banner--image {
    padding: 0;
  }

  .hero__copy {
    padding: 10px 0;
  }

  .service-block {
    padding: 22px;
  }

  .service-template__note {
    display: none;
  }

  .service-process__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-process__icon {
    width: 48px;
    height: 48px;
  }

  .hero__feature-panel,
  .hero__benefits {
    padding: 24px 20px;
  }

  .hero__feature {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .hero__feature-icon {
    width: 64px;
    height: 64px;
  }

  .hero__stat-icon {
    width: 60px;
    height: 60px;
  }

  .quick-contact-card,
  .quick-order-person,
  .quick-order-formpanel {
    padding: 24px;
  }

  .quick-order-person__profile {
    grid-template-columns: 1fr;
  }

  .quick-order-formpanel__header h2,
  .quick-order-person__title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .quick-order-form__submit {
    min-width: 100%;
  }

  .cards-grid--services,
  .cards-grid--categories {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottomlinks {
    flex-direction: column;
    gap: 12px;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 3.3rem);
    white-space: normal;
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__topline {
    margin-bottom: 18px;
  }

  .hero__lede {
    font-size: 0.95rem;
  }
}
