/* ── Emma Internazionale — Hero Styles ──────────────────── */

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS (mirrors reset.css for standalone use)
═══════════════════════════════════════════════════════════ */
:root {
  --emma-red:         #e80505;
  --emma-red-glow:    rgba(232, 5, 5, 0.28);
  --emma-red-subtle:  rgba(232, 5, 5, 0.10);
  --emma-black:       #151719;
  --emma-gold:        #414042;
  --emma-green:       #009246;
  --emma-white:       #ffffff;
  --emma-white-dim:   rgba(244, 244, 244, 0.65);
  --emma-white-ghost: rgba(244, 244, 244, 0.12);
  --font-display:     'Montserrat', sans-serif;
  --font-body:        'Almarai', 'Montserrat', sans-serif;
  --z-bg:      0;
  --z-glow:    1;
  --z-text-bg: 2;
  --z-car:     3;
  --z-content: 4;
  /* Keep the fixed navbar above overlapping/translated page sections. */
  --z-nav:     100;
  --z-ui:      6;
  --z-cursor:  2147483647;
}


/* ═══════════════════════════════════════════════════════════
   HERO SECTION — Italian Showroom
═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  z-index: auto;
  width: 100%;
  min-height: 100dvh;
  background: #f1f0ed;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

/* Left-side brand banner: dense red at the edge, dissolving into the stand */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(101deg,
      #970012 0%,
      #c90018 14%,
      #e80505 27%,
      rgba(232, 5, 5, .74) 31%,
      rgba(232, 5, 5, .32) 36%,
      rgba(232, 5, 5, .08) 42%,
      transparent 48%
    );
  z-index: 0;
  pointer-events: none;
}

/* Precision grid and diagonal energy line within the red field */
#hero::after {
  content: '';
  position: absolute;
  inset: 0 45% 0 0;
  background:
    linear-gradient(118deg, transparent 0 63%, rgba(255,255,255,.16) 63.1%, transparent 63.35%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 72px);
  -webkit-mask-image: linear-gradient(90deg, #000 0 74%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 74%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════
   NAV — follows the active hero surface, then resolves to the
   light content-section treatment after leaving the hero
═══════════════════════════════════════════════════════════ */
#hero {
  --announcement-bar-height: 28px;
}

#hero.announcement-bar-disabled {
  --announcement-bar-height: 0px;
}

.hero-announcement {
  position: fixed;
  z-index: calc(var(--z-nav) + 1);
  top: 0;
  right: 0;
  left: 0;
  height: var(--announcement-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  color: #fff;
  background: var(--emma-red);
  box-shadow: 0 1px 0 rgba(255,255,255,.18);
}

.hero-announcement-text {
  min-width: 0;
  overflow: hidden;
  font: 700 9px/1 var(--font-display);
  letter-spacing: .22em;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .22s ease,
    transform .22s cubic-bezier(.22,1,.36,1);
}

.hero-announcement-text.is-changing {
  opacity: 0;
  transform: translateY(-6px);
}

.hero-announcement-mark {
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,.7);
}

.hero-nav {
  position: fixed;
  top: var(--announcement-bar-height);
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 44px;
  color: var(--hero-nav-fg, #151719);
  background: var(--hero-nav-background, rgba(255, 255, 255, .97));
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  box-shadow: 0 1px 0 rgba(21, 23, 25,0);
  transition:
    background 0.42s cubic-bezier(.22,1,.36,1),
    backdrop-filter 0.42s cubic-bezier(.22,1,.36,1),
    -webkit-backdrop-filter 0.42s cubic-bezier(.22,1,.36,1),
    box-shadow 0.42s cubic-bezier(.22,1,.36,1),
    padding 0.42s cubic-bezier(.22,1,.36,1),
    color 0.32s ease,
    opacity 0.42s cubic-bezier(.22,1,.36,1);
  opacity: 0;
  transform: translateY(-16px);
  will-change: transform, opacity;
}

.hero-nav.is-car-section-fading {
  opacity: var(--car-nav-opacity, 1) !important;
}

.hero-nav.is-car-section-hidden {
  pointer-events: none;
}

@media (max-width: 600px) {
  #hero {
    --announcement-bar-height: 24px;
  }

  .hero-announcement {
    gap: 9px;
    padding-inline: 12px;
  }

  .hero-announcement-text {
    font-size: 8px;
    letter-spacing: .14em;
  }

  .hero-announcement-mark {
    width: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-announcement-text {
    transition: none;
  }
}

.hero-nav.nav-scrolled {
  padding: 12px 44px;
  background: var(--hero-nav-background, rgba(255, 255, 255, .97));
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 1px 0 rgba(0,0,0,0.07),
    0 10px 34px rgba(21, 23, 25,0.055);
}

.hero-nav:not(.nav-scrolled) {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: none;
}

.hero-nav.nav-section-light {
  --hero-nav-fg: #151719;
  --hero-nav-muted: rgba(21, 23, 25, .58);
  --hero-nav-hover: #151719;
  --hero-nav-accent: #e80505;
  --hero-nav-active-bg: #e80505;
  --hero-nav-active-fg: #fff;
  --hero-nav-active-border: #e80505;
  --hero-nav-logo-filter: none;
  --hero-nav-border: rgba(21, 23, 25, .16);
}

.hero-nav.nav-section-dark {
  --hero-nav-fg: #fff;
  --hero-nav-muted: rgba(255, 255, 255, .72);
  --hero-nav-hover: #fff;
  --hero-nav-accent: #e80505;
  --hero-nav-active-bg: #e80505;
  --hero-nav-active-fg: #fff;
  --hero-nav-active-border: #e80505;
  --hero-nav-logo-filter: brightness(0) invert(1);
  --hero-nav-border: rgba(255, 255, 255, .14);
}

.hero-nav.nav-section-red {
  --hero-nav-fg: #fff;
  --hero-nav-muted: rgba(255, 255, 255, .78);
  --hero-nav-hover: #fff;
  --hero-nav-accent: #fff;
  --hero-nav-active-bg: #fff;
  --hero-nav-active-fg: #151719;
  --hero-nav-active-border: #fff;
  --hero-nav-logo-filter: brightness(0) invert(1);
  --hero-nav-border: rgba(255, 255, 255, .2);
}

.nav-logo-img {
  height: 30px;
  width: auto;
  opacity: 0;
  filter: var(--hero-nav-logo-filter, none);
  transform: translateY(-7px) scale(.94);
  transition:
    opacity 0.42s cubic-bezier(.22,1,.36,1),
    transform 0.42s cubic-bezier(.22,1,.36,1),
    filter 0.42s cubic-bezier(.22,1,.36,1);
}

.hero-nav.nav-scrolled .nav-logo-img {
  opacity: 1;
  filter: var(--hero-nav-logo-filter, none);
  transform: translateY(0) scale(1);
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-nav-muted, rgba(21, 23, 25, .58));
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--hero-nav-accent, var(--emma-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--hero-nav-hover, var(--emma-black)); }
.nav-link:hover::after { transform: scaleX(1); }

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

.hero-lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--hero-nav-muted, rgba(21, 23, 25, .58));
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 5px 7px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-lang-btn .lang-flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lang-btn:hover {
  color: var(--hero-nav-hover, var(--emma-black));
}

.hero-lang-btn.lang-btn--active {
  color: var(--hero-nav-active-fg, #fff);
  background: var(--hero-nav-active-bg, var(--emma-red));
  border-color: var(--hero-nav-active-border, var(--emma-red));
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero-nav-accent, var(--emma-red));
  border: 1px solid var(--hero-nav-accent, var(--emma-red));
  padding: 8px 19px;
  transition: background 0.25s, color 0.25s;
}

.nav-cta b {
  font: 400 16px/1 var(--font-body);
  transition: transform .25s ease;
}

