@font-face {
  font-family: "FB Elicyon";
  src: url("../fonts/fb-elicyon.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FB Antique";
  src: url("../fonts/fb-antique.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --ds-ink: #130b10;
  --ds-ink-rgb: 19, 11, 16;
  --ds-charcoal: #292429;
  --ds-paper: #fff7fa;
  --ds-stone: #f4eef2;
  --ds-mist: #e8dce3;
  --ds-gold: #d50073;
  --ds-coral: #e78db4;
  --ds-sage: #aba8a7;
  --ds-blue: #6f6470;
  --ds-rose: #6f153e;
  --fb-magenta: #d50073;
  --fb-magenta-rgb: 213, 0, 115;
  --fb-gray: #aba8a7;
  --fb-gray-rgb: 171, 168, 167;
  --fb-wine: #4a0928;
  --fb-deep-wine: #560136;
  --fb-blush: #f7d9e6;
  --fb-petal: #f1a9c8;
  --fb-milk: #fff9fb;
  --fb-pearl: #f6f1f3;
  --fb-porcelain: #fbf8f4;
  --fb-pink: #d50073;
  --fb-metal: #c7b8c1;
  --ds-border: rgba(74, 9, 40, 0.14);
  --ds-soft-shadow: 0 24px 80px rgba(74, 9, 40, 0.12), 0 4px 18px rgba(19, 11, 16, 0.07);
  --ds-hard-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 30px 120px rgba(74, 9, 40, 0.28);
  --ds-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ds-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ds-antique: "FB Antique", Inter, ui-sans-serif, system-ui, sans-serif;
  --ds-editorial: "FB Elicyon", Georgia, serif;
  --fb-vh: 100vh;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ds-paper);
  overflow-x: clip;
  scroll-behavior: smooth;
}

html.is-cinematic-scroll {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--ds-ink);
  background: linear-gradient(180deg, #fbf8f4 0%, #f7f2ef 100%);
  font-family: var(--ds-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(213, 0, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 0, 115, 0.06) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

::selection {
  color: var(--ds-paper);
  background: var(--fb-magenta);
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--fb-magenta);
  outline-offset: 4px;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
}

.hero-scroll-sequence {
  position: relative;
  min-height: 285vh;
}

.hero-final-anchor {
  position: absolute;
  left: 0;
  top: calc(100% - var(--vh, 1vh) * 100);
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: clamp(78px, 6.5vw, 126px);
  padding: clamp(18px, 2.3vw, 44px) clamp(28px, 4.35vw, 88px);
  color: var(--fb-wine);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.74), rgba(251, 248, 244, 0));
  backdrop-filter: none;
  box-shadow: none;
  transition-property: color, background-color, box-shadow, min-height, padding, backdrop-filter;
  transition-duration: 0.64s;
  transition-timing-function: var(--ease-smooth);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(213, 0, 115, 0.84), rgba(153, 4, 89, 0.76)),
    linear-gradient(180deg, rgba(255, 207, 244, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 70px rgba(86, 1, 54, 0.18);
  backdrop-filter: blur(18px) saturate(1.18);
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, -14px, 0) scaleY(0.82);
  transform-origin: top center;
  transition-property: opacity, transform, filter;
  transition-duration: 0.86s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.site-header.is-after-hero {
  min-height: clamp(64px, 5vw, 92px);
  padding-top: clamp(12px, 1.35vw, 22px);
  padding-bottom: clamp(12px, 1.35vw, 22px);
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-after-hero::before {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scaleY(1);
}

.site-header.is-after-hero .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 12px 26px rgba(86, 1, 54, 0.14));
}

.site-header:not(.is-after-hero) .brand-logo {
  filter: drop-shadow(0 12px 26px rgba(213, 0, 115, 0.12));
}

.site-header.is-after-hero .nav-link,
.site-header.is-after-hero .mobile-nav-panel a,
.site-header.is-after-hero .mobile-nav-panel button,
.site-header.is-after-hero .language-trigger-label {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.is-after-hero .nav-link:hover,
.site-header.is-after-hero .language-current {
  color: #fff;
}

.site-header.is-after-hero .nav-contact,
.site-header.is-after-hero .mobile-menu-button,
.site-header.is-after-hero .language-trigger {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-after-hero .nav-contact:hover,
.site-header.is-after-hero .language-trigger:hover,
.site-header.is-after-hero .mobile-menu-button:hover {
  color: var(--fb-magenta);
  background: #fff;
  border-color: #fff;
}

.header-actions {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  width: fit-content;
}

.brand-logo {
  width: clamp(170px, 14.6vw, 300px);
  height: auto;
  outline: 0;
  filter: drop-shadow(0 12px 26px rgba(213, 0, 115, 0.12));
  transition: filter 0.62s var(--ease-smooth);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.35vw, 48px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(74, 9, 40, 0.76);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.78vw, 16px);
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition-property: color, opacity;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease-smooth);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition-property: transform;
  transition-duration: 0.32s;
  transition-timing-function: var(--ease-smooth);
}

.nav-link:hover {
  color: var(--fb-magenta);
}

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

.nav-contact,
.mobile-menu-button,
.language-trigger,
.language-option {
  min-height: 40px;
  border: 1px solid rgba(213, 0, 115, 0.42);
  background: rgba(255, 255, 255, 0.32);
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition-property: color, background-color, border-color, transform, opacity;
  transition-duration: 0.26s;
  transition-timing-function: var(--ease-smooth);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: clamp(188px, 15vw, 290px);
  padding: 0 clamp(18px, 1.55vw, 32px);
  border-radius: 999px;
  font-size: clamp(11px, 0.76vw, 15px);
  white-space: nowrap;
}

.contact-glyph {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--ds-body);
  font-size: 11px;
  line-height: 1;
}

.contact-glyph::before {
  content: "@";
  transform: translateY(-0.5px);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 112px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  line-height: 1;
}

.language-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition-property: transform;
  transition-duration: 0.24s;
  transition-timing-function: var(--ease-smooth);
}

.language-switcher.is-open .language-trigger::after {
  transform: translateY(3px) rotate(225deg);
}

.language-current {
  color: var(--fb-magenta);
  font-weight: 700;
}

.language-trigger-label {
  color: rgba(74, 9, 40, 0.62);
}

.language-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 42;
  display: grid;
  width: 230px;
  max-height: min(420px, calc(100vh - 112px));
  padding: 8px;
  overflow: auto;
  border: 1px solid rgba(213, 0, 115, 0.16);
  border-radius: 18px;
  background: rgba(251, 248, 244, 0.96);
  box-shadow: 0 22px 70px rgba(74, 9, 40, 0.14), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -6px, 0) scale(0.98);
  transform-origin: top right;
  transition-property: opacity, transform;
  transition-duration: 0.24s;
  transition-timing-function: var(--ease-smooth);
}

.language-switcher.is-open .language-list {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.language-option {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(74, 9, 40, 0.7);
  font-size: 10px;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.language-option-code {
  font-weight: 700;
  color: var(--fb-magenta);
}

.language-option-name {
  text-transform: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.language-option:hover {
  color: var(--fb-magenta);
  background: rgba(213, 0, 115, 0.07);
}

.language-option.is-active,
.nav-contact:hover {
  color: #fff;
  background: var(--fb-magenta);
  border-color: var(--fb-magenta);
}

.language-option.is-active .language-option-code,
.language-option.is-active .language-option-name {
  color: #fff;
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 78px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
}

.mobile-menu-lines {
  display: grid;
  gap: 4px;
  width: 14px;
}

.mobile-menu-lines::before,
.mobile-menu-lines::after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition-property: transform;
  transition-duration: 0.26s;
  transition-timing-function: var(--ease-smooth);
}

.site-header.is-menu-open .mobile-menu-lines::before {
  transform: translateY(2.5px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-lines::after {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-nav-panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 16px;
  right: 16px;
  display: none;
  padding: 14px;
  border: 1px solid rgba(213, 0, 115, 0.18);
  border-radius: 18px;
  background: rgba(251, 248, 244, 0.94);
  box-shadow: 0 22px 70px rgba(74, 9, 40, 0.14);
  backdrop-filter: blur(18px);
}

.mobile-nav-panel a,
.mobile-nav-panel button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(74, 9, 40, 0.78);
  font-family: var(--ds-antique);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
}

.site-header.is-menu-open .mobile-nav-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
}

.site-header.is-after-hero.is-menu-open .mobile-nav-panel {
  border-color: rgba(213, 0, 115, 0.18);
  background: rgba(251, 248, 244, 0.94);
  box-shadow: 0 24px 82px rgba(86, 1, 54, 0.18), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.site-header.is-after-hero.is-menu-open .mobile-menu-button {
  color: var(--fb-magenta);
  border-color: #fff;
  background: #fff;
}

.site-header.is-after-hero.is-menu-open .mobile-nav-panel a,
.site-header.is-after-hero.is-menu-open .mobile-nav-panel button {
  color: rgba(86, 1, 54, 0.82);
}

.site-header.is-after-hero.is-menu-open .mobile-nav-panel a:hover,
.site-header.is-after-hero.is-menu-open .mobile-nav-panel button:hover,
.site-header.is-after-hero.is-menu-open .mobile-nav-panel a:focus-visible,
.site-header.is-after-hero.is-menu-open .mobile-nav-panel button:focus-visible {
  color: var(--fb-magenta);
}

.ds-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: clamp(46px, 3.3vw, 66px);
  padding: 0 clamp(18px, 1.85vw, 38px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.76vw, 15px);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateZ(0);
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-duration: 0.28s;
  transition-timing-function: var(--ease-smooth);
  white-space: nowrap;
}

.ds-button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 24%, rgba(255, 255, 255, 0.45) 36%, transparent 48% 100%);
  transform: translateX(-88%);
  transition-property: transform;
  transition-duration: 0.6s;
  transition-timing-function: var(--ease-out);
}

.ds-button:hover::before {
  transform: translateX(88%);
}

.ds-button:active {
  transform: scale(0.96);
}

.button-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-family: var(--ds-body);
  font-size: 14px;
  line-height: 1;
  transition-property: transform, opacity, filter;
  transition-duration: 0.28s;
  transition-timing-function: var(--ease-smooth);
}

.ds-button:hover .button-icon {
  transform: translateX(2px) scale(1);
  opacity: 1;
  filter: blur(0);
}

.ds-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--fb-magenta), #a70059);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 34px rgba(213, 0, 115, 0.24), 0 0 0 1px rgba(213, 0, 115, 0.12);
}

