:root {
  --ink: #171514;
  --paper: #f7f8fa;
  --white: #fff;
  --stone: #dfe3e8;
  --warm: #a07b5b;
  --line: rgba(23, 21, 20, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Helvetica Neue", Arial, sans-serif; }
body.order-open { overflow: hidden; }
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.maintenance-page { display: none; }
.maintenance-active,
.maintenance-active body { min-height: 100%; background: #f5f5f2; }
.maintenance-active body { overflow: auto; }
.maintenance-active body > :not(.maintenance-page):not(script) { display: none !important; }
.maintenance-active .maintenance-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: #171514;
  background: #f5f5f2;
}
.maintenance-header,
.maintenance-footer {
  min-height: 86px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.maintenance-header { border-bottom: 1px solid rgba(23,21,20,.15); }
.maintenance-header img { width: clamp(190px, 17vw, 270px); height: auto; }
.maintenance-header > span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #5e5954;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.maintenance-header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #171514;
  animation: maintenancePulse 1.8s ease-in-out infinite;
}
.maintenance-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(620px, 1.5fr);
}
.maintenance-copy {
  padding: clamp(56px, 8vh, 110px) clamp(30px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(23,21,20,.15);
}
.maintenance-eyebrow {
  margin-bottom: clamp(30px, 6vh, 68px);
  color: #77716c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}
.maintenance-copy h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(54px, 6.1vw, 112px);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .9;
}
.maintenance-copy > p {
  max-width: 590px;
  margin: clamp(34px, 5vh, 60px) 0 0;
  color: #68615c;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.55;
}
.maintenance-status {
  margin-top: clamp(38px, 7vh, 78px);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(23,21,20,.2);
  font-size: 11px;
}
.maintenance-status strong { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.maintenance-status a { color: #6b655f; }
.maintenance-status a:hover { color: #171514; }
.maintenance-gallery {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 1px;
  overflow: hidden;
  background: rgba(23,21,20,.18);
}
.maintenance-gallery figure {
  min-width: 0;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #d8d8d5;
}
.maintenance-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0,0,0,.55));
}
.maintenance-gallery img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.78);
  transform: scale(1.015);
  transition: filter .6s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.maintenance-gallery figure:hover img { filter: saturate(1); transform: scale(1.045); }
.maintenance-gallery figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 25px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.maintenance-gallery figcaption span { color: rgba(255,255,255,.62); }
.maintenance-footer {
  min-height: 54px;
  border-top: 1px solid rgba(23,21,20,.15);
  color: #77716c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
@keyframes maintenancePulse {
  0%, 100% { opacity: .32; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}
@media (max-width: 980px) {
  .maintenance-layout { grid-template-columns: 1fr; }
  .maintenance-copy { min-height: 56svh; border-right: 0; border-bottom: 1px solid rgba(23,21,20,.15); }
  .maintenance-gallery { min-height: 44svh; }
}
@media (max-width: 680px) {
  .maintenance-header { min-height: 76px; padding-inline: 18px; }
  .maintenance-header img { width: 148px; }
  .maintenance-header > span { font-size: 7px; letter-spacing: .11em; }
  .maintenance-copy { min-height: auto; padding: 64px 20px 56px; }
  .maintenance-eyebrow { margin-bottom: 34px; font-size: 7px; }
  .maintenance-copy h1 { font-size: clamp(50px, 15.5vw, 70px); }
  .maintenance-copy > p { margin-top: 30px; font-size: 15px; }
  .maintenance-status { margin-top: 42px; flex-direction: column; gap: 13px; }
  .maintenance-gallery { min-height: 360px; grid-template-columns: 1.2fr .9fr .9fr; }
  .maintenance-gallery figcaption { right: 12px; bottom: 14px; left: 12px; font-size: 7px; }
  .maintenance-gallery figcaption span { display: none; }
  .maintenance-footer { min-height: 64px; padding: 14px 18px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; font-size: 7px; }
}
@media (prefers-reduced-motion: reduce) {
  .maintenance-header i { animation: none; opacity: 1; }
  .maintenance-gallery img { transition: none; }
}
[hidden] { display: none !important; }

.topline {
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: rgba(255,255,255,.7);
  font-size: 9px;
  letter-spacing: .23em;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 82px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: 0 30px;
  background: rgba(247,248,250,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.global-logo { display: block; width: 184px; }
.global-logo img { width: 100%; height: auto; }
.global-nav { display: flex; justify-content: center; align-items: center; gap: 32px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.global-nav > a, .global-mega-toggle { position: relative; min-height: 82px; display: inline-flex; align-items: center; border: 0; padding: 0; background: none; color: inherit; font: inherit; text-transform: inherit; letter-spacing: inherit; cursor: pointer; }
.global-nav > a::after, .global-mega-toggle::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 23px; height: 1px; background: currentColor; transition: right .5s var(--ease); }
.global-nav > a:hover::after, .global-nav > a:focus-visible::after, .global-mega-shell:hover .global-mega-toggle::after, .global-mega-shell:focus-within .global-mega-toggle::after { right: 0; }
.global-mega-shell { position: static; }
.global-mega {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(250px, .9fr);
  gap: 0;
  padding: 36px max(30px, 5vw);
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(23,21,20,.12);
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .4s var(--ease), visibility .3s;
}
.global-mega-shell:hover .global-mega, .global-mega-shell:focus-within .global-mega, .global-header.is-mega-open .global-mega { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.global-mega > div { display: flex; flex-direction: column; gap: 13px; min-height: 170px; padding: 3px 30px; border-right: 1px solid var(--line); }
.global-mega > div:first-child { padding-left: 0; }
.global-mega span { margin-bottom: 11px; color: #817a73; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.global-mega a { width: fit-content; font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.global-mega a:hover { text-decoration: underline; text-underline-offset: 5px; }
.global-mega aside { position: relative; isolation: isolate; min-height: 170px; overflow: hidden; color: white; background: rgba(23,21,20,.76); }
.global-mega-visual__media { position: absolute; z-index: -2; inset: 0; }
.global-mega-visual__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(12,11,11,.38), rgba(12,11,11,.12)); }
.global-mega-visual__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: saturate(.94) contrast(1.02) brightness(1.08); transform: scale(1.035); transition: opacity .8s ease, transform 5s var(--ease); }
.global-mega-visual__media img.is-active { opacity: 1; transform: scale(1); }
.global-mega-visual__content { min-height: 100%; padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; background: rgba(23,21,20,.08); backdrop-filter: blur(.5px); }
.global-mega aside strong { font-size: 24px; line-height: 1; letter-spacing: -.04em; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.global-mega aside p { margin: 15px 0 20px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.55; }
.global-mega aside a, .global-mega aside button { border: 0; padding: 10px 12px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 9px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: .14em; cursor: pointer; }
.global-mega [data-mega-brand] { transition: background .3s ease; }
.global-mega [data-mega-brand]:hover, .global-mega [data-mega-brand]:focus-within { background: rgba(255,255,255,.58); }
.global-menu-toggle { display: none; border: 0; padding: 10px 0; background: none; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; cursor: pointer; }

.order-trigger {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  cursor: pointer;
}
.order-trigger span { display: grid; place-items: center; min-width: 30px; height: 30px; border: 1px solid var(--ink); border-radius: 50%; }

.portal-language {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.portal-language button {
  min-width: 32px;
  height: 30px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #777;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .11em;
  cursor: pointer;
}
.portal-language button:last-child { border-right: 0; }
.portal-language button:hover, .portal-language button.is-active { background: var(--ink); color: var(--white); }

.hero {
  min-height: calc(100svh - 108px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-film__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: #0d0c0c;
}
.hero-film__video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  filter: saturate(.9) contrast(1.04);
  transform: scale(1.045);
  transition: opacity 1.05s ease, transform 3.8s var(--ease);
  pointer-events: none;
}
.hero-film__video.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}
.hero-film__video--alfred { object-position: center 43%; }
.hero-film__video--balmain { object-position: center 48%; }
.hero-film__video--silhouette { object-position: center; }
.hero-film__veil {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,11,11,.9) 0%, rgba(12,11,11,.65) 38%, rgba(12,11,11,.12) 72%),
    linear-gradient(180deg, rgba(12,11,11,.16) 40%, rgba(12,11,11,.72) 100%);
  pointer-events: none;
}
.hero-copy {
  min-height: calc(100svh - 108px);
  position: relative;
  z-index: 4;
  width: min(780px, 68vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(62px, 7vw, 116px) clamp(30px, 6vw, 102px) 145px;
}
.eyebrow { display: block; margin-bottom: 22px; font-size: 9px; font-weight: 700; letter-spacing: .28em; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(58px, 5.2vw, 100px); line-height: .86; letter-spacing: -.07em; font-weight: 500; }
.hero-copy > p { max-width: 530px; margin: 42px 0 0; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; cursor: pointer; }
.button-light { background: var(--white); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.text-action { border: 0; padding: 0; background: none; color: inherit; font-size: 11px; font-weight: 700; cursor: pointer; }
.text-action span { display: inline-block; margin-left: 12px; transition: transform .35s var(--ease); }
.text-action:hover span { transform: translateX(6px); }

.hero-film__brands {
  width: min(680px, calc(100vw - 460px));
  min-height: 92px;
  position: absolute;
  z-index: 5;
  right: 230px;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.28);
  border-left: 1px solid rgba(255,255,255,.28);
  background: rgba(13,12,12,.58);
  backdrop-filter: blur(15px);
}
.hero-film__brands > a {
  min-width: 0;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px 12px;
  align-content: center;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.2);
  padding: 20px 23px;
  overflow: hidden;
  background: transparent;
  color: rgba(255,255,255,.62);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: background-color .45s ease, color .45s ease;
}
.hero-film__brands > a:last-child { border-right: 0; }
.hero-film__brands > a > span {
  grid-row: 1 / 3;
  align-self: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}
.hero-film__brands > a b { align-self: end; color: inherit; font-size: 13px; letter-spacing: -.01em; }
.hero-film__brands > a small { align-self: start; font-size: 7px; text-transform: uppercase; letter-spacing: .16em; }
.hero-film__brands > a i {
  height: 2px;
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  background: currentColor;
}
.hero-film__brands > a:hover,
.hero-film__brands > a:focus-visible { color: white; }
.hero-film__brands > a.is-active {
  background: rgba(255,255,255,.96);
  color: var(--ink);
}
.hero-film__brands > a.is-active i {
  animation: heroFilmProgress 5s linear forwards;
}
@keyframes heroFilmProgress { to { right: 0; } }

.brand-marquee { overflow: hidden; padding: 10px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.marquee-loop { width: max-content; display: flex; animation: marquee 30s linear infinite; }
.marquee-sequence { flex: none; display: flex; align-items: center; gap: 52px; padding-right: 52px; }
.marquee-brand-pair {
  width: 430px;
  height: 70px;
  flex: none;
  display: grid;
  grid-template-columns: 218px 1fr;
  align-items: center;
  gap: 25px;
  overflow: hidden;
  transition: opacity .3s ease, transform .45s var(--ease);
}
.marquee-frame-image { width: 210px; height: 64px; object-fit: contain; mix-blend-mode: multiply; }
.marquee-brand-pair-balmain .marquee-frame-image { transform: scale(1.16); }
.marquee-brand-logo { width: 168px; max-height: 48px; object-fit: contain; }
.marquee-brand-logo-silhouette { width: 176px; }
.marquee-brand-pair:hover { opacity: .65; transform: scale(1.025); }
.brand-marquee:hover .marquee-loop { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.brand-product-showcases { padding: clamp(80px, 10vw, 150px) max(24px, 5vw); background: #f1f3f5; border-bottom: 1px solid var(--line); }
.product-showcases-heading { display: grid; grid-template-columns: .55fr 1.2fr .75fr; gap: 45px; align-items: start; margin-bottom: 66px; }
.product-showcases-heading .eyebrow { margin-top: 12px; }
.product-showcases-heading h2 { margin: 0; max-width: 760px; font-size: clamp(44px, 5.2vw, 82px); line-height: .9; letter-spacing: -.065em; font-weight: 500; }
.product-showcases-heading p { max-width: 430px; margin: 12px 0 0; color: #6d6762; font-size: 14px; line-height: 1.7; }
.product-brand-row { display: block; padding: 0; border-top: 1px solid var(--line); }
.product-brand-row + .product-brand-row { margin-top: clamp(84px, 10vw, 160px); }
.product-brand-row-alfred { --brand-campaign: url("assets/campaign-alfred.webp"); --brand-position: center; }
.product-brand-row-balmain { --brand-campaign: url("assets/campaign-balmain.webp"); --brand-position: center; }
.product-brand-row-silhouette { --brand-campaign: url("assets/campaign-silhouette.webp"); --brand-position: center; }
.product-brand-intro { position: relative; isolation: isolate; min-height: clamp(520px, 50vw, 760px); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: clamp(36px, 5vw, 78px); color: white; }
.product-brand-intro::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: var(--brand-campaign); background-position: var(--brand-position); background-size: cover; transform: scale(1.01); transition: transform 1.1s var(--ease); }
.product-brand-intro::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(20,18,17,.76) 0%, rgba(20,18,17,.38) 42%, rgba(20,18,17,.04) 72%), linear-gradient(180deg, rgba(20,18,17,.04) 36%, rgba(20,18,17,.76) 100%); }
.product-brand-row:hover .product-brand-intro::before { transform: scale(1.045); }
.product-brand-intro > span { color: rgba(255,255,255,.74); font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.product-brand-intro h3 { max-width: 820px; margin: 20px 0 26px; font-size: clamp(58px, 8vw, 126px); line-height: .84; letter-spacing: -.07em; font-weight: 500; }
.product-brand-intro p { max-width: 360px; margin: 0 0 34px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.65; }
.product-brand-intro a { display: inline-flex; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.product-brand-intro a span { transition: transform .35s var(--ease); }
.product-brand-intro a:hover span { transform: translateX(6px); }
.product-brand-row-silhouette .product-brand-intro { color: var(--ink); }
.product-brand-row-silhouette .product-brand-intro::after { background: linear-gradient(90deg, rgba(247,248,250,.98) 0%, rgba(247,248,250,.9) 34%, rgba(247,248,250,.16) 65%), linear-gradient(180deg, rgba(247,248,250,0) 50%, rgba(247,248,250,.82) 100%); }
.product-brand-row-silhouette .product-brand-intro > span { color: rgba(23,21,20,.62); }
.product-brand-row-silhouette .product-brand-intro p { color: rgba(23,21,20,.72); }
.product-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.product-carousel { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.product-carousel .product-preview-grid { display: flex; width: 100%; border-top: 0; transition: transform .75s var(--ease); }
.product-carousel .product-preview { flex: 0 0 33.333333%; }
.product-carousel-controls { display: flex; align-items: center; justify-content: flex-end; gap: 12px; padding: 18px 0 0; }
.product-carousel-controls button { width: 46px; height: 46px; border: 1px solid var(--line); background: white; cursor: pointer; font-size: 18px; }
.product-carousel-controls button:disabled { opacity: .3; cursor: not-allowed; }
.product-carousel-controls span { min-width: 82px; color: #77716d; font-size: 9px; text-align: center; letter-spacing: .12em; }
.product-carousel-controls a { min-height: 46px; display: inline-flex; align-items: center; margin-left: 12px; padding: 0 20px; border: 1px solid var(--ink); background: var(--ink); color: white; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.product-preview { min-width: 0; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-preview-media { position: relative; display: block; height: clamp(250px, 24vw, 390px); overflow: hidden; background: white; }
.product-preview-media::after { content: "ACERCAR"; position: absolute; top: 14px; right: 14px; padding: 7px 8px; background: rgba(255,255,255,.88); font-size: 7px; font-weight: 700; letter-spacing: .15em; opacity: 0; transform: translateY(-4px); transition: opacity .3s ease, transform .3s ease; }
.product-preview-media img { width: 100%; height: 100%; object-fit: contain; transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%); transition: transform .75s var(--ease); }
.product-preview:hover .product-preview-media img { transform: scale(1.42); }
.product-preview:hover .product-preview-media::after { opacity: 1; transform: translateY(0); }
.product-preview-copy { display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; padding: 18px; border-top: 1px solid var(--line); }
.product-preview-copy b { font-size: 14px; }
.product-preview-copy small { color: #7d7670; font-size: 8px; text-align: right; text-transform: uppercase; letter-spacing: .1em; }
.product-brand-row-balmain .product-preview-media { background: #f5f3f0; }
.product-brand-row-silhouette .product-preview-media { background: #fafafa; }

.silhouette-home-feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: clamp(620px, 62vw, 900px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f8fa;
}
.silhouette-home-feature__campaign {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: white;
}
.silhouette-home-feature__campaign::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(255, 255, 255, .78));
  pointer-events: none;
}
.silhouette-home-feature__campaign > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3vw, 48px);
  background: white;
  transition: transform 1.1s var(--ease);
}
.silhouette-home-feature__campaign:hover > img { transform: scale(1.035); }
.silhouette-home-feature__campaign > span {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 58px);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}
.silhouette-home-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 96px);
}
.silhouette-home-feature__content h2 {
  max-width: 720px;
  margin: 22px 0 28px;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.07em;
}
.silhouette-home-feature__content > p {
  max-width: 520px;
  margin: 0;
  color: #62666d;
  font-size: 14px;
  line-height: 1.75;
}
.silhouette-home-feature__action {
  align-self: flex-start;
  display: inline-flex;
  gap: 20px;
  margin-top: 34px;
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.silhouette-home-feature__action span { transition: transform .35s var(--ease); }
.silhouette-home-feature__action:hover span { transform: translateX(6px); }
.silhouette-home-feature__product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-top: clamp(44px, 6vw, 88px);
  padding-top: 22px;
  border-top: 1px solid #dfe2e7;
}
.silhouette-home-feature__product > img {
  width: 100%;
  height: clamp(150px, 17vw, 260px);
  object-fit: contain;
  object-position: left center;
  transition: transform .7s var(--ease);
}
.silhouette-home-feature__product:hover > img { transform: scale(1.04); }
.silhouette-home-feature__product > span { display: grid; gap: 7px; padding-bottom: 14px; text-align: right; }
.silhouette-home-feature__product b { font-size: 14px; }
.silhouette-home-feature__product small { color: #747981; font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }

.focus-showcase { padding: clamp(74px, 8vw, 128px) max(24px, 5vw); background: white; border-bottom: 1px solid var(--line); }
.focus-showcase > header { display: grid; grid-template-columns: .55fr 1.2fr .75fr; gap: 45px; align-items: start; margin-bottom: 48px; }
.focus-showcase > header .eyebrow { margin-top: 8px; }
.focus-showcase h2 { margin: 0; max-width: 760px; font-size: clamp(43px, 5vw, 76px); line-height: .92; letter-spacing: -.065em; font-weight: 500; }
.focus-showcase > header p { max-width: 440px; margin: 8px 0 0; color: #706a65; font-size: 13px; line-height: 1.65; }
.focus-track { height: min(58vw, 610px); min-height: 470px; display: flex; gap: 12px; overflow: hidden; }
.focus-card { position: relative; flex: 1; min-width: 0; overflow: hidden; border: 1px solid var(--line); padding: 0; background: #fafafa; color: inherit; cursor: pointer; transition: flex .75s var(--ease), background-color .4s ease; }
.focus-card::after { content: "ABRIR MARCA  ↗"; position: absolute; top: 16px; right: 16px; padding: 9px 11px; background: rgba(255,255,255,.9); color: var(--ink); font-size: 7px; font-weight: 700; letter-spacing: .14em; opacity: 0; transform: translateY(-4px); transition: opacity .3s ease, transform .3s ease; }
.focus-card:hover::after, .focus-card:focus-visible::after { opacity: 1; transform: translateY(0); }
.focus-card img { height: 100%; object-fit: cover; background: white; opacity: .5; filter: blur(4px) saturate(.62); transform: scale(1.035); transition: opacity .6s ease, filter .6s ease, transform .8s var(--ease); }
.focus-card > span { position: absolute; left: 18px; right: 18px; bottom: 18px; display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid rgba(23,21,20,.2); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.focus-card > span b { font-size: 8px; font-weight: 600; opacity: .55; }
.focus-card.is-active { flex: 2.25; background: white; }
.focus-card.is-active img { opacity: 1; filter: none; transform: scale(1); }
.focus-card[data-focus-card="silhouette"] img { object-fit: cover; object-position: center; padding: 0; }
.focus-card:hover img, .focus-card:focus-visible img { opacity: 1; filter: none; transform: scale(1); }

.brands-section { padding: clamp(80px, 10vw, 170px) max(24px, 7vw); background: var(--paper); }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr .8fr; gap: 50px; align-items: start; margin-bottom: 65px; }
.section-heading .eyebrow { margin-top: 12px; }
.section-heading h2 { margin: 0; max-width: 730px; font-size: clamp(42px, 5.5vw, 86px); line-height: .93; letter-spacing: -.06em; font-weight: 500; }
.section-heading > p { margin: 12px 0 0; color: #6d6863; font-size: 14px; line-height: 1.65; }

.brand-carousel { overflow: hidden; }
.brand-track { display: flex; transition: transform .8s var(--ease); }
.brand-card { flex: 0 0 100%; min-width: 100%; }
.brand-card a { min-height: 650px; display: grid; grid-template-columns: 1.3fr .7fr; }
.brand-card-media { overflow: hidden; }
.brand-card-media img { height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.brand-card a:hover .brand-card-media img { transform: scale(1.025); }
.brand-card-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(36px, 5vw, 82px); }
.brand-card-copy > span { font-size: 9px; font-weight: 700; letter-spacing: .22em; }
.brand-card-copy h3 { margin: 18px 0 24px; font-size: clamp(54px, 7vw, 108px); line-height: .84; letter-spacing: -.07em; font-weight: 500; }
.brand-card-copy p { max-width: 440px; margin: 0 0 42px; font-size: 15px; line-height: 1.65; }
.brand-card-copy b { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.brand-card-dark { background: #27221f; color: white; }
.brand-card-stone { background: #d9dee5; }
.brand-card-light { background: #f4f4f2; }
.brand-card-light .brand-card-media img { object-fit: contain; background: white; }
.carousel-controls { display: flex; justify-content: flex-end; align-items: center; gap: 18px; padding-top: 22px; }
.carousel-controls button { width: 48px; height: 48px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 18px; }
.carousel-controls span { min-width: 76px; text-align: center; font-size: 10px; letter-spacing: .12em; }

.selection-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; border-top: 1px solid var(--line); background: var(--white); }
.selection-intro, .selection-copy { padding: clamp(55px, 8vw, 140px); }
.selection-intro { border-right: 1px solid var(--line); background: #eef1f4; }
.selection-intro h2 { margin: 0; font-size: clamp(56px, 7vw, 112px); line-height: .86; letter-spacing: -.075em; font-weight: 500; }
.selection-copy > p { max-width: 620px; margin: 0 0 58px; color: #67615d; font-size: 17px; line-height: 1.65; }
.selection-copy ol { margin: 0 0 52px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.selection-copy li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.selection-copy li > span { color: #928b85; font-size: 10px; }
.selection-copy li b { font-size: 17px; }
.selection-copy li p { margin: 6px 0 0; color: #706a65; font-size: 13px; }

.innova-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 720px; background: var(--ink); color: white; }
.innova-media img { height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.92) brightness(.86); }
.innova-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 7vw, 110px); }
.innova-copy > img { width: 170px; height: auto; margin-bottom: 60px; filter: invert(1) grayscale(1) brightness(2); }
.innova-copy h2 { margin: 0; font-size: clamp(48px, 5vw, 78px); line-height: .9; letter-spacing: -.065em; font-weight: 500; }
.innova-copy > p { max-width: 540px; margin: 32px 0 48px; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.2); }
.contact-grid a { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-grid a:first-child { padding-right: 20px; border-right: 1px solid rgba(255,255,255,.2); }
.contact-grid a:last-child { padding-left: 20px; }
.contact-grid span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }
.contact-grid b { font-size: 12px; }

body > footer { position: relative; display: grid; grid-template-columns: 1.3fr .8fr 1fr; gap: 60px; padding: 80px max(24px, 5vw) 110px; background: #100f0f; color: white; }
body > footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; font-size: 12px; }
body > footer > div > span { margin-bottom: 12px; color: rgba(255,255,255,.4); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.footer-brand img { display: block; width: min(210px, 100%); height: auto; filter: brightness(0) invert(1); }
.footer-brand p, body > footer p { color: rgba(255,255,255,.46); font-size: 11px; line-height: 1.6; }
body > footer > small { position: absolute; left: max(24px, 5vw); right: max(24px, 5vw); bottom: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.35); font-size: 9px; }

.floating-order { position: fixed; z-index: 18; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 13px; min-width: 132px; padding: 8px 8px 8px 13px; border: 1px solid rgba(255,255,255,.34); background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(0,0,0,.18); cursor: pointer; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.floating-order b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: white; color: var(--ink); font-size: 9px; }

.commerce-chat { position: fixed; z-index: 35; left: 16px; bottom: 16px; }
.commerce-chat-trigger { display: flex; align-items: center; min-width: 146px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.34); background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(0,0,0,.16); cursor: pointer; text-align: left; }
.commerce-chat-trigger > span { flex: 1; }
.commerce-chat-trigger small, .commerce-chat-trigger b { display: block; }
.commerce-chat-trigger small { margin-bottom: 3px; color: rgba(255,255,255,.54); font-size: 6px; letter-spacing: .15em; }
.commerce-chat-trigger b { font-size: 9px; }
.commerce-chat-panel { position: absolute; left: 0; bottom: calc(100% + 10px); width: min(390px, calc(100vw - 40px)); padding: 22px; background: var(--paper); border: 1px solid var(--line); box-shadow: 0 25px 70px rgba(0,0,0,.24); }
.commerce-chat-panel header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.commerce-chat-panel header span, .commerce-chat-panel header strong { display: block; }
.commerce-chat-panel header span { margin-bottom: 7px; color: #817a74; font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.commerce-chat-panel header strong { font-size: 21px; letter-spacing: -.03em; }
.commerce-chat-panel header button { width: 34px; height: 34px; border: 1px solid var(--line); background: transparent; font-size: 20px; cursor: pointer; }
.commerce-chat-panel > p { margin: 20px 0; color: #665f5a; font-size: 13px; line-height: 1.6; }
.commerce-chat-panel > a, .commerce-chat-panel > .chat-order-action { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: inherit; font-size: 11px; font-weight: 700; cursor: pointer; text-align: left; }
.commerce-chat-panel > a span, .commerce-chat-panel > .chat-order-action span { transition: transform .35s var(--ease); }
.commerce-chat-panel > a:hover span, .commerce-chat-panel > .chat-order-action:hover span { transform: translateX(5px); }

.order-shell { position: fixed; z-index: 100; inset: 0; display: grid; grid-template-columns: 1fr minmax(520px, 46vw); }
.order-backdrop { border: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); }
.order-drawer { min-width: 0; display: grid; grid-template-rows: auto 1fr auto; background: var(--paper); box-shadow: -20px 0 70px rgba(0,0,0,.25); overflow: hidden; }
.order-drawer > header { display: flex; justify-content: space-between; align-items: center; padding: 28px 30px; border-bottom: 1px solid var(--line); }
.order-drawer > header span { font-size: 9px; font-weight: 700; letter-spacing: .22em; }
.order-drawer > header h2 { margin: 6px 0 0; font-size: 30px; letter-spacing: -.04em; }
.order-drawer > header button { width: 40px; height: 40px; border: 1px solid var(--line); background: transparent; font-size: 24px; cursor: pointer; }
.order-body { overflow-y: auto; }
.order-items, .order-client { padding: 30px; }
.empty-order { min-height: 310px; display: flex; flex-direction: column; justify-content: center; }
.empty-order > span { font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.empty-order h3 { max-width: 460px; margin: 18px 0; font-size: 38px; line-height: .95; letter-spacing: -.05em; }
.empty-order p { max-width: 450px; color: #6d6762; line-height: 1.6; }
.empty-order a { margin-top: 20px; font-size: 11px; font-weight: 700; }
.order-brand-group { margin-bottom: 34px; }
.order-brand-group > h3 { display: flex; justify-content: space-between; margin: 0; padding-bottom: 13px; border-bottom: 1px solid var(--line); font-size: 17px; }
.order-brand-group > h3 span { color: #8a837d; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.brand-minimum { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; align-items: center; margin: 12px 0 2px; }
.brand-minimum > span { height: 3px; overflow: hidden; background: #ddd7d0; }
.brand-minimum > span i { display: block; height: 100%; background: var(--ink); transition: width .45s var(--ease); }
.brand-minimum small { color: #766f69; font-size: 9px; }
.order-brand-group article { display: grid; grid-template-columns: 78px 1fr 65px 30px; gap: 15px; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--line); }
.order-brand-group article img, .order-placeholder { width: 78px; height: 58px; object-fit: contain; background: white; }
.order-placeholder { display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.order-brand-group article > div b, .order-brand-group article > div span { display: block; }
.order-brand-group article > div b { font-size: 13px; }
.order-brand-group article > div span { margin-top: 5px; color: #7a746e; font-size: 9px; }
.order-brand-group label span { display: block; margin-bottom: 5px; font-size: 8px; text-transform: uppercase; }
.order-brand-group input { width: 100%; padding: 8px; border: 1px solid var(--line); background: transparent; }
.order-brand-group article > button { border: 0; background: transparent; font-size: 20px; cursor: pointer; }
.order-client { border-top: 1px solid var(--line); }
.order-client h3 { margin: 0 0 8px; font-size: 24px; }
.order-client > p { margin: 0 0 22px; color: #777; font-size: 11px; line-height: 1.55; }
.order-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-form label span { display: block; margin-bottom: 7px; font-size: 9px; font-weight: 700; }
.order-form input, .order-form textarea { width: 100%; border: 1px solid var(--line); padding: 12px; background: white; outline: none; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--ink); }
.order-form label > small { display: none; margin-top: 7px; color: #8a2f25; font-size: 9px; font-weight: 600; line-height: 1.4; }
.order-form label.has-error > small { display: block; }
.order-form input[aria-invalid] { border-color: #a4483d; background: #fff9f8; }
.order-form .wide { grid-column: 1 / -1; }
.order-footer { padding: 22px 30px 26px; border-top: 1px solid var(--line); background: white; }
.order-footer > div { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 12px; }
.order-footer .order-minimum-note { display: block; margin: 0 0 14px; padding: 11px 12px; background: #eef1f4; color: #4c5661; font-size: 10px; line-height: 1.45; }
.order-footer .order-minimum-note.is-complete { background: #dfe7df; color: #24452a; }
.order-footer .button { width: 100%; }
.order-footer .button:disabled { opacity: .35; cursor: not-allowed; }
.order-footer p { min-height: 16px; margin: 0 0 14px; padding: 11px 12px; color: #6b3128; background: #f5e7e4; font-size: 10px; line-height: 1.45; }
.order-footer p.is-ready { color: #315d44; background: #e8f1eb; }

@media (max-width: 1050px) {
  .global-header { grid-template-columns: 1fr auto auto; }
  .global-logo { width: 160px; }
  .global-menu-toggle { display: block; }
  .global-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; align-items: flex-start; flex-direction: column; gap: 0; padding: 18px 24px 28px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 25px 45px rgba(23,21,20,.12); }
  .global-header.is-menu-open .global-nav { display: flex; }
  .global-nav > a, .global-mega-toggle { width: 100%; min-height: 48px; }
  .global-nav > a::after, .global-mega-toggle::after { bottom: 7px; }
  .global-mega-shell { width: 100%; }
  .global-mega { position: static; display: none; grid-template-columns: 1fr 1fr; margin: 0 -24px; padding: 24px; box-shadow: none; transform: none; }
  .global-mega-shell:focus-within .global-mega, .global-header.is-mega-open .global-mega { display: grid; }
  .global-mega > div { min-height: 0; padding: 15px; border-right: 0; border-top: 1px solid var(--line); }
  .global-mega > div:first-child { padding-left: 15px; }
  .global-mega aside { grid-column: 1 / -1; }
  .hero-copy { width: min(760px, 82vw); }
  .hero-film__brands { width: min(630px, calc(100vw - 400px)); right: 200px; }
  .section-heading { grid-template-columns: 1fr 1.4fr; }
  .section-heading > p { grid-column: 2; }
  .focus-showcase > header { grid-template-columns: 1fr 1.5fr; }
  .focus-showcase > header p { grid-column: 2; }
  .product-showcases-heading { grid-template-columns: 1fr 1.5fr; }
  .product-showcases-heading p { grid-column: 2; }
  .product-brand-intro p { max-width: 560px; }
  .brand-card a { min-height: 600px; }
  .selection-section, .innova-section { grid-template-columns: 1fr; }
  .selection-intro { border-right: 0; border-bottom: 1px solid var(--line); }
  .innova-media { min-height: 600px; }
}

@media (max-width: 680px) {
  .topline { height: 30px; font-size: 7px; letter-spacing: .13em; }
  .global-header { min-height: 72px; gap: 14px; padding: 0 15px; }
  .global-logo { width: 135px; }
  .portal-language button { min-width: 27px; height: 28px; font-size: 7px; }
  .global-nav { padding-left: 16px; padding-right: 16px; }
  .global-mega { grid-template-columns: 1fr; margin: 0 -16px; padding: 16px; max-height: calc(100vh - 150px); overflow-y: auto; }
  .global-mega aside { grid-column: auto; }
  .global-mega a { font-size: 16px; }
  .order-trigger { font-size: 0; gap: 0; }
  .order-trigger span { font-size: 9px; }
  .hero { min-height: 790px; }
  .hero-copy { width: 100%; min-height: 790px; justify-content: flex-end; padding: 70px 20px 248px; }
  .hero h1 { max-width: 500px; font-size: 58px; }
  .hero-copy > p { margin-top: 30px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-film__video {
    object-position: center top;
    transform: scale(1.018);
  }
  .hero-film__video.is-active { transform: scale(1); }
  .hero-film__veil {
    background:
      linear-gradient(180deg, rgba(12,11,11,.18) 18%, rgba(12,11,11,.45) 48%, rgba(12,11,11,.9) 88%),
      linear-gradient(90deg, rgba(12,11,11,.2), rgba(12,11,11,.04));
  }
  .silhouette-home-feature { grid-template-columns: 1fr; min-height: 0; }
  .silhouette-home-feature__campaign { min-height: 480px; }
  .silhouette-home-feature__content { padding: 54px 24px 70px; }
  .silhouette-home-feature__content h2 { font-size: clamp(48px, 15vw, 72px); }
  .silhouette-home-feature__product { grid-template-columns: 1fr; }
  .silhouette-home-feature__product > img { height: 210px; object-position: center; }
  .silhouette-home-feature__product > span { grid-auto-flow: column; justify-content: space-between; text-align: left; }
  .hero-film__brands { width: 100%; min-height: 78px; right: 0; bottom: 148px; left: 0; border-left: 0; }
  .hero-film__brands > a { gap: 2px 7px; padding: 14px 10px; }
  .hero-film__brands > a b { font-size: 11px; }
  .hero-film__brands > a small { font-size: 6px; }
  .hero-film__brands > a > span { font-size: 7px; }
  .marquee-sequence { gap: 22px; padding-right: 22px; }
  .marquee-sequence { gap: 28px; padding-right: 28px; }
  .marquee-brand-pair { width: 310px; height: 58px; grid-template-columns: 148px 1fr; gap: 18px; }
  .marquee-frame-image { width: 148px; height: 52px; }
  .marquee-brand-logo { width: 125px; max-height: 36px; }
  .marquee-brand-logo-silhouette { width: 132px; }
  .marquee-wordmark { font-size: 24px; }
  .focus-showcase { padding: 72px 15px; }
  .focus-showcase > header { grid-template-columns: 1fr; gap: 15px; margin-bottom: 30px; }
  .focus-showcase > header p { grid-column: auto; }
  .focus-showcase h2 { font-size: 46px; }
  .focus-track { height: 460px; min-height: 0; gap: 9px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .focus-card, .focus-card.is-active { flex: 0 0 78vw; scroll-snap-align: center; }
  .focus-card img { filter: blur(3px) saturate(.65); transform: scale(.88); }
  .focus-card.is-active img { filter: none; transform: scale(1); }
  .brand-product-showcases { padding: 76px 15px; }
  .product-showcases-heading { grid-template-columns: 1fr; gap: 17px; margin-bottom: 45px; }
  .product-showcases-heading p { grid-column: auto; }
  .product-showcases-heading h2 { font-size: 47px; }
  .product-brand-row + .product-brand-row { margin-top: 72px; }
  .product-brand-intro { min-height: 480px; padding: 30px 22px; }
  .product-brand-intro h3 { font-size: 52px; }
  .product-preview-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .product-carousel .product-preview-grid { overflow: visible; scroll-snap-type: none; }
  .product-carousel .product-preview { flex-basis: 100%; }
  .product-carousel-controls { justify-content: center; flex-wrap: wrap; }
  .product-carousel-controls a { width: 100%; justify-content: center; margin-left: 0; }
  .product-preview { flex: 0 0 82vw; scroll-snap-align: center; }
  .product-preview-media { height: 315px; }
  .product-preview-media { touch-action: pan-y; }
  .product-preview-media img { transform: scale(var(--touch-scale, 1)); transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%); }
  .product-preview-media.is-touch-zoomed img { transition: transform .08s linear; }
  .brands-section { padding: 80px 15px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  .section-heading > p { grid-column: auto; }
  .section-heading h2 { font-size: 48px; }
  .brand-card a { min-height: 760px; grid-template-columns: 1fr; grid-template-rows: 1.15fr .85fr; }
  .brand-card-copy { padding: 30px 22px; }
  .brand-card-copy h3 { font-size: 58px; }
  .brand-card-copy p { margin-bottom: 22px; font-size: 13px; }
  .selection-intro, .selection-copy { padding: 70px 20px; }
  .selection-intro h2 { font-size: 58px; }
  .innova-media { min-height: 440px; }
  .innova-copy { padding: 70px 20px; }
  .innova-copy h2 { font-size: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid a:first-child, .contact-grid a:last-child { padding: 20px 0; border-right: 0; }
  body > footer { grid-template-columns: 1fr; padding: 70px 20px 82px; }
  .floating-order {
    left: auto;
    right: 8px;
    bottom: 8px;
    gap: 8px;
    min-width: 106px;
    padding: 6px 6px 6px 9px;
    font-size: 7px;
  }
  .floating-order b { width: 24px; height: 24px; font-size: 8px; }
  .commerce-chat { left: 8px; right: auto; bottom: 8px; }
  .commerce-chat-trigger {
    width: auto;
    min-width: 102px;
    padding: 7px 9px;
  }
  .commerce-chat-trigger small { display: none; }
  .commerce-chat-trigger b { font-size: 7px; }
  .commerce-chat-panel { width: calc(100vw - 16px); }
  .order-shell { grid-template-columns: 1fr; }
  .order-backdrop { display: none; }
  .order-drawer { width: 100%; }
  .order-drawer > header, .order-items, .order-client, .order-footer { padding-left: 18px; padding-right: 18px; }
  .order-form { grid-template-columns: 1fr; }
  .order-form .wide { grid-column: auto; }
  .order-brand-group article { grid-template-columns: 62px 1fr 56px 22px; gap: 10px; }
  .order-brand-group article img, .order-placeholder { width: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  .global-mega-visual__media img { transition: none; transform: none; }
}

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