:root {
  --black: #050505;
  --near-black: #0d0d0d;
  --ink: #111111;
  --paper: #ffffff;
  --soft: #ffffff;
  --muted: #9c9a94;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: #e0e0e0;
  --red: #df2635;
  --red-dark: #b71325;
  --font-display: "Archivo", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --type-xs: 12px;
  --type-sm: 13px;
  --type-body: clamp(15px, 1.1vw, 17px);
  --type-lead: clamp(16px, 1.25vw, 19px);
  --type-h3: clamp(24px, 2.4vw, 34px);
  --type-h2: clamp(34px, 4vw, 56px);
  --type-h1: clamp(40px, 5vw, 68px);
  --type-hero: clamp(48px, 5.5vw, 80px);
  --type-stat: clamp(32px, 3.6vw, 52px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

section[id],
.page-card[id] {
  scroll-margin-top: 88px;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--red);
  color: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  height: 80px;
  padding: 0 clamp(16px, 3vw, 48px);
  background: var(--near-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  transition: height 220ms ease;
}

.site-header.is-scrolled {
  height: 56px;
  background: var(--near-black);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.25vw, 22px);
  min-width: 0;
}

.gtranslate_wrapper {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.language-code {
  pointer-events: none;
}

.language-code::after {
  content: "▾";
  margin-left: 5px;
  font-size: 10px;
  line-height: 1;
}

.gtranslate_wrapper select,
.gtranslate_wrapper .gt_selector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font-size: 16px;
  opacity: 0;
}

.gtranslate_wrapper:hover,
.gtranslate_wrapper:focus-within {
  border-color: rgba(227, 6, 19, 0.85);
  background: rgba(255, 255, 255, 0.04);
  color: var(--red);
}

.mobile-translate {
  display: none;
}

.mobile-translate span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-translate select {
  width: min(220px, 100%);
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0;
  background: var(--near-black);
  color: var(--paper);
  font: 700 14px/1 var(--font-body);
}

.desktop-nav a,
.desktop-nav button,
.nav-cta {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.desktop-nav a::after,
.desktop-nav button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.desktop-nav button:hover {
  color: var(--paper);
}

.translate-toast {
  position: fixed;
  top: 88px;
  right: clamp(16px, 4vw, 42px);
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 14px 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.translate-toast[hidden] {
  display: none;
}

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

.translate-toast button {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.translate-toast button:hover {
  border-color: var(--red);
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.desktop-nav button:hover::after {
  transform: scaleX(1);
}

.desktop-nav .nav-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: var(--red);
  color: var(--paper);
  line-height: 1;
}

.desktop-nav .nav-highlight::after {
  display: none;
}

.desktop-nav .nav-highlight:hover {
  background: var(--red-dark);
  color: var(--paper);
  transform: translateY(-1px);
}

.explore-mega {
  position: fixed;
  z-index: 65;
  top: 80px;
  left: 0;
  right: 0;
  display: block;
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px);
  background: rgba(5, 5, 5, 0.98);
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  pointer-events: none;
}

.site-header.is-scrolled + .explore-mega {
  top: 56px;
}

.explore-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.explore-mega-inner {
  width: min(720px, 100%);
  margin: 0 auto;
}

.explore-mega p,
.mobile-menu-label {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: var(--type-sm);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.explore-mega nav {
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.explore-mega-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.explore-mega-link span {
  transition: color 180ms ease, transform 180ms ease;
}

.explore-mega-link:hover span:first-child {
  color: var(--red);
  transform: translateX(8px);
}

.nav-cta,
.button,
.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta,
.button-primary,
.mobile-cta {
  background: var(--red);
  color: var(--paper);
}

.nav-cta {
  min-height: 42px;
  padding: 0 24px;
  background: var(--red);
  border-color: transparent;
  color: var(--paper);
  line-height: 1;
  letter-spacing: 0.05em;
}

.button-primary:hover,
.mobile-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav-cta:hover {
  background: var(--red-dark);
  color: var(--paper);
  transform: translateY(-1px);
}

.nav-cta.nav-highlight {
  background: var(--red);
  color: var(--paper);
}

.nav-cta.nav-highlight:hover {
  background: var(--red-dark);
  color: var(--paper);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--paper);
}

.button-ghost:hover {
  background: var(--paper);
  color: var(--black);
  transform: translateY(-2px);
}

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

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
  transition: transform 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 96px 22px 26px;
  background: rgba(5, 5, 5, 0.98);
  color: var(--paper);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav {
  display: grid;
  border-top: 1px solid var(--line);
}

.mobile-menu a:not(.mobile-cta) {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(27px, 8vw, 44px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.mobile-menu a:not(.mobile-cta):hover,
.mobile-menu a:not(.mobile-cta):focus-visible,
.mobile-menu a:not(.mobile-cta).is-active {
  color: var(--red);
  transform: translateX(8px);
}

.mobile-menu-label {
  margin: 0;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.72);
}

.mobile-menu-label-secondary {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.mobile-menu a.mobile-explore-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--red);
  font-size: clamp(27px, 8vw, 44px);
}

.mobile-menu a.mobile-explore-link span:last-child {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.mobile-menu a.mobile-highlight {
  margin-top: 14px;
  padding: 14px 16px;
  border-bottom: 0;
  background: var(--red);
  color: var(--paper);
}

.mobile-cta {
  width: 100%;
  margin-top: 26px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black) url("assets/images/cuisine-fengsheng-1.jpg") center / cover no-repeat;
  color: var(--paper);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 240ms ease;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.05) 42%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at 18% 72%, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - clamp(32px, 10vw, 144px)));
  margin: 0 auto 0 0;
  padding: 0 0 clamp(34px, 7vh, 76px) clamp(16px, 5vw, 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: var(--type-sm);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.eyebrow span {
  width: 5px;
  height: 16px;
  background: var(--red);
}

.section-kicker {
  color: #6b6862;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.section-pad {
  padding: clamp(74px, 10vw, 136px) clamp(18px, 5vw, 72px);
}

.intro-section,
.showcase-section,
.whats-new-section,
.awards-section {
  background: var(--soft);
  color: var(--ink);
}

.about-page-intro.section-pad {
  padding-top: clamp(118px, 15vw, 184px);
}

.work-section {
  background: var(--black);
  color: var(--paper);
}

.contact-section {
  background: var(--soft);
  color: var(--ink);
}

.intro-grid,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

:is(
  .intro-grid,
  .section-heading,
  .awards-lead,
  .work-copy,
  .contact-copy
) h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

body[data-page="work-with-us"] .page-hero h1 {
  max-width: 1180px;
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: none;
}

.intro-grid h2 {
  grid-column: 1 / -1;
  font-size: clamp(31px, 3.1vw, 44px);
  line-height: 0.98;
  text-transform: none;
}

.intro-grid h2 .nowrap-line {
  color: var(--ink);
  white-space: nowrap;
}

.highlight-block {
  display: inline-block;
  padding: 0.08em 0.14em 0.1em;
  background: var(--red);
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 0.86;
}

.intro-grid h2 .highlight-block,
.work-copy h2 .highlight-block {
  color: var(--paper);
}

.showcase-section .section-heading h2,
.awards-lead h2,
.work-copy h2 {
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.02;
  text-transform: none;
}

.showcase-section .section-heading {
  width: min(1120px, 100%);
}

.showcase-section .section-heading h2 span {
  color: var(--red);
}

@media (min-width: 1200px) {
  .showcase-section .section-heading h2 {
    white-space: nowrap;
  }
}

.intro-copy,
.page-copy {
  max-width: 760px;
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(16px, 1.35vw, 19px);
}

body[data-page="work-with-us"] .page-hero .page-copy {
  max-width: 820px;
  margin-top: clamp(24px, 4vw, 42px);
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.work-opportunities {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px) clamp(74px, 10vw, 136px);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--paper);
  color: var(--ink);
}

.work-atmosphere {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.work-atmosphere img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.work-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(42px, 6vw, 86px);
}

.work-opportunity-grid article {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.work-opportunity-grid .section-kicker {
  margin-bottom: clamp(28px, 4vw, 52px);
  color: rgba(17, 17, 17, 0.52);
}

.work-opportunity-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: none;
}

.work-opportunity-grid p:not(.section-kicker) {
  margin: 20px 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-body);
}

.awards-lead p,
.contact-copy p {
  max-width: 760px;
}

.awards-lead p {
  color: rgba(17, 17, 17, 0.7);
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy {
  font-size: var(--type-lead);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(44px, 7vw, 88px);
  border-top: 1px solid var(--dark-line);
}

.stats-grid div,
.awards-stats div {
  position: relative;
  min-height: 176px;
  padding: clamp(20px, 3vw, 34px);
  text-align: left;
}

.stats-grid div {
  transform-origin: center;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.stats-grid div:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  transform: scale(1.045);
}

.stats-grid strong,
.awards-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.stats-grid span,
.awards-stats span {
  display: block;
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.42);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats-grid strong {
  font-size: var(--type-stat);
}

.section-heading {
  width: min(920px, 100%);
}

.showcase-shell {
  margin-top: clamp(36px, 5vw, 64px);
}

.showcase-viewport {
  overflow: hidden;
}

.showcase-track {
  display: flex;
  gap: 18px;
}

.showcase-card {
  position: relative;
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: minmax(330px, 58vh) auto;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--ink);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.showcase-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.08);
}