.nav-cta:hover {
  background: var(--hero-nav-accent, var(--emma-red));
  color: var(--hero-nav-active-fg, #fff);
}

.nav-cta:hover b { transform: translate(3px, -3px); }

/* At rest, navigation colors still follow the active hero theme while the
   glass surface above keeps every control legible. */
#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-links li:nth-child(-n + 3) .nav-link {
  color: rgba(255, 255, 255, .84);
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-links li:nth-child(-n + 3) .nav-link:hover {
  color: #fff;
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-links li:nth-child(-n + 3) .nav-link::after {
  background: #fff;
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-links li:nth-child(n + 4) .nav-link,
#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .hero-lang-btn {
  color: rgba(21, 23, 25, .68);
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-links li:nth-child(n + 4) .nav-link:hover,
#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .hero-lang-btn:hover {
  color: #151719;
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .hero-lang-btn.lang-btn--active {
  color: #fff;
  background: #e80505;
  border-color: #e80505;
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-cta {
  color: #fff;
  background: #e80505;
  border-color: #e80505;
}

#hero:not(.hero-theme-paper)
  .hero-nav:not(.nav-scrolled)
  .nav-cta:hover {
  color: #fff;
  background: #151719;
}


/* ═══════════════════════════════════════════════════════════
   TICKER BAND — frosted glass blur refraction
═══════════════════════════════════════════════════════════ */
.hero-tickers {
  position: absolute;
  bottom: 52px;
  left: 0;
  right: 0;
  z-index: 2;
  background: #fff;
  border-top: 1px solid rgba(21, 23, 25, 0.07);
  border-bottom: 1px solid rgba(21, 23, 25, 0.07);
  overflow: hidden;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity .24s ease,
    transform .32s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}

.hero-tickers.is-scroll-cleared {
  opacity: 0;
  transform: translate3d(0, 115%, 0);
}

/* Shares the About-entry scroll progress with the cue section so any visible
   remainder of the hero darkens as one continuous surface. */
.hero-car-entry-dimmer {
  position: absolute;
  z-index: 90;
  inset: 0;
  background: #000;
  opacity: var(--car-entry-darkness, 0);
  pointer-events: none;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero-car-entry-dimmer { display: none; }
}

.hero-ticker {
  display: flex;
  align-items: center;
  height: 38px;
  white-space: nowrap;
  pointer-events: none;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: tickerFwd 28s linear infinite;
  will-change: transform;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(21, 23, 25, 0.5);
  padding: 0 20px;
}

.ticker-sep {
  color: var(--emma-red) !important;
  font-size: 8px !important;
  letter-spacing: 0 !important;
  padding: 0 4px !important;
  opacity: 0.7;
}

@keyframes tickerFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}


/* ═══════════════════════════════════════════════════════════
   BG DECORATION — precision arcs + motion lines
═══════════════════════════════════════════════════════════ */
.hero-bg-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-emma-watermark {
  position: absolute;
  top: 50%;
  left: 78%;
  width: clamp(1400px, 145vw, 2600px);
  max-width: none;
  height: auto;
  opacity: .11;
  transform: translate(-50%, -50%);
  transform-origin: center;
  filter: saturate(.9) contrast(1.18);
  mix-blend-mode: multiply;
  user-select: none;
}

.hero-arc-svg {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  width: clamp(560px, 58vw, 940px);
  height: auto;
  opacity: 1;
}

/* ── Ripple / broadcast rings ───────────────────────────── */
/* Each ring starts small and transparent, expands outward, fades out */
.hero-arc-svg .arc-ripple {
  transform-origin: 450px 450px;
  animation: arcRipple 4.8s cubic-bezier(0.2, 0.6, 0.4, 1) infinite;
  animation-delay: var(--arc-delay, 0s);
}

@keyframes arcRipple {
  0%   { transform: scale(0.15); opacity: 0;    }
  8%   { opacity: 1;                             }
  60%  { opacity: 0.55;                          }
  100% { transform: scale(1);   opacity: 0;    }
}

/* Accent arcs just fade softly — not rippled */
.hero-arc-svg .arc-fade {
  animation: arcFade 5s ease-in-out infinite;
  animation-delay: var(--arc-delay, 0s);
}

@keyframes arcFade {
  0%,100% { opacity: 0.04; }
  50%     { opacity: 0.18; }
}


.hero-motion-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Each line sweeps from left edge to right edge, fading in then out */
.ml {
  position: absolute;
  top: 50%;
  /* start well off the left edge so the sweep is fully visible */
  left: -40vw;
  height: 1.5px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(232, 5, 5, 0.0) 5%,
    rgba(232, 5, 5, 0.28) 35%,
    rgba(232, 5, 5, 0.28) 65%,
    rgba(232, 5, 5, 0.0) 95%,
    transparent 100%
  );
  will-change: transform, opacity;
  animation: mlSweep var(--ml-dur, 4s) var(--ml-ease, cubic-bezier(0.4, 0, 0.6, 1)) infinite;
  animation-delay: var(--ml-delay, 0s);
}

.ml-1 { width: 38vw; margin-top: -52px; --ml-dur: 4.2s; --ml-delay: 0s;    --ml-ease: cubic-bezier(0.25, 0.1, 0.25, 1); }
.ml-2 { width: 28vw; margin-top: -18px; --ml-dur: 3.6s; --ml-delay: 1.0s;  --ml-ease: cubic-bezier(0.4, 0, 0.6, 1); }
.ml-3 { width: 44vw; margin-top:  16px; --ml-dur: 5.0s; --ml-delay: 2.2s;  --ml-ease: cubic-bezier(0.25, 0.1, 0.25, 1); }
.ml-4 { width: 22vw; margin-top:  50px; --ml-dur: 3.2s; --ml-delay: 3.4s;  --ml-ease: cubic-bezier(0.4, 0, 0.6, 1); }

@keyframes mlSweep {
  0%   { transform: translateX(0);      opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(180vw);  opacity: 0; }
}


/* ═══════════════════════════════════════════════════════════
   HERO LAYOUT — 3-column grid
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   HERO LAYOUT — centred single column
═══════════════════════════════════════════════════════════ */
.hero-layout {
  position: relative;
  z-index: var(--z-content);
  display: block;
  width: 100%;
  min-height: 100dvh;
  padding: 76px 0 82px;
  box-sizing: border-box;
}

.hero-center {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  align-items: stretch;
  width: 100%;
  min-height: calc(100dvh - 158px);
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 100%;
  min-width: 0;
  padding: clamp(54px, 7vh, 88px) clamp(44px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

html[dir="rtl"] .hero-copy { text-align: right; }

.hero-copy-logo {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: clamp(190px, 15vw, 270px);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
}

.hero-copy-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.76);
  font: 700 11.5px/1 var(--font-display);
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  max-width: 100%;
  margin-top: 22px;
  color: #fff;
  font: 900 clamp(46px, 3.97vw, 69px)/.9 var(--font-display);
  letter-spacing: -.035em;
  text-transform: uppercase;
  white-space: normal;
  opacity: 0;
  transform: translateY(18px);
}

.hero-title-product-line,
.hero-title-rotator {
  display: block;
}

.hero-title-product-line {
  font-size: .66em;
  line-height: 1.05;
  letter-spacing: -.015em;
  white-space: nowrap;
}

.hero-title-product-line > span {
  display: inline;
}

.hero-italian-word {
  display: inline-flex;
  align-items: baseline;
  gap: .2em;
  color: #fff;
  font: inherit;
  -webkit-text-fill-color: #fff;
}

.hero-italian-tricolor {
  display: inline-block;
  color: transparent;
  font: inherit;
  background: linear-gradient(
    90deg,
    #009246 0 33.333%,
    #fff 33.333% 66.666%,
    #ce2b37 66.666% 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(22,3,7,.24));
}

.hero-vision-word {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

body[data-lang="ar"] .hero-vision-word,
body[data-lang="it"] .hero-vision-word {
  order: -1;
}

.hero-title-rotator {
  position: relative;
  height: .96em;
  margin-top: .06em;
  overflow: hidden;
  color: #160307;
  line-height: .96;
}

.hero-title-rotator-text {
  display: block;
  white-space: nowrap;
  will-change: transform, opacity;
}

.hero-title-rotator-text.is-leaving {
  animation: heroMessageOut .48s cubic-bezier(.65,0,.35,1) both;
}

.hero-title-rotator-text.is-entering {
  animation: heroMessageIn .58s cubic-bezier(.16,1,.3,1) both;
}

.hero-description {
  width: min(620px, 100%);
  margin-top: 24px;
  color: rgba(255,255,255,.76);
  font: 300 clamp(16px, 1.29vw, 19.5px)/1.65 var(--font-body);
  opacity: 0;
  transform: translateY(14px);
}

.hero-stats {
  width: min(680px, 100%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
  opacity: 0;
  transform: translateY(14px);
}

.hero-stat {
  min-width: 0;
  padding: 18px 18px 18px 0;
  border-right: 1px solid rgba(255,255,255,.22);
}

.hero-stat + .hero-stat { padding-left: 18px; }
.hero-stat:last-child { border-right: 0; }

.hero-stat strong {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font: 900 clamp(32px, 2.99vw, 48px)/.9 var(--font-display);
}

.hero-stat sup {
  margin: 1px 0 0 2px;
  color: #170307;
  font-size: .48em;
  line-height: 1;
}

.hero-stat small {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.58);
  font: 700 9.8px/1.25 var(--font-display);
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero-booth-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 20px 0;
  transform: translateX(clamp(-42px, -2.4vw, -18px));
}

/* ── Booth stage container ─────────────────────────────── */
.booth-stage {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  flex: 0 0 100%;
  transform: none;
  transform-origin: center center;
  will-change: transform;
  line-height: 0;
  /*
   * padding-bottom % is always relative to the CONTAINING BLOCK'S width,
   * not this element's width. When max-width kicks in (viewport > 1000px)
   * the parent is still full viewport-wide, so 14% would become 14%×1440=201px
   * instead of the intended 14%×1000=140px. Using min(14vw, 140px) caps it
   * correctly — 14vw tracks the element width when unconstrained, 140px
   * when the 1000px max-width is active.
   */
  padding-bottom: min(8vw, 128px);
}

/* ── Stage platform image ──────────────────────────────── */
/*
 * Geometry (all values relative to container width W):
 *   booth aspect 1.5:1 → booth_height = 0.667W
 *   padding-bottom 14% = 0.14W  → container_height = 0.807W
 *   stage aspect 5.98:1, width 105% → stage_height = 1.05W/5.98 = 0.1756W
 *   booth visible base at 95.7% of booth_height = 0.638W from container top
 *   stage.png has 5% transparent whitespace at top
 *
 * Target: stage_top = booth_base − 5%×stage_height (hides whitespace, platform flush)
 *   stage_top = 0.638W − 0.00878W = 0.629W
 *   top% = 0.629W / 0.807W = 77.9% ≈ 78%
 */
.booth-stage-img {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%) scaleX(1.2);
  transform-origin: center top;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  display: block;
}

/* ── Booth photo ───────────────────────────────────────── */
.hero-booth-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  user-select: none;
  filter:
    drop-shadow(0 30px 60px rgba(232, 5, 5, 0.08))
    drop-shadow(0 6px 20px rgba(0, 0, 0, 0.07));
}

/* ── CTA row — stacked beneath the hero content ────────── */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13.2px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #090909;
  padding: 15px 28px;
  border: none;
  transition: background 0.22s, gap 0.22s;
  text-decoration: none;
}

.hero-cta-primary:hover { background: #242424; gap: 14px; }

.hero-cta-primary svg {
  flex-shrink: 0;
  transition: transform 0.22s;
}
.hero-cta-primary:hover svg { transform: translateX(3px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 13.2px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #151719;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  padding: 14px 22px;
  cursor: pointer;
  transition: color 0.22s;
}

.hero-cta-secondary:hover {
  color: #fff;
  border-color: #151719;
  background: #151719;
}

.hero-cta-arrow {
  color: currentColor;
  font: 400 17px/1 var(--font-body);
  transition: transform .22s;
}

.hero-cta-secondary:hover .hero-cta-arrow {
  transform: translate(2px, -2px);
}


/* ═══════════════════════════════════════════════════════════
   FLAG BAR
═══════════════════════════════════════════════════════════ */
/* ── Product & category story deck — lower 35% ─────────── */
.hero-banner-deck {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 35dvh;
  min-height: 238px;
  flex: 0 0 35%;
  overflow: hidden;
  color: #fff;
  background: #bc0016;
  border-top: 1px solid rgba(255,255,255,.2);
  isolation: isolate;
}

.hero-banner-deck::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px) 0 0 / 100% 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  opacity: .52;
}

.hero-banner-track,
.hero-banner-slide {
  position: absolute;
  inset: 0;
}

.hero-banner-slide {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(460px, 1.7fr) minmax(190px, .55fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(24px, 3.4vh, 44px) clamp(48px, 6vw, 110px) 76px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity .55s cubic-bezier(.22,1,.36,1),
    transform .75s cubic-bezier(.22,1,.36,1),
    clip-path .85s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .85s;
}

.hero-banner-slide.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  clip-path: inset(0);
  transition-delay: 0s;
}

.hero-banner-slide--red {
  background:
    radial-gradient(circle at 78% 40%, rgba(255,255,255,.17), transparent 26%),
    linear-gradient(110deg, #9f0012 0%, #e80505 58%, #ff1e37 100%);
}

.hero-banner-slide--black {
  background:
    radial-gradient(circle at 14% 92%, rgba(232, 5, 5,.38), transparent 32%),
    linear-gradient(112deg, #050505 0%, #111 66%, #290007 100%);
}

.hero-banner-slide--ivory {
  color: #0b0b0b;
  background:
    radial-gradient(circle at 72% 30%, rgba(232, 5, 5,.15), transparent 30%),
    linear-gradient(112deg, #f8f6f2 0%, #eae7e1 62%, #fff 100%);
}

.hero-banner-number {
  position: absolute;
  top: 50%;
  right: clamp(44px, 8vw, 150px);
  color: rgba(255,255,255,.09);
  font: 900 clamp(130px, 16vw, 270px)/.7 var(--font-display);
  letter-spacing: -.08em;
  transform: translateY(-52%);
  white-space: nowrap;
  pointer-events: none;
}

.hero-banner-slide--ivory .hero-banner-number { color: rgba(21, 23, 25,.055); }

.hero-banner-meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(22px, 1fr);
  align-items: center;
  gap: 8px 14px;
  color: rgba(255,255,255,.68);
  font: 700 9px/1 var(--font-display);
  letter-spacing: .23em;
  text-transform: uppercase;
}

.hero-banner-meta i {
  display: block;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.hero-banner-meta span:last-child { grid-column: 1 / -1; }
.hero-banner-slide--ivory .hero-banner-meta { color: rgba(21, 23, 25,.52); }

.hero-banner-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-banner-copy p {
  margin-bottom: 8px;
  color: rgba(255,255,255,.66);
  font: 400 11px/1.2 var(--font-body);
  letter-spacing: .08em;
}

.hero-banner-copy h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0 .18em;
  color: #fff;
  font: 900 clamp(34px, 3.6vw, 64px)/.88 var(--font-display);
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-banner-copy h2 em {
  color: #160307;
  font-style: normal;
}

.hero-banner-slide--black .hero-banner-copy h2 em,
.hero-banner-slide--ivory .hero-banner-copy h2 em { color: var(--emma-red); }

.hero-banner-slide--ivory .hero-banner-copy p { color: rgba(21, 23, 25,.56); }
.hero-banner-slide--ivory .hero-banner-copy h2 { color: #0b0b0b; }

.hero-banner-link {
  position: relative;
  z-index: 6;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  color: inherit;
  border-bottom: 1px solid currentColor;
  font: 700 11px/1 var(--font-display);
  letter-spacing: .17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-banner-link b {
  font: 400 18px/1 var(--font-body);
  transition: transform .25s ease;
}

.hero-banner-link:hover b { transform: translate(4px, -4px); }

.hero-banner-controls {
  position: absolute;
  z-index: 8;
  right: clamp(48px, 6vw, 110px);
  bottom: 58px;
  display: flex;
  gap: 9px;
}

.hero-banner-control {
  display: grid;
  grid-template-columns: auto 46px;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  font: 700 9px/1 var(--font-display);
  letter-spacing: .14em;
}

.hero-banner-control i {
  position: relative;
  display: block;
  width: 46px;
  height: 2px;
  overflow: hidden;
  background: rgba(255,255,255,.24);
}

.hero-banner-control i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-banner-control.is-active { color: #fff; }
.hero-banner-control.is-active i::after { animation: heroBannerProgress 5.2s linear both; }
.hero-banner-deck.is-paused .hero-banner-control.is-active i::after { animation-play-state: paused; }
.hero-banner-deck.is-ivory .hero-banner-control { color: rgba(21, 23, 25,.45); }
.hero-banner-deck.is-ivory .hero-banner-control.is-active { color: #151719; }
.hero-banner-deck.is-ivory .hero-banner-control i { background: rgba(21, 23, 25,.18); }
.hero-banner-deck.is-ivory .hero-banner-control i::after { background: var(--emma-red); }

@keyframes heroBannerProgress {
  to { transform: scaleX(1); }
}

.flag-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: var(--z-ui);
  display: flex;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.flag-stripe { flex: 1; height: 100%; }
.flag-green { background: var(--emma-green); }
.flag-white { background: rgba(21, 23, 25, 0.14); } /* subtle divider line on light bg */
.flag-red   { background: var(--emma-red); }


/* ═══════════════════════════════════════════════════════════
   SCROLL INDICATOR
═══════════════════════════════════════════════════════════ */
.scroll-indicator {
  position: absolute;
  bottom: 18px;
  right: 48px;
  z-index: var(--z-ui);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
}

.scroll-indicator-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--emma-red), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

.scroll-indicator-text {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(21, 23, 25, 0.28);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}



/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════ */
#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--emma-red);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s;
  will-change: transform;
}

#cursor-ring.cursor-expand {
  width: 52px; height: 52px;
  border-color: var(--emma-gold);
}

#cursor-ring.cursor-cta {
  width: 18px; height: 18px;
  background: var(--emma-red);
  border-color: var(--emma-red);
}

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--emma-red);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--emma-red);
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
}


/* ═══════════════════════════════════════════════════════════
   NEXT SECTION
═══════════════════════════════════════════════════════════ */
.next-section {
  min-height: 100dvh;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════ */
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  30%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  70%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@keyframes heroMessageOut {
  to {
    opacity: 0;
    transform: translateY(-115%);
  }
}

@keyframes heroMessageIn {
  from {
    opacity: 0;
    transform: translateY(115%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { padding: 76px 0 82px; }
  .hero-center { grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr); }
  .hero-copy { padding-inline: 42px; }
  .hero-title { font-size: clamp(39px, 4.03vw, 55px); }
  .hero-title-product-line { font-size: .61em; }
  .hero-description { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.22); }
  .hero-booth-wrap { padding-right: 0; }
  .hero-banner-slide {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 24px;
    padding-inline: 42px;
  }
  .hero-banner-copy h2 { font-size: clamp(31px, 4vw, 44px); }
  .hero-banner-controls { right: 42px; }
}

@media (max-width: 820px) {
  #hero { overflow: hidden; }
  .hero-nav,
  .hero-nav.nav-scrolled { padding: 11px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hero-nav-actions { gap: 0; }
  .scroll-indicator { right: 16px; }
  #hero::before {
    background: linear-gradient(180deg, #a60014 0%, #e80505 28%, rgba(232, 5, 5,.60) 38%, rgba(232, 5, 5,.08) 50%, transparent 60%);
  }
  #hero::after {
    inset: 0 0 38%;
    -webkit-mask-image: linear-gradient(180deg, #000 0 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0 72%, transparent 100%);
  }
  .hero-layout {
    padding: 76px 0 96px;
  }
  .hero-bg-decor .ml { display: none; }
  .hero-emma-watermark { top: 78%; left: 50%; width: 230vw; opacity: .075; }
  .hero-arc-svg { left: 50%; top: 78%; width: min(110vw, 720px); }
  .hero-center { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy {
    min-height: 610px;
    padding: 54px 7vw 76px;
  }
  .hero-copy-logo { width: 205px; margin-bottom: 26px; }
  .hero-ctas { gap: 14px; margin-top: 24px; }
  .hero-title { font-size: clamp(44px, 10.5vw, 68px); white-space: normal; }
  .hero-title-product-line { font-size: clamp(21px, 6vw, 34px); }
  .hero-title-rotator { font-size: clamp(34px, 9vw, 60px); }
  .hero-booth-wrap { min-height: 520px; width: 100vw; padding: 0 2vw 34px; }
  .hero-booth-wrap { transform: none; }
  .booth-stage { width: 132%; max-width: 900px; padding-bottom: min(19vw, 152px); transform: translateX(0); will-change: auto; }
  .hero-banner-deck {
    height: 390px;
    min-height: 390px;
    flex: none;
  }
  .hero-banner-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 14px;
    padding: 36px 7vw 88px;
  }
  .hero-banner-meta {
    width: min(210px, 70%);
  }
  .hero-banner-copy h2 {
    display: block;
    font-size: clamp(38px, 10vw, 62px);
  }
  .hero-banner-copy h2 span,
  .hero-banner-copy h2 em { display: block; }
  .hero-banner-link {
    justify-self: start;
    margin-top: 4px;
  }
  .hero-banner-number {
    right: 3vw;
    font-size: clamp(120px, 36vw, 210px);
  }
  .hero-banner-controls {
    left: 7vw;
    right: auto;
    bottom: 56px;
  }
}

@media (max-width: 480px) {
  .hero-layout { padding: 76px 0 94px; }
  .hero-copy { width: 100%; min-height: 590px; padding: 48px 22px 70px; }
  .hero-copy-logo { width: 180px; margin-bottom: 24px; }
  .hero-kicker { font-size: 8px; letter-spacing: .2em; }
  .hero-kicker::before, .hero-kicker::after { width: 16px; }
  .hero-title { margin-top: 18px; }
  .hero-title-product-line { font-size: clamp(18px, 5.8vw, 27px); }
  .hero-title-rotator { font-size: clamp(31px, 8.7vw, 44px); }
  .hero-description { margin-top: 18px; font-size: 13px; }
  .hero-stats { margin-top: 24px; }
  .hero-stat, .hero-stat + .hero-stat { padding: 14px 8px; }
  .hero-stat small { font-size: 7.5px; letter-spacing: .12em; }
  .hero-ctas { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-cta-primary, .hero-cta-secondary { justify-content: center; }
  .hero-booth-wrap { width: 100vw; min-height: 390px; padding-bottom: 20px; }
  .hero-banner-deck { height: 420px; min-height: 420px; }
  .hero-banner-control { grid-template-columns: auto 30px; }
  .hero-banner-control i { width: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-banner-control.is-active i::after {
    animation: none !important;
    transform: scaleX(1);
  }
}


/* ═══════════════════════════════════════════════════════════
   BOOTH HOTSPOTS — interactive product overlay
   Hotspots are absolute divs placed over .booth-stage using
   percentage coordinates derived from the 1536×1024 source.

   Pointer-event chain:
     .hero-booth-wrap  { pointer-events: none }  ← set in HTML/existing CSS
     .booth-stage      { pointer-events: none }  ← inherited, set explicitly
     .booth-hotspot    { pointer-events: auto  } ← re-enabled per hotspot
═══════════════════════════════════════════════════════════ */

/* Make the stage a stacking context so dialogs clip correctly */
.booth-stage {
  isolation: isolate;
  pointer-events: none;  /* children override with auto */
}

/* ── Hit area ────────────────────────────────────────────── */
.booth-hotspot {
  position: absolute;
  cursor: pointer;
  pointer-events: auto;
  z-index: 4;
  /* left / top / width / height set via inline JS (% values) */
}

/* ── Canvas: cropped product image that lifts on hover ──── */
.booth-hotspot-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(0) scale(1);
  transform-origin: bottom center;
  filter: brightness(1.22)
          drop-shadow(0 0 14px rgba(232, 5, 5, 0.9))
          drop-shadow(0 0 32px rgba(232, 5, 5, 0.5));
  transition:
    opacity 0.26s ease,
    transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  will-change: opacity, transform;
}

.booth-hotspot:hover .booth-hotspot-canvas {
  opacity: 1;
  transform: translateY(-12px) scale(1.07);
}

/* ── Ring: subtle border outline on hover ───────────────── */
.booth-hotspot-ring {
  position: absolute;
  inset: -2px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  transition: border-color 0.18s ease;
  pointer-events: none;
  z-index: 1;
}

.booth-hotspot:hover .booth-hotspot-ring {
  border-color: rgba(232, 5, 5, 0.6);
}

/* ── Dialog: glassmorphism product name card ────────────── */
.booth-dialog {
  position: absolute;
  top: 50%;
  /* horizontal position set by JS: left or right depending on dialogSide */
  transform: translateY(-50%) translateX(-6px);
  background: rgba(21, 23, 25, 0.90);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(232, 5, 5, 0.40);
  border-radius: 8px;
  padding: 9px 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.18s ease, transform 0.18s ease;
  /* Avoid layout overflow on small booths */
  max-width: 220px;
  white-space: normal;
  width: max-content;
  max-width: 200px;
}

.booth-hotspot:hover .booth-dialog {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.booth-dialog-name {
  display: block;
  font-family: var(--font-display, 'Montserrat', sans-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  color: var(--emma-white, #ffffff);
}

.booth-dialog-category {
  display: block;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(232, 5, 5, 0.85);
  margin-top: 3px;
}


/* ═══════════════════════════════════════════════════════════
   COMPACT HERO CAMPAIGN BANNER
   The stand remains the same interactive element so its scroll handoff into
   Featured Products stays continuous. The circular frame is independent and
   remains behind the stand when the stand begins travelling.
═══════════════════════════════════════════════════════════ */
@media (min-width: 821px) {
  #hero {
    height: clamp(650px, 72svh, 760px);
    min-height: 0;
    overflow: visible;
    background:
      linear-gradient(90deg, #f2f0ed 0%, #f8f7f5 72%, #ece9e5 100%);
  }

  #hero::after {
    inset: 0 42% 41px 0;
    background:
      linear-gradient(118deg, transparent 0 64%, rgba(255,255,255,.18) 64.1%, transparent 64.35%),
      repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 68px),
      repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 68px);
  }

  .hero-layout {
    height: 100%;
    min-height: 0;
    padding: 56px 0 41px;
  }

  .hero-center {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
    height: 100%;
    min-height: 0;
    align-items: stretch;
  }

  .hero-copy {
    justify-content: center;
    padding:
      clamp(22px, 3.4vh, 38px)
      clamp(34px, 4.4vw, 78px);
  }

  .hero-copy-logo {
    margin-bottom: 16px;
  }

  .hero-kicker {
    gap: 10px;
    font-size: 9px;
    letter-spacing: .25em;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    width: 22px;
  }

  .hero-title {
    max-width: 760px;
    margin-top: 15px;
    font-size: clamp(39px, 3.45vw, 58px);
    line-height: .9;
  }

  .hero-title-product-line {
    font-size: .61em;
  }

  .hero-description {
    width: min(590px, 96%);
    margin-top: 16px;
    font-size: clamp(12.5px, .97vw, 15px);
    line-height: 1.55;
  }

  .hero-stats {
    width: min(620px, 96%);
    margin-top: 18px;
  }

  .hero-stat {
    padding: 12px 12px 11px 0;
  }

  .hero-stat + .hero-stat {
    padding-left: 12px;
  }

  .hero-stat strong {
    font-size: clamp(25px, 2.15vw, 35px);
  }

  .hero-stat small {
    margin-top: 5px;
    font-size: 7.5px;
    letter-spacing: .13em;
  }

  .hero-ctas {
    gap: 12px;
    margin-top: 18px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    min-height: 40px;
    padding: 11px 18px;
    font-size: 9.5px;
    letter-spacing: .15em;
  }

  .hero-booth-wrap {
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0 clamp(34px, 6vw, 112px) 0 0;
    transform: none;
  }

  .hero-booth-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -6vw;
    width: min(58vw, 760px);
    aspect-ratio: 1;
    border: 1px solid rgba(232,5,5,.22);
    border-radius: 50%;
    background:
      radial-gradient(circle at 42% 38%, rgba(255,255,255,.98) 0 32%, rgba(250,247,245,.96) 57%, rgba(232,5,5,.10) 75%, rgba(232,5,5,.04) 100%);
    box-shadow:
      inset 0 0 0 clamp(38px, 4vw, 72px) rgba(255,255,255,.42),
      inset 0 0 90px rgba(232,5,5,.08),
      0 26px 80px rgba(21,23,25,.09);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .hero-booth-wrap::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: -1vw;
    width: min(49vw, 650px);
    aspect-ratio: 1;
    border: 1px dashed rgba(232,5,5,.18);
    border-radius: 50%;
    transform: translateY(-50%) rotate(8deg);
    pointer-events: none;
  }

  .booth-stage {
    z-index: 3;
    width: min(118%, 850px);
    flex: 0 0 auto;
    padding-bottom: min(7vw, 72px);
  }

  .hero-bg-decor {
    overflow: hidden;
  }

  .hero-emma-watermark {
    top: 50%;
    left: 88%;
    width: clamp(760px, 78vw, 1460px);
    opacity: .045;
  }

  .hero-arc-svg {
    top: 50%;
    left: 86%;
    width: min(53vw, 760px);
    opacity: .8;
  }

  .hero-tickers {
    bottom: 3px;
    z-index: var(--z-ui);
  }

  .hero-ticker {
    height: 38px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (min-width: 821px) and (max-height: 820px) {
  .hero-copy {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .hero-copy-logo {
    width: 164px;
    margin-bottom: 11px;
  }

  .hero-title {
    margin-top: 11px;
    font-size: clamp(35px, 3.15vw, 48px);
  }

  .hero-description {
    margin-top: 12px;
  }

  .hero-stats,
  .hero-ctas {
    margin-top: 13px;
  }
}

@media (min-width: 821px) and (max-width: 1120px) {
  .hero-center {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  }

  .hero-copy {
    padding-inline: 34px;
  }

  .hero-title {
    font-size: clamp(35px, 3.7vw, 46px);
  }

  .hero-description {
    font-size: 12.5px;
  }

  .hero-booth-wrap::before {
    right: -8vw;
    width: 68vw;
  }

  .hero-booth-wrap::after {
    right: -3vw;
    width: 58vw;
  }

  .booth-stage {
    width: 126%;
  }
}

@media (max-width: 820px) {
  #hero {
    min-height: 900px;
    overflow: hidden;
    background: #f2f0ed;
  }

  #hero::before {
    background:
      linear-gradient(
        180deg,
        #c50017 0%,
        var(--emma-red) 32%,
        rgba(232,5,5,.84) 47%,
        rgba(232,5,5,.18) 58%,
        transparent 68%
      );
  }

  #hero::after {
    inset: 0 0 44%;
  }

  .hero-layout {
    min-height: 900px;
    padding: 52px 0 41px;
  }

  .hero-center {
    min-height: 807px;
    grid-template-rows: auto minmax(360px, 1fr);
  }

  .hero-copy {
    min-height: 0;
    padding: 30px 6vw 22px;
  }

  .hero-copy-logo {
    margin-bottom: 14px;
  }

  .hero-title {
    margin-top: 13px;
    font-size: clamp(36px, 9.5vw, 54px);
  }

  .hero-title-product-line {
    font-size: clamp(17px, 4.8vw, 27px);
  }

  .hero-title-rotator {
    font-size: clamp(29px, 7.9vw, 46px);
  }

  .hero-description {
    max-width: 640px;
    margin-top: 14px;
    font-size: 12.5px;
  }

  .hero-stats {
    margin-top: 16px;
  }

  .hero-stat,
  .hero-stat + .hero-stat {
    padding: 10px 8px;
  }

  .hero-stat strong {
    font-size: 25px;
  }

  .hero-stat small {
    font-size: 7px;
  }

  .hero-ctas {
    margin-top: 16px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    min-height: 40px;
    padding: 11px 16px;
    font-size: 9px;
  }

  .hero-booth-wrap {
    min-height: 360px;
    padding: 0;
  }

  .hero-booth-wrap::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 54%;
    left: 13vw;
    width: 118vw;
    aspect-ratio: 1;
    border: 1px solid rgba(232,5,5,.2);
    border-radius: 50%;
    background:
      radial-gradient(circle at 42% 38%, #fff 0 34%, #f5f2ef 62%, rgba(232,5,5,.12) 100%);
    box-shadow: inset 0 0 0 38px rgba(255,255,255,.42);
    transform: translateY(-50%);
  }

  .booth-stage {
    z-index: 3;
    width: min(112vw, 720px);
    max-width: none;
    padding-bottom: min(13vw, 92px);
  }

  .hero-emma-watermark {
    top: 77%;
    left: 77%;
    width: 190vw;
    opacity: .045;
  }

  .hero-arc-svg {
    top: 76%;
    left: 78%;
    width: 112vw;
  }

  .hero-tickers {
    bottom: 3px;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  #hero,
  .hero-layout {
    min-height: 860px;
  }

  .hero-center {
    min-height: 767px;
    grid-template-rows: auto minmax(300px, 1fr);
  }

  .hero-copy {
    padding: 26px 20px 18px;
  }

  .hero-copy-logo {
    width: 150px;
    margin-bottom: 12px;
  }

  .hero-kicker {
    font-size: 7.5px;
  }

  .hero-description {
    display: none;
  }

  .hero-stats {
    margin-top: 14px;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    padding-inline: 10px;
    white-space: nowrap;
  }

  .hero-booth-wrap {
    min-height: 300px;
  }

  .hero-booth-wrap::before {
    left: 18vw;
    width: 132vw;
  }

  .booth-stage {
    width: 122vw;
  }
}


/* ═══════════════════════════════════════════════════════════
   LEFT CAMPAIGN SLIDER
═══════════════════════════════════════════════════════════ */
#hero::before {
  transition: background .45s cubic-bezier(.22,1,.36,1);
}

#hero.hero-theme-red::before {
  background:
    linear-gradient(
      96deg,
      #b60016 0%,
      #e80505 39%,
      rgba(232,5,5,.84) 49%,
      rgba(232,5,5,.24) 59%,
      transparent 66%
    );
}

#hero.hero-theme-ink::before {
  background:
    linear-gradient(
      96deg,
      #090a0b 0%,
      #151719 42%,
      rgba(21,23,25,.88) 50%,
      rgba(21,23,25,.24) 60%,
      transparent 66%
    );
}

#hero.hero-theme-paper::before {
  background:
    linear-gradient(
      96deg,
      #e5e1dc 0%,
      #f4f1ed 42%,
      rgba(244,241,237,.9) 50%,
      rgba(244,241,237,.3) 60%,
      transparent 66%
    );
}

