:root {
  --burgundy-950: #7f1420;
  --burgundy-900: #981825;
  --burgundy-800: #aa1b29;
  --red-700: #bf1e2e;
  --red-600: #bf1e2e;
  --orange-500: #f28c28;
  --yellow-400: #f28c28;
  --yellow-action-ink: #111;
  --ink: #2b2526;
  --muted: #655d5e;
  --white: #fff;
  --canvas: #fffdf6;
  --surface: #ffffff;
  --surface-deep: #f7f1e7;
  --line: #ded4d6;
  --line-dark: rgba(255, 255, 255, .2);
  --shell: 80rem;
  --header-h: 4.5rem;
  --announcement-h: 2rem;
  --radius-tile: 1rem;
  --radius-panel: 1.5rem;
  --radius-frame: 2rem;
  --radius-pill: 999px;
  --font-display: "Aptos Display", Bahnschrift, "DIN Alternate", Arial, sans-serif;
  --font-body: Aptos, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --z-content: 4;
  --z-header: 80;
  --z-menu: 90;
  --z-intro: 120;
  --z-skip: 130;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--announcement-h));
  background: var(--canvas);
}

[id] {
  scroll-margin-top: calc(var(--header-h) + var(--announcement-h));
}

body {
  --ambient-x: 22%;
  --ambient-y: 12%;
  margin: 0;
  padding-block-start: var(--announcement-h);
  overflow-x: clip;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

body::before {
  z-index: -2;
  inset: -18%;
  background: var(--canvas);
  animation: page-ambient-float 17s ease-in-out infinite alternate;
}

body::after {
  z-index: -1;
  inset: 0;
  opacity: .36;
  background-image: none;
  background-size: 22px 22px;
  mask-image: none;
  animation: page-grid-drift 22s linear infinite;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 780;
  line-height: .96;
  letter-spacing: -.036em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.55rem, 6vw, 5.2rem);
}

h3 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
}

p {
  text-wrap: pretty;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  color: var(--burgundy-900);
  background: var(--white);
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: .75rem 1rem;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  border-radius: var(--radius-pill);
}

main:focus,
section[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus,
h3[tabindex="-1"]:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}

/* Heritage Orange is reserved for light or charcoal surfaces. Red fields use
   white focus treatment so the accent never sits on the primary brand red. */
.site-header :focus-visible,
.mobile-menu :focus-visible,
.hero :focus-visible,
.audience-gateway :focus-visible,
.operations :focus-visible,
.compliance :focus-visible {
  outline-color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* First visit transition */
.intro-curtain {
  display: none;
  position: fixed;
  z-index: var(--z-intro);
  inset: 0;
  place-items: center;
  pointer-events: none;
  background: var(--burgundy-950);
  clip-path: inset(0);
  transition: clip-path .52s var(--ease-in-out), visibility .52s;
}

.js .intro-curtain {
  display: grid;
  animation: intro-failsafe .01s 1.2s forwards;
}

.intro-curtain img {
  width: min(14rem, 54vw);
  height: auto;
  aspect-ratio: 584 / 225;
  object-fit: contain;
  opacity: 0;
  animation: intro-logo .32s .06s var(--ease-out) forwards;
}

.intro-line {
  position: absolute;
  inset: auto auto 13% 0;
  width: 100%;
  height: 3px;
  background: var(--red-700);
  transform: scaleX(0);
  transform-origin: left;
  animation: intro-line .44s .1s var(--ease-out) forwards;
}

.intro-curtain.is-complete {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

@keyframes intro-logo {
  to { opacity: 1; }
}

@keyframes intro-line {
  to { transform: scaleX(1); }
}

@keyframes intro-failsafe {
  to {
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
  }
}

/* Header */
.site-announcement {
  position: fixed;
  z-index: calc(var(--z-header) + 1);
  inset: 0 0 auto;
  min-height: 2rem;
  display: block;
  padding: .35rem 1rem;
  color: var(--white);
  background: var(--ink);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.3rem;
  letter-spacing: .035em;
  text-align: center;
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  inset: var(--announcement-h) auto auto 50%;
  width: calc(100% - 1.5rem);
  height: var(--header-h);
  color: var(--white);
  background: var(--red-700);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius-frame) var(--radius-frame) 1.15rem 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  transform: translateX(-50%);
  transition:
    top .24s var(--ease-out),
    width .24s var(--ease-out),
    background-color .24s ease,
    border-color .24s ease,
    border-radius .24s var(--ease-out),
    box-shadow .24s ease;
}

.site-header.is-scrolled {
  top: calc(var(--announcement-h) + .45rem);
  width: min(calc(100% - 2.5rem), var(--shell));
  background: var(--red-700);
  border-color: rgba(255, 255, 255, .2);
  border-radius: 1.15rem;
  box-shadow: 0 .45rem 1.5rem rgba(110, 22, 27, .2);
}

body.is-at-top .site-header {
  width: calc(100% - 1.5rem);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-inline: .8rem;
}

.brand {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 7.15rem;
  height: auto;
}

.brand-card-placeholder {
  width: 100%;
  min-height: 7rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--red-700);
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  text-align: center;
}

.brand-card-official {
  width: min(94%, 10rem);
  height: 6.65rem;
  display: grid;
  place-items: center;
  padding: .35rem;
  border-radius: .8rem;
}

.brand-card-official-yowup {
  width: min(94%, 10rem);
  background: var(--white);
}

.brand-card .brand-card-official img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav,
.header-number,
.header-contact {
  display: none;
}

.header-contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-content: center;
  gap: .42rem;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: var(--radius-pill);
  transition: color .18s ease, background-color .18s ease, transform .18s var(--ease-out);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--red-700);
  background: var(--white);
  transform: translateY(-2px);
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  transition: transform .2s var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(.21rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-.21rem) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  z-index: var(--z-menu);
  inset: calc(100% + .55rem) 0 auto;
  height: calc(100dvh - var(--header-h) - var(--announcement-h) - .8rem);
  padding: 1.3rem 1rem max(4rem, env(safe-area-inset-bottom));
  overflow: auto;
  color: var(--white);
  background: rgba(177, 38, 43, .99);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius-panel);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.7rem);
  transition: opacity .18s ease, transform .2s var(--ease-out);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a,
.mobile-menu span {
  min-height: 4rem;
  display: flex;
  align-items: center;
  padding-inline: .45rem;
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  font-weight: 740;
  line-height: 1.06;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  border-radius: .65rem;
  transition: color .16s ease, background-color .16s ease;
}

.mobile-menu span {
  cursor: default;
}

.mobile-menu span[aria-current] {
  color: var(--white);
}

.mobile-menu a:active {
  color: var(--white);
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--red-700);
  background: var(--white);
}

.mobile-menu .language-switch {
  min-height: 3.75rem;
  justify-content: flex-start;
  gap: .75rem;
  margin-block: .8rem .35rem;
  padding-inline: .45rem;
  color: var(--white);
  background: transparent;
  border-block: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
  font-size: 1.15rem;
}

.language-switch .ui-icon-globe {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
}

.mobile-menu .language-switch .language-switch-code {
  display: none;
}

.mobile-menu .language-switch .language-switch-name {
  min-height: 0;
  display: inline-flex;
  padding: 0;
  border: 0;
  font-size: 1.15rem;
}

.mobile-brand-disclosure {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.mobile-brand-disclosure summary {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: .45rem;
  color: var(--white);
  font-size: clamp(1.7rem, 7vw, 2.35rem);
  font-weight: 740;
  line-height: 1.06;
  list-style: none;
  cursor: pointer;
  border-radius: .65rem;
  transition: color .16s ease, background-color .16s ease;
}

.mobile-brand-disclosure summary::-webkit-details-marker {
  display: none;
}

.mobile-brand-disclosure summary::after {
  content: "";
  width: .72rem;
  height: .72rem;
  flex: 0 0 auto;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-.16rem) rotate(45deg);
  transition: transform .2s var(--ease-out);
}

.mobile-brand-disclosure[open] summary::after {
  transform: translateY(.16rem) rotate(225deg);
}

.mobile-brand-disclosure summary:hover,
.mobile-brand-disclosure summary:focus-visible {
  color: var(--red-700);
  background: var(--white);
}

.mobile-brand-disclosure.is-active summary {
  color: var(--white);
}

.mobile-brand-disclosure summary small {
  flex: 0 0 auto;
  margin-left: auto;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mobile-brand-disclosure summary:hover small,
.mobile-brand-disclosure summary:focus-visible small {
  color: currentColor;
}

.mobile-brand-links {
  display: grid;
  gap: .3rem;
  padding: .4rem .25rem 1rem;
}

.mobile-menu .mobile-brand-links a {
  min-height: 3rem;
  padding: .62rem .75rem;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 0;
  border-radius: .55rem;
  font-size: .96rem;
  font-weight: 680;
  line-height: 1.25;
}

.mobile-menu .mobile-brand-links a:hover,
.mobile-menu .mobile-brand-links a:focus-visible {
  color: var(--red-700);
  background: var(--white);
}

.mobile-menu .mobile-brand-links a[aria-current="page"] {
  color: var(--red-700);
  background: var(--white);
}

.mobile-menu .mobile-brand-links .mobile-brand-overview {
  min-height: 3.25rem;
  color: var(--burgundy-950);
  background: var(--white);
}

@media (min-width: 30rem) {
  .mobile-brand-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-menu .mobile-brand-links .mobile-brand-overview {
    grid-column: 1 / -1;
  }
}

/* Controls */
.button {
  position: relative;
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 .35rem 1.1rem rgba(49, 0, 7, .12);
  transition:
    color .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .2s ease,
    transform .18s var(--ease-out);
}

.button::before,
.header-contact::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -35% auto -35% -42%;
  width: 28%;
  pointer-events: none;
  background: transparent;
  transform: translate3d(-210%, 0, 0) skewX(-18deg);
  transition: transform .58s var(--ease-out);
}

.button:hover::before,
.button:focus-visible::before,
.header-contact:hover::before,
.header-contact:focus-visible::before {
  transform: translate3d(690%, 0, 0) skewX(-18deg);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 .8rem 1.8rem rgba(49, 0, 7, .2);
  transform: translateY(-3px);
}

.ui-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  overflow: visible;
  vertical-align: -.12em;
}

.ui-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:active {
  box-shadow: 0 .25rem .7rem rgba(49, 0, 7, .14);
  transform: translateY(0) scale(.98);
}

.button-light {
  color: var(--burgundy-900);
  background: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--burgundy-900);
  background: var(--white);
  border-color: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .76);
  background: rgba(49, 0, 7, .08);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--burgundy-900);
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  color: var(--yellow-action-ink);
  background: var(--yellow-400);
  border-color: var(--yellow-400);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--burgundy-950);
  background: var(--white);
  border-color: var(--burgundy-900);
}