.showcase-card span {
  padding: 22px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.showcase-card h3 {
  position: relative;
  margin: 0;
  padding: 6px 0 26px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: none;
}

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

.showcase-controls button {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
}

.showcase-dots button {
  min-width: 0;
  width: 30px;
  height: 2px;
  min-height: 2px;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.22);
}

.showcase-dots button.is-selected {
  background: var(--red);
}

.partner-universe {
  position: relative;
  display: block;
  min-height: 100vh;
  overflow: hidden;
  background: #e60028;
  color: #faf8f3;
  font-family: var(--font-display);
  cursor: pointer;
}

.partner-universe-title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(100% - 32px, 1100px);
  margin: 0;
  color: #faf8f3;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 150px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.partner-stream {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: partnerStream 50s linear infinite;
  pointer-events: none;
}

.partner-stream-group {
  position: relative;
  flex: 0 0 1600px;
  width: 1600px;
  min-height: 100vh;
}

.partner-stream-brand,
.partner-photo {
  position: absolute;
}

.partner-stream-brand {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.partner-stream-brand::before {
  margin-right: 0.32em;
  content: "-";
}

.partner-photo {
  border: 0;
  border-radius: 0;
  box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.partner-photo-01 {
  top: 8%;
  left: 7%;
  width: 220px;
  aspect-ratio: 2 / 3;
}

.partner-photo-02 {
  top: 54%;
  left: 32%;
  width: 500px;
  aspect-ratio: 16 / 10;
}

.partner-photo-03 {
  top: 14%;
  left: 62%;
  width: 390px;
  aspect-ratio: 16 / 10;
}

.partner-photo-04 {
  top: 58%;
  left: 84%;
  width: 180px;
  aspect-ratio: 1 / 1;
}

.partner-brand-gucci {
  top: 16%;
  left: 31%;
}

.partner-brand-huawei {
  top: 19%;
  left: 50%;
}

.partner-brand-chanel {
  top: 44%;
  left: 8%;
}

.partner-brand-lv {
  top: 38%;
  left: 28%;
}

.partner-brand-dyson {
  top: 47%;
  left: 58%;
}

.partner-brand-aman {
  top: 78%;
  left: 18%;
}

.partner-brand-porsche {
  top: 82%;
  left: 57%;
}

.partner-brand-dior {
  top: 31%;
  left: 84%;
}

.partner-brand-mo {
  top: 48%;
  left: 76%;
}

.partner-brand-loewe {
  top: 80%;
  left: 76%;
}

.partner-brand-k11 {
  top: 88%;
  left: 7%;
}

@keyframes partnerStream {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1600px);
  }
}

.awards-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: clamp(28px, 6vw, 88px);
  row-gap: 18px;
  align-items: start;
  max-width: none;
}

.awards-lead .section-kicker {
  grid-column: 1 / -1;
}

.awards-lead h2 {
  max-width: max-content;
  padding-left: clamp(48px, 4.4vw, 72px);
  white-space: nowrap;
}

.whats-new-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  border-top: 1px solid var(--dark-line);
}

.whats-new-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 5.4vw, 78px);
  font-weight: 800;
  line-height: 0.94;
  text-transform: none;
}

.whats-new-list {
  min-width: 0;
}

.whats-new-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  min-height: 420px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--dark-line);
  overflow: hidden;
  transition: border-color 180ms ease, transform 220ms ease;
}

