:root {
  --page-bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #171717;
  --text: #ffffff;
  --text-muted: #808080;
  --text-dim: #6f6f6f;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.28);
  /* single signal colour — used for indices, metrics, focus and primary actions */
  --accent: #6fe3e1;
  --accent-dim: rgba(111, 227, 225, 0.16);
  --page-padding: 20px;
  --max-width: 1920px;
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* z-index scale */
  --z-nav: 200;
  --z-pop: 500;
}

/* Visible focus on every interactive control (WCAG 2.2: 2px perimeter, 3:1 contrast) */
:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@view-transition {
  navigation: auto;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-feature-settings: "ss07" 1;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

.display {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.tm {
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
  font-weight: 500;
}

/* ---------- Entrance animation base ---------- */
[data-animate="nav"] {
  opacity: 0;
}

[data-animate="word"] {
  display: block;
  transform: translateY(115%);
}

[data-animate="fade"] {
  opacity: 0;
  transform: translateY(24px);
}

.is-ready [data-animate="word"].in {
  transform: translateY(0);
  transition: transform 1.1s var(--ease);
}

.is-ready [data-animate="fade"].in {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s var(--ease), opacity 1s ease;
}

/* Scroll reveal (works cards, sections, project scenes) */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1s var(--ease), opacity 0.9s ease;
}

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max-width);
  padding: var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  mix-blend-mode: difference;
}

.nav[data-animate="nav"] {
  transform: translateX(-50%) translateY(-80px);
}

.is-ready .nav[data-animate="nav"].in {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  transition: transform 0.9s var(--ease), opacity 0.7s ease;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.nav__logo img {
  display: block;
  height: 34px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* comfortable touch target (Apple HIG / Material) */
  padding: 0 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.3s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 12px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

/* ---------- Footer ---------- */
.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px var(--page-padding) 72px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer__top {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

.footer__brand {
  flex: 1 1 auto;
  font-size: clamp(22px, 2.2vw, 28px);
}

.footer__brand img {
  height: clamp(32px, 3.6vw, 46px);
  width: auto;
  display: block;
}

.footer__col {
  flex: 0 0 20%;
  min-width: 140px;
}

.footer__label {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  transition: opacity 0.25s ease;
}

.footer__link:hover {
  opacity: 0.55;
}

/* ==========================================================
   Project case page
   ========================================================== */
.case {
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--page-padding) + 76px) var(--page-padding) 0;
}

/* --- back link --- */
.case__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.case__back svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  transform: rotate(180deg);
  transition: transform 0.4s var(--ease-out);
}

.case__back:hover {
  color: var(--text);
}

.case__back:hover svg {
  transform: rotate(180deg) translateX(5px);
}

/* --- typographic hero: the copy leads, not the video --- */
.case__head {
  position: relative;
  padding: clamp(28px, 4vw, 56px) 0 clamp(24px, 3vw, 40px);
}

/* a single soft accent bloom for depth — decorative only */
.case__head::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -8%;
  width: 52%;
  height: 240px;
  background: radial-gradient(60% 60% at 30% 40%, var(--accent-dim), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.case__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.case__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.case__title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(38px, 6.4vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.case__lead {
  margin-top: clamp(20px, 2.4vw, 32px);
  max-width: 58ch;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

/* --- meta strip --- */
.case__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  margin: clamp(28px, 3.4vw, 48px) 0 0;
  border-top: 1px solid var(--border-strong);
}

.case__cell {
  padding: 18px 22px 18px 0;
  border-bottom: 1px solid var(--border);
}

.case__cell dt {
  margin-bottom: 7px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.case__cell dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

/* --- cinematic media band --- */
.case__media {
  position: relative;
  margin: clamp(36px, 4.5vw, 72px) 0 0;
  aspect-ratio: 21 / 9;
  --box-ar: 2.3333;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--border);
}

.case__frame {
  position: absolute;
  inset: 0;
}

.case__media video,
.case__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.case__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, calc(100% * 1.7778 / var(--box-ar)));
  height: max(100%, calc(100% * var(--box-ar) / 1.7778));
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.case__media--ph {
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 40% 20%, #1b2530 0%, #101418 60%, #0a0a0a 100%);
}

.case__media--ph span {
  font-size: clamp(24px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.1);
}

.case__media--app {
  aspect-ratio: 16 / 10;
  --box-ar: 1.6;
}

.case__caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
}