.text-link {
  min-height: 2.75rem;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1.75rem;
  font-weight: 740;
  border-bottom: 1px solid currentColor;
  transition: color .18s ease, border-color .18s ease, transform .18s var(--ease-out);
}

.text-link svg,
.category-list svg {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
}

.text-link path,
.category-list path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text-link svg {
  transition: transform .18s var(--ease-out);
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(.25rem);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--red-700);
  border-bottom-color: var(--orange-500);
  transform: translateY(-2px);
}

.section-label {
  width: max-content;
  margin-bottom: 1.35rem;
  padding-bottom: .34rem;
  color: var(--red-700);
  font-size: .92rem;
  font-weight: 720;
  border-bottom: 2px solid currentColor;
}

.section-label.on-dark {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Hero */
.hero {
  --hero-x: 0px;
  --hero-y: 0px;
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--red-700);
  border-radius: 0;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: -14%;
  top: 7%;
  width: 74%;
  height: 86%;
  pointer-events: none;
  background: var(--red-700);
  border-radius: 47%;
  filter: blur(4rem);
  transform: scale(1.08);
}

.hero::after {
  content: none;
}

.hero-glow {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding-top: 4.5rem;
  padding-bottom: 6.25rem;
}

.hero-context,
.hero h1,
.hero h2,
.hero-copy,
.hero-actions {
  position: relative;
  z-index: 4;
}

.hero-context {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.15rem;
  color: #fff3ef;
  font-size: .88rem;
  font-weight: 690;
}

.hero-context::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: var(--white);
}

.hero-context span {
  color: #ffd8d0;
}

.hero h1,
.hero h2 {
  max-width: none;
  font-size: clamp(2.45rem, 9.7vw, 5rem);
  line-height: .91;
  letter-spacing: -.044em;
}

.hero h1 span,
.hero h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-slider {
  position: relative;
  z-index: 4;
  width: 100%;
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(.8rem);
  transition: opacity .65s ease, transform .72s var(--ease-out), visibility .65s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.hero-number {
  position: relative;
  z-index: 4;
  width: max-content;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 760;
  border-bottom: 1px solid currentColor;
}

.hero-slider-controls {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 1.5rem;
  display: flex;
  gap: .55rem;
  transform: translateX(-50%);
}

.hero-slider-controls button {
  width: 3.15rem;
  height: 2.75rem;
  color: var(--white);
  font: inherit;
  font-size: .78rem;
  font-weight: 780;
  background: rgba(145, 29, 34, .72);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, transform .2s var(--ease-out);
}

.hero-slider-controls button:hover,
.hero-slider-controls button:focus-visible,
.hero-slider-controls button.is-active {
  color: var(--red-700);
  background: var(--white);
  transform: translateY(-1px);
}

.hero-rays {
  position: absolute;
  z-index: 2;
  left: -22%;
  top: -16%;
  width: 144%;
  max-width: none;
  height: 132%;
  margin: 0;
  overflow: visible;
  pointer-events: none;
  opacity: .82;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.ray-hit-area {
  fill: transparent;
  pointer-events: all;
}

.ray-layer {
  transform: translateY(var(--layer-base-y, 0px));
  transform-box: fill-box;
  transform-origin: 0 50%;
}

.ray-layer-1 {
  --layer-base-y: -3px;
}

.ray-layer-2 {
  --layer-base-y: -1px;
}

.ray-layer-3 {
  --layer-base-y: 2px;
}

.ray-layer-4 {
  --layer-base-y: 5px;
}

.ray {
  opacity: 1;
  transform: none;
  transform-box: fill-box;
}

.hero-copy {
  max-width: 31rem;
  margin-top: 1.6rem;
  color: #fff7f4;
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
  line-height: 1.52;
  text-shadow: 0 2px 14px rgba(31, 0, 5, .72);
}

.hero h1,
.hero h2 {
  text-shadow: 0 3px 24px rgba(31, 0, 5, .62);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.85rem;
}

.hero-network {
  position: absolute;
  z-index: 5;
  inset: auto auto .85rem 50%;
  width: min(calc(100% - 1.5rem), var(--shell));
  overflow: hidden;
  color: var(--white);
  background: rgba(145, 29, 34, .82);
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius-panel);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transform: translateX(-50%);
}

.hero-network > p {
  padding: .75rem .95rem;
  color: #f1cfd4;
  font-size: .78rem;
  font-weight: 680;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s var(--ease-out);
}

.hero-network ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-network li {
  position: relative;
  min-height: 4.3rem;
  display: flex;
  align-items: center;
  padding: .85rem .95rem;
  font-size: .84rem;
  font-weight: 710;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s var(--ease-out);
}

.hero-network li span {
  transition: transform .2s var(--ease-out);
}

.hero-network li::after {
  content: "";
  position: absolute;
  right: .8rem;
  width: .42rem;
  height: .42rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: .65;
  transform: rotate(45deg);
  transition: transform .2s var(--ease-out);
}

.hero-network li:nth-child(even)::after,
.hero-network li:last-child::after {
  display: none;
}

.hero-network .network-owner {
  color: var(--red-700);
  background: var(--white);
}

.hero-network > p:hover,
.hero-network li:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
  transform: translateY(-3px);
}

.hero-network li:hover span {
  transform: translateX(.28rem);
}

.hero-network .network-owner:hover {
  color: var(--red-700);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.hero-network li:hover::after {
  transform: translateX(.2rem) rotate(45deg);
}

/* Keep every homepage section except the hero within the shared 80rem frame. */
main > section:not(.hero) {
  width: min(calc(100% - 1rem), var(--shell));
  margin-block: .75rem;
  margin-inline: auto;
  overflow: clip;
  border-radius: var(--radius-frame);
}

/* Immediate B2B / pet-owner routing */
.audience-gateway {
  position: relative;
  padding: clamp(2rem, 3vw, 2.75rem);
  color: var(--white);
  background: var(--red-700);
}

.audience-gateway-heading {
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.audience-gateway-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: .98;
}

.audience-gateway-routes {
  display: grid;
  gap: .75rem;
}

.gateway-route {
  position: relative;
  min-height: 14.5rem;
  display: grid;
  align-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.35rem, 2.6vw, 2rem);
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.gateway-photo {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  transition: transform .7s var(--ease-out);
}

.gateway-route > :not(.gateway-photo) {
  position: relative;
  z-index: 1;
}

.gateway-route:hover .gateway-photo {
  transform: scale(1.025);
}

.gateway-index {
  position: absolute;
  top: 1.25rem;
  right: 1.35rem;
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .08em;
  opacity: .62;
}

.gateway-route h3 {
  max-width: 13ch;
  padding-right: 2.5rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.gateway-route p {
  max-width: 42rem;
  margin-top: .8rem;
  font-size: .98rem;
  line-height: 1.55;
}

.gateway-route .button {
  width: max-content;
}

.gateway-partners {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
}

.gateway-photo-partner {
  border: 1px solid rgba(255, 255, 255, .24);
}

.gateway-partners p {
  color: #f3dde1;
}

.gateway-owners {
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid rgba(191, 30, 46, .2);
}

.gateway-owners p {
  max-width: 32rem;
  color: #4b3438;
}

.gateway-owners .button {
  color: var(--burgundy-950);
  background: var(--white);
  border-color: var(--white);
}

.gateway-owners .button:hover,
.gateway-owners .button:focus-visible {
  color: var(--white);
  background: var(--burgundy-900);
  border-color: var(--burgundy-900);
}

/* Future Arabic surface: logical direction mirrors layout without duplicating components. */
[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .desktop-nav,
[dir="rtl"] .mobile-menu,
[dir="rtl"] .breadcrumbs,
[dir="rtl"] .hero-actions,
[dir="rtl"] .page-cta-actions,
[dir="rtl"] .footer-contact {
  direction: rtl;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section-heading,
[dir="rtl"] .client-section-heading,
[dir="rtl"] .content-card-body,
[dir="rtl"] .footer-grid {
  text-align: right;
}

[dir="rtl"] .ui-icon-arrow-right,
[dir="rtl"] .ui-icon-arrow-left,
[dir="rtl"] .ui-icon-arrow-up-right,
[dir="rtl"] .ui-icon-arrow-down-right {
  transform: scaleX(-1);
}

/* Recognition */
.recognition {
  padding-block: .75rem;
  color: var(--white);
  background: var(--white);
}

.recognition-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: .8rem 1rem;
  align-items: center;
  padding: 1.6rem 1rem;
  background: var(--burgundy-950);
  border-radius: var(--radius-panel);
}

.recognition-badges {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.recognition-certified {
  width: 3rem;
  height: auto;
}

.recognition-badge {
  width: 4.3rem;
  height: 4.3rem;
  object-fit: contain;
}

.recognition-rank {
  color: var(--red-700);
  font-size: clamp(3rem, 9vw, 5.3rem);
  font-weight: 790;
  line-height: .78;
  letter-spacing: -.05em;
}

.recognition p {
  display: grid;
  gap: .12rem;
  line-height: 1.16;
}

.recognition p strong {
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
}

.recognition p span {
  color: #e8cfd3;
  font-size: .87rem;
}

.recognition-note {
  display: none;
  color: #d8bac0;
  font-size: .85rem;
}

/* Audience routes */
.audiences {
  padding-block: clamp(5rem, 9vw, 7.5rem);
  background: var(--white);
}

.audiences-heading {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2.7rem;
}

.audiences-heading h2 {
  max-width: 18ch;
  font-size: clamp(3rem, 5.5vw, 4.9rem);
}

.audiences-heading p {
  max-width: 39rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.audience-routes {
  display: grid;
  gap: 1rem;
}

.audience-route {
  position: relative;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 5vw, 3.1rem);
  overflow: hidden;
  border-radius: var(--radius-panel);
}

.route-topline {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  padding-bottom: .95rem;
  border-bottom: 1px solid currentColor;
}

.route-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: .62rem .9rem;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 790;
  line-height: 1;
  letter-spacing: -.02em;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-pill);
}

.route-topline strong {
  font-size: .86rem;
  opacity: .7;
}

.audience-route h3 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  margin-top: 3rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.audience-route > p {
  position: relative;
  z-index: 2;
  max-width: 33rem;
  margin-top: 1.2rem;
  font-size: 1.03rem;
}

.audience-route .button,
.audience-route .text-link {
  position: relative;
  z-index: 2;
  margin-top: 1.9rem;
}

.partner-route {
  color: var(--white);
  background: var(--burgundy-900);
}

.partner-route > p {
  color: #f0dde0;
}

.partner-route ul {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.partner-route li {
  padding: .68rem .3rem;
  color: #f0dde0;
  font-size: .88rem;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
}

.partner-route li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.owner-route {
  color: var(--ink);
  background: var(--surface-deep);
}

.owner-route .route-topline span {
  color: var(--burgundy-950);
  background: var(--yellow-400);
  border-color: rgba(87, 0, 13, .12);
  box-shadow: 0 .45rem 1.2rem rgba(87, 0, 13, .1);
}

.owner-route > p {
  color: var(--muted);
}

.route-rays {
  position: absolute;
  inset: auto -31% -7% auto;
  width: 102%;
  height: 62%;
  opacity: .95;
}

.route-rays path {
  fill: var(--white);
}

/* Portfolio */
.portfolio {
  padding-block: clamp(3.25rem, 4.5vw, 4.5rem) .5rem;
  background: transparent;
  background-size: 155% 155%;
  animation: ambient-surface-drift 21s ease-in-out infinite alternate;
}

.portfolio-heading {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.portfolio-title {
  position: relative;
}

.portfolio-count {
  display: block;
  margin-bottom: .75rem;
  color: var(--red-700);
  font-size: clamp(4.2rem, 10vw, 7.3rem);
  font-weight: 790;
  line-height: .72;
  letter-spacing: -.055em;
}

.portfolio-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.7rem, 5.8vw, 4.9rem);
}

.portfolio-intro {
  display: grid;
  gap: 1.45rem;
  align-content: end;
}

.portfolio-intro p {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.portfolio-intro .button {
  width: max-content;
}

.brand-stage {
  position: relative;
  margin: 0 .75rem;
  padding-block: clamp(1rem, 2.4vw, 2rem);
  overflow: hidden;
  background: var(--red-700);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius-frame);
  isolation: isolate;
}

.brand-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.dot-field-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-dot-canvas {
  z-index: 1;
  opacity: .55;
}

.brand-dot-canvas {
  z-index: 0;
}

.brand-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.brand-card {
  --brand-logo-scale: 1;
  --brand-logo-y: 0%;
  position: relative;
  height: 8.3rem;
  min-height: 8.3rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  align-content: center;
  gap: .25rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-tile);
  box-shadow: 0 .2rem .7rem rgba(49, 0, 7, .08);
  transition:
    background-color .18s ease,
    border-color .18s ease,
    transform .18s var(--ease-out);
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: .35rem;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: .72rem;
  transition: border-color .18s ease;
}

.brand-card .brand-read-more {
  position: relative;
  z-index: 2;
  color: var(--burgundy-900);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .03em;
  opacity: .72;
  transition: opacity .2s ease, transform .2s var(--ease-out);
}

.brand-card:hover .brand-read-more,
.brand-card:focus-visible .brand-read-more {
  opacity: 1;
  transform: translateY(-1px);
}

.brand-card img {
  width: min(94%, 10rem);
  height: min(78%, 6.65rem);
  object-fit: contain;
  transition: transform .24s var(--ease-out);
}

/* Each supplied square logo contains a different amount of baked-in white
   space. These optical corrections equalize the visible marks while the card
   and logo-stage dimensions remain identical. */
.brand-card > img {
  transform: translateY(var(--brand-logo-y)) scale(var(--brand-logo-scale));
}

.brand-card-royal-canin { --brand-logo-scale: 1.3; --brand-logo-y: 2%; }
.brand-card-dr-elseys { --brand-logo-scale: 1.45; --brand-logo-y: -3%; }
.brand-card-natua { --brand-logo-scale: 2.05; --brand-logo-y: -2%; }
.brand-card-gosbi { --brand-logo-scale: 2.8; --brand-logo-y: -8%; }
.brand-card-natsbi { --brand-logo-scale: 2.35; --brand-logo-y: -7%; }
.brand-card-sanicat { --brand-logo-scale: 2.05; --brand-logo-y: -7%; }
.brand-card-citycat { --brand-logo-scale: 1.75; --brand-logo-y: -6%; }
.brand-card-bravery { --brand-logo-scale: .9; --brand-logo-y: 2%; }
.brand-card-woolf { --brand-logo-scale: 1.9; --brand-logo-y: 3%; }
.brand-card-veterinary-formula { --brand-logo-scale: 1.85; }
.brand-card-pure-life { --brand-logo-scale: 1.6; --brand-logo-y: -6%; }
.brand-card-anees { --brand-logo-scale: 1.8; --brand-logo-y: -5%; }

.brand-card:hover,
.brand-card:focus-visible {
  background: var(--white);
  border-color: rgba(255, 201, 40, .92);
  transform: translateY(-2px);
}

.brand-card:hover::after,
.brand-card:focus-visible::after {
  border-color: rgba(167, 14, 34, .12);
}

.brand-card:hover > img,
.brand-card:focus-visible > img {
  transform: translateY(var(--brand-logo-y)) scale(var(--brand-logo-scale));
}

.brand-card:active {
  transform: scale(.985);
}

/* Story */
.story {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--white);
}