.ds-button-primary:hover {
  background: linear-gradient(135deg, #f01791, var(--fb-magenta));
  box-shadow: 0 18px 46px rgba(213, 0, 115, 0.34), 0 0 34px rgba(213, 0, 115, 0.2);
}

.ds-button-quiet {
  color: var(--fb-wine);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(74, 9, 40, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.ds-button-quiet:hover {
  color: #fff;
  background: var(--fb-wine);
  border-color: rgba(74, 9, 40, 0.48);
  box-shadow: 0 16px 40px rgba(74, 9, 40, 0.18);
}

.nav-cta {
  min-width: clamp(218px, 17.4vw, 356px);
  color: var(--fb-magenta);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(213, 0, 115, 0.42);
}

.nav-cta:hover {
  color: #fff;
  background: var(--fb-magenta);
  border-color: var(--fb-magenta);
  box-shadow: 0 18px 46px rgba(213, 0, 115, 0.22);
}

.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #fbf8f4;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 248, 244, 0.68) 0%, rgba(251, 248, 244, 0.5) 34%, rgba(251, 248, 244, 0.16) 56%, rgba(251, 248, 244, 0) 74%),
    linear-gradient(180deg, rgba(251, 248, 244, 0.34) 0%, transparent 22%, rgba(251, 248, 244, 0.12) 100%);
  background-size: 100% 100%, 100% 100%;
  opacity: var(--hero-veil, 1);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 0, 115, 0.72), transparent);
  animation: scanLine 8s var(--ease-out) infinite alternate;
  pointer-events: none;
}

.hero-inner {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 730px);
  align-items: center;
  width: min(100%, 2040px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(108px, 17.4vh, 230px) clamp(56px, 5.5vw, 112px) clamp(62px, 6vh, 96px);
}

.hero-copy-column {
  position: relative;
  z-index: 4;
  max-width: min(1060px, 56vw);
  padding-top: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: clamp(12px, 1.02vw, 22px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow::before {
  content: "+";
  font-family: var(--ds-body);
  font-size: 16px;
  line-height: 1;
}

.hero-title {
  max-width: 1120px;
  margin: clamp(22px, 2.2vw, 42px) 0 0;
  color: var(--fb-wine);
  font-family: var(--ds-display);
  font-size: clamp(6.1rem, 8.85vw, 11.2rem);
  font-weight: 900;
  line-height: 0.79;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 34px rgba(74, 9, 40, 0.08);
}

.hero-title span {
  display: block;
}

.hero-title .editorial-word {
  display: inline-block;
  color: rgba(213, 0, 115, 0.7);
  font-family: var(--ds-editorial);
  font-size: 0.77em;
  font-weight: 400;
  line-height: 0.88;
  -webkit-text-stroke: 0.7px rgba(213, 0, 115, 0.92);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 20px 46px rgba(213, 0, 115, 0.1);
}

.hero-lede {
  max-width: 620px;
  margin: clamp(22px, 2.2vw, 38px) 0 0;
  color: rgba(19, 11, 16, 0.78);
  font-size: clamp(18px, 1.55vw, 30px);
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-lede strong {
  color: var(--fb-magenta);
  font-weight: 650;
}

.hero-support {
  max-width: 620px;
  margin: clamp(18px, 1.9vw, 34px) 0 0;
  color: rgba(74, 9, 40, 0.62);
  font-size: clamp(15px, 1.25vw, 25px);
  line-height: 1.72;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2vw, 42px);
  margin-top: clamp(28px, 3.25vw, 58px);
}

.hero-editorial-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  width: min(100%, 480px);
  margin-top: 58px;
  color: rgba(74, 9, 40, 0.52);
  font-family: var(--ds-antique);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-editorial-detail::before {
  content: "";
  width: 58px;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.hero-video-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-stage::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  z-index: 3;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(213, 0, 115, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: none;
}

.hero-video-stage::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: 0;
  z-index: 2;
  width: 68%;
  height: 32%;
  background: radial-gradient(ellipse, rgba(74, 9, 40, 0.22), transparent 68%);
  filter: blur(18px);
  transform: rotate(-3deg);
  pointer-events: none;
  display: none;
}

.hero-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, #fbf8f4, #f6f1ed);
  outline: 0;
  box-shadow: none;
  isolation: isolate;
}

.hero-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 0 42%, rgba(255, 255, 255, 0.46) 50%, transparent 58% 100%),
    radial-gradient(circle at 68% 42%, rgba(255, 207, 244, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(74, 9, 40, 0.03));
  background-size: 240% 100%, 100% 100%, 100% 100%;
  mix-blend-mode: screen;
  opacity: var(--frame-sheen, 0.08);
  animation: frameSweep 9s var(--ease-out) infinite alternate;
}

.hero-video-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 244, 0.18));
  filter: none;
  opacity: 1;
  pointer-events: none;
}

.scroll-controlled-video,
.scroll-controlled-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
  transform: translate3d(var(--video-x, 0vw), var(--video-y, 0vh), 0) scale(var(--video-scale, 1));
  transform-origin: center center;
  will-change: transform, opacity;
}

.scroll-controlled-video {
  opacity: 1;
}

.scroll-controlled-canvas {
  opacity: 0;
  pointer-events: none;
}

.hero-video-frame.is-sequence-ready .scroll-controlled-canvas {
  opacity: 1;
}

.hero-video-frame.is-sequence-ready .scroll-controlled-video {
  opacity: 0;
}

.video-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 207, 244, 0.68), transparent 30%),
    linear-gradient(180deg, rgba(255, 249, 251, 0.9), rgba(247, 217, 230, 0.64));
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease-smooth);
  pointer-events: none;
}

.video-fallback::before {
  content: "";
  width: min(52%, 240px);
  aspect-ratio: 0.55;
  border-radius: 44% 44% 14% 14% / 18% 18% 12% 12%;
  background:
    radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.88) 0 4%, transparent 5%),
    linear-gradient(180deg, #ffcff4 0 22%, #d50073 22% 25%, #f492cf 25% 100%);
  box-shadow: 0 34px 62px rgba(74, 9, 40, 0.22);
}

.video-fallback span {
  position: absolute;
  bottom: 24px;
  color: rgba(74, 9, 40, 0.62);
  font-family: var(--ds-antique);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-video-frame.is-video-fallback .scroll-controlled-video {
  opacity: 0;
}

.hero-video-frame.is-video-fallback .video-fallback {
  z-index: 3;
  opacity: 1;
}

.stage-label {
  position: absolute;
  z-index: 4;
  display: none;
  color: rgba(74, 9, 40, 0.68);
  font-family: var(--ds-antique);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stage-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--fb-magenta);
  box-shadow: 0 0 18px rgba(213, 0, 115, 0.48);
  vertical-align: 1px;
}

.stage-label-top {
  top: 23%;
  right: 54px;
}

.stage-label-left {
  left: auto;
  right: 24px;
  bottom: 42%;
  transform: rotate(90deg);
  transform-origin: center;
}

.stage-label-bottom {
  right: 72px;
  bottom: 24%;
}

.stage-metric {
  position: absolute;
  z-index: 5;
  display: none;
  left: auto;
  right: 56px;
  top: auto;
  bottom: 138px;
  max-width: 150px;
  color: rgba(74, 9, 40, 0.66);
  font-family: var(--ds-antique);
  font-size: 11px;
  line-height: 1.28;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--fb-magenta);
  font-family: var(--ds-display);
  font-size: 34px;
  line-height: 0.9;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.video-progress {
  position: absolute;
  z-index: 5;
  display: none;
  right: 56px;
  top: 50%;
  gap: 10px;
  width: 74px;
  color: rgba(74, 9, 40, 0.58);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-progress-track {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(74, 9, 40, 0.14);
}

.video-progress-track span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--fb-magenta);
  transform-origin: left;
}

.hero-final-scene {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  color: var(--fb-wine);
  will-change: opacity, transform;
}