.hero-copy {
  overflow: hidden;
}

.hero-copy-logo {
  position: relative;
  z-index: 4;
  transition: filter .55s ease;
}

#hero.hero-theme-paper .hero-copy-logo img {
  filter: none;
}

.hero-copy-stage {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}

.hero-copy-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 46px, 0);
  transition:
    opacity .42s cubic-bezier(.22,1,.36,1),
    transform .5s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .5s;
  pointer-events: none;
}

.hero-copy-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
  pointer-events: auto;
}

.hero-copy-slide.is-active :is(
  .hero-kicker,
  .hero-title,
  .hero-description,
  .hero-ctas
) {
  opacity: 1;
  transform: none;
}

.hero-copy-slide.is-before {
  transform: translate3d(0, -46px, 0);
}

.hero-copy-slide:not(.is-active) :is(
  .hero-kicker,
  .hero-title,
  .hero-description,
  .hero-ctas
) {
  opacity: 1;
  transform: none;
}

.hero-copy-slide--red,
.hero-copy-slide--ink {
  color: #fff;
}

.hero-copy-slide--paper {
  color: #fff;
}

.hero-copy-slide--paper .hero-kicker,
.hero-copy-slide--paper .hero-title,
.hero-copy-slide--paper .hero-description {
  color: #fff;
  text-shadow: 0 3px 20px rgba(0,0,0,.72);
}