.story-grid {
  display: grid;
  gap: 2.7rem;
  align-items: center;
}

.story-media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-radius: var(--radius-panel);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: transparent;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  transform: scale(1.04);
}

.story-media figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 1.25rem 1.25rem;
  max-width: 26rem;
  color: var(--white);
  font-size: .87rem;
}

.story-copy h2 {
  max-width: 20ch;
  font-size: clamp(2.65rem, 4.7vw, 4.15rem);
}

.story-intro {
  max-width: 39rem;
  margin-top: 1.45rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.connection-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.connection-list div {
  display: grid;
  gap: .18rem;
  padding-block: .95rem;
  border-bottom: 1px solid var(--line);
}

.connection-list strong {
  font-size: 1rem;
}

.connection-list span {
  color: var(--muted);
  font-size: .89rem;
}

/* Shared Liqa ray crop */
.section-ray-mark {
  position: absolute;
  pointer-events: none;
}

.section-ray-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* Categories */
.categories {
  position: relative;
  margin: .75rem;
  overflow: hidden;
  color: var(--white);
  background: var(--red-700);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-frame);
  isolation: isolate;
}

.categories::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 48% 0 0;
  pointer-events: none;
  background: transparent;
}

.categories-dot-canvas {
  z-index: 0;
  opacity: .68;
}

.categories-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.4rem;
  padding-block: clamp(3.5rem, 5vw, 4.75rem);
}

.categories-heading h2 {
  max-width: 17ch;
  font-size: clamp(2.7rem, 5vw, 4.45rem);
}

.categories-heading > p:not(.section-label) {
  max-width: 33rem;
  margin-top: 1.45rem;
  color: #ffe7e1;
  font-size: 1.07rem;
}

.categories-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.categories-photo {
  position: static;
  order: 4;
  width: 100%;
  height: clamp(18rem, 32vw, 27rem);
  margin-top: 1.5rem;
  object-fit: cover;
  /* Framed for the Saluki portrait: the dog's head sits high in the frame, so
     the crop band favours the top rather than the previous downward bias. */
  object-position: center 22%;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-panel);
  box-shadow: 0 1rem 2.4rem rgba(49, 0, 7, .18);
}

.categories-heading .button {
  margin-top: 1.35rem;
}

.category-list {
  display: grid;
  gap: .65rem;
}

.category-list a {
  position: relative;
  min-height: 5.1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .25rem 1rem;
  align-items: center;
  padding: 1rem;
  overflow: hidden;
  color: var(--burgundy-950);
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: var(--radius-tile);
  box-shadow: 0 .35rem 1rem rgba(49, 0, 7, .16);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, transform .28s var(--ease-out);
}

.category-list a:hover,
.category-list a:focus-visible {
  background: #fff7d7;
  border-color: rgba(255, 193, 7, .72);
  box-shadow: 0 .5rem 1.35rem rgba(49, 0, 7, .18);
  transform: translateY(-1px);
}

.category-list span {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  font-weight: 750;
  line-height: 1.1;
}

.category-list em {
  position: relative;
  z-index: 1;
  grid-column: 1;
  color: var(--muted);
  font-size: .87rem;
  font-style: normal;
}

.category-list strong {
  position: relative;
  z-index: 1;
  grid-column: 1;
  width: max-content;
  margin-top: .5rem;
  color: var(--red-700);
  font-size: .76rem;
  font-weight: 790;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.category-list svg {
  position: relative;
  z-index: 1;
  grid-area: 1 / 2 / 4 / 3;
  transition: transform .18s var(--ease-out);
}

.category-list a:hover svg,
.category-list a:focus-visible svg {
  transform: translateX(.16rem);
}

/* Operations */
.operations {
  position: relative;
  min-height: 50rem;
  display: grid;
  align-items: end;
  margin: .75rem;
  overflow: hidden;
  color: var(--white);
  background: var(--burgundy-950);
  border-radius: var(--radius-frame);
}

.operations-image,
.operations-shade {
  position: absolute;
  inset: 0;
}

.operations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  transform: scale(1.04);
}

.operations-shade {
  background: var(--red-700);
}

.operations-content {
  position: relative;
  z-index: 2;
  padding-block: 7rem 2.5rem;
}

.operations-content h2 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 5.8vw, 5.05rem);
}

.operations-content > p:not(.section-label) {
  max-width: 41rem;
  margin-top: 1.35rem;
  color: #f3e0e3;
  font-size: 1.07rem;
}

.process {
  list-style: none;
  margin: 2.8rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .33);
  border-radius: var(--radius-panel);
}

.process li {
  display: grid;
  grid-template-columns: 4.4rem 1fr;
  gap: .12rem 1rem;
  padding: .95rem;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.process li:last-child {
  border-bottom: 0;
}

.process span {
  grid-row: 1 / 3;
  color: var(--white);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.process strong {
  font-size: 1rem;
}

.process em {
  color: #e6cdd1;
  font-size: .86rem;
  font-style: normal;
}

/* Compliance */
.compliance {
  margin: .75rem;
  padding-block: clamp(5rem, 10vw, 7.5rem);
  color: var(--white);
  background: var(--burgundy-900);
  border-radius: var(--radius-frame);
}

.compliance-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.compliance-grid > * {
  min-width: 0;
}

.compliance .section-label {
  color: var(--white);
}

.compliance-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 5.2vw, 4.35rem);
}

.compliance-copy > p:not(.section-label) {
  max-width: 39rem;
  margin-top: 1.45rem;
  color: #f0dce0;
  font-size: 1.07rem;
}

.iso-proof {
  width: 100%;
  min-width: 0;
  margin: 0;
}

.iso-proof > img {
  width: 100%;
  height: auto;
  max-height: 18rem;
  object-fit: contain;
  border-radius: var(--radius-tile);
}

.iso-proof figcaption {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius-panel);
}

.iso-proof figcaption span {
  min-height: 5.55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .24rem;
  padding: .8rem;
  color: #e7cdd2;
  font-size: .76rem;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, .27);
}

.iso-proof figcaption span:last-child {
  border-bottom: 0;
}