.whats-new-card:hover,
.whats-new-card:focus-visible {
  border-color: var(--red);
  transform: translateY(-4px);
  outline: none;
}

.whats-new-media {
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.whats-new-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.whats-new-card:hover .whats-new-media img,
.whats-new-card:focus-visible .whats-new-media img {
  transform: scale(1.045);
}

.whats-new-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 3.4vw, 46px);
}

.whats-new-kicker,
.whats-new-cta {
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.whats-new-kicker {
  color: var(--red);
}

.whats-new-title {
  display: block;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 0.98;
}

.whats-new-text {
  display: block;
  max-width: 460px;
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.whats-new-cta {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.whats-new-cta::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  transition: width 220ms ease;
}

.whats-new-card:hover .whats-new-cta::after,
.whats-new-card:focus-visible .whats-new-cta::after {
  width: 58px;
}

.awards-section.section-pad {
  padding-top: 128px;
  padding-bottom: 96px;
}

.awards-lead p:not(.section-kicker) {
  margin: 0;
  font-size: var(--type-lead);
}

.awards-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--dark-line);
}

.awards-stats div {
  transform-origin: center;
  text-align: center;
}

.awards-stats strong {
  font-size: clamp(26px, 2.55vw, 38px);
}

.awards-stats strong.is-red {
  color: #e60028;
}

.awards-carousel {
  position: relative;
  margin-top: 54px;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}

.awards-viewport {
  overflow-x: hidden;
  cursor: grab;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
}

.awards-viewport.is-dragging {
  cursor: grabbing;
}

.awards-track {
  display: flex;
  gap: 40px;
  scroll-snap-type: x mandatory;
}

.awards-card {
  flex: 0 0 calc((100% - 80px) / 2.3);
  min-width: 0;
  scroll-snap-align: start;
  background: var(--paper);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  color: var(--ink);
  cursor: grab;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-drag: none;
  user-select: none;
}

.awards-viewport.is-dragging .awards-card {
  cursor: grabbing;
}

.awards-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.awards-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-drag: none;
  user-select: none;
}

.awards-card:hover img {
  transform: scale(1.05);
}

.awards-card-copy {
  display: block;
  padding: 32px 0;
}

.awards-card-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.08;
  text-transform: none;
}

.awards-card-copy p {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: var(--type-lead);
}

.awards-drag-cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .awards-viewport,
  .awards-viewport .awards-card {
    cursor: none;
  }

  .awards-drag-cursor {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: auto;
    height: auto;
    margin: -12px 0 0 -35px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--paper);
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 200;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, gap 160ms ease;
  }

  .awards-drag-cursor.is-visible {
    opacity: 1;
    gap: 30px;
  }

  .awards-drag-cursor.is-dragging {
    gap: 18px;
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .awards-drag-cursor {
    display: none;
  }
}

.go100-module {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(34px, 6vw, 88px);
  margin-top: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--dark-line);
}

.go100-kicker {
  margin: 0 0 24px;
  color: #e60028;
  font-family: var(--font-display);
  font-size: var(--type-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.go100-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h3);
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.go100-copy p:not(.go100-kicker) {
  margin: 24px 0 0;
  color: rgba(17, 17, 17, 0.7);
  font-size: var(--type-lead);
}

.go100-figures {
  display: grid;
  align-content: start;
}

.go100-portrait-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.go100-portrait-grid div {
  width: 120px;
  text-align: center;
}

.go100-portrait-grid span {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #d0d0d0;
}

.awards-hero h1 {
  max-width: 1180px;
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: none;
}

.awards-hero .page-copy {
  max-width: 900px;
  margin-top: clamp(24px, 4vw, 42px);
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.awards-editorial {
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 72px) clamp(74px, 10vw, 136px);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--paper);
  color: var(--ink);
}

.awards-atmosphere {
  margin: 0 0 clamp(48px, 7vw, 96px);
  overflow: hidden;
  background: var(--soft);
}

.awards-atmosphere img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.awards-program {
  display: grid;
  grid-template-columns: minmax(170px, 0.28fr) minmax(0, 0.72fr);
  column-gap: clamp(28px, 6vw, 88px);
  row-gap: 18px;
  padding: clamp(34px, 5vw, 72px) 0;
  border-top: 1px solid var(--dark-line);
}

.awards-program .section-kicker {
  margin: 0;
  color: rgba(17, 17, 17, 0.52);
}

.awards-program h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1;
  text-transform: none;
}

.awards-program p:not(.section-kicker) {
  grid-column: 2;
  max-width: 820px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.go100-portrait-grid p {
  margin: 12px 0 0;
  color: #999;
  font-size: var(--type-xs);
  line-height: 1.25;
}

.page-card-go100 > .go100-portrait-grid {
  align-content: start;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.work-section-inner {
  box-sizing: border-box;
  max-width: none;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.work-copy {
  width: 100%;
}

.work-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin: 58px 0 34px;
  background: transparent;
}

.work-column-link {
  display: block;
  min-width: 0;
  color: inherit;
  cursor: pointer;
}

.work-grid .work-column-link article {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--black);
}

.work-grid .work-column-link + .work-column-link article {
  border-left: 1px solid var(--line);
}

.work-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--type-sm);
  font-weight: 800;
}

.work-grid h3 {
  display: flex;
  align-items: flex-start;
  min-height: calc(32px * 1.15 * 3);
  margin: 72px 0 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
  transition: transform 180ms ease;
}

.work-column-link:hover h3,
.work-column-link:focus-visible h3 {
  transform: translateX(8px);
}

.contact-section {
  border-top: 0;
}

.contact-copy .section-kicker {
  color: #6b6862;
}

.contact-copy p:not(.section-kicker) {
  color: rgba(17, 17, 17, 0.7);
  font-size: var(--type-lead);
}

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

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

.contact-form .form-honeypot {
  display: none;
}

.contact-form span {
  color: rgba(17, 17, 17, 0.62);
  font-size: var(--type-sm);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.contact-form option {
  color: var(--ink);
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 28px);
  align-items: start;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: #080808;
  border-top: 1px solid var(--line);
}

.site-footer .footer-main {
  grid-column: 1 / span 4;
}

.site-footer p {
  max-width: 330px;
  color: var(--muted);
  font-size: var(--type-sm);
}

.site-footer address {
  max-width: 360px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--type-sm);
  font-style: normal;
  line-height: 1.65;
}

.site-footer .footer-copyright {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer nav,
.site-footer .footer-nav {
  grid-column: 5 / span 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 44px);
  align-self: start;
}