.hero-copy-slide--paper .hero-kicker {
  color: rgba(255,255,255,.9);
}

.hero-copy-slide--paper .hero-description {
  width: min(640px, 100%);
  padding: 12px 16px 13px;
  border-left: 3px solid var(--emma-red);
  color: #fff;
  background: linear-gradient(100deg, rgba(6,7,9,.8), rgba(6,7,9,.58));
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  font-weight: 500;
  line-height: 1.52;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.hero-copy-slide--red .hero-description {
  width: min(640px, 100%);
  padding: 12px 16px 13px;
  border-left: 3px solid #fff;
  color: #fff;
  background: linear-gradient(100deg, rgba(6,7,9,.78), rgba(6,7,9,.54));
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  font-weight: 500;
  line-height: 1.52;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.hero-copy-slide--paper .hero-title > span:first-child {
  color: #fff;
}

.hero-copy-slide--paper.is-active :is(
  .hero-kicker,
  .hero-title,
  .hero-description,
  .hero-ctas
) {
  visibility: visible;
  opacity: 1;
  filter: none;
}

.hero-copy-slide--paper .hero-cta-primary {
  background: var(--emma-red);
}

.hero-copy-slide--paper .hero-cta-secondary {
  color: #151719;
  background: #fff;
  border-color: #fff;
  text-shadow: none;
}

.hero-copy-slide--paper .hero-cta-secondary:hover {
  color: #fff;
  background: #151719;
  border-color: #151719;
}

.hero-title-campaign-line {
  display: block;
  margin-top: .06em;
  color: #160307;
  white-space: nowrap;
}

.hero-copy-slide--red .hero-title-campaign-line {
  color: #fff;
}

.hero-copy-slide--red .hero-title-product-line {
  font-size: 1em;
  line-height: inherit;
  letter-spacing: inherit;
  white-space: normal;
}

.hero-title-accent {
  display: block;
  color: var(--emma-red);
}

.hero-slide-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(520px, 94%);
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.hero-slide-facts > span {
  padding: 13px 14px 12px 0;
  border-right: 1px solid rgba(255,255,255,.18);
}

.hero-slide-facts > span + span {
  padding-left: 14px;
}

.hero-slide-facts > span:last-child {
  border-right: 0;
}

.hero-slide-facts strong {
  display: block;
  font: 800 clamp(24px, 2vw, 34px)/1 var(--font-display);
}

.hero-slide-facts small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.5);
  font: 500 8px/1 var(--font-display);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-copy-slide--ink .hero-slide-facts {
  padding: 5px 16px;
  border-top-color: rgba(255,255,255,.34);
  border-bottom-color: rgba(255,255,255,.34);
  border-left: 3px solid var(--emma-red);
  background: linear-gradient(100deg, rgba(6,7,9,.82), rgba(6,7,9,.6));
  box-shadow: 0 14px 34px rgba(0,0,0,.2);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.hero-copy-slide--ink .hero-slide-facts strong {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
}

.hero-copy-slide--ink .hero-slide-facts small {
  color: rgba(255,255,255,.84);
  font-weight: 650;
  text-shadow: 0 2px 8px rgba(0,0,0,.68);
}

.hero-slide-controls {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  width: min(360px, 86%);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(10px);
}

.hero-slide-control {
  flex: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  color: rgba(255,255,255,.48);
  cursor: pointer;
  transition: color .25s ease;
}

.hero-slide-control span {
  font: 500 8px/1 var(--font-display);
  letter-spacing: .08em;
}

.hero-slide-control i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.22);
}