/* --- body: sticky section heading + prose column --- */
.case__section {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  padding: clamp(48px, 6vw, 96px) 0 0;
}

.case__h2 {
  position: sticky;
  top: 96px;
  align-self: start;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.case__text {
  max-width: 68ch;
}

.case__text p {
  margin: 0 0 20px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.case__text p:last-child {
  margin-bottom: 0;
}

/* --- outcome figures --- */
.case__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin: clamp(44px, 5.5vw, 88px) 0 0;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat {
  padding: clamp(22px, 2.6vw, 36px);
  background: var(--page-bg);
}

.stat__num {
  display: block;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat__label {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* --- next project --- */
.case__next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 36px);
  margin-top: clamp(56px, 7vw, 112px);
  padding: clamp(36px, 5vw, 72px) 0;
  border-top: 1px solid var(--border);
  font-size: clamp(24px, 4vw, 52px);
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.case__next small {
  display: block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.case__next svg {
  width: clamp(24px, 3vw, 40px);
  height: clamp(24px, 3vw, 40px);
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.5s var(--ease-out), color 0.3s ease;
}

.case__next:hover svg {
  transform: translateX(12px);
  color: var(--accent);
}

/* a live preview of whatever you are about to click */
.case__next-media {
  position: relative;
  flex: 0 0 auto;
  width: clamp(96px, 15vw, 220px);
  aspect-ratio: 16 / 9;
  --box-ar: 1.7778;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid var(--border);
  transition: border-color 0.4s ease, transform 0.6s var(--ease-out);
}

.case__next-media .case__frame {
  position: absolute;
  inset: 0;
}

.case__next-media video,
.case__next-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.5s ease;
}

.case__next-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, calc(100% * 1.7778 / var(--box-ar)));
  height: max(100%, calc(100% * var(--box-ar) / 1.7778));
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: brightness(0.7);
  transition: filter 0.5s ease;
}

.case__next:hover .case__next-media {
  border-color: var(--border-strong);
  transform: scale(1.02);
}

.case__next:hover .case__next-media video,
.case__next:hover .case__next-media img,
.case__next:hover .case__next-media iframe {
  filter: brightness(1);
}

.case__next-label {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 809px) {
  .case__next {
    flex-wrap: wrap;
  }
  .case__next-media {
    width: 92px;
  }
}

/* subtler reveal inside case pages (8-16px, ~380ms) */
.case [data-reveal] {
  transform: translateY(14px);
}

.case [data-reveal].in {
  transform: translateY(0);
  transition: transform 0.42s var(--ease-out), opacity 0.38s ease;
}

@media (max-width: 809px) {
  .case {
    padding-top: calc(var(--page-padding) + 64px);
  }
  .case__head::before {
    display: none;
  }
  .case__media {
    aspect-ratio: 16 / 10;
    --box-ar: 1.6;
  }
  .case__section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .case__h2 {
    position: static;
  }
  .case__next {
    font-size: clamp(22px, 7vw, 34px);
  }
}

/* ---------- Tablet ---------- */
@media (max-width: 1199px) {
}

/* ---------- Mobile ---------- */
@media (max-width: 809px) {
  .footer__top {
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 80px;
  }
  .footer__brand {
    flex-basis: 100%;
  }
  .footer__col {
    flex: 0 0 40%;
  }
}

/* ---------- Shared section label ---------- */
.section__label {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.01em;
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* ---------- Social proof: logo marquee + testimonials ---------- */
.proof {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) var(--page-padding) clamp(80px, 12vw, 160px);
  border-top: 1px solid var(--border);
}

.proof__label {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__row {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  padding-right: clamp(40px, 6vw, 96px);
  flex: 0 0 auto;
}

.marquee img {
  height: clamp(24px, 2.6vw, 38px);
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee img:hover {
  opacity: 1;
  filter: none;
}

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

/* ---------- Testimonial slider ---------- */
.slider {
  margin-top: clamp(56px, 8vw, 120px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.slider__viewport {
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding-top: clamp(28px, 3.4vw, 44px);
}

.slider__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.6s var(--ease-out);
}

.slider__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.testimonial {
  margin: 0;
  text-align: center;
}

.testimonial__quote {
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}

.testimonial__by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.testimonial__logo {
  height: 40px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.testimonial__name {
  font-weight: 500;
  letter-spacing: -0.02em;
  font-style: normal;
}

.testimonial__org {
  color: var(--text-muted);
  font-size: 15px;
  font-style: normal;
}

.slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: clamp(24px, 3vw, 36px);
}

.slider__arrow,
.slider__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.slider__arrow:hover,
.slider__pause:hover {
  border-color: var(--border-strong);
  color: var(--text);
}

.slider__arrow svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.slider__arrow[data-slider-prev] svg {
  transform: rotate(180deg);
}

.slider__pause-icon {
  width: 11px;
  height: 11px;
}

.slider__pause-icon--play {
  display: none;
}

.slider__pause[aria-pressed="true"] .slider__pause-icon--pause {
  display: none;
}

.slider__pause[aria-pressed="true"] .slider__pause-icon--play {
  display: block;
}

.slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider__dot {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slider__dot::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--border-strong);
  transition: background 0.35s ease;
}

.slider__dot[aria-selected="true"]::before {
  background: var(--accent);
}

@media (max-width: 809px) {
  .slider__controls {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
  .slider__track {
    transition: none;
  }
}

@media (max-width: 809px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   Home: hero
   ========================================================== */
.lede {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--page-padding) + 70px) var(--page-padding) clamp(40px, 4.5vw, 72px);
}

.lede__word {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.92;
  overflow: hidden;
  display: block;
}

.lede__sub {
  margin-top: clamp(14px, 1.4vw, 22px);
  max-width: 52ch;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--text-muted);
}

/* ==========================================================
   Home: work tiles
   ========================================================== */
.tiles {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.tiles__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: clamp(14px, 1.4vw, 20px);
  border-bottom: 1px solid var(--border);
}

.tiles__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.tiles__count {
  font-size: 12px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

/* Highlights get a real heading, an accent rule and a breathing gap */
.tiles__head--feature {
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: clamp(18px, 2vw, 28px);
  border-bottom: 1px solid var(--border-strong);
}

.tiles__heading {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.tiles__note {
  flex: 1;
  padding-bottom: 4px;
  font-size: 12px;
  color: var(--text-dim);
}

.tiles__head--feature .tiles__count {
  padding-bottom: 4px;
  color: var(--accent);
}

.tilegrid {
  display: grid;
  gap: clamp(24px, 2.6vw, 52px) clamp(10px, 1.1vw, 16px);
  margin-bottom: clamp(72px, 8vw, 132px);
}

/* Five across, but square — the row carries more vertical weight than the
   16:9 "more work" tiles below it, so the hierarchy reads correctly. */
.tilegrid--highlights {
  /* four selected cases, four columns — and they stay the larger tiles */
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 2.8vw, 48px) clamp(10px, 1.1vw, 16px);
}

.tilegrid--highlights .tile__media {
  aspect-ratio: 16 / 9;
  --box-ar: 1.7778;
}

.tilegrid--highlights .tile__num {
  color: var(--accent);
}

.tilegrid--highlights .tile__title {
  font-size: clamp(13px, 1.1vw, 16px);
}

.tilegrid--highlights .tile__client {
  font-size: 11px;
}

.tilegrid--more {
  /* collaborations: same width, but 16:9 so they read as the quieter row.
     11 tiles land as 4 + 4 + 3 with no awkward single-tile row. */
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) {
  .tile:not(.tile--ph):hover {
    transform: translateY(-4px);
  }
}



.tile__media {
  position: relative;
  aspect-ratio: 16 / 9;
  --box-ar: 1.7778;
  overflow: hidden;
  background: #131313;
  isolation: isolate;
}

.tile__frame {
  position: absolute;
  inset: 0;
}

.tile__media video,
.tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transition: filter 0.6s var(--ease), transform 0.9s var(--ease);
}

/* An iframe ignores object-fit, so the Stream player letterboxes itself inside
   any box that isn't 16:9. Oversize it instead so the video always covers.
   --box-ar must match the media box's aspect-ratio. */
.tile__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, calc(100% * 1.7778 / var(--box-ar, 1.7778)));
  height: max(100%, calc(100% * var(--box-ar, 1.7778) / 1.7778));
  border: 0;
  transform: translate(-50%, -50%);
  transition: filter 0.6s var(--ease);
}