.site-footer nav div {
  display: grid;
  align-content: start;
  gap: 2px;
}

.site-footer nav span {
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--paper);
}

.social-icons {
  grid-column: 11 / span 2;
  justify-self: end;
  display: flex;
  gap: 14px;
}

.social-icons span,
.social-icons a {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 0;
  color: var(--paper);
  opacity: 1;
  text-decoration: none;
  transition: color 180ms ease;
}

.social-icons span:hover,
.social-icons a:hover {
  color: var(--paper);
}

.social-icons svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icons span:nth-child(n + 2) svg {
  fill: currentColor;
  stroke: none;
}

.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;
}

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

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

.about-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(46px, 6vw, 82px);
  align-items: start;
  min-height: 560px;
  padding-top: clamp(96px, 10vw, 136px);
  border-bottom: 1px solid var(--dark-line);
  background: var(--paper);
  color: var(--ink);
}

.about-hero h1,
.about-genesis h2,
.about-gateway h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
  letter-spacing: -0.025em;
}

.about-mobile-break {
  display: none;
}

.about-hero-copy p {
  max-width: 720px;
  margin: clamp(24px, 4vw, 42px) 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  max-width: 1120px;
}

.about-hero-stats div {
  padding-top: 0;
  border-top: 0;
  text-align: center;
}

.about-gateway-stats div {
  padding-top: 0;
  border-top: 0;
}

.about-hero-stats span,
.about-gateway-stats span,
.about-label,
.about-genesis-media span {
  display: block;
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero-stats strong,
.about-gateway-stats strong,
.about-genesis-media strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-hero-stats strong {
  font-size: clamp(34px, 5.2vw, 72px);
}

.about-hero-stats span {
  margin-top: 12px;
}

.about-gateway-stats strong,
.about-genesis-media strong {
  margin-top: 8px;
}

.about-hero-stats strong.is-red {
  color: var(--red);
}

.about-genesis,
.about-gateway {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: stretch;
  border-bottom: 1px solid var(--dark-line);
  background: var(--paper);
  color: var(--ink);
}

.about-genesis-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.about-label {
  display: inline-flex;
  width: 170px;
  height: 44px;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background: var(--ink);
  color: var(--paper);
}

.about-label.is-red-secret {
  background: var(--red);
  color: var(--red);
}

.about-label.is-red-secret::selection {
  background: var(--ink);
  color: var(--paper);
}

.about-genesis h2,
.about-gateway h2 {
  margin-top: clamp(64px, 6vw, 96px);
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.025em;
}

.about-genesis-copy > div,
.about-gateway-stats {
  margin-top: clamp(48px, 5vw, 72px);
}

.about-genesis-copy p {
  max-width: 640px;
  margin: 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.about-genesis-copy p + p {
  margin-top: 20px;
}

.about-genesis-media {
  position: relative;
  min-height: 560px;
  background: var(--soft);
  overflow: hidden;
}

.about-genesis-media img,
.about-field-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-field-grid img {
  filter: grayscale(1);
  transition: filter 420ms ease, transform 420ms ease;
}

.about-field-grid figure:hover img {
  filter: grayscale(0);
}

.about-genesis-media div {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(260px, 52%);
  padding: 24px;
  background: var(--red);
  color: var(--paper);
}

.about-genesis-media span {
  color: rgba(255, 255, 255, 0.72);
}

.about-genesis-media strong {
  color: var(--paper);
}

.about-gateway {
  align-items: start;
}

.about-gateway-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 42px);
}

.about-gateway-stats span {
  display: inline-flex;
  width: min(100%, 260px);
  box-sizing: border-box;
  margin-top: 12px;
  padding: 7px 9px;
  align-items: center;
  justify-content: flex-start;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: none;
  white-space: nowrap;
}

.about-field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 12px;
  min-height: 620px;
}

.about-field-grid figure {
  position: relative;
  min-height: 200px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.about-field-grid figure.is-tall {
  grid-row: span 2;
}

.about-field-grid figure.is-wide {
  grid-column: span 2;
  min-height: 250px;
}

.about-field-grid figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.about-keywords {
  overflow: hidden;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  background: var(--black);
  color: #666;
}

.about-keywords div {
  display: flex;
  width: max-content;
  gap: clamp(25px, 4.2vw, 62px);
  padding: 18px clamp(18px, 5vw, 72px);
  animation: aboutKeywords 22s linear infinite;
}

.about-keywords span {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 39px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes aboutKeywords {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-keywords div {
    animation: none;
  }
}

.page-hero {
  padding: clamp(118px, 15vw, 184px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 112px);
  background: var(--soft);
  color: var(--ink);
}

.page-hero .section-kicker,
.page-card .section-kicker {
  color: #6b6862;
}

.page-grid {
  display: grid;
  row-gap: clamp(72px, 8vw, 128px);
  padding: clamp(34px, 4vw, 56px) clamp(18px, 5vw, 72px) clamp(74px, 10vw, 136px);
  background: var(--paper);
}

.page-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(34px, 5vw, 72px);
  background: var(--paper);
  border: 0;
  box-shadow: none;
  color: var(--ink);
}

.page-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: var(--type-h3);
  line-height: 1;
  text-transform: none;
}

.page-card p,
.page-card li {
  color: rgba(17, 17, 17, 0.7);
}

.page-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--dark-line);
}

.page-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--dark-line);
  font-weight: 700;
}

.solutions-hero h1 {
  max-width: 1180px;
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: none;
}