.hero-slide-control i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
}

.hero-slide-control.is-active {
  color: #fff;
}

.hero-slide-control.is-active i::after {
  animation: heroSlideProgress 1.8s linear both;
}

.hero-slide-arrow {
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.hero-slide-arrow span {
  font: 500 15px/1 var(--font-display);
  transform: translateY(-1px);
}

.hero-slide-arrow:hover,
.hero-slide-arrow:focus-visible {
  color: #151719;
  background: #fff;
  border-color: #fff;
  transform: scale(1.06);
}

.hero-copy:hover .hero-slide-control.is-active i::after,
.hero-copy:focus-within .hero-slide-control.is-active i::after {
  animation-play-state: paused;
}

#hero.hero-theme-paper .hero-slide-arrow {
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.48);
  background: rgba(5,6,8,.16);
}

#hero.hero-theme-paper .hero-slide-arrow:hover,
#hero.hero-theme-paper .hero-slide-arrow:focus-visible {
  color: #fff;
  background: var(--emma-red);
  border-color: var(--emma-red);
}

#hero.hero-theme-paper .hero-slide-control {
  color: rgba(255,255,255,.58);
  text-shadow: 0 2px 10px rgba(0,0,0,.65);
}

#hero.hero-theme-paper .hero-slide-control i {
  background: rgba(255,255,255,.32);
}