.hero-final-scene::before,
.hero-final-scene::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  border: 1px solid rgba(213, 0, 115, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-final-scene::before {
  width: min(58vw, 740px);
  aspect-ratio: 1;
}

.hero-final-scene::after {
  width: min(42vw, 540px);
  aspect-ratio: 1;
  opacity: 0.74;
}

.final-kicker,
.final-side-label,
.final-metric,
.final-right-list,
.final-center-copy {
  position: absolute;
  z-index: 2;
}

.final-kicker,
.final-side-label,
.final-metric small,
.final-right-list small,
.final-center-copy .final-eyebrow {
  font-family: var(--ds-antique);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-kicker {
  left: 64px;
  top: 108px;
  color: var(--fb-magenta);
}

.final-kicker::before {
  content: "+";
  margin-right: 8px;
  font-family: var(--ds-body);
  font-size: 16px;
}

.final-dot {
  position: absolute;
  z-index: 2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fb-magenta);
  box-shadow: 0 0 18px rgba(213, 0, 115, 0.44);
}

.final-dot-left {
  left: 18%;
  top: 38%;
}

.final-dot-right {
  right: 18%;
  top: 38%;
}

.final-metric {
  left: 64px;
  color: var(--fb-wine);
}

.final-metric small,
.final-right-list small {
  display: block;
  margin-bottom: 10px;
  color: rgba(74, 9, 40, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.final-metric strong,
.final-right-list strong {
  display: block;
  color: var(--fb-magenta);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.final-metric strong {
  font-size: 24px;
  line-height: 1;
}

.final-metric span {
  display: block;
  margin-top: 7px;
  font-family: var(--ds-antique);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.final-metric-global {
  top: 32%;
}

.final-metric-expertise {
  top: 50%;
}

.final-right-list {
  right: 72px;
  color: var(--fb-magenta);
  text-align: right;
  font-family: var(--ds-antique);
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-right-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-right-top {
  top: 106px;
}

.final-right-mid {
  top: 31%;
}

.final-right-bottom {
  top: 49%;
}

.final-right-list strong {
  font-size: 18px;
  line-height: 1.25;
}

.final-center-copy {
  left: 50%;
  bottom: 28px;
  width: min(780px, 66vw);
  transform: translateX(-50%);
  text-align: center;
}

.final-center-copy .final-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--fb-magenta);
}

.final-center-copy h2 {
  margin: 0;
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(2.45rem, 3.7vw, 3.85rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.final-center-copy p {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(19, 11, 16, 0.58);
  font-size: 14px;
  line-height: 1.6;
  text-wrap: pretty;
}

.final-center-copy::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: 26px auto 0;
  border-right: 1px solid var(--fb-magenta);
  border-bottom: 1px solid var(--fb-magenta);
  transform: rotate(45deg);
}

.hero-proofbar {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 28px;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(74, 9, 40, 0.1);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset, 0 18px 60px rgba(74, 9, 40, 0.1);
  backdrop-filter: blur(18px);
  display: none;
}

.proof-item {
  min-height: 72px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.42);
}

.proof-item span {
  display: block;
  color: rgba(74, 9, 40, 0.52);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  margin-top: 8px;
  color: var(--fb-wine);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 124px;
  z-index: 7;
  display: grid;
  place-items: center;
  width: 40px;
  height: 64px;
  color: var(--fb-magenta);
  transform: translateX(-50%);
  pointer-events: none;
}

.scroll-cue::before {
  content: "";
  width: 1px;
  height: 42px;
  background: currentColor;
  transform-origin: top;
  animation: scrollCue 1.8s var(--ease-out) infinite;
}

.scroll-cue::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.vertical-scroll-label {
  position: absolute;
  left: 56px;
  bottom: 118px;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(213, 0, 115, 0.7);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
}

.vertical-scroll-label::before {
  content: "";
  width: 1px;
  height: 42px;
  background: currentColor;
  opacity: 0.48;
}

.products-section {
  position: relative;
  z-index: 12;
  scroll-margin-top: 96px;
  padding: clamp(92px, 10vw, 168px) clamp(18px, 4.4vw, 88px) clamp(96px, 10vw, 172px);
  color: var(--fb-wine);
  background:
    linear-gradient(180deg, rgba(251, 248, 244, 0.98) 0%, rgba(255, 249, 251, 0.98) 42%, rgba(247, 241, 243, 0.98) 100%);
  border-top: 1px solid rgba(213, 0, 115, 0.18);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.86);
  isolation: isolate;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(213, 0, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 0, 115, 0.06) 1px, transparent 1px);
  background-size: 8.6vw 8.6vw;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.products-shell {
  width: min(100%, 1780px);
  margin: 0 auto;
}

.products-heading {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
  margin-bottom: clamp(34px, 5vw, 78px);
}

.products-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.85vw, 15px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.products-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(30px, 5.5vw, 106px);
}

.products-heading h2 {
  max-width: 1040px;
  margin: 0;
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(3.1rem, 6.2vw, 7.6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.products-copy {
  display: grid;
  gap: 18px;
  max-width: 560px;
  padding-bottom: 0.42vw;
}

.products-copy p {
  margin: 0;
  color: rgba(19, 11, 16, 0.68);
  font-size: clamp(15px, 1.08vw, 19px);
  line-height: 1.7;
  text-wrap: pretty;
}

.products-copy p + p {
  color: rgba(74, 9, 40, 0.56);
  font-size: clamp(13px, 0.94vw, 16px);
}

.product-filters {
  position: sticky;
  top: clamp(76px, 6.5vw, 118px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 clamp(30px, 3.4vw, 54px);
  padding: 10px;
  overflow-x: auto;
  border: 1px solid rgba(213, 0, 115, 0.14);
  border-radius: 999px;
  background: rgba(255, 249, 251, 0.78);
  box-shadow: 0 18px 70px rgba(74, 9, 40, 0.08), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.product-filters::-webkit-scrollbar {
  display: none;
}

.product-filter {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(74, 9, 40, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(74, 9, 40, 0.66);
  font-family: var(--ds-antique);
  font-size: clamp(10px, 0.74vw, 13px);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition-property: color, background-color, border-color, box-shadow, transform, opacity;
  transition-duration: 0.26s;
  transition-timing-function: var(--ease-smooth);
}

.product-filter:hover,
.product-filter:focus-visible {
  color: var(--fb-magenta);
  border-color: rgba(213, 0, 115, 0.42);
  background: rgba(255, 255, 255, 0.72);
}

.product-filter:active {
  transform: scale(0.96);
}

.product-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #f01791, var(--fb-magenta));
  border-color: var(--fb-magenta);
  box-shadow: 0 14px 36px rgba(213, 0, 115, 0.26);
}

.product-filter-priority:not(.is-active) {
  color: var(--fb-magenta);
  border-color: rgba(213, 0, 115, 0.34);
}

.products-slider-shell {
  position: relative;
  --slider-edge-space: clamp(18px, 4.4vw, 88px);
}

.products-slider-shell::before,
.products-slider-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 28px;
  z-index: 6;
  width: clamp(54px, 8vw, 132px);
  pointer-events: none;
}

.products-slider-shell::before {
  left: calc(var(--slider-edge-space) * -0.25);
  background: linear-gradient(90deg, var(--fb-porcelain), rgba(251, 248, 244, 0));
}

.products-slider-shell::after {
  right: calc(var(--slider-edge-space) * -0.65);
  background: linear-gradient(270deg, var(--fb-porcelain), rgba(251, 248, 244, 0));
}

.product-slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(8px, 1.6vw, 26px);
  pointer-events: none;
  transform: translateY(-50%);
}

.product-slider-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(213, 0, 115, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  color: var(--fb-magenta);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 16px 42px rgba(74, 9, 40, 0.1), 0 1px 0 rgba(255, 255, 255, 0.78) inset;
  backdrop-filter: blur(16px);
  transition-property: color, background-color, border-color, opacity, transform;
  transition-duration: 0.26s;
  transition-timing-function: var(--ease-smooth);
}

.product-slider-button:hover {
  color: #fff;
  background: var(--fb-magenta);
  border-color: var(--fb-magenta);
}

.product-slider-button:active {
  transform: scale(0.96);
}

.product-slider-button[disabled] {
  opacity: 0.34;
  cursor: default;
  pointer-events: none;
}

.product-slider-button span {
  width: 11px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.product-slider-prev span {
  transform: translateX(2px) rotate(-45deg);
}

.product-slider-next span {
  transform: translateX(-2px) rotate(135deg);
}

.products-gallery {
  display: flex;
  gap: clamp(14px, 1.35vw, 24px);
  margin-right: calc(var(--slider-edge-space) * -1);
  padding: 4px var(--slider-edge-space) 34px 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.products-gallery::-webkit-scrollbar {
  display: none;
}

.product-card {
  --tone-a: #fff8fb;
  --tone-b: #ffcff4;
  --tone-c: #d50073;
  position: relative;
  flex: 0 0 clamp(288px, 28vw, 460px);
  height: clamp(440px, 42vw, 640px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 60px rgba(74, 9, 40, 0.09);
  transform-origin: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: zoom-in;
  transition-property: opacity, transform, filter, box-shadow;
  transition-duration: 0.32s;
  transition-timing-function: var(--ease-smooth);
}

.product-card-large {
  flex-basis: clamp(360px, 38vw, 680px);
}

.product-card-wide {
  flex-basis: clamp(330px, 34vw, 560px);
}

.product-card-tall {
  flex-basis: clamp(300px, 30vw, 500px);
}

.product-card-medium {
  flex-basis: clamp(320px, 32vw, 540px);
}

.product-card.is-filter-hidden {
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  filter: blur(6px);
  pointer-events: none;
}

.product-card-placeholder {
  flex-shrink: 0;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  scroll-snap-align: start;
}

.product-card.is-expanded {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  width: min(1120px, calc(100vw - 64px));
  height: min(720px, calc(100dvh - 72px));
  overflow: hidden;
  cursor: zoom-out;
  outline: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 34px 140px rgba(74, 9, 40, 0.28), 0 0 0 1px rgba(74, 9, 40, 0.08);
  transform: translate(-50%, -50%);
  transition-property: opacity, transform, box-shadow;
}

.product-card.product-reveal.is-visible.is-expanded {
  transform: translate(-50%, -50%);
  filter: none;
}

.product-card.is-expanded .product-visual,
.product-card.is-expanded .product-card-copy {
  position: relative;
  inset: auto;
}

.product-card.is-expanded .product-visual {
  min-height: 100%;
}

.product-card.is-expanded .product-image {
  transform: scale(1.01);
}

.product-card.is-expanded .product-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 100%;
  padding: clamp(28px, 4vw, 58px);
  color: var(--fb-wine);
  background:
    linear-gradient(180deg, rgba(255, 249, 251, 0.96), rgba(251, 248, 244, 0.98));
}

.product-card.is-expanded .product-card-copy span {
  color: var(--fb-magenta);
  opacity: 1;
}

.product-card.is-expanded .product-card-copy h3 {
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(2.15rem, 3.25vw, 4.15rem);
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.product-card.is-expanded .product-card-copy p {
  max-width: 520px;
  color: rgba(19, 11, 16, 0.68);
  font-size: clamp(15px, 1.18vw, 19px);
  line-height: 1.72;
}

.product-card.is-expanded .product-card-copy::after {
  content: attr(data-close-label);
  display: block;
  margin-top: auto;
  padding-top: 34px;
  color: rgba(74, 9, 40, 0.44);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-spotlight-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  background: rgba(251, 248, 244, 0.62);
  backdrop-filter: blur(18px);
  transition-property: opacity;
  transition-duration: 0.28s;
  transition-timing-function: var(--ease-smooth);
}

.products-section.is-spotlight-open .product-spotlight-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.is-product-spotlight-open {
  overflow: hidden;
}

.product-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, var(--tone-a), var(--tone-b));
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition-property: transform, opacity, filter;
  transition-duration: 0.54s;
  transition-timing-function: var(--ease-smooth);
}

.product-visual::before {
  left: 50%;
  top: 48%;
  width: 56%;
  max-width: 340px;
  aspect-ratio: 0.72;
  border-radius: 34% 34% 22% 22% / 22% 22% 18% 18%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), transparent 34%),
    linear-gradient(180deg, var(--tone-b), var(--tone-c));
  box-shadow: 0 28px 70px rgba(74, 9, 40, 0.16);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.product-visual::after {
  left: 50%;
  top: 32%;
  width: 64%;
  max-width: 390px;
  aspect-ratio: 2.6;
  border-radius: 999px 999px 18px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), transparent 32%),
    linear-gradient(90deg, #ffae2f, #ff8900);
  box-shadow: 0 20px 52px rgba(213, 0, 115, 0.12);
  transform: translate(-48%, -50%);
}

.product-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.005);
  transition-property: transform, opacity, filter;
  transition-duration: 0.58s;
  transition-timing-function: var(--ease-smooth);
}

.product-card.is-image-missing .product-image {
  opacity: 0;
}

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

.product-card:hover .product-visual::before {
  transform: translate(-50%, -52%) rotate(1deg) scale(1.025);
}

.product-card:hover .product-visual::after {
  transform: translate(-48%, -54%) scale(1.035);
}

.product-visual figcaption {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
}

.product-visual figcaption span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--fb-wine);
  font-family: var(--ds-antique);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.product-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: clamp(18px, 2vw, 30px);
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(74, 9, 40, 0.68));
  transform: translateY(0);
}

.product-card-copy span {
  display: block;
  margin-bottom: 10px;
  font-family: var(--ds-antique);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.product-card-copy h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.5vw, 1.8rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.product-card-copy p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(12px, 0.88vw, 14px);
  line-height: 1.5;
  text-wrap: pretty;
}