.solutions-hero .page-copy {
  max-width: 820px;
  margin-top: clamp(24px, 4vw, 42px);
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.solutions-hero + .page-grid {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.solution-card {
  align-items: center;
}

.solution-card h2 {
  text-transform: none;
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-display);
  font-size: clamp(11px, 0.86vw, 13px);
  font-weight: 800;
  line-height: 1.25;
}

.solution-tags span {
  transition: color 180ms ease, transform 180ms ease;
}

.solution-tags span:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.solution-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(110px, 0.72fr);
  grid-template-rows: repeat(2, minmax(120px, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
  min-height: clamp(360px, 42vw, 560px);
}

.solution-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition: filter 360ms ease, transform 360ms ease;
}

.solution-collage img:hover {
  filter: saturate(1.03) contrast(1.06);
  transform: scale(1.018);
}

.solution-collage .is-main {
  grid-row: 1 / 3;
}

.partners-hero h1 {
  max-width: 1100px;
  font-size: clamp(40px, 5.4vw, 82px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: none;
}

.partners-hero .page-copy {
  max-width: 820px;
  margin-top: clamp(24px, 4vw, 42px);
  padding-left: 22px;
  border-left: 2px solid var(--red);
  color: rgba(17, 17, 17, 0.68);
  font-size: var(--type-lead);
}

.partners-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 38px);
  padding: clamp(24px, 4vw, 44px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: var(--paper);
}

.partners-index button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 0 0 8px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.partners-index button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.partners-index button:hover,
.partners-index button:focus-visible,
.partners-index button.is-active {
  color: var(--red);
}

.partners-index button:hover::after,
.partners-index button:focus-visible::after,
.partners-index button.is-active::after {
  transform: scaleX(1);
}

.partners-page-grid {
  padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 72px) clamp(74px, 10vw, 136px);
  background: var(--paper);
  color: var(--ink);
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo-grid li {
  position: relative;
  display: flex;
  min-width: 0;
  aspect-ratio: 1.9 / 1;
  padding: clamp(24px, 3.2vw, 44px);
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.partner-logo-grid li::after {
  position: absolute;
  right: 18%;
  bottom: 14px;
  left: 18%;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.partner-logo-grid img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 100%;
  max-height: 92px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
  transform: translateY(var(--logo-y-offset, 0)) scale(var(--logo-scale, 1));
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.partner-logo-grid img.is-wide-logo {
  max-width: 240px;
  max-height: 92px;
}

.partner-logo-grid img.is-compact-source {
  --logo-scale: 1.5;
}

.partner-logo-grid img.issey-logo {
  --logo-scale: 2.75;
  max-width: 260px;
}

.partner-logo-grid img.tencent-logo {
  --logo-scale: 1.65;
  max-width: 270px;
}

.partner-logo-grid img.four-seasons-logo {
  --logo-y-offset: -20px;
}

.partner-logo-grid img.nio-logo,
.partner-logo-grid img.china-mobile-logo,
.partner-logo-grid img.zeekr-logo {
  --logo-scale: 1.12;
}

.partner-logo-grid img.leica-logo {
  --logo-scale: 0.88;
  max-width: 104px;
}

.partner-logo-grid img.aito-logo {
  --logo-scale: 2;
  max-width: 156px;
}

.partner-logo-grid li:hover img,
.partner-logo-grid li:focus-within img,
.partner-logo-grid li.is-focused img,
.partners-page-grid.is-filtering .partner-logo-grid li.is-focused img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(var(--logo-y-offset, 0)) scale(calc(var(--logo-scale, 1) * 1.03));
}

.partner-logo-grid li:hover,
.partner-logo-grid li:focus-within,
.partner-logo-grid li.is-focused {
  transform: translateY(-6px);
}

.partner-logo-grid li:hover::after,
.partner-logo-grid li:focus-within::after,
.partner-logo-grid li.is-focused::after {
  opacity: 1;
  transform: scaleX(1);
}

.partners-page-grid.is-filtering .partner-logo-grid li:not(.is-focused) {
  opacity: 0.24;
}

.awards-redesign {
  display: grid;
  gap: clamp(38px, 5vw, 72px);
}

.awards-featured-program {
  position: relative;
  display: block;
  min-height: min(680px, 74vh);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.awards-featured-program figure,
.awards-program figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ececec;
}

.awards-featured-program img,
.awards-program img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awards-featured-program figure {
  position: absolute;
  inset: 0;
}

.awards-featured-program figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.68) 0%, rgba(8, 8, 8, 0.24) 48%, rgba(8, 8, 8, 0.74) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0) 58%);
  pointer-events: none;
}

.awards-program figure img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease, transform 700ms ease;
}

.awards-program figure img.is-active {
  opacity: 1;
}

.awards-program:hover figure img.is-active,
.awards-program:focus-within figure img.is-active {
  transform: scale(1.025);
}

.awards-featured-program > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  width: min(920px, 76vw);
  min-height: min(680px, 74vh);
  padding: clamp(28px, 5vw, 72px);
}

.awards-featured-program h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 128px);
  font-weight: 800;
  line-height: 0.86;
  text-transform: none;
}

.awards-featured-program p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.35;
}

.awards-featured-program span {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.awards-program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}

.awards-program-list .awards-program {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border-top: 0;
  background: #f7f7f7;
  transition: background 220ms ease;
}

.awards-program-list .awards-program figure {
  aspect-ratio: 16 / 10;
}

.awards-program-list .awards-program > div {
  padding: clamp(22px, 3vw, 36px);
}

.awards-program-list .awards-program h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.55vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.awards-program-list .awards-program p:not(.section-kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.45;
}

.awards-gallery-next {
  position: absolute;
  top: 50%;
  right: clamp(14px, 2vw, 24px);
  z-index: 2;
  display: grid;
  width: clamp(44px, 4vw, 56px);
  height: clamp(44px, 4vw, 56px);
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(11, 11, 11, 0.56);
  color: var(--paper);
  cursor: pointer;
  opacity: 0;
  transform: translate(8px, -50%);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.awards-gallery-next svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.awards-program:hover .awards-gallery-next,
.awards-program:focus-within .awards-gallery-next {
  opacity: 1;
  transform: translate(0, -50%);
}

.awards-gallery-next:hover,
.awards-gallery-next:focus-visible {
  border-color: var(--red);
  background: var(--red);
  outline: none;
}

.cafe-awards-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.cafe-awards-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.7vw, 30px);
  padding: 96px clamp(22px, 5vw, 72px) clamp(48px, 7vw, 92px);
  translate: 0 -10vh;
}

.cafe-awards-hero h1,
.cafe-awards-intro h2,
.cafe-section-heading h2,
.cafe-objective-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.92;
  text-transform: none;
}

.cafe-awards-hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 5.3vw, 82px);
}

.cafe-awards-kicker {
  width: max-content;
  padding: 9px 14px;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cafe-awards-hero p,
.cafe-awards-statement p,
.cafe-objective-copy p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-lead);
}

.cafe-awards-meta {
  display: grid;
  gap: 9px;
  max-width: 620px;
  padding-top: clamp(8px, 1.8vw, 20px);
}

.cafe-awards-meta span {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cafe-awards-meta strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1;
}

.cafe-awards-meta strong::after {
  display: none;
}