#hero.hero-theme-paper .hero-slide-control.is-active {
  color: var(--emma-red);
}

@keyframes heroSlideProgress {
  to { transform: scaleX(1); }
}

@media (max-width: 820px) {
  #hero.hero-theme-ink::before {
    background: linear-gradient(180deg, #090a0b 0%, #151719 46%, rgba(21,23,25,.2) 62%, transparent 70%);
  }

  #hero.hero-theme-paper::before {
    background: linear-gradient(180deg, #e5e1dc 0%, #f4f1ed 46%, rgba(244,241,237,.22) 62%, transparent 70%);
  }

  #hero.hero-theme-red::before {
    background: linear-gradient(180deg, #c50017 0%, #e80505 46%, rgba(232,5,5,.2) 62%, transparent 70%);
  }

  .hero-copy-stage {
    min-height: 330px;
  }

  .hero-title-campaign-line {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-copy-stage {
    min-height: 305px;
  }

  .hero-copy-slide .hero-description {
    display: block;
    font-size: 11px;
    line-height: 1.45;
  }

  .hero-copy-slide .hero-ctas {
    display: flex;
    width: 100%;
    flex-direction: row;
  }

  .hero-slide-facts {
    margin-top: 16px;
  }

  .hero-slide-controls {
    width: 100%;
    margin-top: 4px;
    gap: 7px;
  }

  .hero-slide-arrow {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-control.is-active i::after {
    animation: none;
    transform: scaleX(1);
  }
}


/* ═══════════════════════════════════════════════════════════
   FADING HERO / CIRCULAR PRODUCT CUTOUT
   Each campaign color is strongest at the left and dissolves toward the light
   product circle. The stand remains outside the clipping layer so its scroll
   handoff can travel into Featured Products.
═══════════════════════════════════════════════════════════ */
#hero {
  --hero-panel-color: #e80505;
  --hero-panel-background:
    linear-gradient(90deg, #9f0012 0%, #c90018 30%, #e80505 56%, rgba(232, 5, 5, .64) 74%, rgba(232, 5, 5, .16) 91%, transparent 100%);
  --hero-nav-background: var(--hero-panel-background), var(--hero-panel-color);
  --hero-nav-fg: #fff;
  --hero-nav-muted: rgba(255, 255, 255, .76);
  --hero-nav-hover: #fff;
  --hero-nav-accent: #fff;
  --hero-nav-active-bg: #fff;
  --hero-nav-active-fg: #151719;
  --hero-nav-active-border: #fff;
  --hero-nav-logo-filter: brightness(0) invert(1);
  background: var(--hero-panel-color);
  transition: background-color .45s cubic-bezier(.22,1,.36,1);
}

#hero.hero-theme-red {
  --hero-panel-color: #e80505;
  --hero-panel-background:
    linear-gradient(90deg, #9f0012 0%, #c90018 30%, #e80505 56%, rgba(232, 5, 5, .64) 74%, rgba(232, 5, 5, .16) 91%, transparent 100%);
}

#hero.hero-theme-ink {
  --hero-panel-color: #151719;
  --hero-panel-background:
    linear-gradient(90deg, #050607 0%, #111315 48%, rgba(21, 23, 25, .66) 74%, rgba(21, 23, 25, .16) 91%, transparent 100%);
}

#hero.hero-theme-paper {
  --hero-panel-color: #eeeae4;
  --hero-panel-background:
    linear-gradient(90deg, #d8d1c8 0%, #ebe6df 50%, rgba(238, 234, 228, .68) 74%, rgba(238, 234, 228, .18) 91%, transparent 100%);
  --hero-nav-fg: #151719;
  --hero-nav-muted: rgba(21, 23, 25, .62);
  --hero-nav-hover: #151719;
  --hero-nav-accent: #e80505;
  --hero-nav-active-bg: #e80505;
  --hero-nav-active-fg: #fff;
  --hero-nav-active-border: #e80505;
  --hero-nav-logo-filter: none;
}

#hero::before {
  inset: 0 auto 41px 0;
  width: 72%;
  border-radius: 0;
  background: var(--hero-panel-background);
  transition: background .45s cubic-bezier(.22,1,.36,1);
}

#hero.hero-theme-red::before,
#hero.hero-theme-ink::before,
#hero.hero-theme-paper::before {
  background: var(--hero-panel-background);
}