.tile:hover .tile__media video,
.tile:hover .tile__media img {
  filter: brightness(0.55);
  transform: scale(1.03);
}

.tile:hover .tile__media iframe {
  filter: brightness(0.55);
}

/* --- "View" bracket pill --- */
.tile__view {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 44px; /* comfortable touch target */
  padding: 11px 22px;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s var(--ease);
}

.tile:hover .tile__view,
.tile:focus-within .tile__view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.tile__view i {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid var(--text);
}

.tile__view i:nth-of-type(1) {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.tile__view i:nth-of-type(2) {
  top: 0;
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.tile__view i:nth-of-type(3) {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
}
.tile__view i:nth-of-type(4) {
  bottom: 0;
  left: 0;
  border-right: 0;
  border-top: 0;
}

/* --- Caption under the tile --- */
.tile__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.tile__title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.tile__num {
  font-size: 12px;
  color: #8d8d8d;
  flex: 0 0 auto;
}

.tile__client {
  margin-top: -6px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6f6f6f;
}

/* --- Tiles without media yet: a deliberate mark, not an empty box --- */
.tile__mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1c1c1c, #0d0d0d 75%);
}

.tile__mark span {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.16);
}

.tile__mark--brand {
  background: var(--surface);
  padding: 14%;
}

.tile__mark--brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) invert(1);
  opacity: 0.82;
  transition: filter 0.5s ease, opacity 0.5s ease;
}