.iso-proof figcaption strong {
  color: var(--white);
  font-size: .93rem;
}

/* Approved homepage content sections */
.company-intro,
.defines,
.serve {
  padding-block: clamp(3.5rem, 5vw, 4.5rem);
}

.company-intro {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  background-size: 150% 150%;
  animation: ambient-surface-drift 18s ease-in-out infinite alternate;
}

.company-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image: none;
  background-size: 18px 18px;
  mask-image: none;
}

.company-intro-grid,
.defines-heading,
.serve-heading {
  display: grid;
  gap: 2rem;
}

.company-intro h2,
.defines-heading h2,
.serve-heading h2 {
  max-width: 18ch;
  font-size: clamp(2.7rem, 5vw, 4.55rem);
}

.company-intro-copy > p,
.defines-heading > p,
.serve-heading > div:last-child > p {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.company-intro-grid {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  justify-items: center;
  text-align: center;
}

.company-intro-heading {
  display: grid;
  justify-items: center;
}

.company-intro h2 {
  max-width: 17ch;
}

.company-intro-copy {
  width: 100%;
  display: grid;
  justify-items: center;
}

.company-intro-copy > p {
  max-width: 56rem;
}

.company-intro-copy ul {
  width: 100%;
  display: grid;
  gap: .85rem;
  list-style: none;
  margin: clamp(1.75rem, 3.5vw, 2.75rem) 0 1.5rem;
  padding: 0;
}

.company-intro-copy li {
  position: relative;
  min-height: 11.25rem;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.25rem 1.2rem;
  overflow: hidden;
  background: transparent;
  border-top: 1px solid rgba(106, 0, 16, .16);
  transition: transform .35s var(--ease-out), background-color .35s ease;
}

.company-intro-copy li:last-child {
  border-bottom: 1px solid rgba(106, 0, 16, .16);
}

.company-intro-copy li::before {
  content: attr(data-proof);
  position: absolute;
  top: 1.1rem;
  left: 1.25rem;
  color: var(--red-700);
  font-size: .72rem;
  font-weight: 820;
  letter-spacing: .12em;
}

.company-intro-copy li::after {
  content: "";
  position: absolute;
  inset: auto 14% 0;
  height: 3px;
  background: var(--canvas);
  transform: scaleX(.28);
  transition: transform .35s var(--ease-out);
}

.company-intro-copy li > span {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  background: var(--yellow-400);
  border: .65rem solid #fff5d3;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(106, 0, 16, .12), 0 .8rem 1.7rem rgba(255, 174, 27, .2);
  animation: proof-orbit-glow 2.8s ease-in-out infinite;
}

.company-intro-copy li:nth-child(2) > span { animation-delay: -.9s; }
.company-intro-copy li:nth-child(3) > span { animation-delay: -1.8s; }

.company-intro-copy li > span::before,
.company-intro-copy li > span::after {
  content: "";
  position: absolute;
  background: var(--burgundy-950);
  border-radius: 999px;
}

.company-intro-copy li > span::before {
  width: 1.45rem;
  height: .18rem;
}

.company-intro-copy li > span::after {
  width: .18rem;
  height: 1.45rem;
}

.company-intro-copy li:nth-child(-n + 2) > span::before,
.company-intro-copy li:nth-child(-n + 2) > span::after {
  display: none;
}

.company-intro-copy li > span b {
  color: var(--burgundy-950);
  font-size: .88rem;
  font-weight: 850;
  letter-spacing: -.02em;
}

.company-intro-copy li > .proof-flag {
  width: 5.4rem;
  height: 3.7rem;
  overflow: hidden;
  background: var(--white);
  border: .2rem solid #e4f3e9;
  border-radius: .75rem;
  box-shadow: 0 0 0 1px rgba(8, 122, 61, .18), 0 .8rem 1.7rem rgba(8, 122, 61, .16);
  animation: none;
}

.proof-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-intro-copy li > .proof-logo {
  width: 5.8rem;
  height: 3.7rem;
  overflow: hidden;
  padding: .35rem .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: .75rem;
  box-shadow: 0 .8rem 1.7rem rgba(66, 0, 10, .1);
  animation: none;
}

.proof-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.company-intro-copy li:nth-child(3) > span {
  background: var(--burgundy-950);
  border-color: #f8d9de;
}

.company-intro-copy li:nth-child(3) > span::before {
  width: 1.65rem;
  height: 1.65rem;
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.company-intro-copy li:nth-child(3) > span::after {
  width: .62rem;
  height: 1.65rem;
  background: transparent;
  border: 1px solid var(--white);
  border-block: 0;
  border-radius: 50%;
}

.company-intro-copy li strong {
  max-width: 18rem;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.25;
}

.company-intro-copy li:hover {
  background: rgba(255, 201, 40, .08);
  transform: translateY(-.2rem);
}

.company-intro-copy li:hover::after {
  transform: scaleX(1);
}

.defines {
  background: var(--canvas);
  background-size: 150% 150%;
  animation: ambient-surface-drift 20s ease-in-out infinite alternate-reverse;
}

.defines-heading {
  margin-bottom: 2rem;
}

.defines-grid {
  display: grid;
  gap: .8rem;
}

.define-card {
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
}

.define-card h3 {
  margin-top: 2rem;
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
}

.define-card p {
  max-width: 28rem;
  margin-top: .75rem;
  color: var(--muted);
}

.define-visual {
  position: relative;
  min-height: 10rem;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 1.2rem;
  background: var(--canvas);
  border: 1px solid rgba(106, 0, 16, .08);
}

.define-illustration {
  width: 94%;
  height: auto;
  overflow: visible;
  color: var(--burgundy-950);
  filter: drop-shadow(0 .6rem .8rem rgba(66, 0, 10, .08));
}

.define-illustration path,
.define-illustration rect,
.define-illustration circle {
  fill: var(--white);
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.define-illustration .illustration-route,
.define-illustration .care-orbit {
  fill: none;
  stroke: rgba(106, 0, 16, .34);
  stroke-dasharray: 5 8;
}

.define-illustration .illustration-node,
.define-illustration .illustration-accent-fill {
  fill: var(--yellow-400);
}

.define-illustration .illustration-node {
  stroke: var(--white);
  stroke-width: 4;
}

.define-illustration .illustration-awning {
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 6;
}

.define-illustration .illustration-shelf {
  fill: none;
  stroke: var(--burgundy-950);
  stroke-width: 4;
}

.define-portfolio .define-illustration {
  width: 88%;
}

.define-care .define-illustration {
  width: 90%;
}

.define-photo {
  position: relative;
  width: 100%;
  height: clamp(10.5rem, 18vw, 13rem);
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  line-height: 0;
  background: var(--surface-deep);
  border: 0;
}

.define-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease-out);
}

.define-product-grid {
  min-height: 0;
  height: clamp(10.5rem, 18vw, 13rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  background: #f4f1ee;
  border: 1px solid rgba(106, 0, 16, .08);
  border-radius: 1.2rem;
}

.official-product {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.official-product + .official-product {
  border-left: 1px solid var(--line);
}

.official-product img {
  width: 100%;
  height: 100%;
  padding: .7rem .4rem 1.65rem;
  object-fit: contain;
}

.official-product figcaption {
  position: absolute;
  right: .25rem;
  bottom: .35rem;
  left: .25rem;
  overflow: hidden;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.define-card:hover .define-photo img {
  transform: scale(1.035);
}

.define-care .care-heart {
  fill: var(--yellow-400);
  stroke-width: 3.5;
  transform-origin: 180px 82px;
  transition: transform .35s var(--ease-out);
}

.define-card:hover .define-illustration {
  transform: translateY(-.2rem);
}

.define-card:hover .care-heart {
  transform: scale(1.08);
}

.define-illustration {
  transition: transform .35s var(--ease-out);
}

.defines-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 1.2rem;
}

.defines-action > a:last-child {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--red-700);
  font-weight: 760;
}

.serve {
  background: var(--canvas);
  background-size: 150% 150%;
  animation: ambient-surface-drift 22s ease-in-out infinite alternate;
}

.serve-heading {
  margin-bottom: 2rem;
}

.serve-heading .button {
  margin-top: 1.5rem;
}

.serve-grid {
  display: grid;
  gap: .8rem;
}

.serve-grid article {
  min-height: 12.25rem;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--surface-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
}

.serve-grid article:nth-child(2),
.serve-grid article:nth-child(3),
.serve-grid article:nth-child(5),
.serve-grid article:nth-child(6) {
  background: var(--surface-deep);
}

.serve-grid h3 {
  max-width: 15ch;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.serve-grid p {
  margin-top: .8rem;
  color: var(--muted);
}

.serve-grid a {
  width: max-content;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: .83rem;
  font-weight: 780;
  border-bottom: 1px solid currentColor;
}

.scale {
  margin: .75rem;
  padding-block: clamp(3rem, 4.25vw, 4.1rem);
  color: var(--white);
  background: var(--red-700);
  background-size: 170% 170%;
  border-radius: var(--radius-frame);
  animation: dark-surface-drift 18s ease-in-out infinite alternate;
}

.scale h2 {
  margin-bottom: 2rem;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.3rem);
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius-panel);
  overflow: hidden;
}

.scale-grid article {
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.scale-grid strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.5vw, 3.9rem);
  line-height: .9;
  font-variant-numeric: tabular-nums;
}

.scale-grid span {
  max-width: 15rem;
  color: #f2dfe2;
  font-weight: 700;
}

.trust {
  margin: .75rem;
  padding-block: clamp(2.75rem, 3.5vw, 3.5rem);
  color: var(--white);
  background: var(--red-700);
  border-radius: var(--radius-frame);
}

/* Framed for the corporate-video still: the loading-bay action and the Liqa
   branding on both vans sit centrally, so this crops from the centre rather
   than pushing right as the previous placeholder photo required. */
.trust-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transform-origin: center;
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
}

.trust-media {
  height: 13rem;
  margin: 0 0 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: var(--radius-panel);
  box-shadow: 0 1rem 2.5rem rgba(73, 5, 12, .2);
}

.trust h2 {
  max-width: 17ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.trust-grid > div {
  max-width: 42rem;
}

.trust-grid > div p {
  color: #f3dce0;
  font-size: 1.07rem;
}

.trust-grid > div strong {
  display: block;
  margin-top: 1.4rem;
  padding-top: 1rem;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .25);
}

