:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #fff;
  --edge: clamp(18px, 3vw, 48px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; width: 100%; min-height: 100%; background: #050505; }
body { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

.experience, .gallery { width: 100%; height: 100dvh; }
.gallery {
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: #050505;
}
.gallery::-webkit-scrollbar { display: none; }

.campaign {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  isolation: isolate;
  background: #111;
}
.media-layer, .campaign-picture, .campaign-picture img, .campaign-video, .media-shade {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.campaign-picture { display: block; }
.campaign-picture img, .campaign-video { object-fit: cover; }
.campaign-picture img { display: block; background: #111; }
.campaign-video { z-index: 2; }
.media-shade {
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.02) 35%, rgba(0,0,0,.07) 64%, rgba(0,0,0,.48) 100%);
  pointer-events: none;
}

.campaign-content {
  position: absolute;
  z-index: 5;
  left: var(--edge);
  right: var(--edge);
  bottom: max(9vh, calc(env(safe-area-inset-bottom) + 56px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2vw, 28px);
  pointer-events: none;
}
.campaign-content h1, .campaign-content h2 {
  margin: 0;
  max-width: min(11ch, 82vw);
  font-size: clamp(3.4rem, 9vw, 9.5rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.16);
}
.campaign-cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(0,0,0,.16);
  color: #fff;
  backdrop-filter: blur(10px);
  text-decoration: none;
  font-size: .79rem;
  font-weight: 750;
  letter-spacing: .12em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.campaign-cta:hover, .campaign-cta:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  color: #080808;
  outline: none;
}
.campaign-full-link { position: absolute; z-index: 4; inset: 0; }
.campaign-full-link:focus-visible { outline: 3px solid #fff; outline-offset: -8px; }

.campaign-index {
  pointer-events: none;
  position: absolute;
  z-index: 6;
  left: var(--edge);
  bottom: max(22px, env(safe-area-inset-bottom));
  font-size: .67rem;
  letter-spacing: .16em;
  opacity: .72;
}

.global-shell {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto 0;
  height: 94px;
  padding: max(18px, env(safe-area-inset-top)) var(--edge) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
  color: #fff;
  transition: color .2s ease;
}
.global-shell[data-theme="dark"] { color: #0a0a0a; }
.brand-button, .menu-button {
  pointer-events: auto;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.brand-button { display: block; text-decoration: none; position: relative; width: clamp(150px, 18vw, 224px); height: 42px; padding: 0; }
.brand-logo { position: absolute; inset: 0 auto auto 0; width: 100%; height: auto; }
.brand-logo--dark { display: none; }
.global-shell[data-theme="dark"] .brand-logo--light { display: none; }
.global-shell[data-theme="dark"] .brand-logo--dark { display: block; }
.menu-button {
  display: flex; align-items: center; gap: 12px; padding: 8px 0;
  font-size: .72rem; font-weight: 750; letter-spacing: .14em;
}
.menu-glyph { font-size: 1.35rem; line-height: .7; font-weight: 300; }

.global-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(5,5,5,.96);
  color: #fff;
  pointer-events: auto;
}
.global-menu[hidden] { display: none; }
.global-menu__inner {
  min-height: 100%;
  padding: max(28px, env(safe-area-inset-top)) var(--edge) max(28px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-close { position: absolute; top: max(20px, env(safe-area-inset-top)); right: var(--edge); border: 0; background: none; color: #fff; font-size: 2.2rem; cursor: pointer; }
.menu-kicker { position: absolute; top: max(24px, env(safe-area-inset-top)); left: var(--edge); font-size: .7rem; letter-spacing: .16em; opacity: .65; }
.global-menu ul { margin: 0; padding: 0; list-style: none; }
.global-menu li + li { border-top: 1px solid rgba(255,255,255,.14); }
.global-menu li a { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; text-decoration: none; font-size: clamp(1.5rem, 5vw, 4.5rem); font-weight: 650; letter-spacing: -.04em; }
.menu-placeholder { max-width: 540px; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.6; }
.menu-placeholder code { color: #fff; }

.gallery-progress {
  position: fixed;
  z-index: 40;
  top: 50%;
  right: max(18px, calc(var(--edge) * .75));
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-progress [data-progress-to] { display: block; text-decoration: none; width: 18px; height: 18px; border: 0; padding: 5px; background: transparent; cursor: pointer; }
.gallery-progress [data-progress-to] span { display: block; width: 8px; height: 8px; border: 1px solid rgba(255,255,255,.82); border-radius: 50%; transition: transform .2s ease, background .2s ease; }
.gallery-progress [data-progress-to][aria-current="true"] span { background: #fff; transform: scale(1.35); }
.gallery-progress [data-progress-to]:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 50%; }

.scroll-hint {
  position: fixed;
  z-index: 30;
  right: var(--edge);
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: .62rem;
  letter-spacing: .16em;
  opacity: .72;
  pointer-events: none;
}

.error-page { min-height: 100dvh; display: grid; place-items: center; padding: 32px; text-align: center; background: #050505; }
.error-page h1 { font-size: clamp(5rem, 18vw, 14rem); line-height: .8; margin: 0; }
.error-page p { opacity: .72; }
.error-page a { display: inline-block; margin-top: 18px; padding: 14px 20px; border: 1px solid #fff; border-radius: 999px; text-decoration: none; }

@media (max-width: 767px) {
  :root { --edge: 20px; }
  .global-shell { height: 76px; }
  .brand-button { width: 155px; height: 30px; }
  .menu-button span:first-child { display: none; }
  .campaign-content { bottom: max(10vh, calc(env(safe-area-inset-bottom) + 54px)); }
  .campaign-content h1, .campaign-content h2 { font-size: clamp(3.4rem, 18vw, 6.3rem); max-width: 8.5ch; }
  .campaign-cta { min-height: 50px; padding: 0 18px; }
  .gallery-progress { right: 13px; gap: 8px; }
  .gallery-progress [data-progress-to] { display: block; text-decoration: none; width: 16px; height: 16px; padding: 5px; }
  .gallery-progress [data-progress-to] span { width: 6px; height: 6px; }
  .scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  .gallery { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .campaign-video { display: none !important; }
}

.campaign[data-logo-theme="dark"] .campaign-content h1,
.campaign[data-logo-theme="dark"] .campaign-content h2,
.campaign[data-logo-theme="dark"] .campaign-index { color: #090909; text-shadow: none; }
.campaign[data-logo-theme="dark"] .campaign-cta { color: #090909; border-color: rgba(0,0,0,.68); background: rgba(255,255,255,.2); }
.campaign[data-logo-theme="dark"] .campaign-cta:hover,
.campaign[data-logo-theme="dark"] .campaign-cta:focus-visible { color: #fff; background: #090909; }
html[data-ui-theme="dark"] .gallery-progress [data-progress-to] span { border-color: rgba(0,0,0,.8); }
html[data-ui-theme="dark"] .gallery-progress [data-progress-to][aria-current="true"] span { background: #090909; }
html[data-ui-theme="dark"] .scroll-hint { color: #090909; }