.tone-packaging {
  --tone-a: #fff7f2;
  --tone-b: #ffcff4;
  --tone-c: #d50073;
}

.tone-packaging-soft {
  --tone-a: #fff9fb;
  --tone-b: #f492cf;
  --tone-c: #990459;
}

.tone-finished {
  --tone-a: #fffaf2;
  --tone-b: #ffb64a;
  --tone-c: #ef5f58;
}

.tone-skincare {
  --tone-a: #fbfbf8;
  --tone-b: #d1d1d1;
  --tone-c: #aba8a7;
}

.tone-makeup {
  --tone-a: #fff4f9;
  --tone-b: #f492cf;
  --tone-c: #560136;
}

.tone-face {
  --tone-a: #fff7f5;
  --tone-b: #ffc7d9;
  --tone-c: #d50073;
}

.tone-eyes {
  --tone-a: #fbf8ff;
  --tone-b: #d1d1d1;
  --tone-c: #6f6470;
}

.tone-lips {
  --tone-a: #fff4f7;
  --tone-b: #ff88bd;
  --tone-c: #990459;
}

.tone-hair {
  --tone-a: #fffaf6;
  --tone-b: #e6d7c9;
  --tone-c: #aba8a7;
}

.tone-body {
  --tone-a: #fff9fb;
  --tone-b: #ffcff4;
  --tone-c: #e78db4;
}

.tone-fragrance {
  --tone-a: #fffaf2;
  --tone-b: #ffe1a8;
  --tone-c: #d50073;
}

.tone-accessories {
  --tone-a: #fbf8f4;
  --tone-b: #d1d1d1;
  --tone-c: #560136;
}

.one-stop-section {
  position: relative;
  z-index: 11;
  scroll-margin-top: 96px;
  padding: clamp(92px, 9vw, 154px) clamp(18px, 4.4vw, 88px) clamp(100px, 10vw, 176px);
  overflow: hidden;
  color: var(--fb-wine);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 207, 244, 0.54), transparent 34%),
    linear-gradient(180deg, rgba(247, 241, 243, 0.98) 0%, rgba(251, 248, 244, 0.98) 54%, rgba(255, 249, 251, 0.98) 100%);
  border-top: 1px solid rgba(213, 0, 115, 0.16);
  isolation: isolate;
}

.one-stop-section::before {
  content: "FULLBEAUTY";
  position: absolute;
  top: clamp(34px, 5vw, 90px);
  right: clamp(-120px, -5vw, -20px);
  z-index: -1;
  color: rgba(213, 0, 115, 0.045);
  font-family: var(--ds-antique);
  font-size: clamp(5rem, 14vw, 18rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.one-stop-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(213, 0, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 0, 115, 0.05) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 86%, transparent);
}

.one-stop-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.one-stop-heading {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
  margin-bottom: clamp(42px, 5.6vw, 92px);
}

.one-stop-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.85vw, 15px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.one-stop-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(290px, 0.62fr);
  align-items: end;
  gap: clamp(30px, 5.4vw, 104px);
}

.one-stop-title-grid h2 {
  max-width: 1060px;
  margin: 0;
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(3.05rem, 6vw, 7.35rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.one-stop-intro {
  display: grid;
  gap: 18px;
  max-width: 590px;
}

.one-stop-intro p {
  margin: 0;
  color: rgba(19, 11, 16, 0.68);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.one-stop-intro p + p {
  color: rgba(74, 9, 40, 0.55);
  font-size: clamp(13px, 0.92vw, 16px);
}

.one-stop-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  margin-bottom: clamp(28px, 4.4vw, 72px);
  padding: clamp(18px, 2vw, 32px);
  border: 1px solid rgba(213, 0, 115, 0.16);
  border-radius: 8px;
  background: rgba(255, 249, 251, 0.66);
  box-shadow: 0 28px 90px rgba(74, 9, 40, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(18px);
}

.one-stop-core {
  display: grid;
  align-content: end;
  min-height: clamp(310px, 27vw, 460px);
  padding: clamp(24px, 3vw, 48px);
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 207, 244, 0.56), transparent 34%),
    linear-gradient(145deg, var(--fb-magenta), var(--fb-wine));
}

.one-stop-core::before {
  content: "";
  position: absolute;
  width: min(36vw, 440px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-22%, -26%);
}

.one-stop-core span,
.one-stop-core small,
.one-stop-card span,
.one-stop-timeline span {
  font-family: var(--ds-antique);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.one-stop-core span {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-size: 11px;
  opacity: 0.76;
}

.one-stop-core strong {
  position: relative;
  z-index: 1;
  max-width: 360px;
  font-family: var(--ds-editorial);
  font-size: clamp(3rem, 5.8vw, 7rem);
  font-weight: 400;
  line-height: 0.92;
}

.one-stop-core small {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  font-size: 10px;
  opacity: 0.78;
}

.one-stop-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.one-stop-timeline::before {
  content: "";
  position: absolute;
  top: clamp(40px, 4vw, 58px);
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 0, 115, 0.42), transparent);
}

.one-stop-timeline li {
  position: relative;
  display: grid;
  align-content: start;
  min-height: clamp(310px, 27vw, 460px);
  padding: clamp(22px, 2.2vw, 36px);
  border: 1px solid rgba(213, 0, 115, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 20px 70px rgba(74, 9, 40, 0.06);
}

.one-stop-timeline li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-bottom: clamp(52px, 5.2vw, 82px);
  border-radius: 50%;
  background: var(--fb-magenta);
  box-shadow: 0 0 0 9px rgba(213, 0, 115, 0.08);
}

.one-stop-timeline span,
.one-stop-card span {
  color: var(--fb-magenta);
  font-size: 10px;
}

.one-stop-timeline strong {
  margin-top: auto;
  color: var(--fb-wine);
  font-size: clamp(1.08rem, 1.25vw, 1.45rem);
  line-height: 1.12;
}

.one-stop-timeline p,
.one-stop-card p {
  margin: 14px 0 0;
  color: rgba(19, 11, 16, 0.62);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.62;
}

.one-stop-capabilities {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}

.one-stop-card {
  min-height: clamp(188px, 16vw, 270px);
  padding: clamp(20px, 2.1vw, 32px);
  border: 1px solid rgba(213, 0, 115, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 62px rgba(74, 9, 40, 0.055);
}

.one-stop-card h3 {
  margin: clamp(42px, 4vw, 68px) 0 0;
  color: var(--fb-wine);
  font-size: clamp(1rem, 1.05vw, 1.28rem);
  line-height: 1.08;
}

.quality-section {
  position: relative;
  z-index: 10;
  scroll-margin-top: 96px;
  padding: clamp(92px, 9vw, 154px) clamp(18px, 4.4vw, 88px) clamp(104px, 10vw, 178px);
  overflow: hidden;
  color: var(--fb-wine);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 207, 244, 0.38), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(171, 168, 167, 0.2), transparent 28%),
    linear-gradient(180deg, #fff9fb, #f6f1f3 48%, #fbf8f4);
  background-color: #fbf8f4;
  border-top: 1px solid rgba(213, 0, 115, 0.14);
  isolation: isolate;
}

.quality-section::before {
  content: "QUALITY";
  position: absolute;
  top: clamp(28px, 4vw, 78px);
  left: clamp(-60px, -2vw, -12px);
  z-index: -1;
  color: rgba(86, 1, 54, 0.045);
  font-family: var(--ds-antique);
  font-size: clamp(4.8rem, 12vw, 16rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.quality-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(213, 0, 115, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 0, 115, 0.05) 1px, transparent 1px);
  background-size: 8.5vw 8.5vw;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 86%, transparent);
}

.quality-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.quality-heading {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
  margin-bottom: clamp(38px, 5vw, 82px);
}

.quality-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.85vw, 15px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quality-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  align-items: end;
  gap: clamp(30px, 5.4vw, 104px);
}

.quality-title-grid h2 {
  max-width: 1120px;
  margin: 0;
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(3.05rem, 5.8vw, 7.1rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.quality-intro {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.quality-intro p {
  margin: 0;
  color: rgba(19, 11, 16, 0.68);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.quality-intro p + p {
  color: rgba(74, 9, 40, 0.55);
  font-size: clamp(13px, 0.92vw, 16px);
}

.quality-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 0.65fr);
  align-items: stretch;
  gap: clamp(20px, 2.35vw, 44px);
  margin-bottom: clamp(34px, 4vw, 68px);
}

.quality-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.32fr);
  grid-template-rows: minmax(220px, 0.82fr) minmax(150px, 0.44fr);
  gap: clamp(12px, 1.2vw, 18px);
  min-height: clamp(500px, 37vw, 680px);
  padding: clamp(12px, 1.2vw, 18px);
  border: 1px solid rgba(213, 0, 115, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 100px rgba(74, 9, 40, 0.08), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  backdrop-filter: blur(18px);
}

.quality-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: var(--fb-pearl);
  box-shadow: 0 20px 72px rgba(74, 9, 40, 0.08);
  isolation: isolate;
}

.quality-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(86, 1, 54, 0.1)),
    linear-gradient(135deg, rgba(213, 0, 115, 0.08), transparent 42%);
  mix-blend-mode: multiply;
  opacity: 0.58;
}

.quality-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

.quality-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.03);
}

.quality-photo-main {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 100%;
}

.quality-photo-side-a {
  grid-column: 2;
  grid-row: 1;
}

.quality-photo-side-b {
  grid-column: 2;
  grid-row: 2;
}

.quality-photo-main figcaption {
  position: absolute;
  left: clamp(18px, 2vw, 32px);
  right: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 32px);
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.quality-photo-main figcaption span,
.quality-media-note span,
.quality-statement span,
.quality-control span {
  font-family: var(--ds-antique);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quality-photo-main figcaption span {
  font-size: 10px;
  opacity: 0.78;
}

.quality-photo-main figcaption strong {
  max-width: 360px;
  font-size: clamp(1.05rem, 1.4vw, 1.7rem);
  line-height: 1.08;
  text-align: right;
}

.quality-photo-strip {
  display: none;
}

.quality-media-note {
  position: absolute;
  top: clamp(24px, 2.4vw, 40px);
  left: clamp(24px, 2.4vw, 40px);
  z-index: 3;
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 360px;
}

.quality-media-note span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #fff;
  background: rgba(74, 9, 40, 0.24);
  backdrop-filter: blur(12px);
  font-size: 9px;
}

.quality-statement {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: clamp(24px, 3.2vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(213, 0, 115, 0.14);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 207, 244, 0.5), transparent 31%),
    radial-gradient(circle at 22% 82%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, var(--fb-wine), var(--fb-magenta));
  box-shadow: 0 28px 86px rgba(74, 9, 40, 0.13);
}