.tile:hover .tile__mark--brand img {
  filter: none;
  opacity: 1;
}

/* --- Placeholder tiles (replace or delete) --- */
.tile--ph .tile__media {
  background: linear-gradient(150deg, #1b1b1b, #0e0e0e 70%);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
}

.tile--ph .tile__media span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a4a4a;
}

/* On touch there is no hover, and tapping the tile already opens the modal —
   so the pill stays hidden rather than sitting on every tile. Keyboard users
   still get it via .tile:focus-within above. */

/* ---------- Home: responsive ---------- */
@media (max-width: 1199px) {
  .tilegrid--highlights,
  .tilegrid--more {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .tilegrid--highlights .tile__media {
    aspect-ratio: 16 / 9;
    --box-ar: 1.7778;
  }
}

@media (max-width: 809px) {
  .lede {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: calc(var(--page-padding) + 66px);
  }
  .lede__word {
    font-size: clamp(38px, 12vw, 64px);
  }
  .lede__sub {
    max-width: 100%;
    padding-bottom: 0;
    text-align: left;
    font-size: 14px;
  }
  .tilegrid--more {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 10px;
  }
  .tilegrid--highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 10px;
  }
  .tilegrid--highlights .tile__media {
    aspect-ratio: 16 / 9;
    --box-ar: 1.7778;
  }
  .tiles__note {
    order: 3;
    flex-basis: 100%;
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .tilegrid--highlights {
    grid-template-columns: 1fr;
  }
  .tilegrid--highlights .tile__media {
    aspect-ratio: 16 / 9;
    --box-ar: 1.7778;
  }
  .tile__title {
    font-size: 12px;
  }
}

/* ==========================================================
   Project modal (native <dialog>: focus trap, Esc, inert page)
   ========================================================== */
.pop {
  width: min(94vw, 1180px);
  max-height: min(90vh, 880px);
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  overflow: hidden;
}

.pop::backdrop {
  background: rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pop[open] {
  animation: popIn 0.24s var(--ease-out) both;
}

.pop[open]::backdrop {
  animation: fadeIn 0.24s ease both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

.pop__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-height: inherit;
}

.pop__media {
  position: relative;
  aspect-ratio: 16 / 10;
  --box-ar: 1.6;
  background: #000;
  overflow: hidden;
}

.pop__media video,
.pop__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.pop__media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100%, calc(100% * 1.7778 / var(--box-ar)));
  height: max(100%, calc(100% * var(--box-ar) / 1.7778));
  border: 0;
  transform: translate(-50%, -50%);
}