.cafe-awards-hero-media {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
}

.cafe-awards-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafe-awards-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.cafe-awards-intro h2,
.cafe-section-heading h2,
.cafe-objective-copy h2 {
  max-width: 780px;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 0.96;
}

.cafe-awards-statement {
  display: contents;
}

.cafe-objective-copy {
  max-width: 920px;
}

.cafe-awards-statement p,
.cafe-objective-copy p {
  color: rgba(17, 17, 17, 0.68);
}

.cafe-awards-statement p {
  max-width: 640px;
}

.cafe-objective-copy p {
  margin-top: 22px;
}

.cafe-awards-categories {
  overflow: hidden;
  background: var(--paper);
}

.cafe-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: end;
}

.cafe-section-heading > span {
  grid-column: 1 / -1;
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cafe-category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(312px, 350px);
  gap: 16px;
  margin: clamp(56px, 6vw, 80px) calc(clamp(22px, 5vw, 72px) * -1) 0;
  padding: 0 clamp(22px, 5vw, 72px) 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.cafe-category-track::-webkit-scrollbar {
  display: none;
}

.cafe-category-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  border: 1px solid var(--ink);
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  color: var(--ink);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.cafe-category-card:hover,
.cafe-category-card:focus-within {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-6px);
}

.cafe-category-card span,
.cafe-category-card strong {
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cafe-category-card h3 {
  margin: clamp(34px, 5vw, 52px) 0 12px;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1;
  overflow-wrap: normal;
  word-break: normal;
}

.cafe-category-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: var(--type-body);
  overflow-wrap: break-word;
}

.cafe-category-card h3.is-long-title {
  font-size: clamp(24px, 2vw, 31px);
  white-space: nowrap;
}

.cafe-category-card:hover p,
.cafe-category-card:focus-within p {
  color: rgba(255, 255, 255, 0.72);
}

.cafe-category-card i {
  display: block;
  width: 36px;
  height: 4px;
  margin-top: 26px;
  background: var(--ink);
  transition: width 280ms ease, background 180ms ease;
}

.cafe-category-card:hover i,
.cafe-category-card:focus-within i {
  width: 100%;
  background: var(--red);
}

.cafe-awards-image-pair {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  align-items: end;
}

.cafe-awards-image-pair img,
.cafe-mosaic-grid img,
.cafe-awards-gallery img {
  width: 100%;
  object-fit: cover;
}

.cafe-awards-image-pair img:first-child {
  aspect-ratio: 3 / 4;
}

.cafe-awards-image-pair img:last-child {
  aspect-ratio: 4 / 5;
}

.cafe-awards-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
  padding-top: 0;
}

.cafe-mosaic-copy {
  position: sticky;
  top: 104px;
  min-width: 0;
}

.cafe-mosaic-copy span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cafe-mosaic-copy h2 {
  max-width: 420px;
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 800;
  line-height: 0.96;
}

.cafe-mosaic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.cafe-mosaic-grid.is-two-portrait {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cafe-mosaic-grid figure {
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f2f2f2;
}

.cafe-mosaic-grid figure:not(.is-wide) {
  aspect-ratio: 4 / 5;
}

.cafe-mosaic-grid.is-two-portrait figure {
  aspect-ratio: 4 / 5;
}

.cafe-mosaic-grid figure.is-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 8.2;
}

.cafe-mosaic-grid img {
  display: block;
  max-width: 100%;
  height: 100%;
  filter: saturate(0.96) contrast(1.02);
}

.cafe-awards-objectives {
  display: block;
  background: #f6f6f6;
}

.cafe-objective-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 5vw, 72px);
  background: #d9d9d9;
}

.cafe-objective-grid article {
  padding: clamp(24px, 3vw, 40px);
  background: var(--paper);
  transition: background 180ms ease, color 180ms ease;
}

.cafe-objective-grid article:first-child {
  min-height: 0;
}

.cafe-objective-grid article:hover {
  background: var(--ink);
  color: var(--paper);
}

.cafe-objective-grid span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
}

.cafe-objective-grid h3 {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  text-transform: none;
}

.cafe-objective-grid p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: var(--type-body);
}

.cafe-objective-grid article:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.cafe-awards-manifesto {
  padding: clamp(132px, 15vw, 220px) clamp(22px, 5vw, 72px) clamp(104px, 12vw, 172px);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.cafe-awards-manifesto > div {
  max-width: 1040px;
  margin: 0 auto;
}

.cafe-awards-manifesto h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 112px);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
}

.cafe-awards-manifesto .cafe-manifesto-title {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(0.985);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cafe-awards-manifesto .reveal.is-visible .cafe-manifesto-title {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.cafe-awards-manifesto p {
  max-width: 720px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--type-lead);
}

.cafe-awards-gallery {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 1px;
  background: var(--ink);
}

.cafe-awards-gallery img {
  height: clamp(360px, 48vw, 680px);
}

.about-social {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.about-social h2 {
  margin: clamp(64px, 6vw, 96px) 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 0.96;
  text-transform: none;
}

.about-social-copy > p:not(.about-label) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: var(--type-lead);
}

.about-social .about-label {
  background: var(--ink);
  color: var(--ink);
}

.about-social-total {
  display: grid;
  gap: 4px;
  margin-top: clamp(34px, 5vw, 72px);
  padding-top: 22px;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.about-social-total strong {
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0;
}

.about-social-total span {
  color: rgba(17, 17, 17, 0.56);
  font-family: var(--font-display);
  font-size: var(--type-xs);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-social-map {
  position: relative;
  display: grid;
  gap: 0;
  min-height: clamp(540px, 46vw, 660px);
  overflow: visible;
  background: var(--paper);
}

.about-social-bubbles {
  position: relative;
  min-height: clamp(360px, 32vw, 430px);
  background: none;
}

.about-social-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(5px, 0.9vw, 8px);
  width: min(var(--bubble), calc(100% - 28px));
  height: min(var(--bubble), calc(100% - 28px));
  aspect-ratio: 1;
  padding: clamp(10px, 1.8vw, 22px);
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.04);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 22px 55px rgba(17, 17, 17, 0.07);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.about-social-map.has-active .about-social-node:not(.is-active) {
  opacity: 0.62;
}

.about-social-node:hover,
.about-social-node:focus-visible,
.about-social-node.is-active {
  border-color: rgba(227, 6, 19, 0.5);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.12);
  transform: translate(-50%, -50%) scale(1.035);
}

.about-social-node:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 6px;
}