.quality-statement span {
  margin-bottom: clamp(38px, 5.8vw, 92px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.quality-statement p {
  margin: 0;
  font-family: var(--ds-editorial);
  font-size: clamp(3rem, 3.4vw, 5rem);
  font-weight: 400;
  line-height: 1;
  max-width: 10.8ch;
  text-wrap: balance;
}

.quality-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(213, 0, 115, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 82px rgba(74, 9, 40, 0.06);
  overflow: hidden;
}

.quality-control {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(14px, 1.4vw, 24px);
  min-height: clamp(190px, 16vw, 270px);
  padding: clamp(20px, 2.4vw, 42px);
  border-right: 1px solid rgba(213, 0, 115, 0.11);
  border-bottom: 1px solid rgba(213, 0, 115, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 249, 251, 0.46));
}

.quality-control:nth-child(3n) {
  border-right: 0;
}

.quality-control:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.quality-control > span {
  color: var(--fb-magenta);
  font-size: 10px;
}

.quality-control h3 {
  margin: 0;
  color: var(--fb-wine);
  font-size: clamp(1.05rem, 1.15vw, 1.42rem);
  line-height: 1.08;
  text-wrap: balance;
}

.quality-control p {
  margin: 14px 0 0;
  color: rgba(19, 11, 16, 0.62);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.62;
}

.global-section {
  position: relative;
  z-index: 10;
  scroll-margin-top: 96px;
  padding: clamp(78px, 7vw, 118px) clamp(18px, 4.4vw, 88px) clamp(104px, 10vw, 178px);
  overflow: hidden;
  color: var(--fb-wine);
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 207, 244, 0.4), transparent 32%),
    radial-gradient(circle at 16% 78%, rgba(171, 168, 167, 0.2), transparent 30%),
    linear-gradient(180deg, #fbf8f4 0%, #fff9fb 46%, #f7f1f4 100%);
  background-color: #fbf8f4;
  border-top: 1px solid rgba(213, 0, 115, 0.13);
  isolation: isolate;
}

.global-section::before {
  content: "GLOBAL";
  position: absolute;
  top: clamp(22px, 3.2vw, 72px);
  right: clamp(-52px, -1.4vw, -10px);
  z-index: -1;
  color: rgba(86, 1, 54, 0.045);
  font-family: var(--ds-antique);
  font-size: clamp(4.8rem, 12vw, 16rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  pointer-events: none;
}

.global-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(213, 0, 115, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 0, 115, 0.045) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.global-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.global-heading {
  display: grid;
  gap: clamp(28px, 3vw, 52px);
  margin-bottom: clamp(28px, 3.2vw, 54px);
}

.global-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.85vw, 15px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.global-title-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(360px, 0.58fr);
  align-items: start;
  gap: clamp(30px, 5vw, 92px);
}

.global-title-copy {
  display: grid;
  gap: clamp(22px, 2.4vw, 38px);
}

.global-title-grid h2 {
  max-width: 700px;
  margin: 0;
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(2.7rem, 4.25vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.global-authority-card {
  display: grid;
  gap: 14px;
  max-width: 640px;
  padding: clamp(16px, 1.7vw, 22px);
  border: 1px solid rgba(213, 0, 115, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 251, 0.44)),
    radial-gradient(circle at 92% 18%, rgba(255, 207, 244, 0.48), transparent 40%);
  box-shadow: 0 22px 76px rgba(74, 9, 40, 0.07), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(18px);
}

.global-authority-card > span,
.global-map-kicker,
.global-location-button small,
.global-map-info span,
.global-map-tags span {
  font-family: var(--ds-antique);
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.global-section a {
  color: inherit;
  text-decoration: none;
}

.global-section a[href^="https://fullbrands.vercel.app"] {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
  color: var(--fb-deep-wine);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(213, 0, 115, 0.52);
  text-underline-offset: 0.18em;
  transition-property: color, text-decoration-color;
  transition-duration: 0.24s;
  transition-timing-function: var(--ease-smooth);
}

.fullbrands-link-icon {
  display: inline-block;
  color: var(--fb-magenta);
  font-family: var(--ds-body);
  font-size: 0.68em;
  line-height: 1;
  text-decoration: none;
  transform: translate3d(0, -0.08em, 0);
  transition-property: transform, opacity;
  transition-duration: 0.24s;
  transition-timing-function: var(--ease-smooth);
}

.fullbrands-link-icon::before {
  content: "\2197";
}

.global-section a[href^="https://fullbrands.vercel.app"]:hover,
.global-section a[href^="https://fullbrands.vercel.app"]:focus-visible {
  color: var(--fb-magenta);
  text-decoration-color: rgba(213, 0, 115, 0.9);
}

.global-section a[href^="https://fullbrands.vercel.app"]:hover .fullbrands-link-icon,
.global-section a[href^="https://fullbrands.vercel.app"]:focus-visible .fullbrands-link-icon {
  opacity: 1;
  transform: translate3d(1.5px, calc(-0.08em - 1.5px), 0);
}

.global-authority-card > span,
.global-map-kicker {
  color: var(--fb-magenta);
  font-size: 10px;
}

.global-authority-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(74, 9, 40, 0.72);
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.58;
  text-wrap: pretty;
}

.global-authority-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.global-authority-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(213, 0, 115, 0.16);
  border-radius: 999px;
  color: var(--fb-magenta);
  background: rgba(255, 255, 255, 0.66);
  font-family: var(--ds-antique);
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-intro {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.global-intro p {
  margin: 0;
  color: rgba(19, 11, 16, 0.66);
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.global-intro p + p {
  color: rgba(74, 9, 40, 0.55);
  font-size: clamp(13px, 0.92vw, 16px);
}

.global-intro .global-highlight {
  margin-top: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(213, 0, 115, 0.16);
  border-radius: 8px;
  color: var(--fb-magenta);
  background: rgba(255, 255, 255, 0.54);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 18px 52px rgba(74, 9, 40, 0.06);
}

.global-map-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(14px, 1.4vw, 24px);
  min-height: clamp(560px, 42vw, 720px);
  margin-bottom: clamp(28px, 4vw, 70px);
  padding: clamp(14px, 1.3vw, 22px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.06), transparent 24%),
    radial-gradient(circle at 76% 24%, rgba(213, 0, 115, 0.38), transparent 24%),
    radial-gradient(circle at 16% 82%, rgba(244, 146, 207, 0.14), transparent 28%),
    linear-gradient(135deg, #1a0011 0%, #250015 38%, #430024 68%, #5c0b37 100%);
  box-shadow:
    0 36px 120px rgba(24, 0, 14, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  color: #fff;
}

.global-map-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 13px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: 0 0, 0 0;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.12));
  opacity: 0.58;
  animation: globalGridDrift 34s linear infinite alternate;
}

.global-map-panel::after {
  content: "";
  position: absolute;
  inset: -18% -16%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.08) 45%, transparent 54%),
    radial-gradient(circle at 62% 38%, rgba(213, 0, 115, 0.22), transparent 22%),
    radial-gradient(circle at 26% 66%, rgba(255, 255, 255, 0.06), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: translate3d(-3%, 0, 0) rotate(-2deg);
  animation: globalPanelSweep 18s var(--ease-smooth) infinite alternate;
}

.global-map-sidebar,
.global-map-visual,
.global-map-tags {
  position: relative;
  z-index: 1;
}

.global-map-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(18px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(12, 2, 18, 0.34);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(18px);
}

.global-map-sidebar h3 {
  max-width: 320px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.05rem, 2.7vw, 4.15rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.global-map-sidebar h3 a {
  color: #fff;
}

.global-map-sidebar p {
  max-width: 330px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.62;
  text-wrap: pretty;
}

.global-location-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.global-location-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 66px;
  width: 100%;
  padding: 13px 14px 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
  transition-property: transform, border-color, background-color, box-shadow, color, filter;
  transition-duration: 0.32s;
  transition-timing-function: var(--ease-smooth);
}