#hero::after {
  display: none;
}

.hero-bg-decor {
  display: none;
}

.hero-banner-automotive-watermark {
  position: absolute;
  inset: 0 auto 41px 0;
  z-index: 1;
  width: 68%;
  height: calc(100% - 41px);
  object-fit: cover;
  object-position: left bottom;
  opacity: 0;
  filter: saturate(1.12) contrast(1.08);
  mix-blend-mode: normal;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .84) 72%,
    rgba(0, 0, 0, .34) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .84) 72%,
    rgba(0, 0, 0, .34) 86%,
    transparent 100%
  );
  pointer-events: none;
  user-select: none;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}

#hero.hero-theme-red .hero-banner-automotive-watermark {
  opacity: .58;
}

.hero-banner-logistics-watermark {
  position: absolute;
  inset: 0 auto 41px 0;
  z-index: 1;
  width: 68%;
  height: calc(100% - 41px);
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  filter: saturate(1.08) contrast(1.06);
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .84) 72%,
    rgba(0, 0, 0, .34) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .84) 72%,
    rgba(0, 0, 0, .34) 86%,
    transparent 100%
  );
  pointer-events: none;
  user-select: none;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}

#hero.hero-theme-ink .hero-banner-logistics-watermark {
  opacity: .58;
}

.hero-banner-development-watermark {
  position: absolute;
  inset: 0 auto 41px 0;
  z-index: 1;
  width: 68%;
  height: calc(100% - 41px);
  object-fit: cover;
  object-position: center bottom;
  opacity: 0;
  filter: saturate(.9) contrast(1.02);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .84) 72%,
    rgba(0, 0, 0, .34) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 62%,
    rgba(0, 0, 0, .84) 72%,
    rgba(0, 0, 0, .34) 86%,
    transparent 100%
  );
  pointer-events: none;
  user-select: none;
  transition: opacity .45s cubic-bezier(.22, 1, .36, 1);
}