@media (min-width: 48rem) {
  .audience-gateway-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gateway-route {
    min-height: 15.5rem;
  }

  .defines-heading,
  .serve-heading {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
  }

  .trust-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, .92fr);
    column-gap: clamp(3rem, 7vw, 7rem);
    row-gap: 1.25rem;
    align-items: start;
  }

  .company-intro-copy ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-intro-copy li {
    border-bottom: 1px solid rgba(106, 0, 16, .16);
  }

  .company-intro-copy li + li {
    border-left: 1px solid rgba(106, 0, 16, .16);
  }

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

  /* Five cards, laid out two over three per the client's section 10. A
     six-column track lets the first row take halves and the second row thirds,
     so no cell is left empty as it was under the previous three-column grid. */
  .serve-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .serve-grid article {
    grid-column: span 2;
  }

  .serve-grid article:nth-child(-n + 2) {
    grid-column: span 3;
  }

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

  .scale-grid article {
    min-height: 11.5rem;
    border-bottom: 0;
  }

  .trust-grid .section-label {
    grid-column: 1 / -1;
  }

}

/* Purpose */
.purpose {
  padding-block: clamp(3.5rem, 5vw, 4.75rem);
  background: var(--canvas);
  background-size: 155% 155%;
  animation: ambient-surface-drift 19s ease-in-out infinite alternate-reverse;
}

.purpose-grid {
  display: grid;
  gap: clamp(2rem, 3.8vw, 3.25rem);
}

.purpose-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.purpose-heading h2 {
  max-width: 19ch;
  font-size: clamp(2.7rem, 5.2vw, 4.65rem);
}

.purpose-heading > p:not(.section-label) {
  max-width: 52rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.purpose-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: .8rem;
}

.purpose-card {
  position: relative;
  min-height: 15.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: 0 .35rem 1.4rem rgba(66, 0, 10, .045);
}

.purpose-card h3 {
  max-width: 24ch;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.08;
}

.purpose-card p {
  max-width: 38rem;
  margin-top: .65rem;
  color: var(--muted);
  font-size: .94rem;
}

.purpose-card-kicker {
  display: block;
  margin-bottom: .8rem;
  color: var(--red-700);
  font-size: .74rem;
  font-weight: 790;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.purpose-visual {
  position: relative;
  min-height: 7rem;
}

.purpose-visual-market {
  display: grid;
  place-items: center;
}

.purpose-visual-market::before,
.purpose-visual-market::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(106, 0, 16, .2);
  border-radius: 50%;
}

.purpose-visual-market::before {
  width: 7.6rem;
  height: 7.6rem;
  border-color: rgba(106, 0, 16, .24);
  border-top-color: var(--orange-500);
  border-right-color: var(--yellow-400);
  animation: mission-ring-spin 7s linear infinite;
}

.purpose-visual-market::after {
  width: 5.55rem;
  height: 5.55rem;
  border-style: solid;
  background: var(--canvas);
  box-shadow: 0 1rem 2.5rem rgba(255, 193, 7, .2);
  animation: mission-core-pulse 2.7s ease-in-out infinite;
}

.purpose-visual-market > span {
  position: relative;
  z-index: 2;
  color: var(--burgundy-950);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.purpose-visual-market i {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: .55rem;
  height: .55rem;
  background: var(--red-700);
  border: 2px solid var(--white);
  border-radius: 50%;
  animation: mission-dot-orbit 7s linear infinite;
}

.purpose-visual-market i:nth-of-type(1) {
  --orbit-start: 198deg;
  --orbit-distance: 3.75rem;
  animation-duration: 6.2s;
}

.purpose-visual-market i:nth-of-type(2) {
  --orbit-start: 322deg;
  --orbit-distance: 3.9rem;
  animation-duration: 7.4s;
}

.purpose-visual-market i:nth-of-type(3) {
  --orbit-start: 68deg;
  --orbit-distance: 3.65rem;
  animation-duration: 8.6s;
}

.purpose-visual-portfolio {
  min-height: 9.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  padding: .45rem;
  background: var(--canvas);
  border: 1px solid rgba(106, 0, 16, .08);
  border-radius: 1.2rem;
}

.purpose-visual-portfolio span {
  display: grid;
  place-items: center;
  padding: .5rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: .8rem;
  box-shadow: 0 .35rem 1rem rgba(66, 0, 10, .06);
}

.purpose-visual-portfolio span:nth-child(1) { background: #ffe69a; }
.purpose-visual-portfolio span:nth-child(2) { background: #f8c9ce; }
.purpose-visual-portfolio span:nth-child(3) { background: #fed3b3; }
.purpose-visual-portfolio span:nth-child(4) { background: #f1dcba; }

.purpose-visual-portfolio img {
  width: 88%;
  height: 3.7rem;
  object-fit: contain;
  filter: saturate(.94);
  mix-blend-mode: multiply;
  transition: transform .35s var(--ease-out);
}

.purpose-card-portfolio:hover .purpose-visual-portfolio img {
  transform: scale(1.06);
}

.purpose-rays {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--canvas);
}

.purpose-rays i {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 1.1rem;
  background: var(--red-700);
  border-radius: 999px;
  transform-origin: left center;
}

.purpose-rays i:nth-child(1) { top: 20%; transform: rotate(-8deg); }
.purpose-rays i:nth-child(2) { top: 40%; transform: rotate(4deg); opacity: .8; }
.purpose-rays i:nth-child(3) { top: 61%; transform: rotate(-3deg); opacity: .62; }
.purpose-rays i:nth-child(4) { top: 79%; transform: rotate(8deg); opacity: .44; }

.purpose-visual-support {
  min-height: 9.4rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.purpose-visual-support::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: var(--canvas);
}

.purpose-visual-support span {
  position: absolute;
  width: 8.5rem;
  min-height: 5.2rem;
  display: grid;
  place-items: center;
  padding: .75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: .95rem;
  box-shadow: 0 .55rem 1.4rem rgba(66, 0, 10, .09);
  animation: values-card-cycle 6s ease-in-out infinite;
}

.purpose-visual-support span b {
  font-size: .88rem;
  letter-spacing: .02em;
}

.purpose-visual-support span:nth-child(1) {
  color: var(--red-700);
  animation-delay: 0s;
}

.purpose-visual-support span:nth-child(2) {
  color: var(--burgundy-900);
  animation-delay: -2s;
}

.purpose-visual-support span:nth-child(3) {
  color: #9b7900;
  animation-delay: -4s;
}

.purpose-values {
  position: relative;
  grid-template-columns: repeat(7, 1fr);
  gap: .5rem;
  padding-inline: 1rem;
}

.purpose-values::before {
  display: none;
}

.purpose-values i {
  width: clamp(.7rem, 2vw, 1.15rem);
  aspect-ratio: 1;
  background: var(--red-700);
  border-radius: 50%;
  transform: translateY(var(--value-offset, 0));
}

.purpose-values i:nth-child(2),
.purpose-values i:nth-child(6) { --value-offset: -1.2rem; opacity: .82; }
.purpose-values i:nth-child(3),
.purpose-values i:nth-child(5) { --value-offset: .8rem; opacity: .64; }
.purpose-values i:nth-child(4) { --value-offset: -2rem; background: var(--orange-500); }

.purpose-card-access {
  min-height: 15.5rem;
}

.purpose-card-access {
  color: var(--white);
  background: var(--red-700);
  border-color: transparent;
}

.purpose-card-access p {
  color: #f3dce0;
}

.purpose-card-access .purpose-card-kicker {
  color: var(--white);
}

.purpose-visual-access {
  min-height: 9.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 1.2rem;
}

.purpose-visual-access img {
  width: 100%;
  height: 100%;
  min-height: 9.4rem;
  object-fit: cover;
  object-position: 64% center;
}

/* Contact */
.contact {
  position: relative;
  margin: .75rem;
  overflow: hidden;
  color: var(--burgundy-950);
  background: var(--canvas);
  background-size: 240% 240%;
  border: 1px solid rgba(106, 0, 16, .18);
  border-radius: var(--radius-frame);
  isolation: isolate;
  animation: contact-gradient-drift 9s ease-in-out infinite alternate;
}

.contact-dot-canvas {
  z-index: 0;
  opacity: .46;
}

.contact-rays {
  z-index: 0;
  inset: auto -25% -48% -25%;
  width: 150%;
  aspect-ratio: 245 / 225;
  opacity: .16;
  transform: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3.4rem;
  padding-block: clamp(3.5rem, 5vw, 4.75rem);
}

.contact-heading > p {
  margin-bottom: 1.2rem;
  color: #ffd4cb;
  font-weight: 710;
}

.contact-heading h2 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 6vw, 5.25rem);
}

.contact-details {
  max-width: 40rem;
  padding: 1.45rem;
  background: rgba(255, 255, 255, .68);
  border: 1px solid rgba(106, 0, 16, .2);
  border-radius: var(--radius-panel);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.contact-details > p {
  color: var(--burgundy-950);
  font-size: 1.07rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.9rem;
}

.contact-prompt {
  display: block;
  max-width: 31rem;
  margin-top: 1.45rem;
  color: var(--burgundy-900);
  font-size: .83rem;
}

.contact-prompt a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--burgundy-950);
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: .2rem;
}

.contact .button-light {
  color: var(--white);
  background: var(--burgundy-950);
  border-color: var(--burgundy-950);
}

.contact .button-light:hover,
.contact .button-light:focus-visible {
  color: var(--burgundy-950);
  background: var(--white);
  border-color: var(--burgundy-950);
}

@keyframes proof-orbit-glow {
  0%, 100% {
    transform: scale(.98);
    box-shadow:
      0 0 0 1px rgba(106, 0, 16, .2),
      0 .9rem 2rem rgba(255, 174, 27, .32),
      0 0 0 0 rgba(255, 201, 40, .52),
      0 0 1.1rem rgba(255, 201, 40, .28);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 2px rgba(106, 0, 16, .18),
      0 1.2rem 2.8rem rgba(255, 174, 27, .46),
      0 0 0 1.25rem rgba(255, 201, 40, 0),
      0 0 2.1rem rgba(255, 201, 40, .62);
  }
}

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

@keyframes mission-dot-orbit {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-start)) translateX(var(--orbit-distance));
  }
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-start) + 360deg)) translateX(var(--orbit-distance));
  }
}

@keyframes mission-core-pulse {
  0%, 100% { transform: scale(.96); box-shadow: 0 1rem 2.5rem rgba(255, 193, 7, .18); }
  50% { transform: scale(1.04); box-shadow: 0 1.25rem 3rem rgba(255, 174, 27, .34); }
}