.global-location-button:hover,
.global-location-button:focus-visible,
.global-location-button.is-active {
  color: #fff;
  border-color: rgba(244, 146, 207, 0.58);
  background: rgba(213, 0, 115, 0.2);
  box-shadow:
    0 16px 46px rgba(213, 0, 115, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  filter: saturate(1.05);
  transform: translateY(-2px);
}

.global-location-button:active {
  transform: scale(0.96);
}

.global-location-button strong {
  display: block;
  font-size: clamp(0.95rem, 0.96vw, 1.15rem);
  line-height: 1;
}

.global-location-button small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.global-location-arrow {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: currentColor;
  opacity: 0.78;
  transition-property: transform, opacity;
  transition-duration: 0.28s;
  transition-timing-function: var(--ease-smooth);
}

.global-location-button:hover .global-location-arrow,
.global-location-button:focus-visible .global-location-arrow,
.global-location-button.is-active .global-location-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.global-map-visual {
  position: relative;
  min-height: clamp(520px, 38vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 80% 38%, rgba(213, 0, 115, 0.18), transparent 22%),
    radial-gradient(circle at 32% 72%, rgba(244, 146, 207, 0.14), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow:
    0 34px 118px rgba(0, 0, 0, 0.24) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.global-map-visual::before {
  content: "";
  position: absolute;
  inset: 12% 7%;
  border: 1px solid rgba(244, 146, 207, 0.14);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.82;
}

.global-map-visual::after {
  content: "";
  position: absolute;
  inset: -10% -12%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%),
    radial-gradient(circle at 68% 42%, rgba(255, 207, 244, 0.08), transparent 28%),
    radial-gradient(circle at 34% 68%, rgba(213, 0, 115, 0.12), transparent 26%);
  opacity: 0.55;
  transform: translate3d(0, 0, 0);
  animation: globalVisualSweep 16s var(--ease-smooth) infinite alternate;
}

.global-world-map {
  position: absolute;
  inset: 6% 4%;
  width: 92%;
  height: 82%;
  opacity: 0.98;
}

.global-world-land path {
  fill: rgba(255, 255, 255, 0.095);
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
  transition-property: fill, opacity;
  transition-duration: 0.28s;
  transition-timing-function: var(--ease-smooth);
}

.global-world-grid path,
.global-world-grid ellipse {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.global-route {
  fill: none;
  stroke: url("#globalRouteGradient");
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  filter: drop-shadow(0 0 8px rgba(213, 0, 115, 0.5));
  animation: globalRouteDrift 11s linear infinite;
}

.global-route-b {
  animation-duration: 13s;
  opacity: 0.82;
}

.global-route-c {
  animation-duration: 9s;
  opacity: 0.7;
}

.global-pin {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  gap: 5px;
  min-width: 116px;
  min-height: 44px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition-property: transform, opacity, filter;
  transition-duration: 0.32s;
  transition-timing-function: var(--ease-smooth);
}

.global-pin:hover,
.global-pin:focus-visible,
.global-pin.is-active {
  z-index: 4;
  transform: translate(-50%, -50%) scale(1.03);
}

.global-pin:active {
  transform: translate(-50%, -50%) scale(0.96);
}

.global-pin-dot {
  width: 13px;
  height: 13px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--fb-magenta);
  box-shadow: 0 0 0 8px rgba(213, 0, 115, 0.16), 0 0 38px rgba(213, 0, 115, 0.62);
  animation: globalPinPulse 2.7s var(--ease-out) infinite;
}

.global-pin-label {
  display: grid;
  gap: 5px;
  width: max-content;
  min-width: 104px;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  background: rgba(10, 1, 15, 0.46);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  transition-property: background-color, border-color, box-shadow, transform;
  transition-duration: 0.32s;
  transition-timing-function: var(--ease-smooth);
}

.global-pin:hover .global-pin-label,
.global-pin:focus-visible .global-pin-label,
.global-pin.is-active .global-pin-label {
  border-color: rgba(244, 146, 207, 0.52);
  background: rgba(213, 0, 115, 0.24);
  box-shadow: 0 20px 64px rgba(213, 0, 115, 0.16);
  transform: translateY(-2px);
}

.global-pin strong {
  font-size: clamp(0.95rem, 1vw, 1.18rem);
  line-height: 1;
}

.global-pin small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.global-pin-itajai {
  left: 36.8%;
  top: 66.6%;
}

.global-pin-sao-paulo {
  left: 39.2%;
  top: 63.8%;
}

.global-pin-ningbo {
  left: 79.6%;
  top: 39.2%;
}

.global-pin-abu-dhabi {
  left: 61.6%;
  top: 43.2%;
}

.global-map-info {
  position: absolute;
  left: clamp(24px, 4vw, 70px);
  bottom: clamp(24px, 3.2vw, 54px);
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(168px, 0.95fr) minmax(188px, 1.2fr);
  gap: clamp(14px, 1.2vw, 20px);
  width: min(680px, 70%);
  min-height: 0;
  padding: clamp(14px, 1.4vw, 20px);
  border: 1px solid rgba(244, 146, 207, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 34%, rgba(255, 255, 255, 0.015) 58%, transparent 76%),
    linear-gradient(180deg, rgba(18, 0, 20, 0.78), rgba(12, 1, 16, 0.72));
  background-size: 220% 100%, 100% 100%;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  box-shadow:
    0 22px 76px rgba(0, 0, 0, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0) scale(0.985);
  transition-property: transform, opacity, filter, left, right, top, bottom, box-shadow, background-color;
  transition-duration: 0.38s;
  transition-timing-function: var(--ease-smooth);
  animation: globalInfoSweep 18s var(--ease-smooth) infinite alternate;
}

.global-map-panel.is-card-visible .global-map-info {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow:
    0 24px 82px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.global-map-panel[data-active-location="itajai"] .global-map-info,
.global-map-panel[data-active-location="saoPaulo"] .global-map-info {
  left: clamp(22px, 3.2vw, 54px);
  right: auto;
  top: auto;
  bottom: clamp(24px, 3.2vw, 54px);
}

.global-map-panel[data-active-location="abuDhabi"] .global-map-info {
  left: 38%;
  right: auto;
  top: 52%;
  bottom: auto;
}

.global-map-panel[data-active-location="ningbo"] .global-map-info {
  left: auto;
  right: clamp(22px, 3vw, 48px);
  top: 50%;
  bottom: auto;
}

.global-map-panel.is-card-visible .global-map-info.is-updating {
  opacity: 0.58;
  filter: blur(4px);
  transform: translate3d(0, 8px, 0) scale(0.985);
}

.global-map-media {
  margin: 0;
  min-height: 0;
  max-height: 196px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
}

.global-map-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-map-info-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.global-map-info span {
  display: block;
  margin-bottom: 4px;
  color: var(--fb-petal);
  font-size: 9px;
}

.global-map-info h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 1.8vw, 2.45rem);
  line-height: 1;
}

.global-map-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.58;
  text-wrap: pretty;
}

.global-map-address {
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.5;
}

.global-map-tags {
  position: absolute;
  right: clamp(24px, 2.2vw, 38px);
  bottom: clamp(24px, 2.2vw, 38px);
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 560px;
  pointer-events: none;
}

.global-map-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(244, 146, 207, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  font-size: 9px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

@keyframes globalRouteDrift {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes globalGridDrift {
  0% {
    background-position: 0 0, 0 0;
    opacity: 0.5;
  }

  100% {
    background-position: 36px 22px, -18px -14px;
    opacity: 0.66;
  }
}

@keyframes globalPanelSweep {
  0% {
    opacity: 0.52;
    transform: translate3d(-4%, 0, 0) rotate(-2.6deg);
  }

  50% {
    opacity: 0.74;
    transform: translate3d(0, -1%, 0) rotate(-1.4deg);
  }

  100% {
    opacity: 0.58;
    transform: translate3d(4%, 1%, 0) rotate(-2.2deg);
  }
}

@keyframes globalVisualSweep {
  0% {
    opacity: 0.38;
    transform: translate3d(-1.8%, -1%, 0) scale(1);
  }

  50% {
    opacity: 0.64;
    transform: translate3d(0, 0, 0) scale(1.015);
  }

  100% {
    opacity: 0.48;
    transform: translate3d(2.4%, 1.2%, 0) scale(1.01);
  }
}

@keyframes globalInfoSweep {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 140% 0, 0 0;
  }
}

@keyframes globalPinPulse {
  0%,
  100% {
    box-shadow: 0 0 0 7px rgba(213, 0, 115, 0.12), 0 0 34px rgba(213, 0, 115, 0.45);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(213, 0, 115, 0.04), 0 0 42px rgba(213, 0, 115, 0.58);
  }
}

.contact-section {
  position: relative;
  z-index: 10;
  scroll-margin-top: 96px;
  padding: clamp(92px, 9vw, 154px) clamp(18px, 4.4vw, 88px) clamp(96px, 9vw, 156px);
  color: var(--fb-wine);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 207, 244, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(255, 249, 251, 0.98), rgba(251, 248, 244, 0.98));
  border-top: 1px solid rgba(213, 0, 115, 0.14);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 112px);
  width: min(100%, 1480px);
  margin: 0 auto;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 24px;
}