.pop__media--ph {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #1b1b1b, #0e0e0e 70%);
}

.pop__media--ph span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4a4a4a;
}

.pop__media .tile__mark--brand {
  padding: 10%;
}

.pop__media .tile__mark--brand img {
  filter: grayscale(1) brightness(1.6) invert(1);
  opacity: 1;
}

.pop__media .tile__mark span {
  font-size: clamp(56px, 7vw, 104px);
}

.pop__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--text);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pop__close:hover {
  background: rgba(10, 10, 10, 0.9);
  border-color: var(--border-strong);
}

.pop__close svg {
  width: 16px;
  height: 16px;
}

.pop__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 38px);
  overflow-y: auto;
}

.pop__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.pop__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pop__text {
  max-width: 62ch;
}

.pop__text p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.pop__text p:last-child {
  margin-bottom: 0;
}

.pop__text strong {
  color: var(--text);
  font-weight: 500;
}

/* impact figures inside the modal */
.pop__figures {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.6vw, 40px);
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.pop__figures:empty {
  display: none;
  padding: 0;
  border: 0;
}

.pop__fig strong {
  display: block;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.pop__fig span {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* click-to-play video gallery (no iframes until asked for) */
.pop__videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  width: 100%;
}

.pop__videos:empty {
  display: none;
}

.popvid {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.popvid img,
.popvid iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.popvid img {
  transition: transform 0.6s var(--ease-out), filter 0.4s ease;
  filter: brightness(0.72);
}

.popvid:hover img {
  transform: scale(1.04);
  filter: brightness(0.5);
}

.popvid__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  pointer-events: none;
}

.popvid__play svg {
  width: 12px;
  height: 12px;
  fill: #fff;
  margin-left: 2px;
}

.popvid__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 8px 10px;
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  pointer-events: none;
}

.popvid.is-playing .popvid__play,
.popvid.is-playing .popvid__label {
  display: none;
}

.pop__facts {
  width: 100%;
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0;
  font-size: 12px;
}