@keyframes values-card-cycle {
  0%, 27% {
    z-index: 3;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  33%, 60% {
    z-index: 2;
    opacity: .68;
    transform: translateX(var(--values-card-offset, 3.8rem)) scale(.84);
  }
  66%, 94% {
    z-index: 1;
    opacity: .48;
    transform: translateX(calc(0rem - var(--values-card-offset, 3.8rem))) scale(.78);
  }
  100% {
    z-index: 3;
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes ambient-surface-drift {
  0% { background-position: 0% 0%, 100% 100%, center; }
  100% { background-position: 18% 12%, 82% 88%, center; }
}

@keyframes dark-surface-drift {
  0% { background-position: 0% 0%, 100% 100%, 0% 50%; }
  100% { background-position: 16% 12%, 84% 86%, 100% 50%; }
}

@keyframes page-ambient-float {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1.025); }
  100% { transform: translate3d(1.5%, 1.2%, 0) scale(1.055); }
}

@keyframes page-grid-drift {
  to { background-position: 44px 22px; }
}

@keyframes contact-gradient-drift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Footer */
.site-footer {
  padding-block: 2.75rem 1.5rem;
  color: var(--ink);
  background: transparent;
  background-size: 155% 155%;
  animation: ambient-surface-drift 24s ease-in-out infinite alternate;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand {
  width: max-content;
}

.footer-brand img {
  width: 9.3rem;
  height: auto;
}

.footer-identity {
  display: grid;
  align-content: start;
  justify-items: start;
}

.footer-identity > strong {
  margin-top: .45rem;
}

.footer-identity > p {
  max-width: 17rem;
  margin-top: .8rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: .4rem;
  align-content: start;
}

.footer-grid nav a,
.footer-grid nav span,
.footer-contact a {
  width: max-content;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-weight: 660;
  border-bottom: 1px solid transparent;
}

.footer-contact address {
  max-width: 17rem;
  color: var(--ink-muted);
  font-style: normal;
  line-height: 1.5;
}

.footer-map {
  width: 100%;
  max-width: 17rem;
  margin-top: .8rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background: var(--canvas);
}

.footer-identity .footer-map {
  margin-top: 1.25rem;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  border-bottom-color: currentColor;
}

.footer-trust {
  display: grid;
  gap: .75rem;
  align-content: start;
  margin: 0;
  padding: .8rem;
  background: var(--canvas);
  border: 1px solid rgba(87, 0, 13, .12);
  border-radius: 1rem;
}

.footer-trust > p {
  color: var(--burgundy-950);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.footer-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  align-items: stretch;
}

.footer-trust-badge {
  min-width: 0;
  min-height: 5.6rem;
  display: grid;
  place-items: center;
  margin: 0;
  padding: .55rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(87, 0, 13, .1);
  border-radius: 1rem;
}

.footer-trust-badge img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 5rem;
  object-fit: contain;
}

.footer-trust-badge-iso img {
  width: min(100%, 14rem);
}

.footer-trust-badge-iso {
  grid-column: 1 / -1;
}

.footer-trust-badge-gptw {
  grid-column: 1 / -1;
  width: calc(50% - .35rem);
  justify-self: center;
}

.footer-trust-badge-gptw img,
.footer-trust-badge-retail img {
  max-height: 5.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: .81rem;
  border-top: 1px solid var(--line);
}

.footer-grid + .footer-bottom {
  margin-top: 2rem;
}

/* Reveal motion with visible no-script fallback */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.05rem);
}

.reveal-ready [data-reveal="heading"] {
  transform: translateY(1.4rem);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .54s var(--ease-out), transform .54s var(--ease-out);
}

.reveal-ready [data-reveal="copy"].is-visible {
  transition-duration: .42s;
}

.reveal-ready .media-reveal {
  clip-path: inset(0 0 11% 0 round var(--radius-panel));
  opacity: .8;
  transition: clip-path .7s var(--ease-out), opacity .42s ease;
}

.reveal-ready .media-reveal.is-visible {
  clip-path: inset(0 round var(--radius-panel));
  opacity: 1;
}