#hero.hero-theme-paper .hero-banner-development-watermark {
  opacity: .52;
}

.hero-booth-wrap > .hero-bg-decor {
  position: absolute;
  inset: auto;
  z-index: 2;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}

.hero-booth-wrap > .hero-bg-decor .hero-arc-svg {
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 1;
}

.hero-booth-wrap > .hero-bg-decor .hero-motion-lines {
  inset: 0;
}

.hero-booth-wrap::after {
  content: "";
  position: absolute;
  right: auto;
  z-index: 0;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.hero-circle-extension {
  display: none;
  pointer-events: none;
}

@media (min-width: 821px) {
  #hero {
    background: var(--hero-panel-color);
  }

  .hero-center {
    isolation: isolate;
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }

  .hero-copy {
    z-index: 1;
  }

  .hero-booth-wrap {
    --hero-circle-size: min(52vw, 790px);
    z-index: 4;
    isolation: isolate;
    padding: 0;
    transform: translateX(-2.5vw);
  }

  .hero-booth-wrap::before {
    top: 50%;
    right: auto;
    left: 50%;
    z-index: 1;
    width: var(--hero-circle-size);
    box-sizing: border-box;
    border: 12px solid #f8f7f4;
    background: #f8f7f4;
    opacity: 1;
    box-shadow:
      inset 0 0 0 1px rgba(21, 23, 25, .08),
      inset 0 0 72px rgba(232, 5, 5, .035);
    clip-path: inset(
      0 0
      max(
        0px,
        calc(
          50% -
          clamp(261.5px, calc(36svh - 48.5px), 331.5px)
        )
      )
      0
    );
    transform: translate(-50%, -50%);
  }

  .hero-booth-wrap > .hero-bg-decor {
    top: 50%;
    left: 50%;
    width: var(--hero-circle-size);
    clip-path: inset(
      0 0
      max(
        0px,
        calc(
          50% -
          clamp(261.5px, calc(36svh - 48.5px), 331.5px)
        )
      )
      0
    );
    transform: translate(-50%, -50%);
  }

  .hero-booth-wrap::after {
    top: 50%;
    left: 50%;
    width: var(--hero-circle-size);
    box-shadow: -28px 2px 44px -12px rgba(21, 23, 25, .24);
    clip-path: inset(
      -100px -100px
      max(
        0px,
        calc(
          50% -
          clamp(261.5px, calc(36svh - 48.5px), 331.5px)
        )
      )
      -100px
    );
    transform: translate(-50%, -50%);
  }

  .hero-circle-extension {
    position: absolute;
    top: -56px;
    right: -2.5vw;
    /* Continue through the hero's reserved ticker gutter. */
    bottom: -41px;
    left: 50%;
    z-index: 1;
    display: block;
    background: #f8f7f4;
  }

  .booth-stage {
    z-index: 3;
    width: min(108%, 830px);
    margin-inline: auto;
    transform-origin: center center;
  }
}

@media (max-width: 820px) {
  #hero {
    background: var(--hero-panel-color);
  }

  #hero::before,
  #hero.hero-theme-red::before,
  #hero.hero-theme-ink::before,
  #hero.hero-theme-paper::before {
    inset: 0 0 auto;
    width: 100%;
    height: 61%;
    background: var(--hero-panel-background);
  }

  .hero-booth-wrap {
    --hero-circle-size: min(116vw, 760px);
  }

  .hero-booth-wrap::before {
    top: 52%;
    left: 50%;
    width: var(--hero-circle-size);
    box-sizing: border-box;
    border: 9px solid #f8f7f4;
    background: #f8f7f4;
    opacity: 1;
    box-shadow:
      inset 0 0 0 1px rgba(21, 23, 25, .08),
      inset 0 0 54px rgba(232, 5, 5, .03);
    clip-path: inset(
      0 0
      max(0px, calc(50% - 173px))
      0
    );
    transform: translate(-50%, -50%);
  }

  .hero-booth-wrap > .hero-bg-decor {
    top: 52%;
    left: 50%;
    width: min(116vw, 760px);
    clip-path: inset(
      0 0
      max(0px, calc(50% - 173px))
      0
    );
    transform: translate(-50%, -50%);
  }

  .hero-booth-wrap::after {
    top: 52%;
    left: 50%;
    width: var(--hero-circle-size);
    box-shadow: -18px 2px 30px -10px rgba(21, 23, 25, .19);
    clip-path: inset(
      -64px -64px
      max(0px, calc(50% - 173px))
      -64px
    );
    transform: translate(-50%, -50%);
  }

  .hero-banner-automotive-watermark,
  .hero-banner-logistics-watermark,
  .hero-banner-development-watermark {
    inset: 0 0 auto;
    width: 100%;
    height: 61%;
    object-position: left bottom;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 68%,
      rgba(0, 0, 0, .62) 82%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 68%,
      rgba(0, 0, 0, .62) 82%,
      transparent 100%
    );
  }

  #hero.hero-theme-red .hero-banner-automotive-watermark {
    opacity: .46;
  }

  #hero.hero-theme-ink .hero-banner-logistics-watermark {
    opacity: .48;
  }

  #hero.hero-theme-paper .hero-banner-development-watermark {
    opacity: .42;
  }

  .booth-stage {
    width: min(96vw, 720px);
    max-width: none;
  }
}

@media (max-width: 480px) {
  #hero::before,
  #hero.hero-theme-red::before,
  #hero.hero-theme-ink::before,
  #hero.hero-theme-paper::before {
    height: 64%;
  }

  .hero-booth-wrap {
    --hero-circle-size: 128vw;
  }

  .hero-booth-wrap::before {
    top: 53%;
    width: var(--hero-circle-size);
    clip-path: inset(
      0 0
      max(0px, calc(50% - 141px))
      0
    );
  }

  .hero-booth-wrap > .hero-bg-decor {
    top: 53%;
    width: 128vw;
    clip-path: inset(
      0 0
      max(0px, calc(50% - 141px))
      0
    );
  }

  .hero-booth-wrap::after {
    top: 53%;
    width: var(--hero-circle-size);
  }

  .hero-banner-automotive-watermark,
  .hero-banner-logistics-watermark,
  .hero-banner-development-watermark {
    height: 64%;
  }

  .booth-stage {
    width: 96vw;
  }
}