.contact-eyebrow {
  margin: 0;
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: clamp(11px, 0.85vw, 15px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-copy h2 {
  max-width: 840px;
  margin: 0;
  color: var(--fb-wine);
  font-family: var(--ds-editorial);
  font-size: clamp(3rem, 5.6vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-copy p:not(.contact-eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(19, 11, 16, 0.64);
  font-size: clamp(15px, 1.08vw, 19px);
  line-height: 1.72;
}

.contact-form {
  padding: clamp(20px, 2.4vw, 38px);
  border: 1px solid rgba(213, 0, 115, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 28px 90px rgba(74, 9, 40, 0.08), 0 1px 0 rgba(255, 255, 255, 0.86) inset;
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.contact-form label span {
  color: rgba(74, 9, 40, 0.7);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(74, 9, 40, 0.13);
  border-radius: 8px;
  background: rgba(251, 248, 244, 0.72);
  color: var(--fb-wine);
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  padding: 13px 14px;
  transition: border-color 0.22s var(--ease-smooth), background-color 0.22s var(--ease-smooth), box-shadow 0.22s var(--ease-smooth);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(213, 0, 115, 0.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(213, 0, 115, 0.08);
}

.form-message {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.form-footer p {
  max-width: 320px;
  margin: 0;
  color: rgba(74, 9, 40, 0.54);
  font-size: 12px;
  line-height: 1.55;
}

.closing-cta {
  position: relative;
  z-index: 10;
  padding: clamp(76px, 8vw, 136px) clamp(18px, 4.4vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 22%, rgba(213, 0, 115, 0.34), transparent 32%),
    radial-gradient(circle at 84% 70%, rgba(244, 146, 207, 0.18), transparent 34%),
    linear-gradient(135deg, #26001c 0%, #560136 56%, #7e0751 100%);
  overflow: hidden;
  isolation: isolate;
}

.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 86%);
}

.closing-cta-shell {
  display: grid;
  justify-items: center;
  width: min(100%, 1020px);
  margin: 0 auto;
  text-align: center;
}

.closing-cta-eyebrow {
  margin: 0 0 18px;
  color: var(--fb-petal);
  font-family: var(--ds-antique);
  font-size: clamp(10px, 0.82vw, 13px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-cta h2 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-family: var(--ds-editorial);
  font-size: clamp(2.5rem, 5.7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.closing-cta p:not(.closing-cta-eyebrow) {
  max-width: 760px;
  margin: clamp(22px, 2.2vw, 34px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.08vw, 19px);
  line-height: 1.72;
  text-wrap: pretty;
}

.closing-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 46px);
}

.closing-cta .ds-button-quiet {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.closing-cta .ds-button-quiet:hover {
  color: var(--fb-deep-wine);
  background: #fff;
  border-color: #fff;
}

.site-footer {
  position: relative;
  z-index: 10;
  padding: clamp(56px, 6vw, 96px) clamp(18px, 4.4vw, 88px) 26px;
  color: var(--fb-wine);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 207, 244, 0.42), transparent 28%),
    linear-gradient(180deg, #fff9fb 0%, #fbf8f4 100%);
  border-top: 1px solid rgba(213, 0, 115, 0.14);
}

.site-footer-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(3, minmax(170px, 0.6fr));
  gap: clamp(28px, 4vw, 76px);
  width: min(100%, 1480px);
  margin: 0 auto;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
  max-width: 520px;
}

.footer-logo {
  display: inline-grid;
  gap: 6px;
  width: fit-content;
  color: var(--fb-deep-wine);
}

.footer-logo span {
  font-size: clamp(1.4rem, 1.65vw, 2.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
}

.footer-logo small,
.footer-column h3,
.footer-contact strong {
  color: var(--fb-magenta);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-brand p {
  margin: 0;
  color: rgba(74, 9, 40, 0.66);
  font-size: clamp(14px, 0.96vw, 16px);
  line-height: 1.68;
  text-wrap: pretty;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  color: rgba(74, 9, 40, 0.66);
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}

.footer-column h3 {
  margin: 0 0 8px;
}

.footer-column a {
  width: fit-content;
  color: rgba(74, 9, 40, 0.72);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(213, 0, 115, 0.28);
  text-underline-offset: 0.22em;
  transition-property: color, text-decoration-color, transform;
  transition-duration: 0.24s;
  transition-timing-function: var(--ease-smooth);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--fb-magenta);
  text-decoration-color: rgba(213, 0, 115, 0.78);
}

.footer-contact strong {
  display: block;
  margin-top: 10px;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1480px);
  margin: clamp(42px, 5vw, 78px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(213, 0, 115, 0.13);
  color: rgba(74, 9, 40, 0.52);
  font-family: var(--ds-antique);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.js .product-reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
}

.js .product-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-property: opacity, transform, filter;
  transition-duration: 0.9s;
  transition-delay: var(--product-delay, 0ms);
  transition-timing-function: var(--ease-out);
}

.js .products-slider-shell.product-reveal.is-visible {
  transform: none;
  filter: none;
}

.js .site-header,
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
}

.js .site-header {
  transform: translateY(-12px);
}

.js body.is-ready .site-header,
.js body.is-ready [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-property: opacity, transform, filter;
  transition-duration: 1s;
  transition-timing-function: var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

@keyframes scanLine {
  from { transform: translateX(-44%); }
  to { transform: translateX(44%); }
}

@keyframes frameSweep {
  from { background-position: 0% 0, 0 0; }
  to { background-position: 100% 0, 0 0; }
}

@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  28% { opacity: 1; }
  60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (min-width: 1120px) {
  .hero-title {
    font-size: clamp(6.2rem, 8.85vw, 10.4rem);
  }
}

@media (min-width: 1380px) {
  .hero-title {
    font-size: clamp(7.2rem, 8.7vw, 11rem);
  }

  .hero-inner {
    padding-left: clamp(72px, 5.5vw, 112px);
    padding-right: clamp(72px, 5.5vw, 112px);
  }
}

@media (min-width: 1600px) {
  .hero-title {
    font-size: clamp(8.4rem, 8.2vw, 11.2rem);
  }
}

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

  .nav-link {
    font-size: 11px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 680px);
    padding-left: 36px;
    padding-right: 30px;
  }

  .hero-title {
    font-size: clamp(4.6rem, 8vw, 6rem);
  }

  .hero-proofbar {
    left: 36px;
    right: 36px;
  }

  .products-heading-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .one-stop-title-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .one-stop-intro {
    max-width: 720px;
  }

  .one-stop-board {
    grid-template-columns: 1fr;
  }

  .one-stop-core {
    min-height: 300px;
  }

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

  .one-stop-timeline::before {
    display: none;
  }

  .one-stop-timeline li {
    min-height: 280px;
  }

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

  .quality-title-grid,
  .quality-stage {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .quality-intro {
    max-width: 720px;
  }

  .quality-statement {
    min-height: 320px;
  }

  .quality-statement span {
    margin-bottom: 72px;
  }

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

  .quality-control:nth-child(3n) {
    border-right: 1px solid rgba(213, 0, 115, 0.11);
  }

  .quality-control:nth-child(2n) {
    border-right: 0;
  }

  .quality-control:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(213, 0, 115, 0.11);
  }

  .quality-control:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .global-title-grid,
  .global-map-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .global-title-copy {
    max-width: 760px;
  }

  .global-intro {
    max-width: 760px;
  }

  .global-map-panel {
    min-height: 0;
  }

  .global-map-sidebar {
    min-height: 0;
  }

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

  .global-map-visual {
    min-height: 520px;
  }

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

  .contact-copy h2 {
    font-size: clamp(2.55rem, 10.4vw, 4.8rem);
  }

  .product-card {
    flex-basis: clamp(300px, 38vw, 500px);
  }

  .product-card-large,
  .product-card-wide,
  .product-card-medium {
    flex-basis: clamp(340px, 48vw, 640px);
  }
}

@media (max-width: 980px) {
  .products-slider-shell {
    --slider-card-width: min(78vw, 360px);
    --slider-edge-space: max(22px, calc((100vw - var(--slider-card-width)) / 2));
  }

  body::before {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 76px;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(251, 248, 244, 0.92), rgba(251, 248, 244, 0.62) 78%, rgba(251, 248, 244, 0));
  }

  .brand-logo {
    width: 154px;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
    justify-self: end;
  }

  .nav-contact {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .contact-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .language-switcher {
    min-height: 42px;
  }

  .language-trigger {
    min-width: 62px;
    min-height: 42px;
    padding: 0 12px;
    font-size: 9px;
  }

  .language-trigger-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .language-list {
    right: -72px;
    width: min(224px, calc(100vw - 28px));
  }

  .mobile-menu-button {
    display: inline-flex;
    min-height: 42px;
    font-size: 10px;
  }

  .hero-scroll-sequence {
    min-height: 275vh;
    min-height: 275dvh;
  }

  .hero {
    position: fixed;
    inset: 0;
    z-index: 1;
    height: auto;
    min-height: 0;
    overflow: hidden;
    contain: paint;
    transform: translateZ(0);
  }

  .hero::after {
    display: none;
  }

  .hero::before {
    background:
      radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.54), transparent 34%),
      linear-gradient(180deg, rgba(251, 248, 244, 0.76) 0%, rgba(251, 248, 244, 0.52) 48%, rgba(251, 248, 244, 0.18) 100%);
    background-size: 100% 100%, 100% 100%;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    min-height: 100%;
    padding: 118px 22px 88px;
  }

  .hero-copy-column {
    max-width: min(100%, 560px);
    margin: 0 auto;
    padding-top: 16px;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-title {
    max-width: min(100%, 620px);
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(3.15rem, 12.2vw, 4.4rem);
  }

  .hero-title .editorial-word {
    font-size: 0.82em;
  }

  .hero-final-scene {
    display: block;
  }

  .hero-video-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    padding: 0;
  }

  .hero-video-frame {
    background: #fbf8f4;
    transform: translateZ(0);
  }

  .hero-video-frame::before {
    animation: none;
    opacity: var(--frame-sheen, 0.035);
  }

  .hero-video-frame::after {
    display: none;
  }

  .stage-metric,
  .video-progress,
  .stage-label {
    display: none;
  }

  .scroll-controlled-video,
  .scroll-controlled-canvas {
    filter: none;
    backface-visibility: hidden;
  }

  .hero-proofbar {
    display: none;
  }

  .scroll-cue,
  .vertical-scroll-label {
    display: none;
  }

  .hero-final-scene::before,
  .hero-final-scene::after {
    top: 42%;
  }

  .hero-final-scene::before {
    width: 116vw;
  }

  .hero-final-scene::after {
    width: 82vw;
  }

  .final-kicker {
    left: 22px;
    top: 104px;
    font-size: 10px;
  }

  .final-dot-left {
    left: 12%;
    top: 40%;
  }

  .final-dot-right {
    right: 12%;
    top: 40%;
  }

  .final-metric {
    left: 22px;
  }

  .final-metric small,
  .final-right-list small {
    font-size: 8px;
  }

  .final-metric strong {
    font-size: 18px;
  }

  .final-metric span {
    font-size: 8px;
  }

  .final-metric-global {
    top: 33%;
  }

  .final-metric-expertise {
    display: none;
  }

  .final-right-list {
    right: 22px;
    font-size: 9px;
    line-height: 2;
    letter-spacing: 0.12em;
  }

  .final-right-top {
    top: 104px;
  }

  .final-right-mid {
    top: 32%;
  }

  .final-right-bottom {
    display: none;
  }

  .final-right-list strong {
    font-size: 14px;
  }

  .final-center-copy {
    top: 72%;
    bottom: auto;
    width: calc(100% - 36px);
    transform: translate(-50%, -50%);
  }

  .final-center-copy .final-eyebrow {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .final-center-copy h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .final-center-copy p {
    max-width: 330px;
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  .final-center-copy::after {
    margin-top: 18px;
  }

  .products-section {
    scroll-margin-top: 84px;
    padding: 88px 22px 104px;
  }

  .products-section::before {
    background-size: 92px 92px;
  }

  .products-heading {
    margin-bottom: 32px;
  }

  .products-heading-grid {
    gap: 22px;
  }

  .products-heading h2 {
    font-size: clamp(2.55rem, 10.4vw, 4.8rem);
  }

  .products-copy {
    gap: 12px;
  }

  .product-filters {
    top: 76px;
    margin-right: -22px;
    margin-left: -22px;
    padding: 10px 22px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(251, 248, 244, 0.82);
  }

  .products-gallery {
    margin-right: -22px;
    margin-left: -22px;
    padding-right: var(--slider-edge-space);
    padding-left: var(--slider-edge-space);
    gap: 12px;
    scroll-padding-inline: var(--slider-edge-space);
  }

  .product-card,
  .product-card-tall {
    flex-basis: var(--slider-card-width);
    height: min(112vw, 520px);
    scroll-snap-align: center;
  }

  .product-card-large,
  .product-card-wide,
  .product-card-medium {
    flex-basis: var(--slider-card-width);
  }

  .product-card-copy {
    padding: 18px;
  }

  .product-card-copy p {
    display: none;
  }

  .product-slider-controls {
    top: 50%;
    left: max(8px, calc(var(--slider-edge-space) - 20px));
    right: max(8px, calc(var(--slider-edge-space) - 20px));
    justify-content: space-between;
    margin: 0;
    padding: 0;
  }

  .product-slider-button {
    width: 42px;
    height: 42px;
  }

  .product-card.is-expanded {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1.08fr) auto;
    width: calc(100vw - 28px);
    height: min(760px, calc(100dvh - 28px));
    max-height: calc(100dvh - 28px);
  }

  .product-card.is-expanded .product-card-copy {
    min-height: auto;
    padding: 24px;
  }

  .product-card.is-expanded .product-card-copy h3 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .product-card.is-expanded .product-card-copy p {
    display: block;
    font-size: 13px;
    line-height: 1.6;
  }

  .product-card.is-expanded .product-card-copy::after {
    padding-top: 22px;
  }

  .one-stop-section {
    scroll-margin-top: 84px;
    padding: 88px 22px 108px;
  }

  .one-stop-title-grid {
    gap: 22px;
  }

  .one-stop-title-grid h2 {
    font-size: clamp(2.55rem, 10.4vw, 4.8rem);
  }

  .one-stop-intro {
    gap: 12px;
  }

  .one-stop-board {
    padding: 14px;
  }

  .one-stop-core {
    min-height: 260px;
  }

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

  .one-stop-timeline li {
    min-height: 240px;
  }

  .one-stop-timeline li::before {
    margin-bottom: 38px;
  }

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

@media (min-width: 981px) {
  .hero-title span {
    white-space: nowrap;
  }

  .hero-copy-column {
    margin-top: -26px;
  }
}

@media (max-height: 760px) and (min-width: 981px) {
  .hero-proofbar {
    display: none;
  }

  .scroll-cue {
    bottom: 34px;
  }

  .vertical-scroll-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .products-slider-shell {
    --slider-card-width: min(78vw, 340px);
    --slider-edge-space: max(18px, calc((100vw - var(--slider-card-width)) / 2));
  }

  body {
    background: #fbf8f4;
  }

  .site-header {
    min-height: 70px;
    padding: 12px 14px;
  }

  .brand-logo {
    width: 132px;
  }

  .header-actions {
    gap: 6px;
  }

  .nav-contact,
  .language-switcher,
  .mobile-menu-button {
    min-height: 38px;
  }

  .nav-contact {
    width: 38px;
    min-width: 38px;
  }

  .contact-glyph {
    width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .language-trigger {
    min-width: 52px;
    min-height: 38px;
    padding: 0 9px;
    font-size: 8px;
  }

  .mobile-menu-button {
    min-width: 66px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero-inner {
    padding: 106px 18px 78px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-title {
    margin-top: 18px;
    font-size: clamp(2.66rem, 11.8vw, 3.15rem);
  }

  .hero-lede {
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-support {
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
    font-size: 12px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    max-width: 360px;
    margin: 22px auto 0;
  }

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

  .hero-editorial-detail {
    grid-template-columns: 84px auto;
    justify-content: center;
    margin: 24px auto 0;
    font-size: 10px;
  }

  .hero-video-stage::before {
    right: -36%;
    width: 150vw;
  }

  .hero-proofbar {
    display: none;
  }

  .proof-item {
    min-height: 58px;
    padding: 14px 16px;
  }

  .final-kicker {
    left: 16px;
    top: 94px;
  }

  .final-metric {
    left: 16px;
  }

  .final-right-list {
    right: 16px;
  }

  .final-right-top {
    top: 94px;
  }

  .products-section {
    padding: 76px 18px 92px;
  }

  .products-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .products-copy p {
    font-size: 14px;
    line-height: 1.62;
  }

  .product-filter {
    min-height: 38px;
    padding: 0 14px;
    font-size: 9px;
  }

  .products-gallery {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: var(--slider-edge-space);
    padding-left: var(--slider-edge-space);
    gap: 14px;
  }

  .product-card,
  .product-card-large,
  .product-card-wide,
  .product-card-tall,
  .product-card-medium {
    flex-basis: var(--slider-card-width);
    height: min(116vw, 500px);
  }

  .product-card-copy p {
    display: block;
    font-size: 12px;
  }

  .one-stop-section {
    padding: 76px 18px 96px;
  }

  .one-stop-title-grid h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .one-stop-intro p {
    font-size: 14px;
    line-height: 1.62;
  }

  .one-stop-board {
    gap: 14px;
    margin-bottom: 24px;
  }

  .one-stop-core {
    min-height: 230px;
    padding: 24px;
  }

  .one-stop-core strong {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .one-stop-timeline {
    grid-template-columns: 1fr;
  }

  .one-stop-timeline li {
    min-height: 0;
    padding: 22px;
  }

  .one-stop-timeline li::before {
    margin-bottom: 34px;
  }

  .one-stop-capabilities {
    grid-template-columns: 1fr;
  }

  .one-stop-card {
    min-height: 0;
  }

  .one-stop-card h3 {
    margin-top: 34px;
  }

  .quality-section {
    padding: 76px 18px 96px;
  }

  .quality-heading {
    gap: 22px;
  }

  .quality-title-grid {
    gap: 22px;
  }

  .quality-title-grid h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .quality-intro {
    gap: 12px;
  }

  .quality-intro p {
    font-size: 14px;
    line-height: 1.62;
  }

  .quality-stage {
    gap: 14px;
    margin-bottom: 24px;
  }

  .quality-media {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(300px, 62vw) minmax(154px, 32vw) minmax(154px, 32vw);
    min-height: 0;
    padding: 10px;
    gap: 10px;
  }

  .quality-photo-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .quality-photo-side-a {
    grid-column: 1;
    grid-row: 2;
  }

  .quality-photo-side-b {
    grid-column: 2;
    grid-row: 2;
  }

  .quality-photo-strip {
    display: block;
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .quality-photo-main figcaption {
    display: grid;
    align-items: end;
  }

  .quality-photo-main figcaption strong {
    text-align: left;
  }

  .quality-media-note {
    top: 18px;
    left: 18px;
  }

  .quality-media-note span {
    min-height: 24px;
    padding: 0 9px;
    font-size: 8px;
  }

  .quality-statement {
    min-height: 240px;
    padding: 24px;
  }

  .quality-statement span {
    margin-bottom: 34px;
  }

  .quality-statement p {
    font-size: clamp(2rem, 9.4vw, 3.25rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .quality-controls {
    grid-template-columns: 1fr;
  }

  .quality-control,
  .quality-control:nth-child(2n),
  .quality-control:nth-child(3n),
  .quality-control:nth-last-child(-n + 2),
  .quality-control:nth-last-child(-n + 3) {
    min-height: 0;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 0, 115, 0.11);
  }

  .quality-control:last-child {
    border-bottom: 0;
  }

  .global-section {
    padding: 76px 18px 96px;
  }

  .global-heading,
  .global-title-grid {
    gap: 22px;
  }

  .global-title-grid h2 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .global-authority-card {
    gap: 14px;
    padding: 18px;
  }

  .global-intro {
    gap: 12px;
  }

  .global-intro p {
    font-size: 14px;
    line-height: 1.62;
  }

  .global-intro .global-highlight {
    padding: 14px 16px;
    font-size: 10px;
  }

  .global-map-panel {
    gap: 10px;
    margin-bottom: 22px;
    padding: 10px;
  }

  .global-map-sidebar {
    padding: 18px;
  }

  .global-map-sidebar h3 {
    font-size: clamp(1.82rem, 8vw, 2.8rem);
  }

  .global-map-sidebar p {
    font-size: 13px;
  }

  .global-location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .global-location-button {
    min-height: 58px;
    padding: 11px 10px 11px 12px;
  }

  .global-location-button strong {
    font-size: 13px;
  }

  .global-location-button small {
    font-size: 8px;
  }

  .global-location-arrow {
    width: 26px;
    height: 26px;
  }

  .global-map-visual {
    min-height: 430px;
  }

  .global-map-visual::before {
    inset: 19% 9%;
  }

  .global-world-map {
    inset: 8% 2%;
    width: 96%;
    height: 75%;
  }

  .global-pin {
    min-width: 44px;
    min-height: 44px;
  }

  .global-pin-dot {
    width: 11px;
    height: 11px;
  }

  .global-pin-label {
    display: none;
    min-width: 96px;
    padding: 9px 10px;
  }

  .global-pin-itajai {
    left: 36.5%;
    top: 64%;
  }

  .global-pin-sao-paulo {
    left: 37.5%;
    top: 61%;
  }

  .global-pin-abu-dhabi {
    left: 66%;
    top: 35%;
  }

  .global-pin-ningbo {
    left: 84%;
    top: 31%;
  }

  .global-map-info {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .global-map-media {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .global-map-info h3 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .global-map-info p {
    font-size: 13px;
    line-height: 1.5;
  }

  .global-map-tags {
    position: static;
    justify-content: flex-start;
    padding: 0 8px 6px;
    max-width: none;
  }

  .global-map-tags span {
    min-height: 26px;
    padding: 0 9px;
    font-size: 8px;
  }

  .contact-section {
    padding: 76px 18px 96px;
  }

  .contact-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

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

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

  .form-footer .ds-button {
    width: 100%;
  }

  .product-card.is-expanded .product-card-copy h3 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .brand-logo {
    width: 112px;
  }

  .header-actions {
    gap: 4px;
  }

  .nav-contact {
    width: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .language-switcher {
    min-height: 34px;
    padding: 1px;
  }

  .language-trigger {
    min-width: 44px;
    min-height: 28px;
    padding: 0 8px;
    font-size: 7px;
  }

  .mobile-menu-button {
    min-width: 58px;
    min-height: 34px;
    padding: 0 7px;
  }

  .hero-title {
    font-size: 2.52rem;
  }

  .hero-lede {
    font-size: 14px;
  }

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

  .final-center-copy h2 {
    font-size: 1.9rem;
  }

  .final-center-copy p {
    font-size: 11px;
  }
}

@media (max-width: 1160px) {
  .site-footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .global-map-panel {
    color: #fff;
    background:
      radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.06), transparent 28%),
      radial-gradient(circle at 84% 14%, rgba(213, 0, 115, 0.34), transparent 26%),
      linear-gradient(135deg, #170010 0%, #240013 42%, #410022 74%, #550132 100%);
  }

  .global-map-panel::before,
  .global-world-map,
  .global-pin,
  .global-map-visual::before,
  .global-map-tags {
    display: none;
  }

  .global-map-sidebar {
    border-color: rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
      rgba(12, 2, 18, 0.34);
  }

  .global-map-sidebar h3,
  .global-map-sidebar p {
    display: none;
  }

  .global-map-visual {
    min-height: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .global-map-info,
  .global-map-panel[data-active-location="itajai"] .global-map-info,
  .global-map-panel[data-active-location="saoPaulo"] .global-map-info,
  .global-map-panel[data-active-location="abuDhabi"] .global-map-info,
  .global-map-panel[data-active-location="ningbo"] .global-map-info {
    position: static;
    display: grid;
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-color: rgba(244, 146, 207, 0.22);
    background:
      linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 32%, rgba(255, 255, 255, 0.01) 58%, transparent 74%),
      linear-gradient(180deg, rgba(18, 0, 20, 0.82), rgba(12, 1, 16, 0.76));
    background-size: 220% 100%, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    box-shadow: 0 22px 74px rgba(0, 0, 0, 0.24), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  }

  .global-map-panel.is-card-visible .global-map-info,
  .global-map-panel.is-card-visible .global-map-info.is-updating {
    transform: none;
    filter: none;
  }

  .global-map-media {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .global-map-info-copy {
    gap: 9px;
  }

  .closing-cta {
    padding: 76px 22px;
  }

  .closing-cta h2 {
    font-size: clamp(2.3rem, 10.6vw, 4.8rem);
  }

  .site-footer {
    padding: 52px 22px 24px;
  }
}

@media (max-width: 640px) {
  .global-map-panel {
    gap: 12px;
    padding: 10px;
  }

  .global-map-sidebar {
    padding: 14px;
  }

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

  .global-location-button {
    min-width: 0;
  }

  .global-location-arrow {
    display: none;
  }

  .closing-cta {
    padding: 70px 18px;
  }

  .closing-cta-actions {
    display: grid;
    width: 100%;
    max-width: 360px;
  }

  .closing-cta-actions .ds-button {
    width: 100%;
  }

  .site-footer {
    padding: 48px 18px 22px;
  }

  .site-footer-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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