.pop__facts dt {
  padding: 9px 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pop__facts dd {
  margin: 0;
  padding: 9px 0 9px 18px;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.pop__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 20px;
  background: var(--accent);
  color: #071312;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.4s var(--ease-out), filter 0.3s ease;
}

.pop__cta svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.pop__cta:hover {
  gap: 16px;
  filter: brightness(1.08);
}

/* Story modal: collaborations with longer copy scroll as one column */
.pop--story .pop__inner {
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  overflow-y: auto;
  max-height: min(90vh, 880px);
  overscroll-behavior: contain;
}

.pop--story .pop__media {
  aspect-ratio: 16 / 8;
  --box-ar: 2;
}

.pop--story .pop__body {
  overflow: visible;
  gap: 16px;
}

.pop--story .pop__title {
  font-size: clamp(24px, 2.6vw, 38px);
}

.pop--story .pop__cta {
  margin-top: 4px;
}

@media (max-width: 809px) {
  .pop {
    width: 100vw;
    max-width: 100vw;
    max-height: 92dvh;
    margin: auto 0 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .pop__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }
  .pop--story .pop__inner {
    grid-template-rows: auto;
    max-height: 92dvh;
  }
  .pop--story .pop__media {
    aspect-ratio: 16 / 9;
    --box-ar: 1.7778;
  }
  .pop__videos {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  .pop__media {
    aspect-ratio: 16 / 9;
    --box-ar: 1.7778;
  }
  .pop__body {
    gap: 12px;
  }
  .pop__cta {
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
  }
  .pop[open] {
    animation: sheetIn 0.26s var(--ease-out) both;
  }
  @keyframes sheetIn {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .pop[open],
  .pop[open]::backdrop {
    animation: none;
  }
  .tile {
    transition: none;
  }
  .tile:hover {
    transform: none;
  }
}

/* ==========================================================
   About page
   ========================================================== */
.about {
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(var(--page-padding) + 76px) var(--page-padding) 0;
}

/* --- hero --- */
.about__head {
  position: relative;
  padding: clamp(24px, 3.4vw, 48px) 0 clamp(28px, 3.2vw, 48px);
}

.about__head::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -8%;
  width: 46%;
  height: 220px;
  background: radial-gradient(60% 60% at 30% 40%, var(--accent-dim), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.about__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.about__label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.about__title {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(28px, 3.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.about__lead {
  margin-top: clamp(20px, 2.4vw, 32px);
  max-width: 60ch;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* --- shared section header (matches the home page) --- */
.sec {
  padding: clamp(44px, 5.5vw, 96px) 0 0;
}

.sec--first {
  padding-top: 0;
}

.sec__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: clamp(20px, 2.4vw, 34px);
  border-bottom: 1px solid var(--border-strong);
}

.sec__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sec__idx {
  font-size: 12px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* --- what we do --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--border);
  border: 1px solid var(--border);
}

.service {
  padding: clamp(24px, 2.8vw, 40px);
  background: var(--page-bg);
  transition: background 0.45s var(--ease-out);
}

.service:hover {
  background: var(--surface);
}

.service__num {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.service__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: -0.02em;
}

.service__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- how we work --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step {
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.step__num {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.step__title {
  margin: 0 0 10px;
  font-size: clamp(16px, 1.5vw, 21px);
  letter-spacing: -0.02em;
}

.step__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* --- team --- */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.team__card {
  min-width: 0;
}

.team__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 14px;
}

.team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.team__card:hover .team__photo img {
  transform: scale(1.03);
}

.team__name {
  margin: 0;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: -0.02em;
}

.team__role {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* --- recognition --- */
.award {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.4vw, 64px);
  align-items: center;
}

.award__media {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.award__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.award__text {
  max-width: 56ch;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.award__figures {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(22px, 2.4vw, 34px);
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.award__fig strong {
  display: block;
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.award__fig span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

/* --- closing contact block --- */
.hail {
  margin: clamp(56px, 7vw, 112px) 0 0;
  padding: clamp(36px, 5vw, 80px) 0 clamp(48px, 6vw, 96px);
  border-top: 1px solid var(--border-strong);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.hail__title {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(26px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hail__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 22px;
  background: var(--accent);
  color: #071312;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.4s var(--ease-out), filter 0.3s ease;
}

.hail__cta svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
}

.hail__cta:hover {
  gap: 18px;
  filter: brightness(1.08);
}

/* subtler reveal, same tier as the case pages */
.about [data-reveal] {
  transform: translateY(14px);
}

.about [data-reveal].in {
  transform: translateY(0);
  transition: transform 0.42s var(--ease-out), opacity 0.38s ease;
}

@media (max-width: 809px) {
  .about {
    padding-top: calc(var(--page-padding) + 64px);
  }
  .about__head::before {
    display: none;
  }
  .award {
    grid-template-columns: 1fr;
  }
  .team {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hail {
    align-items: flex-start;
  }
  .hail__cta {
    width: 100%;
    justify-content: space-between;
  }
}

/* ---------- Autoplay gate ---------- */
/* Cover from the first frame, before the gate element exists in the body. */
html.gating::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--page-bg);
}
html.gating,
html.gating body {
  overflow: hidden;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--page-bg);
}
.gate.closing {
  pointer-events: none; /* it lingers ~600ms after the fade; do not eat clicks */
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.9s ease;
}
.gate-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.gate-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 32px;
  padding: var(--page-padding);
}
.gate-inner > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.gate.visible .gate-inner > * {
  opacity: 1;
  transform: none;
}
.gate.visible .gate-logo {
  transition-delay: 0.15s;
}
.gate.visible .gate-btn {
  transition-delay: 0.65s;
}
.gate-logo {
  width: 140px;
  height: auto;
}
.gate-btn {
  font: inherit;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
}
.gate-play {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-dim);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.gate-play svg {
  width: 30px;
  height: 30px;
  margin-left: 3px; /* optical centring: a triangle sits left of its box centre */
  fill: var(--page-bg);
}
.gate-btn:hover .gate-play,
.gate-btn:focus-visible .gate-play {
  transform: scale(1.06);
  box-shadow: 0 0 0 14px var(--accent-dim);
}
.gate-btn:focus-visible {
  outline: none;
}
.gate-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.gate-btn:hover .gate-label,
.gate-btn:focus-visible .gate-label {
  color: var(--text);
}