.about-social-logo {
  display: grid;
  place-items: center;
  width: clamp(28px, calc(var(--bubble) * 0.27), 62px);
  aspect-ratio: 1;
}

.about-social-node.is-core {
  z-index: 3;
  border-color: var(--red);
  background: var(--red);
  color: var(--paper);
  box-shadow: 0 34px 90px rgba(227, 6, 19, 0.24);
}

.about-social-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-social-node-copy {
  display: grid;
  text-align: center;
  font-family: var(--font-display);
  min-width: 0;
}

.about-social-node-copy strong {
  color: var(--ink);
  font-size: clamp(14px, calc(var(--bubble) * 0.18), 44px);
  font-weight: 800;
  line-height: 0.92;
}

.about-social-node.is-core .about-social-node-copy strong {
  color: var(--paper);
}

.about-social-node-copy span {
  display: none;
  color: rgba(17, 17, 17, 0.56);
  font-size: clamp(9px, calc(var(--bubble) * 0.065), 15px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-social-node.is-core .about-social-node-copy span {
  color: rgba(255, 255, 255, 0.92);
}

.about-social-node.is-small {
  padding: 10px;
  gap: 4px;
}

.about-social-node.is-small .about-social-logo {
  width: clamp(22px, calc(var(--bubble) * 0.44), 34px);
}

.about-social-node.is-small .about-social-node-copy strong {
  font-size: clamp(12px, calc(var(--bubble) * 0.22), 15px);
}

.about-social-node.is-tight .about-social-logo {
  width: 30px;
}

.about-social-node.is-tight .about-social-node-copy {
  max-width: 78px;
}

.about-social-node.is-tight .about-social-node-copy strong {
  font-size: 20px;
}

.about-social-node.is-tight .about-social-node-copy span {
  font-size: 10px;
  line-height: 1.02;
  white-space: normal;
}

.about-social-panel {
  position: relative;
  z-index: 4;
  width: min(100%, 430px);
  min-width: 0;
  align-self: start;
  justify-self: end;
  margin-top: clamp(40px, 4vw, 56px);
  padding: 18px 22px;
  border-left: 3px solid var(--red);
  background: rgba(17, 17, 17, 0.92);
  color: var(--paper);
}

.about-social-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 700;
}

.about-social-panel strong {
  display: inline;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 0.9;
}

.about-social-panel p {
  margin: 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
}

.about-social-panel-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 10px;
}

main h1,
main h2,
main h3 {
  text-transform: none !important;
}