@supports (animation-timeline: view()) {
  [data-parallax] img {
    animation: image-parallax linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  @keyframes image-parallax {
    from { transform: scale(1.07) translate3d(0, -1rem, 0); }
    to { transform: scale(1.07) translate3d(0, 1rem, 0); }
  }
}

@media (max-width: 43.99rem) {
  .hero-dot-canvas {
    opacity: .62;
  }

  .audience-gateway {
    padding: 2.5rem .75rem;
  }

  .audience-gateway-heading {
    margin-bottom: 1.35rem;
  }

  .audience-gateway-heading h2 {
    display: grid;
    gap: .42rem;
    font-size: clamp(1.5rem, 7.2vw, 1.8rem);
    line-height: 1.03;
  }

  .audience-gateway-heading h2 span {
    position: relative;
    padding-left: 1.4rem;
  }

  .audience-gateway-heading h2 span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .48em;
    width: .65rem;
    height: .18rem;
    background: var(--white);
    border-radius: var(--radius-pill);
  }

  .gateway-route {
    min-height: 0;
    gap: 1.15rem;
    padding: 1.25rem;
  }

  .gateway-route h3 {
    font-size: 1.8rem;
  }

  .gateway-route p {
    font-size: .92rem;
  }

  .gateway-owners {
    min-height: 23rem;
  }

  .company-intro,
  .defines,
  .serve,
  .purpose {
    padding-block: 3.25rem;
  }

  .company-intro-grid,
  .defines-heading,
  .serve-heading {
    gap: 1.35rem;
  }

  .company-intro h2,
  .defines-heading h2,
  .serve-heading h2,
  .purpose-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .company-intro-copy > p,
  .defines-heading > p,
  .serve-heading > div:last-child > p {
    font-size: 1rem;
  }

  .company-intro-copy ul {
    gap: .65rem;
    margin: 2rem 0 1.5rem;
  }

  .company-intro-copy li {
    min-height: 11.25rem;
    gap: .85rem;
    padding: 1.65rem 1.15rem 1.25rem;
  }

  .company-intro-copy li::before {
    top: .8rem;
    left: 1rem;
  }

  .company-intro-copy li > span {
    width: 3.85rem;
    height: 3.85rem;
    border-width: .48rem;
  }

  .portfolio {
    padding-top: 3.25rem;
  }

  .portfolio-heading {
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .portfolio-heading h2 {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

  .portfolio-intro {
    gap: 1rem;
  }

  .portfolio-intro p {
    font-size: 1rem;
  }

  .brand-stage {
    margin-inline: .5rem;
    padding-block: .65rem;
    border-radius: 1.4rem;
  }

  .brand-grid {
    width: calc(100% - 1rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .5rem;
  }

  .brand-card {
    height: 6.75rem;
    min-height: 6.75rem;
    border-radius: .8rem;
  }

  .brand-card img {
    width: 84%;
    height: 5.25rem;
  }

  .brand-card-official {
    width: 84%;
    height: 5.25rem;
    padding: .25rem;
  }

  .brand-card-official-yowup {
    width: 84%;
  }

  .defines-heading {
    margin-bottom: 2rem;
  }

  .defines-grid {
    gap: .65rem;
  }

  .define-card {
    min-height: 0;
    padding: 1.15rem;
  }

  .define-visual {
    min-height: 7.5rem;
  }

  .define-card h3 {
    margin-top: 1.25rem;
    font-size: 1.55rem;
  }

  .define-card p {
    margin-top: .55rem;
  }

  .defines-action {
    margin-top: 1rem;
  }

  .categories {
    margin: .5rem;
  }

  .categories-grid {
    gap: 2rem;
    padding-block: 3.25rem;
  }

  .categories-heading {
    min-height: 0;
    padding: 0;
  }

  .categories-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .categories-photo {
    height: 20rem;
  }

  .category-list {
    gap: .5rem;
  }

  .category-list a {
    min-height: 0;
    padding: .9rem;
  }

  .category-list span {
    font-size: 1.45rem;
  }

  .category-list em {
    font-size: .82rem;
    line-height: 1.45;
  }

  .purpose-grid {
    gap: 2rem;
  }

  .purpose-heading {
    gap: .75rem;
  }

  .purpose-features {
    gap: .65rem;
  }

  .purpose-card {
    min-height: 0;
    gap: 1.15rem;
    padding: 1.15rem;
  }

  .purpose-card p {
    font-size: .9rem;
  }

  .purpose-visual {
    min-height: 6.75rem;
  }

  .purpose-visual-portfolio {
    min-height: 7.4rem;
  }

  .serve-heading {
    margin-bottom: 2rem;
  }

  .serve-heading .button {
    margin-top: 1rem;
  }

  .serve-grid {
    gap: .65rem;
  }

  .serve-grid article {
    min-height: 0;
    padding: 1.2rem;
  }

  .serve-grid h3 {
    font-size: 1.55rem;
  }

  .serve-grid p {
    margin-top: .6rem;
  }

  .serve-grid a {
    margin-top: 1.25rem;
    padding-top: 0;
  }

  .scale {
    margin: .5rem;
    padding-block: 3.25rem;
  }

  .scale h2 {
    margin-bottom: 1.8rem;
  }

  .scale-grid article {
    min-height: 8rem;
    gap: .8rem;
    padding: 1rem;
  }

  .scale-grid strong {
    font-size: 1.75rem;
  }

  .scale-grid span {
    font-size: .9rem;
  }

  .trust {
    margin: .5rem;
    padding-block: 3.25rem;
  }

  .trust-grid {
    gap: 1.15rem;
  }

  .trust-media {
    height: 12rem;
  }

  .trust h2 {
    font-size: clamp(2.4rem, 11vw, 3.05rem);
  }

  .trust-grid > div p {
    font-size: 1rem;
  }

  .trust-grid > div strong {
    margin-top: 1.35rem;
  }

  .contact {
    margin: .5rem;
  }

  .contact-grid {
    gap: 2rem;
    padding-block: 3.5rem;
  }

  .contact-heading h2 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .contact-details {
    padding: 1.2rem;
  }

  .contact-details > p {
    font-size: 1rem;
  }

  .contact-actions {
    margin-top: 1.35rem;
  }

  .contact-prompt {
    margin-top: 1rem;
  }

  .site-footer {
    padding-block: 2.5rem 1.25rem;
  }

  .footer-grid {
    gap: 1.4rem;
  }

  .footer-grid nav,
  .footer-contact {
    gap: .2rem;
  }

  .footer-grid nav a,
  .footer-grid nav span,
  .footer-contact a {
    min-height: 2.75rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }

  .hero-slide {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  .hero-context {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
    font-size: .76rem;
  }

  .hero-copy,
  .hero h1,
  .hero h2 {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 20rem);
  }

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

  .hero::before {
    left: -34%;
    top: 9%;
    width: 118%;
    height: 72%;
    background: var(--red-700);
    border-radius: 45%;
    filter: blur(2.35rem);
    transform: scale(1.04);
  }
}

/* Tablet */
@media (min-width: 44rem) {
  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .site-header {
    width: calc(100% - 1.5rem);
  }

  .site-header.is-scrolled {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-bottom: 5.75rem;
  }

  .hero h1,
  .hero h2 {
    max-width: none;
    font-size: clamp(4rem, 7vw, 5rem);
  }

  .hero h1 span,
  .hero h2 span {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .hero-copy {
    margin-top: 1.5rem;
  }

  .hero-network ol {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-network li {
    min-height: 5rem;
    border-bottom: 0;
  }

  .hero-network li:nth-child(even)::after {
    display: block;
  }

  .hero-network li:last-child::after {
    display: none;
  }

  .recognition-inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 1.5rem 1.9rem;
    padding: 1.8rem 1.35rem;
  }

  .recognition-badges {
    gap: .75rem;
  }

  .recognition-certified {
    width: 3.6rem;
  }

  .recognition-badge {
    width: 6.05rem;
    height: 6.05rem;
  }

  .recognition-note {
    display: block;
    max-width: 15rem;
    text-align: right;
  }

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

  .iso-proof figcaption span {
    border-right: 1px solid rgba(255, 255, 255, .27);
    border-bottom: 0;
  }

  .iso-proof figcaption span:last-child {
    border-right: 0;
  }

  .audiences-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: end;
  }

  .audiences-heading p {
    padding-bottom: .45rem;
  }

  .audience-routes {
    grid-template-columns: 1.18fr .82fr;
  }

  .audience-route {
    min-height: 38rem;
  }

  .portfolio-heading {
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: end;
  }

  .portfolio-intro {
    padding-bottom: .45rem;
  }

  .brand-stage {
    padding-block: clamp(1.5rem, 2.8vw, 2.4rem);
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
  }

  .brand-card {
    height: 10rem;
    min-height: 10rem;
  }

  .story-grid {
    grid-template-columns: .92fr 1.08fr;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .categories-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 5vw, 5rem);
  }

  .category-list a {
    grid-template-columns: 1fr 1fr auto;
  }

  .category-list em {
    grid-column: 2;
  }

  .category-list svg {
    grid-area: 1 / 3;
  }

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

  .process li {
    min-height: 7.8rem;
    display: flex;
    flex-direction: column;
    padding: 1.1rem;
    border-right: 1px solid rgba(255, 255, 255, .22);
    border-bottom: 0;
  }

  .process li:last-child {
    border-right: 0;
  }

  .process span {
    margin-bottom: .7rem;
  }

  .compliance-grid {
    grid-template-columns: .82fr 1.18fr;
    gap: clamp(3rem, 7vw, 7rem);
  }

  .purpose-heading {
    grid-template-columns: minmax(0, 1.12fr) minmax(20rem, .88fr);
    gap: 1rem 4rem;
    align-items: end;
  }

  .purpose-heading .section-label {
    grid-column: 1 / -1;
  }

  .purpose-features {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .purpose-card-market,
  .purpose-card-portfolio,
  .purpose-card-support,
  .purpose-card-access {
    grid-column: span 3;
  }

  .contact-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
  }

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

/* Desktop */
@media (min-width: 64rem) {
  :root {
    --header-h: 4.65rem;
  }

  .shell {
    width: min(calc(100% - 5rem), var(--shell));
  }

  .site-header {
    width: calc(100% - 1.5rem);
  }

  .site-header.is-scrolled {
    width: min(calc(100% - 4rem), var(--shell));
  }

  main > section:not(.hero) {
    width: min(calc(100% - 5rem), var(--shell));
  }

  .header-inner {
    padding-inline: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: minmax(14rem, 1.05fr) minmax(17rem, 1.3fr) minmax(9rem, .7fr) minmax(9rem, .7fr);
    gap: clamp(1.5rem, 2.8vw, 2.75rem);
    align-items: start;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(.65rem, 1.1vw, 1.25rem);
  }

  .desktop-nav > a,
  .nav-dropdown-parent {
    position: relative;
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(.72rem, .72vw, .82rem);
    font-weight: 670;
    white-space: nowrap;
    cursor: default;
  }

  .desktop-nav > .language-switch {
    min-width: 3.5rem;
    min-height: 2.75rem;
    gap: .38rem;
    padding-inline: .75rem .2rem;
    color: var(--white);
    background: transparent;
    border: 0;
    border-inline-start: 1px solid rgba(255, 255, 255, .35);
    border-radius: 0;
    font-weight: 780;
    cursor: pointer;
    transition: opacity .18s ease, transform .18s var(--ease-out);
  }

  .desktop-nav > .language-switch .language-switch-code {
    min-height: 0;
    display: inline;
    padding: 0;
    border: 0;
    font-size: .73rem;
    letter-spacing: .08em;
  }

  .desktop-nav > .language-switch .language-switch-name {
    display: none;
  }

  .desktop-nav > .language-switch::after {
    display: none;
  }

  .desktop-nav > .language-switch:hover,
  .desktop-nav > .language-switch:focus-visible {
    color: var(--white);
    background: transparent;
    opacity: .76;
    transform: translateY(-1px);
  }

  .desktop-nav > a::after,
  .nav-dropdown-parent::after {
    content: "";
    position: absolute;
    inset: auto 0 .22rem;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s var(--ease-out);
  }

  .desktop-nav > a[aria-current]::after,
  .desktop-nav > a:hover::after,
  .desktop-nav > a:focus-visible::after,
  .nav-dropdown-parent[aria-current]::after,
  .nav-dropdown-parent:hover::after,
  .nav-dropdown-parent:focus-visible::after,
  .nav-dropdown.is-active .nav-dropdown-parent::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-dropdown {
    position: relative;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .nav-dropdown-parent {
    gap: .35rem;
  }

  .nav-dropdown-parent svg {
    width: .62rem;
    height: auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s var(--ease-out);
  }

  .nav-dropdown:hover .nav-dropdown-parent svg,
  .nav-dropdown:focus-within .nav-dropdown-parent svg {
    transform: rotate(180deg);
  }

  .nav-dropdown-panel {
    position: absolute;
    z-index: calc(var(--z-header) + 1);
    top: calc(100% + .55rem);
    left: 50%;
    width: min(48rem, calc(100vw - 3rem));
    padding: 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, .985);
    border: 1px solid rgba(87, 0, 13, .14);
    border-radius: 1.15rem;
    box-shadow: 0 1.25rem 3.5rem rgba(55, 5, 13, .24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -.55rem);
    transition:
      opacity .18s ease,
      visibility .18s ease,
      transform .22s var(--ease-out);
  }

  .nav-dropdown-panel::before {
    content: "";
    position: absolute;
    inset: -.65rem 0 auto;
    height: .65rem;
  }

  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-dropdown-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .15rem .25rem .8rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-dropdown-heading p {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
  }

  .nav-dropdown-heading a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding-inline: .8rem;
    color: var(--burgundy-900);
    background: var(--canvas);
    border-radius: var(--radius-pill);
    font-size: .8rem;
    font-weight: 760;
    white-space: nowrap;
    transition: color .16s ease, background-color .16s ease;
  }

  .nav-dropdown-heading a:hover,
  .nav-dropdown-heading a:focus-visible {
    color: var(--white);
    background: var(--burgundy-900);
  }

  .nav-dropdown-heading i {
    font-size: 1rem;
    font-style: normal;
  }

  .nav-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .3rem .45rem;
    padding-top: .75rem;
  }

  .nav-brand-grid a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
    padding: .55rem .72rem;
    color: var(--ink);
    border-radius: .55rem;
    font-size: .81rem;
    font-weight: 670;
    line-height: 1.2;
    transition:
      color .16s ease,
      background-color .16s ease,
      transform .18s var(--ease-out);
  }

  .nav-brand-grid a:hover,
  .nav-brand-grid a:focus-visible {
    color: var(--burgundy-900);
    background: var(--canvas);
    transform: translateX(.12rem);
  }

  .nav-brand-grid a[aria-current="page"] {
    color: var(--white);
    background: var(--burgundy-900);
  }

  .header-contact {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    padding-inline: 1rem;
    font-size: .84rem;
    font-weight: 720;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: var(--radius-pill);
    transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s var(--ease-out);
  }

  .header-contact:hover,
  .header-contact:focus-visible {
    color: var(--red-700);
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5.75rem;
  }

  .hero {
    min-height: 100svh;
  }

  .categories-heading {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
    align-self: start;
    height: max-content;
  }

  .purpose-card-support .purpose-visual-support {
    min-height: 12rem;
  }

  .purpose-card-support .purpose-visual-support span {
    width: 10.5rem;
    min-height: 6rem;
    padding: 1rem 1.15rem;
    border-radius: 1.15rem;
  }

  .purpose-card-support .purpose-visual-support span b {
    font-size: .96rem;
  }

  .purpose-card-support .purpose-visual-support span {
    --values-card-offset: 5.4rem;
  }

  .hero h1,
  .hero h2 {
    max-width: none;
    font-size: clamp(4.1rem, 5.1vw, 4.9rem);
  }

  .hero-glow {
    left: 52%;
    top: 47%;
  }

  .hero-network {
    display: grid;
    grid-template-columns: minmax(11.5rem, .68fr) 3fr;
  }

  .hero-network > p {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 0;
  }

  .portfolio-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, .65fr);
  }

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

  .brand-card {
    height: 11rem;
    min-height: 11rem;
  }

  .story-grid {
    grid-template-columns: .72fr 1.28fr;
  }

  .compliance-grid {
    grid-template-columns: 1.1fr .9fr;
  }

  .purpose-heading {
    grid-template-columns: minmax(0, 1.2fr) minmax(24rem, .8fr);
  }

  .contact-grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .operations {
    min-height: 55rem;
  }

  .operations-content {
    padding-bottom: 3.15rem;
  }
}