@media (max-width: 1240px) {
  .desktop-nav {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 1279px) {
  .awards-lead h2 {
    max-width: none;
    white-space: normal;
  }

  .awards-card {
    flex-basis: calc((100% - 40px) / 1.5);
  }

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

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

@media (max-width: 900px) {
  .translate-toast {
    top: auto;
    right: 16px;
    bottom: 18px;
    left: 16px;
    justify-content: space-between;
    max-width: none;
  }

  .site-header {
    height: 66px;
    grid-template-columns: auto 1fr auto;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 0;
    padding: 0 0 24px 16px;
  }

  .hero h1 {
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.02;
    white-space: normal;
  }

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

  .button {
    width: 100%;
  }

  .intro-grid,
  .about-hero,
  .about-genesis,
  .about-gateway,
  .awards-lead,
  .whats-new-section,
  .whats-new-card,
  .contact-section,
  .site-footer,
  .page-card,
  .partner-logo-card,
  .work-opportunity-grid,
  .awards-program {
    grid-template-columns: 1fr;
  }

  .site-footer .footer-main,
  .site-footer nav,
  .social-icons {
    grid-column: 1;
  }

  .site-footer {
    row-gap: 28px;
  }

  .awards-lead h2 {
    padding-left: 0;
  }

  .whats-new-card {
    min-height: 0;
  }

  .whats-new-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .about-hero {
    min-height: auto;
  }

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

  .about-genesis-media {
    min-height: 420px;
  }

  .about-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .about-field-grid figure.is-tall,
  .about-field-grid figure.is-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .social-icons {
    justify-self: start;
  }

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

  .solution-collage {
    min-height: clamp(320px, 70vw, 520px);
  }

  .work-atmosphere img {
    aspect-ratio: 4 / 3;
  }

  .awards-atmosphere img {
    aspect-ratio: 4 / 3;
  }

  .awards-program p:not(.section-kicker) {
    grid-column: auto;
  }

  .about-social-map {
    min-height: auto;
    display: block;
    overflow: hidden;
    padding: 0;
    background: var(--paper);
  }

  .about-social-bubbles {
    position: relative;
    inset: auto;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    gap: 14px;
    overflow-x: auto;
    padding: 24px 22px 30px;
    scroll-snap-type: x proximity;
  }

  .about-social-node {
    position: static;
    width: clamp(74px, var(--bubble), 176px);
    height: clamp(74px, var(--bubble), 176px);
    min-height: 0;
    transform: none;
    scroll-snap-align: start;
  }

  .about-social-node:hover,
  .about-social-node:focus-visible,
  .about-social-node.is-active {
    transform: none;
  }

  .about-social-map.has-active .about-social-node:not(.is-active) {
    opacity: 0.68;
  }

  .about-social-panel {
    position: static;
    width: auto;
    min-width: 0;
    margin: 18px 22px 0;
  }

  .stats-grid,
  .awards-stats,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .awards-card {
    flex-basis: calc((100% - 40px) / 1.5);
  }

  .go100-module {
    grid-template-columns: 1fr;
  }

  .partner-universe {
    min-height: 86vh;
  }

  .partner-universe-title {
    font-size: clamp(58px, 14vw, 112px);
  }

  .partner-stream-group {
    flex-basis: 1180px;
    width: 1180px;
  }

  .partner-stream {
    animation-name: partnerStreamTablet;
  }

  .partner-stream-brand {
    font-size: clamp(14px, 2.6vw, 18px);
  }

  .partner-photo-01 {
    width: 170px;
  }

  .partner-photo-02 {
    width: 360px;
  }

  .partner-photo-03 {
    width: 300px;
  }

  .partner-photo-04 {
    width: 140px;
  }

  .showcase-card {
    flex-basis: 100%;
    min-width: 0;
    grid-template-rows: minmax(300px, 50vh) auto;
  }

  .showcase-track {
    gap: 0;
  }

}

@media (max-width: 768px) {
  .awards-card {
    flex-basis: calc((100% - 40px) / 1.15);
  }

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

  .work-grid .work-column-link + .work-column-link article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .section-pad,
  .page-grid,
  .partners-page-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stats-grid,
  .about-hero-stats,
  .about-gateway-stats,
  .about-field-grid,
  .awards-stats,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: clamp(32px, 9.6vw, 38px);
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .about-hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .about-hero-copy p,
  .solutions-hero .page-copy,
  .partners-hero .page-copy,
  .awards-hero .page-copy,
  body[data-page="work-with-us"] .page-hero .page-copy {
    max-width: min(100%, 286px);
    padding-left: 18px;
    overflow-wrap: break-word;
  }

  .about-hero-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .about-mobile-break {
    display: inline;
  }

  .about-gateway-stats span {
    white-space: normal;
  }

  .partners-index {
    gap: 12px 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .partners-index button {
    min-height: 36px;
    font-size: 14px;
  }

  .partners-hero .page-copy {
    padding-left: 18px;
  }

  .solution-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(220px, 1.25fr) minmax(130px, 0.75fr);
    min-height: auto;
  }

  .solution-collage .is-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .about-genesis-media {
    min-height: 320px;
  }

  .about-genesis-media div {
    width: min(220px, 70%);
    padding: 18px;
  }

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

  .partner-logo-grid li {
    padding: 22px 16px;
  }

  .partner-logo-grid img,
  .partner-logo-grid img.is-wide-logo {
    max-width: 150px;
    max-height: 78px;
  }

  .partner-logo-grid img.is-compact-source {
    --logo-scale: 1.25;
  }

  .awards-section.section-pad {
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .awards-card {
    flex-basis: calc((100% - 40px) / 1.15);
  }

  .go100-module {
    margin-top: 56px;
    padding: 56px 0;
  }

  .partner-universe {
    min-height: 78vh;
  }

  .partner-universe-title {
    width: min(100% - 28px, 520px);
    font-size: clamp(46px, 16vw, 76px);
  }

  .partner-stream-group {
    flex-basis: 900px;
    width: 900px;
  }

  .partner-stream {
    animation-name: partnerStreamMobile;
  }

  .partner-stream-brand {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  .partner-photo-01 {
    width: 118px;
  }

  .partner-photo-02 {
    width: 250px;
  }

  .partner-photo-03 {
    width: 210px;
  }

  .partner-photo-04 {
    width: 96px;
  }

  .showcase-controls {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .showcase-dots {
    grid-column: 1 / -1;
    order: 3;
  }

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

  .social-icons {
    flex-wrap: wrap;
  }

  .about-social-map {
    margin-left: -16px;
    margin-right: -16px;
    border-right: 0;
    border-left: 0;
  }
}

@keyframes partnerStreamTablet {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-1180px);
  }
}

@keyframes partnerStreamMobile {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-900px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-stream {
    animation: none;
    transform: translateX(0);
  }

  .cafe-awards-manifesto .cafe-manifesto-title {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .gtranslate_wrapper {
    justify-self: end;
    width: 48px;
    height: 38px;
  }

  .gtranslate_wrapper select,
  .gtranslate_wrapper .gt_selector {
    min-height: 0;
  }

  .mobile-menu .mobile-translate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .awards-featured-program,
  .cafe-awards-hero,
  .cafe-awards-intro,
  .cafe-awards-objectives,
  .about-social {
    grid-template-columns: 1fr;
  }

  .awards-featured-program {
    min-height: min(620px, 78vh);
  }

  .awards-featured-program figure {
    aspect-ratio: auto;
  }

  .awards-featured-program > div {
    width: 100%;
    min-height: min(620px, 78vh);
  }

  .awards-program-list {
    grid-template-columns: 1fr;
  }

  .awards-program-list .awards-program h2 {
    font-size: clamp(30px, 7.8vw, 42px);
  }

  .awards-gallery-next {
    opacity: 1;
    transform: translate(0, -50%);
  }

  .cafe-awards-hero {
    min-height: auto;
  }

  .cafe-awards-hero-copy {
    min-height: 64vh;
    padding-top: 104px;
    justify-content: center;
    translate: none;
  }

  .cafe-awards-intro {
    display: block;
  }

  .cafe-awards-statement {
    display: block;
    max-width: 760px;
  }

  .cafe-awards-statement p {
    margin-top: 22px;
  }

  .cafe-awards-meta {
    grid-template-columns: 1fr;
  }

  .cafe-awards-meta strong {
    display: block;
  }

  .cafe-awards-meta strong::after {
    display: none;
  }

  .cafe-awards-hero-media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .cafe-awards-mosaic {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .cafe-mosaic-copy {
    position: static;
  }

  .cafe-mosaic-copy h2 {
    max-width: 680px;
  }

  .cafe-mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cafe-section-heading {
    grid-template-columns: 1fr;
  }

  .cafe-category-track {
    grid-auto-columns: minmax(274px, 78vw);
  }

  .cafe-category-card {
    min-height: 330px;
  }

  .cafe-awards-manifesto {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .cafe-objective-grid {
    grid-template-columns: 1fr;
  }

  .cafe-objective-grid article:first-child {
    grid-row: auto;
    min-height: 0;
  }

  .cafe-awards-image-pair,
  .cafe-awards-gallery {
    grid-template-columns: 1fr;
  }

  .cafe-awards-gallery img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .about-social {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .awards-featured-program > div,
  .awards-program-list .awards-program > div {
    padding: 24px 18px;
  }

  .cafe-awards-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cafe-awards-hero h1 {
    font-size: clamp(40px, 14vw, 58px);
  }

  .cafe-category-track {
    grid-auto-columns: minmax(264px, 84vw);
    gap: 12px;
  }

  .cafe-category-card {
    min-height: 310px;
  }

  .cafe-category-card h3 {
    font-size: clamp(24px, 8vw, 30px);
  }

  .cafe-mosaic-grid {
    grid-template-columns: 1fr;
  }

  .cafe-mosaic-grid.is-two-portrait {
    grid-template-columns: 1fr;
  }

  .cafe-mosaic-grid figure.is-wide {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .cafe-awards-manifesto {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .cafe-awards-manifesto h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .about-social-total strong {
    font-size: clamp(54px, 18vw, 72px);
  }

  .about-social-panel {
    min-width: min(280px, calc(100vw - 44px));
  }

  .about-social-panel strong {
    font-size: 38px;
  }
}