@media (min-width: 64rem) and (max-width: 71.999rem) {
  .desktop-nav,
  .header-number,
  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (min-width: 82rem) {
  .header-number {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: var(--white);
    font-size: .76rem;
    font-weight: 780;
    white-space: nowrap;
  }
}

@media (min-width: 80rem) {
  .brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .brand-card {
    height: 10.5rem;
    min-height: 10.5rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .partner-route,
  .owner-route {
    transition: background-color .22s ease;
  }

  .partner-route:hover {
    background: var(--burgundy-800);
  }

  .owner-route:hover {
    background: #e8dadd;
  }
}

@media (max-width: 63.99rem) and (max-height: 34rem) and (orientation: landscape) {
  .hero {
    min-height: 42rem;
  }

  .hero-content {
    padding-top: 6.7rem;
    padding-bottom: 10rem;
  }

  .hero h1,
  .hero h2 {
    max-width: 8.5em;
    font-size: clamp(2.7rem, 7.6vw, 3.3rem);
  }

  .hero-copy {
    max-width: 28rem;
    margin-top: 1rem;
    font-size: .94rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }
}

/* 2026 homepage refinement: use full-width bands, not a stack of floating cards. */
main > section:not(.hero) {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
}

main > section:not(.hero) + section:not(.hero) {
  border-top: 1px solid rgba(106, 0, 16, .11);
}

.company-intro {
  background: var(--white);
}

.defines,
.purpose {
  background: var(--surface);
}

main > section.portfolio,
main > section.serve,
main > section.contact {
  width: min(calc(100% - 1rem), var(--shell));
  max-width: var(--shell);
  margin: .75rem auto;
  border-radius: var(--radius-frame);
}

main > section.portfolio,
main > section.serve {
  border-top: 0;
}

.define-card {
  min-height: 0;
  padding: 0 0 1.5rem;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.define-card + .define-card {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-rays {
  left: -5%;
  top: -12%;
  width: 132%;
  height: 124%;
  opacity: .6;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-dot-canvas {
  opacity: .28;
}

body::after {
  opacity: .16;
  background-size: 28px 28px;
}

.hero-number,
.scale-grid span,
.trust-grid > div p,
.trust-grid > div strong,
.purpose-card-access p {
  color: var(--white);
}

.gateway-photo,
.define-photo img,
.categories-photo,
.purpose-photo img,
.trust-photo {
  filter: saturate(.9) contrast(1.03) brightness(.98);
}

body::before,
body::after,
.portfolio,
.company-intro,
.defines,
.serve,
.scale,
.purpose,
.contact,
.site-footer,
.company-intro-copy li > span,
.purpose-visual-market::before,
.purpose-visual-market::after,
.purpose-visual-market i {
  animation: none;
}

.purpose-visual-market i:nth-of-type(1) {
  transform: translate(-3.55rem, -1.75rem);
}

.purpose-visual-market i:nth-of-type(2) {
  transform: translate(2.75rem, -2.25rem);
}

.purpose-visual-market i:nth-of-type(3) {
  transform: translate(.8rem, 3.05rem);
}

@supports (animation-timeline: view()) {
  [data-parallax] img {
    animation: none;
    transform: none;
  }
}

@media (min-width: 48rem) {
  .define-card + .define-card {
    padding-top: 0;
    padding-left: clamp(1.25rem, 2.4vw, 2rem);
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .define-card:not(:last-child) {
    padding-right: clamp(1.25rem, 2.4vw, 2rem);
  }

}

@media (min-width: 64rem) {
  .purpose-features {
    grid-template-rows: repeat(2, minmax(22rem, auto));
  }

  .purpose-card-support,
  .purpose-card-access {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: center;
    gap: clamp(1.25rem, 2vw, 2rem);
  }

  .purpose-card-support .purpose-visual-support {
    min-height: 12rem;
  }

  .purpose-card-support .purpose-visual-support span {
    --values-card-offset: clamp(2rem, 3.3vw, 3rem);
  }

  .purpose-card-access .purpose-visual-access {
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .purpose-card-access .purpose-visual-access img {
    height: 100%;
    min-height: 0;
  }

  .purpose-card-support .purpose-visual-support span {
    width: 12rem;
    min-height: 6.8rem;
    padding: 1.15rem 1.3rem;
  }

  .purpose-card-support .purpose-visual-support span b {
    font-size: 1.05rem;
  }
}

@media (max-width: 43.99rem) {
  main > section.portfolio,
  main > section.serve,
  main > section.contact {
    width: calc(100% - 1rem);
    margin: .5rem auto;
  }
}

/* Continuous-canvas composition: color is reserved for intentional chapters. */
main {
  background: var(--canvas);
}

main > section.audience-gateway {
  color: var(--ink);
  background: var(--canvas);
  border-top: 0;
}

.gateway-partners {
  color: var(--white);
  background: var(--red-700);
  border-color: rgba(255, 255, 255, .18);
}

.gateway-partners p {
  color: #f7e8eb;
}

main > section.company-intro,
main > section.defines,
main > section.categories,
main > section.purpose {
  color: var(--ink);
  background: var(--canvas);
}

main > section.company-intro,
main > section.defines,
main > section.categories,
main > section.purpose {
  border-top-color: rgba(106, 0, 16, .09);
}

.categories::after,
.categories-dot-canvas {
  display: none;
}

.categories .section-label.on-dark {
  color: var(--red-700);
  border-bottom-color: var(--orange-500);
}

.categories-heading > p:not(.section-label) {
  color: var(--muted);
}

.categories-photo {
  border-color: var(--line);
  box-shadow: 0 1rem 2.4rem rgba(66, 0, 10, .08);
}

.categories .button-light {
  color: var(--white);
  background: var(--burgundy-900);
  border-color: var(--burgundy-900);
}

.categories .button-light:hover,
.categories .button-light:focus-visible {
  color: var(--white);
  background: var(--burgundy-900);
  border-color: var(--burgundy-900);
}

.category-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.category-list a {
  min-height: 6rem;
  padding-inline: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.category-list a:hover,
.category-list a:focus-visible {
  background: rgba(177, 38, 43, .045);
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.proof-chapter {
  position: relative;
  width: 100%;
  overflow: clip;
  isolation: isolate;
  color: var(--ink);
  background: var(--canvas);
  border-top: 1px solid var(--line);
}

.proof-chapter::before {
  display: none;
}

.proof-chapter > section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.proof-chapter > .scale {
  padding-block: clamp(4rem, 6vw, 5.5rem);
}

.proof-chapter > .trust {
  padding-block: clamp(3.5rem, 5vw, 4.75rem);
  border-top: 1px solid var(--line);
}

.proof-chapter .scale h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--burgundy-900);
  font-size: clamp(3rem, 5.5vw, 4.75rem);
  line-height: .94;
}

.proof-chapter .scale-grid {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
}

.proof-chapter .scale-grid article {
  min-height: clamp(9rem, 13vw, 10.5rem);
  /* Top-aligned rather than spread: every number is now a single line, so
     anchoring to the top puts the numbers and their labels on shared
     baselines even where a label runs to two lines. */
  justify-content: flex-start;
  gap: 1.5rem;
  padding: clamp(1.15rem, 1.8vw, 1.5rem) clamp(1rem, 2vw, 1.75rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-chapter .scale-grid article:nth-child(2n) {
  border-right: 0;
}

.proof-chapter .scale-grid strong {
  color: var(--burgundy-900);
  /* Sized so the longest value, 14,000 m2, stays on one line in a column of
     this width. It previously wrapped onto two lines, which pushed that cell's
     label below its neighbours. */
  font-size: clamp(1.75rem, 2.9vw, 2.85rem);
  white-space: nowrap;
}

.proof-chapter .scale-grid span {
  color: var(--muted);
  font-weight: 680;
}

.scale-caption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 680;
}

.proof-chapter .trust-grid {
  gap: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius-frame);
}

.proof-chapter .trust-copy {
  padding: clamp(2rem, 4vw, 4.5rem);
}

.proof-chapter .trust-copy .section-label {
  color: var(--burgundy-900);
  border-bottom-color: var(--orange-500);
}

.proof-chapter .trust h2 {
  max-width: 13ch;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink);
  font-size: clamp(2.65rem, 4.7vw, 4.35rem);
}

.proof-chapter .trust-copy > p:not(.section-label) {
  max-width: 35rem;
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.65;
}

.proof-chapter .trust-media {
  min-height: clamp(22rem, 42vw, 34rem);
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.proof-chapter .trust-photo {
  object-position: center;
  transform: scale(1.02);
}

.proof-chapter .trust-copy > strong {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  color: var(--burgundy-900);
  border-top-color: var(--line);
}

@media (min-width: 48rem) {
  .proof-chapter .scale > .shell {
    display: grid;
    grid-template-columns: minmax(15rem, .72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
  }

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

  /* Keep all three columns equally inset; the outer cells must not place
     their text against the rounded grid frame. */
  .proof-chapter .scale-grid article,
  .proof-chapter .scale-grid article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .proof-chapter .scale-grid article:nth-child(3n) {
    border-right: 0;
  }

  .proof-chapter .scale-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }

  .proof-chapter .scale-caption {
    grid-column: 2;
  }

  .proof-chapter .trust-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
    align-items: stretch;
  }
}

@media (min-width: 48rem) and (max-width: 79.99rem) {
  .proof-chapter .scale > .shell {
    display: block;
  }

  .proof-chapter .scale h2 {
    max-width: none;
    margin-bottom: 2rem;
  }
}

@media (max-width: 47.99rem) {
  .proof-chapter .scale h2 {
    max-width: none;
    margin-bottom: 2.25rem;
  }

  .proof-chapter .scale-grid strong {
    font-size: clamp(1.65rem, 8vw, 2rem);
    white-space: nowrap;
  }

  .proof-chapter .scale-grid article:nth-child(2n) {
    padding-left: 1rem;
    border-right: 0;
  }

  .proof-chapter .scale-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .proof-chapter .trust-media {
    min-height: 17rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .intro-curtain {
    display: none !important;
  }

  .ray {
    opacity: 1;
    transform: none;
  }

  .ray-layer {
    transform: none !important;
  }

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

  .reveal-ready .media-reveal {
    clip-path: none;
    opacity: 1;
  }

  [data-parallax] img {
    animation: none !important;
    transform: scale(1.04) !important;
  }
}

@media print {
  .intro-curtain,
  .site-header,
  .hero-rays,
  .contact-rays,
  .hero-glow,
  .dot-field-canvas {
    display: none !important;
  }

  .hero,
  .categories,
  .operations,
  .contact,
  .brand-stage {
    min-height: auto;
    color: #000;
    background: #fff;
    border: 1px solid #bbb;
  }

  .hero-content,
  .operations-content,
  .contact-grid {
    padding-block: 2rem;
  }

  .hero-network {
    position: static;
    color: #000;
    background: #fff;
    transform: none;
  }
}

/* 2026-07 mobile density and viewport-safety pass */
@media (max-width: 47.99rem) {
  .audience-gateway {
    padding: 2.25rem .75rem;
  }

  .gateway-route {
    min-height: 0;
    align-content: start;
    gap: .9rem;
    padding: 1.1rem;
  }

  .gateway-route > .gateway-index {
    position: absolute;
    inset: 1rem 1rem auto auto;
    display: block;
    width: max-content;
    margin: 0;
    transform: none;
  }

  .gateway-route h3 {
    margin: 0;
    padding-right: 2.75rem;
  }

  .gateway-route p {
    margin-top: .45rem;
  }

  .gateway-owners {
    min-height: 0;
  }

  .gateway-route .button {
    margin-top: .1rem;
  }

  .proof-chapter .scale h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .proof-chapter .scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    aspect-ratio: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
  }

  .proof-chapter .scale-grid article,
  .proof-chapter .scale-grid article:nth-child(2n) {
    min-height: 0;
    gap: .65rem;
    padding: .9rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-top: 0;
  }

  .proof-chapter .scale-grid article:nth-child(2n) {
    border-right: 0;
  }

  .proof-chapter .scale-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proof-chapter .scale-grid strong {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .proof-chapter .scale-grid span {
    font-size: clamp(.73rem, 3.4vw, .9rem);
    line-height: 1.25;
  }
}
