/* ==========================================================================
   TEAM LCE — Public website
   1. Tokens          6. Hero            11. Numbers
   2. Base            7. Intro           12. Clients
   3. Layout          8. Services        13. About
   4. Components      9. Work            14. CTA + Footer
   5. Navigation     10. Signal / Live   15. Modals, form, cursor, motion
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------- */
:root {
  /* Brand */
  --orange: #FF5A1F;
  --orange-ink: #C2410C;      /* orange for small text on white (AA) */
  --black: #15171A;
  --white: #FFFFFF;
  --grey: #EEEFF1;            /* light grey */
  --grey-dark: #5E636B;       /* dark grey */
  --grey-mid: #A3A8AF;        /* secondary text on dark */
  --line: #DDE0E4;
  --line-dark: rgba(255, 255, 255, .14);
  --error: #B42318;

  /* Type */
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --fs-xs: .75rem;
  --fs-sm: .875rem;
  --fs-base: 1.0625rem;
  --fs-md: clamp(1.0625rem, 1.25vw, 1.25rem);
  --fs-lg: clamp(1.3125rem, 1.9vw, 1.75rem);
  --fs-xl: clamp(2.25rem, 4.6vw, 4.5rem);
  --fs-2xl: clamp(2.125rem, 5.2vw, 5.5rem);
  --fs-hero: clamp(3rem, 9.2vw, 9.75rem);

  /* Space & shape */
  --container: 1480px;
  --gutter: clamp(20px, 4.2vw, 64px);
  --section-pad: clamp(96px, 11vw, 176px);
  --nav-h: 76px;
  --radius: 2px;

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.7, 0, .3, 1);
}

/* 2. BASE ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) - 1px);
}
html.is-locked { overflow: hidden; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  font-variation-settings: "wdth" 100;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--orange); color: var(--black); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

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

.skip-link {
  position: fixed; left: 16px; top: -64px; z-index: 400;
  padding: 10px 16px;
  background: var(--black); color: var(--white);
  font-size: var(--fs-sm); font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* 3. LAYOUT ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }
.section--dark { background: var(--black); color: var(--white); }
.section--grey { background: var(--grey); }

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 96px);
}
.section-head--split { align-items: end; }
.section-head--row {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.section-title {
  font-size: var(--fs-xl);
  font-weight: 600;
  font-variation-settings: "wdth" 112;
  letter-spacing: -.012em;
  line-height: .96;
}

.section-lede {
  max-width: 42ch;
  font-size: var(--fs-md);
  line-height: 1.5;
  color: var(--grey-dark);
}
.section--dark .section-lede { color: var(--grey-mid); }

@media (min-width: 900px) {
  .section-head--split { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 48px; }
  .section-head--split .section-lede { justify-self: end; }
}

/* 4. COMPONENTS ------------------------------------------------------------ */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--black);
  --btn-border: transparent;
  --btn-sweep: var(--black);
  --btn-sweep-fg: var(--white);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  min-height: 52px;
  padding: 0 1.65em;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1;
  white-space: nowrap;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: var(--btn-sweep);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s var(--ease-out);
}
.btn:hover::before,
.btn:focus-visible::before { transform: scaleY(1); }
.btn:hover,
.btn:focus-visible { color: var(--btn-sweep-fg); border-color: var(--btn-sweep); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .6; pointer-events: none; }

.btn--orange { --btn-bg: var(--orange); --btn-fg: var(--black); --btn-border: var(--orange); }
.btn--ghost { --btn-fg: var(--white); --btn-border: rgba(255, 255, 255, .45); --btn-sweep: var(--white); --btn-sweep-fg: var(--black); }
.btn--outline { --btn-border: var(--black); }
.btn--lg { min-height: 60px; padding: 0 2.1em; font-size: .875rem; }

.hero .btn--orange { --btn-sweep: var(--white); --btn-sweep-fg: var(--black); }
.btn__arrow { display: inline-block; font-size: 1.15em; letter-spacing: 0; transition: transform .45s var(--ease-out); }
.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow { transform: translateX(4px); }

.link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7em;
  padding: .6em 0;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .09em;
  white-space: nowrap;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transition: background-color .3s;
}
.link-arrow .arrow { display: inline-block; transition: transform .45s var(--ease-out), color .3s; }
.link-arrow:hover .arrow { transform: translateX(6px); color: var(--orange); }
.link-arrow:hover::after { background: var(--orange); }
.link-arrow[aria-expanded="true"] .arrow { transform: rotate(90deg); color: var(--orange); }

.tally {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px 5px 8px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--white);
  background: rgba(255, 90, 31, .16);
  border: 1px solid rgba(255, 90, 31, .55);
}
.tally i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.6s steps(1) infinite;
}
@keyframes blink { 50% { opacity: .25; } }

.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  padding: 4px 8px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--grey-dark);
  border: 1px solid var(--line);
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background-color .3s, color .3s, border-color .3s;
}
.icon-btn:hover { background: var(--black); border-color: var(--black); color: var(--white); }

/* 5. NAVIGATION ------------------------------------------------------------ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  color: var(--white);
  transition: background-color .35s, color .35s, box-shadow .35s, transform .5s var(--ease-out);
}
.nav.is-solid {
  color: var(--black);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
/* Two versions of the logo: dark wordmark over white, white over the hero */
.brand__logo {
  width: auto;
  height: clamp(26px, 2.6vw, 34px);
  transition: opacity .4s var(--ease-out);
}
.brand__logo--light { position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
.nav .brand__logo--dark { opacity: 0; }
.nav.is-solid .brand__logo--dark,
.nav.is-open .brand__logo--dark { opacity: 1; }
.nav.is-solid .brand__logo--light,
.nav.is-open .brand__logo--light { opacity: 0; }
body[data-page="notfound"] .brand__logo--dark { opacity: 0; }
body[data-page="notfound"] .brand__logo--light { opacity: 1; }

.nav__list { display: flex; gap: clamp(22px, 2.8vw, 48px); }
.nav__link {
  position: relative;
  display: block;
  padding: 10px 0;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__menu-foot { display: none; }

.nav__progress {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: opacity .3s;
}
.nav.is-solid .nav__progress { opacity: 1; }

.nav__toggle { display: none; }

@media (max-width: 899px) {
  .nav__toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
  }
  .nav__toggle span {
    display: block;
    width: 26px; height: 2px;
    background: currentColor;
    transition: transform .45s var(--ease-out), width .3s var(--ease-out);
  }
  .nav__toggle span:last-child { width: 17px; }

  .nav__menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--nav-h) + 40px) var(--gutter) max(40px, env(safe-area-inset-bottom));
    color: var(--white);
    background: var(--black);
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    transition: clip-path .6s var(--ease-io), visibility 0s .6s;
  }
  .nav__list { flex-direction: column; gap: 2px; }
  .nav__link {
    padding: 4px 0;
    font-size: clamp(2rem, 9vw, 3.75rem);
    font-variation-settings: "wdth" 112;
    letter-spacing: -.01em;
    line-height: 1.12;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .4s, transform .6s var(--ease-out);
  }
  .nav__link::after { bottom: 8px; height: 3px; right: auto; width: 40px; }
  .nav__menu-foot {
    display: grid;
    gap: 6px;
    font-size: var(--fs-sm);
    color: var(--grey-mid);
  }
  .nav__menu-foot a { color: var(--white); font-size: var(--fs-md); }

  .nav.is-open { color: var(--white); background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav.is-open .nav__progress { opacity: 0; }
  .nav.is-open .nav__menu { clip-path: inset(0); visibility: visible; transition: clip-path .6s var(--ease-io), visibility 0s; }
  .nav.is-open .nav__link { opacity: 1; transform: none; }
  .nav.is-open li:nth-child(1) .nav__link { transition-delay: .18s; }
  .nav.is-open li:nth-child(2) .nav__link { transition-delay: .23s; }
  .nav.is-open li:nth-child(3) .nav__link { transition-delay: .28s; }
  .nav.is-open li:nth-child(4) .nav__link { transition-delay: .33s; }
  .nav.is-open li:nth-child(5) .nav__link { transition-delay: .38s; }
  .nav.is-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__toggle span:last-child { width: 26px; transform: translateY(-4px) rotate(-45deg); }
}

.nav__cta-item { display: flex; align-items: center; margin-left: clamp(8px, 1.4vw, 20px); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: .6875rem; }
.nav__cta { --btn-sweep: var(--white); --btn-sweep-fg: var(--black); }
@media (max-width: 899px) {
  .nav__cta-item { margin: 24px 0 0; }
  .nav__cta { width: 100%; min-height: 52px; font-size: .8125rem; }
}

/* 6. HERO ------------------------------------------------------------------ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #0B0C0E;
}

.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: #0B0C0E; }
.hero__img,
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__img {
  transform-origin: 50% 60%;
  animation: hero-drift 30s ease-in-out infinite alternate;
}
@keyframes hero-drift {
  from { transform: scale(1.01); }
  to { transform: scale(1.04) translate3d(-.5%, -.4%, 0); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 12, 14, .72) 0%, rgba(11, 12, 14, .2) 62%),
    linear-gradient(180deg, rgba(11, 12, 14, .55) 0%, rgba(11, 12, 14, .08) 30%, rgba(11, 12, 14, .4) 62%, rgba(11, 12, 14, .94) 100%);
}

.hero__frame {
  position: absolute;
  inset: calc(var(--nav-h) + 12px) var(--gutter) 24px;
  pointer-events: none;
}
.corner { position: absolute; width: 22px; height: 22px; border: 0 solid rgba(255, 255, 255, .32); }
.corner--tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.corner--tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.corner--bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.corner--br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.hero__content {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding-top: calc(var(--nav-h) + 96px);
  padding-bottom: clamp(88px, 13vh, 140px);
}
@media (min-width: 1100px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
    grid-template-areas: "live ." "title aside";
    align-items: end;
  }
  .hero__live { grid-area: live; margin-bottom: 0; }
  .hero__title { grid-area: title; }
  .hero__aside { grid-area: aside; }
}

.hero__title {
  container-type: inline-size;
  font-size: var(--fs-hero);
  font-weight: 600;
  font-variation-settings: "wdth" 108;
  letter-spacing: -.035em;
  line-height: .9;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; }
/* Never let a long word run past its column on wide screens */
@supports (container-type: inline-size) {
  .hero__title .line > span { font-size: min(1em, 14.2cqw); }
}
.hero__title .line > span {
  display: block;
  transform: translateY(108%);
  animation: rise 1.1s var(--ease-out) forwards;
  animation-delay: calc(1s + var(--d, 0s));
}
@keyframes rise { to { transform: none; } }

.hero__aside {
  display: grid;
  gap: 28px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.35s forwards;
}
.hero__statement {
  max-width: 24ch;
  font-size: clamp(1.0625rem, 1.5vw, 1.5rem);
  font-weight: 600;
  font-variation-settings: "wdth" 104;
  letter-spacing: -.01em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--white);
}
.hero__lede { max-width: 38ch; font-size: var(--fs-md); line-height: 1.5; color: rgba(255, 255, 255, .72); }
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(18px, 2vw, 28px);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .78);
}
.hero__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: tally 2.4s ease-in-out infinite; }

/* Credibility strip -------------------------------------------------------- */
.proof { border-bottom: 1px solid var(--line); }
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}
.proof__item {
  display: grid;
  gap: 4px;
  padding: clamp(24px, 3vw, 40px) clamp(12px, 2vw, 32px) clamp(24px, 3vw, 40px) 0;
}
.proof__item + .proof__item { padding-left: clamp(16px, 2.4vw, 40px); border-left: 1px solid var(--line); }
.proof__value {
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 700;
  font-variation-settings: "wdth" 110;
  letter-spacing: -.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.proof__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-dark);
}
.proof__places {
  font-size: clamp(.8125rem, 1.1vw, 1rem);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
@media (max-width: 799px) {
  .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof__item { padding-right: 12px; }
  .proof__item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .proof__item:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
  .proof__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .proof__item--places { grid-column: 1 / -1; padding-left: 0; border-left: 0; }
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@keyframes fade-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 40px;
  display: grid;
  place-items: center;
  width: 44px; height: 56px;
  margin-left: -22px;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 1.8s forwards;
}
.scroll-cue__track {
  position: relative;
  width: 1px; height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}
.scroll-cue__dot {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 14px;
  background: var(--orange);
  animation: cue 2s var(--ease-io) infinite;
}
@keyframes cue { from { transform: translateY(-14px); } to { transform: translateY(44px); } }

@media (max-width: 1099px) {
  .scroll-cue { display: none; }
}
@media (max-width: 640px) {
  .hero__frame { display: none; }
  .hero__content { padding-bottom: 64px; }
  .hero__title { font-variation-settings: "wdth" 100; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* 7. INTRO ----------------------------------------------------------------- */
.intro__grid { display: grid; gap: clamp(24px, 3vw, 48px); }
@media (min-width: 900px) {
  .intro__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: clamp(48px, 6vw, 112px); align-items: start; }
}
.intro__title {
  max-width: 16ch;
  font-size: var(--fs-2xl);
  font-weight: 600;
  font-variation-settings: "wdth" 110;
  letter-spacing: -.025em;
  line-height: .98;
  text-wrap: balance;
}
.intro__text { max-width: 50ch; font-size: var(--fs-md); line-height: 1.6; color: var(--grey-dark); }

.groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 88px);
  border-top: 1px solid var(--black);
}
.group { position: relative; padding: clamp(22px, 2.4vw, 32px) clamp(20px, 2.4vw, 40px) clamp(28px, 3vw, 40px) 0; }
.group + .group { padding-left: clamp(20px, 2.4vw, 40px); border-left: 1px solid var(--line); }
.group::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.group:hover::before { transform: scaleX(1); }
.group__title {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--orange-ink);
}
.group__items { display: grid; gap: 6px; margin-top: 16px; }
.group__items li {
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 500;
  font-variation-settings: "wdth" 104;
  letter-spacing: -.005em;
}
@media (max-width: 799px) {
  .groups { grid-template-columns: minmax(0, 1fr); }
  .group, .group + .group { padding-left: 0; padding-right: 0; border-left: 0; }
  .group + .group { border-top: 1px solid var(--line); }
}

/* 8. SERVICES (numbered editorial list) ------------------------------------ */
.services { padding-top: 0; }
.svc { display: grid; gap: clamp(32px, 4vw, 64px); }

.svc-list { border-top: 1px solid var(--black); }
.svc-item { position: relative; border-bottom: 1px solid var(--line); }
.svc-item::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.svc-item.is-active::before { transform: scaleX(1); }

.svc-item__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
  padding: clamp(18px, 2.1vw, 30px) 0;
  text-align: left;
}
.svc-item__num {
  align-self: start;
  padding-top: .45em;
  font-size: .8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--grey-mid);
  transition: color .4s;
}
.svc-item__name {
  font-size: clamp(1.5rem, 3.2vw, 3.25rem);
  font-weight: 600;
  font-variation-settings: "wdth" 110;
  letter-spacing: -.025em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #B4B9BF;
  transition: color .45s var(--ease-out), transform .7s var(--ease-out);
}
.svc-item__go {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  font-size: 1.125rem;
  color: var(--grey-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color .4s, border-color .4s, color .4s, transform .6s var(--ease-out);
}
.svc-item.is-active .svc-item__num { color: var(--orange-ink); }
.svc-item.is-active .svc-item__name { color: var(--black); transform: translateX(10px); }
.svc-item.is-active .svc-item__go { color: var(--black); background: var(--orange); border-color: var(--orange); transform: rotate(-45deg); }

.svc-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .7s var(--ease-out);
}
.svc-item.is-active .svc-item__body { grid-template-rows: 1fr; }
.svc-item__inner { overflow: hidden; }
.svc-item__desc {
  max-width: 54ch;
  padding: 0 0 clamp(24px, 2.6vw, 34px);
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--grey-dark);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .6s var(--ease-out);
}
.svc-item.is-active .svc-item__desc { opacity: 1; transform: none; transition-delay: .12s; }
.svc-item__thumb { display: none; }

.svc-preview { position: relative; display: none; overflow: hidden; background: var(--black); }
.svc-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .8s var(--ease-out), transform 1.6s var(--ease-out);
}
.svc-preview img.is-current { opacity: 1; transform: none; }

@media (min-width: 1000px) and (hover: hover) {
  .svc { grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); align-items: start; }
  .svc-preview { display: block; position: sticky; top: calc(var(--nav-h) + 32px); aspect-ratio: 4 / 5; }
}
@media not all and (min-width: 1000px) and (hover: hover) {
  .svc-item__thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; margin-bottom: clamp(20px, 3vw, 30px); background: var(--black); }
  .svc-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .svc-item__desc { padding-bottom: 16px; }
}
@media (max-width: 560px) {
  .svc-item__row { grid-template-columns: minmax(0, 1fr) 42px; }
  .svc-item__go { width: 42px; height: 42px; }
  .svc-item__name { font-size: clamp(1.375rem, 7vw, 2rem); }
  .svc-item__desc, .svc-item__thumb { padding-left: 0; margin-left: 0; }
  .svc-item__desc { padding-left: 0; }
}

/* 9. WORK (uniform 16:9 tiles) --------------------------------------------- */
.work { padding-top: 0; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(14px, 1.6vw, 24px);
  row-gap: clamp(28px, 3vw, 44px);
  align-items: start;
}

.work-card__link { display: block; }
.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;   /* matches 1920 × 1080 stills and video thumbnails */
  background: var(--black);
}
.work-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.work-card__media::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.work-card__link:hover .work-card__media img,
.work-card__link:focus-visible .work-card__media img { transform: scale(1.05); }
.work-card__link:hover .work-card__media::after,
.work-card__link:focus-visible .work-card__media::after { transform: scaleX(1); }

.work-card__badge {
  position: absolute; left: 12px; top: 12px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 9px;
  font-size: .6875rem; font-weight: 600;
  color: var(--black);
  background: var(--white);
}

.work-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 16px;
  padding-top: 14px;
}
.work-card__title {
  font-size: clamp(.9375rem, 1.15vw, 1.125rem);
  font-weight: 600;
  font-variation-settings: "wdth" 104;
  letter-spacing: -.008em;
  line-height: 1.22;
  transition: color .3s;
}
.work-card__year {
  padding-top: .15em;
  font-size: .8125rem;
  font-variant-numeric: tabular-nums;
  color: var(--grey-mid);
}
.work-card__client {
  grid-column: 1 / -1;
  font-size: .8125rem;
  line-height: 1.45;
  color: var(--grey-dark);
}
.work-card__meta .tags { display: none; }

.work__progress { display: none; }

.work__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(40px, 4.5vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.work__count { font-size: var(--fs-sm); color: var(--grey-dark); font-variant-numeric: tabular-nums; }

.work-card.is-entering { animation: card-in .7s var(--ease-out) both; animation-delay: var(--delay, 0s); }
@keyframes card-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.work__empty { font-size: var(--fs-md); color: var(--grey-dark); }

@media (max-width: 1099px) {
  .work__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 799px) {
  .work__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 479px) {
  .work__grid { grid-template-columns: minmax(0, 1fr); row-gap: 24px; }
}

/* 10a. SIGNAL TO SCREEN ---------------------------------------------------- */
.signal { position: relative; overflow: hidden; }
.signal::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 55%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 55%, #000 20%, transparent 75%);
  pointer-events: none;
}
.signal .container { position: relative; }

.pipe { --dot: 15px; --gap: clamp(20px, 2.6vw, 44px); position: relative; }
.pipe__list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--gap); }

.pipe__track {
  position: absolute;
  top: calc(var(--dot) / 2);
  left: calc((100% - var(--gap) * 4) / 10);
  right: calc((100% - var(--gap) * 4) / 10);
  height: 1px;
  background: rgba(255, 255, 255, .16);
}
.pipe__fill {
  position: absolute; inset: 0;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease-io);
}
.pipe.is-live .pipe__fill { transform: scaleX(1); }
.pipe__pulse {
  position: absolute; top: -2px; left: 0;
  width: 120px; height: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 75%, rgba(255, 255, 255, 0));
  opacity: 0;
}
.pipe.is-live .pipe__pulse { animation: pulse-x 3.4s var(--ease-io) 2s infinite; }
@keyframes pulse-x {
  0% { left: -120px; opacity: 0; }
  12%, 85% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.pipe__node { position: relative; padding-top: calc(var(--dot) + 26px); }
.pipe__dot {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  width: var(--dot); height: var(--dot);
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background-color .5s, border-color .5s, box-shadow .7s;
  transition-delay: calc(var(--i) * .34s + .2s);
}
.pipe.is-live .pipe__dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, .12);
}
.pipe__label {
  font-size: clamp(1rem, 1.35vw, 1.375rem);
  font-weight: 600;
  font-variation-settings: "wdth" 108;
  letter-spacing: .01em;
}
.pipe__detail { max-width: 26ch; margin-top: 10px; font-size: var(--fs-sm); line-height: 1.55; color: var(--grey-mid); }

@media (max-width: 899px) {
  .pipe__track { display: none; }
  .pipe__list { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .pipe__node {
    display: grid;
    grid-template-columns: var(--dot) minmax(0, 1fr);
    column-gap: 20px;
    padding: 0 0 30px 0;
  }
  .pipe__dot { position: relative; grid-row: 1 / span 3; margin-top: 6px; }
  .pipe__node:not(:last-child) .pipe__dot::after {
    content: "";
    position: absolute;
    left: 50%; top: 100%;
    width: 1px; height: calc(100% + 30px);
    margin-left: -.5px;
    background: rgba(255, 255, 255, .18);
  }
  .pipe__label { margin-top: 4px; }
  .pipe__detail { max-width: none; }
}

/* 10b. BUILT FOR LIVE (simple list) --------------------------------------- */
.live__lede {
  max-width: 26ch;
  margin-bottom: 14px;
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  font-weight: 600;
  font-variation-settings: "wdth" 104;
  letter-spacing: -.01em;
  line-height: 1.25;
  text-transform: uppercase;
}
.caps-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(40px, 7vw, 120px);
}
.cap-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 24px;
  padding: clamp(20px, 2.2vw, 30px) 0;
  border-top: 1px solid var(--line);
}
.cap-row:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
.cap-row::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 100%; height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.cap-row:hover::before { transform: scaleX(1); }
.cap-row__name {
  font-size: clamp(1.25rem, 1.8vw, 1.625rem);
  font-weight: 500;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.cap-row__note { font-size: var(--fs-sm); color: var(--grey-dark); }

@media (max-width: 699px) {
  .caps-list { grid-template-columns: minmax(0, 1fr); }
  .cap-row:nth-last-child(2) { border-bottom: 0; }
}

/* 10b-ii. DESTINATIONS ----------------------------------------------------- */
.dest { padding-top: 0; }
.dest__grid { display: grid; gap: clamp(32px, 4vw, 64px); }
@media (min-width: 900px) {
  .dest__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: clamp(48px, 6vw, 112px); align-items: start; }
}
.dest__figure { display: grid; gap: 8px; align-content: start; }
.dest__number {
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 700;
  font-variation-settings: "wdth" 112;
  letter-spacing: -.05em;
  line-height: .82;
  color: var(--orange);
}
.dest__label { font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-dark); }

.dest__list { border-top: 1px solid var(--black); }
.dest__item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px 32px;
  padding: clamp(16px, 1.9vw, 24px) 0;
  border-bottom: 1px solid var(--line);
}
.dest__item::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 100%; height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.dest__item:hover::before { transform: scaleX(1); }
.dest__name {
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  font-weight: 600;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.dest__items { font-size: var(--fs-sm); color: var(--grey-dark); }

/* 10c. INDUSTRIES ---------------------------------------------------------- */
.industries { padding-top: 0; }
.ind {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 1200px) {
  .ind { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.ind__item {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(380px, 46vw, 560px);
  padding: clamp(18px, 1.8vw, 28px);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.ind__item img {
  position: absolute; inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(.55);
  transform: scale(1.04);
  transition: filter .8s var(--ease-out), transform 1.4s var(--ease-out);
}
.ind__item::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 12, 14, 0) 40%, rgba(11, 12, 14, .85) 100%);
}
.ind__item::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .7s var(--ease-out);
}
.ind__title {
  font-size: clamp(1.125rem, 1.6vw, 1.625rem);
  font-weight: 600;
  font-variation-settings: "wdth" 110;
  letter-spacing: -.005em;
  text-transform: uppercase;
}
.ind__desc {
  display: grid;
  grid-template-rows: 0fr;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, .8);
  transition: grid-template-rows .6s var(--ease-out), margin-top .6s var(--ease-out);
}
.ind__desc > span { overflow: hidden; }
.ind__item:hover img,
.ind__item:focus-within img { filter: grayscale(0) brightness(.75); transform: scale(1); }
.ind__item:hover::after,
.ind__item:focus-within::after { transform: scaleX(1); }
.ind__item:hover .ind__desc,
.ind__item:focus-within .ind__desc { grid-template-rows: 1fr; margin-top: 10px; }

@media (hover: none), (max-width: 999px) {
  .ind__desc { grid-template-rows: 1fr; margin-top: 8px; }
  .ind__item img { filter: grayscale(.3) brightness(.6); }
}
@media (max-width: 999px) {
  .ind {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 42vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    scroll-padding-inline: var(--gutter);
    scrollbar-width: none;
  }
  .ind::-webkit-scrollbar { display: none; }
  .ind__item { scroll-snap-align: start; min-height: 400px; }
}
@media (max-width: 560px) {
  .ind { grid-auto-columns: 78vw; }
}

/* 11b. WHY TEAM LCE -------------------------------------------------------- */
.why { padding-top: 0; }
.why__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--black);
}
.why__item {
  position: relative;
  padding: clamp(22px, 2.4vw, 32px) clamp(18px, 2.2vw, 36px) clamp(30px, 3.2vw, 44px) 0;
}
.why__item + .why__item { padding-left: clamp(18px, 2.2vw, 36px); border-left: 1px solid var(--line); }
.why__item::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.why__item:hover::before { transform: scaleX(1); }
.why__title {
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  font-weight: 600;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.why__desc { max-width: 30ch; margin-top: 10px; font-size: var(--fs-sm); line-height: 1.55; color: var(--grey-dark); }
@media (max-width: 899px) {
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__item:nth-child(odd) { padding-left: 0; border-left: 0; }
  .why__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
}
@media (max-width: 559px) {
  .why__list { grid-template-columns: minmax(0, 1fr); }
  .why__item, .why__item + .why__item { padding-left: 0; padding-right: 0; border-left: 0; }
  .why__item + .why__item { border-top: 1px solid var(--line); }
}

/* 12. CLIENT TICKER -------------------------------------------------------- */
.ticker {
  overflow: hidden;
  padding-block: clamp(20px, 2.2vw, 30px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.ticker__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker var(--speed, 40s) linear infinite;
}
.ticker:hover .ticker__track,
.ticker:focus-within .ticker__track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Each logo keeps its own shape: fixed height, width follows the artwork */
.ticker__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  height: clamp(44px, 4.6vw, 64px);
  padding-inline: clamp(20px, 2.6vw, 44px);
}
.ticker__item img {
  width: auto;
  height: 100%;
  max-width: clamp(130px, 14vw, 200px);
  object-fit: contain;
  mix-blend-mode: multiply;   /* hides the white box around most logo files */
  transition: transform .4s var(--ease-out);
}
.ticker__item:hover img { transform: scale(1.05); }
.ticker__name {
  font-size: clamp(.75rem, .95vw, .9375rem);
  font-weight: 700;
  font-variation-settings: "wdth" 118;
  letter-spacing: .08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: #8B9098;
  transition: color .4s;
  white-space: nowrap;
}
.ticker__item:hover .ticker__name { color: var(--black); }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .ticker__viewport { overflow-x: auto; scrollbar-width: none; }
  .ticker__viewport::-webkit-scrollbar { display: none; }
}

/* 13. ABOUT ---------------------------------------------------------------- */
.about__grid { display: grid; gap: 40px; }
.about__head { display: grid; gap: 32px; justify-items: start; align-content: start; }
.about__lead {
  max-width: 34ch;
  font-size: var(--fs-lg);
  line-height: 1.38;
  letter-spacing: -.005em;
}

.about__text { display: grid; gap: 1.1em; max-width: 36ch; font-size: var(--fs-lg); line-height: 1.38; letter-spacing: -.005em; }
.about__text p + p { font-size: var(--fs-md); line-height: 1.6; color: var(--grey-dark); max-width: 52ch; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px clamp(24px, 3vw, 48px);
  margin-top: clamp(40px, 5vw, 72px);
}
.pillar { padding-top: 18px; border-top: 1px solid var(--black); }
.pillar dt { font-weight: 600; font-variation-settings: "wdth" 106; font-size: var(--fs-md); }
.pillar dd { margin-top: 8px; font-size: var(--fs-sm); color: var(--grey-dark); max-width: 36ch; }

@media (min-width: 1000px) {
  .about__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(48px, 7vw, 140px); }
  .about__head { position: sticky; top: calc(var(--nav-h) + 40px); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; gap: 28px; }
}

.about__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-top: 20px;
}
.about__cities li {
  padding: 8px 16px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* 14. CTA + FOOTER --------------------------------------------------------- */
.cta { --section-pad: clamp(112px, 13vw, 208px); border-top: 1px solid var(--line); }
.cta__title {
  max-width: 17ch;
  font-size: clamp(2.5rem, 7.6vw, 8.5rem);
  font-weight: 600;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.035em;
  line-height: .9;
}
.cta__line { display: block; }
@media (max-width: 699px) {
  .cta__line { display: inline; }
}
.cta__row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.cta__row::before {
  content: "";
  position: absolute; left: 0; top: -1px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-io) .4s;
}
.cta__row.is-in::before { transform: scaleX(1); }
.cta__text { max-width: 38ch; font-size: var(--fs-md); color: var(--grey-dark); }
.cta__contact { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 16px; font-weight: 600; }
.cta__contact a { border-bottom: 1px solid var(--line); transition: border-color .3s; }
.cta__contact a:hover { border-color: var(--orange); }
.cta__title { text-wrap: balance; text-transform: uppercase; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) {
  .cta__actions .btn { flex: 1 1 100%; }
}

.footer {
  padding: clamp(72px, 9vw, 128px) 0 32px;
  color: var(--white);
  background: var(--black);
}
.footer__grid { display: grid; gap: 48px; }
.footer__word { display: inline-block; }
.footer__word img { width: clamp(180px, 20vw, 260px); height: auto; }
.footer__tagline { margin-top: 16px; max-width: 30ch; color: var(--grey-mid); font-size: var(--fs-sm); }
.footer__heading { margin-bottom: 16px; font-size: var(--fs-sm); font-weight: 500; color: var(--grey-mid); }
.footer__links { display: grid; gap: 8px; }
.footer__links a,
.footer__links span { position: relative; display: inline-block; }
.footer__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.footer__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: clamp(64px, 8vw, 120px);
  padding-top: 24px;
  font-size: var(--fs-sm);
  color: var(--grey-mid);
  border-top: 1px solid var(--line-dark);
}
.footer__top:hover { color: var(--white); }

@media (min-width: 700px) {
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
  .footer__grid { grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: auto; }
}

/* 15a. MODALS -------------------------------------------------------------- */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  justify-content: flex-end;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 12, 14, .62);
  opacity: 0;
  transition: opacity .5s;
}
.modal.is-open .modal__backdrop { opacity: 1; }

.modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1180px, 100%);
  height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .65s var(--ease-io);
  outline: none;
}
.modal--enquiry .modal__panel { width: min(680px, 100%); }
.modal.is-open .modal__panel { transform: none; }

.modal__bar {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
  padding: 0 clamp(20px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
}
.modal__count { font-size: var(--fs-sm); font-weight: 500; color: var(--grey-dark); font-variant-numeric: tabular-nums; }
.modal__controls { display: flex; gap: 8px; }
.modal__scroll { flex: 1; overflow-y: auto; overscroll-behavior: contain; }

/* Project detail */

.pd__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}
.pd__media img,
.pd__media iframe,
.pd__media video { width: 100%; height: 100%; object-fit: cover; border: 0; }
.pd__play {
  position: absolute; left: 50%; top: 50%;
  display: grid;
  place-items: center;
  width: 96px; height: 96px;
  margin: -48px 0 0 -48px;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  transition: transform .5s var(--ease-out);
}
.pd__play:hover { transform: scale(1.08); }

.pd__body {
  display: grid;
  gap: 40px;
  padding: clamp(32px, 4.5vw, 72px) clamp(20px, 4.5vw, 72px);
}
.pd__cat { font-size: var(--fs-sm); font-weight: 600; color: var(--orange-ink); }
.pd__title {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 600;
  font-variation-settings: "wdth" 108;
  letter-spacing: -.025em;
  line-height: 1;
}
.pd__desc { max-width: 58ch; margin-top: 24px; font-size: var(--fs-md); color: var(--grey-dark); }
.pd__main .tags { margin-top: 28px; }

.pd__facts { border-top: 1px solid var(--black); align-self: start; }
.pd__fact {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--line);
}
.pd__fact dt { color: var(--grey-dark); }
.pd__fact dd { font-weight: 600; text-align: right; }

.pd__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 4.5vw, 72px);
}
.pd__shot { overflow: hidden; aspect-ratio: 4 / 3; background: var(--black); }
.pd__shot:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
.pd__shot img { width: 100%; height: 100%; object-fit: cover; }

.pd__note {
  padding: 20px clamp(20px, 4.5vw, 72px) 0;
  font-size: var(--fs-xs);
  color: var(--grey-dark);
}

.pd__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--line);
}
.pd__nav-link {
  display: grid;
  gap: 6px;
  padding: 28px clamp(20px, 4.5vw, 72px);
  transition: background-color .35s;
}
.pd__nav-link + .pd__nav-link { text-align: right; border-left: 1px solid var(--line); }
.pd__nav-link:hover { background: var(--grey); }
.pd__nav-dir { font-size: var(--fs-xs); color: var(--grey-dark); }
.pd__nav-title { font-size: var(--fs-md); font-weight: 600; font-variation-settings: "wdth" 106; line-height: 1.25; }

@media (min-width: 900px) {
  .pd__body { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(40px, 5vw, 88px); }
}
@media (max-width: 560px) {
  .pd__gallery { grid-template-columns: 1fr; }
  .pd__shot:first-child { aspect-ratio: 4 / 3; }
}

/* 15b. ENQUIRY FORM -------------------------------------------------------- */
.enquiry { padding: clamp(32px, 4.5vw, 56px) clamp(20px, 4.5vw, 56px) 56px; }
.enquiry__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  font-variation-settings: "wdth" 110;
  letter-spacing: -.02em;
  line-height: 1;
}
.enquiry__intro { max-width: 46ch; margin-top: 16px; color: var(--grey-dark); }

.form { display: grid; gap: 26px; margin-top: 40px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.field { display: grid; gap: 6px; align-content: start; }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field__opt { font-weight: 400; color: var(--grey-dark); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 0;
  font: inherit;
  font-size: 1rem;
  color: var(--black);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #C9CDD2;
  border-radius: 0;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field select {
  padding-right: 28px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2315171A' stroke-width='1.5'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E") right 4px center / 12px 8px no-repeat;
}
.field input::placeholder,
.field textarea::placeholder { color: #9AA0A6; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--orange); box-shadow: 0 1px 0 var(--orange); }
.field__error { min-height: 0; font-size: var(--fs-xs); color: var(--error); }
.field.is-invalid input,
.field.is-invalid textarea { border-bottom-color: var(--error); box-shadow: 0 1px 0 var(--error); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__privacy { margin-top: 4px; font-size: .8125rem; line-height: 1.5; color: var(--grey-dark); }
.form__privacy a { border-bottom: 1px solid var(--line); }
.form__privacy a:hover { border-color: var(--orange); }

/* Simple text page (privacy policy) */
.textpage { padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 96px)); }
.textpage__inner { max-width: 680px; }
.textpage h1 { font-size: var(--fs-2xl); font-weight: 600; font-variation-settings: "wdth" 108; letter-spacing: -.025em; line-height: 1; }
.textpage__updated { margin-top: 16px; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-dark); }
.textpage h2 { margin-top: clamp(32px, 4vw, 48px); font-size: var(--fs-lg); font-weight: 600; font-variation-settings: "wdth" 104; }
.textpage p { margin-top: 14px; font-size: var(--fs-md); line-height: 1.7; color: var(--grey-dark); }
.textpage a { color: var(--orange-ink); border-bottom: 1px solid var(--line); }
.textpage ul { margin-top: 14px; display: grid; gap: 8px; list-style: disc; padding-left: 1.2em; font-size: var(--fs-md); line-height: 1.6; color: var(--grey-dark); }

.form__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 8px; }
.form__status { font-size: var(--fs-sm); color: var(--error); }

.enquiry__done { display: grid; gap: 16px; justify-items: start; margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--black); }
.enquiry__tick { display: grid; place-items: center; width: 56px; height: 56px; color: var(--black); background: var(--orange); border-radius: 50%; }
.enquiry__done-title { font-size: var(--fs-lg); font-weight: 600; outline: none; }
.enquiry__done-text { max-width: 44ch; color: var(--grey-dark); }

@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .form__foot .btn { flex: 1 1 100%; }
}

/* 15c. CURSOR -------------------------------------------------------------- */
.cursor {
  position: fixed; left: 0; top: 0;
  z-index: 250;
  display: none;
  pointer-events: none;
  will-change: transform;
}
.cursor.is-enabled { display: block; }
.cursor__label {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  margin: -29px 0 0 -29px;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--orange);
  border-radius: 50%;
  transform: scale(0);
  transition: transform .45s var(--ease-out);
}
.cursor.is-on .cursor__label { transform: scale(1); }

/* 15d. PAGE LOAD + REVEAL -------------------------------------------------- */
.curtain {
  position: fixed; inset: 0;
  z-index: 500;
  background: var(--black);
  pointer-events: none;
  animation: curtain-up .7s var(--ease-io) .6s forwards;
}
.curtain__bar {
  position: absolute; left: 0; top: 50%;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  animation: bar-run .6s var(--ease-io) forwards;
}
@keyframes bar-run { to { transform: scaleX(1); } }
@keyframes curtain-up { to { transform: translateY(-101%); visibility: hidden; } }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    transition-delay: 0s !important;
  }
  .curtain { display: none; }
  .reveal { opacity: 1; transform: none; }
  .pipe__pulse { display: none; }
  .hero__img { animation: none; }
}

/* 15b. BLOG ---------------------------------------------------------------- */
.blog { padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 96px)); }
.blog__head { margin-bottom: clamp(40px, 5vw, 72px); }
.blog__empty { font-size: var(--fs-md); color: var(--grey-dark); }

.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 44px); }
.post-grid--more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.post-card--lead { grid-column: 1 / -1; }
.post-card__link { display: grid; gap: 12px; }
.post-card__media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--black); }
.post-card--lead .post-card__media { aspect-ratio: 21 / 9; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.post-card__link:hover .post-card__media img { transform: scale(1.04); }
.post-card__meta { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--grey-mid); }
.post-card__title {
  max-width: 28ch;
  font-size: clamp(1.25rem, 1.7vw, 1.625rem);
  font-weight: 600;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.01em;
  line-height: 1.18;
}
.post-card--lead .post-card__title { max-width: 22ch; font-size: clamp(1.75rem, 3.2vw, 3rem); letter-spacing: -.025em; line-height: 1.04; }
.post-card__summary { max-width: 48ch; font-size: var(--fs-sm); line-height: 1.6; color: var(--grey-dark); }
.post-card__more { margin-top: 4px; justify-self: start; pointer-events: none; }
.post-card__link:hover .post-card__more .arrow { transform: translateX(5px); }

@media (max-width: 899px) {
  .post-grid, .post-grid--more { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 599px) {
  .post-grid, .post-grid--more { grid-template-columns: minmax(0, 1fr); }
}

/* Blog post page */
.post { padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 80px)); }
.post__inner { max-width: 760px; }
.post__back { display: inline-block; margin-bottom: clamp(28px, 4vw, 48px); font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-dark); transition: color .3s; }
.post__back:hover { color: var(--orange-ink); }
.post__meta { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-ink); }
.post__title {
  margin-top: 14px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 600;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.03em;
  line-height: 1.02;
  text-wrap: balance;
}
.post__summary { margin-top: 22px; max-width: 58ch; font-size: var(--fs-lg); line-height: 1.45; color: var(--grey-dark); }
.post__cover { margin: clamp(36px, 5vw, 64px) auto 0; aspect-ratio: 21 / 9; overflow: hidden; background: var(--black); }
.post__cover img { width: 100%; height: 100%; object-fit: cover; }
.post__body { max-width: 680px; margin-top: clamp(36px, 5vw, 64px); display: grid; gap: 1.2em; font-size: 1.125rem; line-height: 1.75; }
.post__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  max-width: 680px; margin-top: clamp(48px, 6vw, 88px); padding-top: 32px; border-top: 1px solid var(--black);
}
.post__cta-text { font-size: var(--fs-lg); font-weight: 600; font-variation-settings: "wdth" 106; }
.post__more { margin-top: clamp(64px, 8vw, 112px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line); }
.post__more-title { margin-bottom: 28px; font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-dark); }

/* Homepage insights strip */
.insights { padding-top: 0; }
.insights__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); }
.insights .post-card--lead { grid-column: auto; }
.insights .post-card--lead .post-card__media { aspect-ratio: 16 / 10; }
.insights .post-card--lead .post-card__title { max-width: 28ch; font-size: clamp(1.25rem, 1.7vw, 1.625rem); letter-spacing: -.01em; line-height: 1.18; }
@media (max-width: 899px) { .insights__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .insights__grid > :nth-child(3) { display: none; } }
@media (max-width: 599px) { .insights__grid { grid-template-columns: minmax(0, 1fr); } .insights__grid > :nth-child(3) { display: grid; } }

/* 15c. ABOUT PAGE ---------------------------------------------------------- */
.about-hero { padding-top: calc(var(--nav-h) + clamp(56px, 8vw, 112px)); padding-bottom: clamp(48px, 6vw, 88px); }
.about-hero__kicker { font-size: .8125rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-ink); }
.about-hero__title {
  max-width: 14ch;
  margin-top: 16px;
  font-size: var(--fs-2xl);
  font-weight: 600;
  font-variation-settings: "wdth" 110;
  letter-spacing: -.03em;
  line-height: .95;
}
.about-hero__text { display: grid; gap: 1.1em; max-width: 62ch; margin-top: clamp(28px, 3.5vw, 44px); font-size: var(--fs-lg); line-height: 1.5; }
.about-hero__text p + p { font-size: var(--fs-md); line-height: 1.65; color: var(--grey-dark); }

.about-block__grid { display: grid; gap: clamp(24px, 3vw, 40px); }
@media (min-width: 900px) {
  .about-block__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: clamp(48px, 6vw, 112px); align-items: start; }
}
.about-block__body { display: grid; gap: clamp(24px, 3vw, 36px); }

.about-services, .about-industries { display: grid; border-top: 1px solid var(--black); }
.about-services li, .about-industries li {
  display: grid;
  gap: 6px;
  padding: clamp(16px, 2vw, 24px) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) {
  .about-services li, .about-industries li { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); gap: 8px 40px; align-items: baseline; }
}
.about-services strong, .about-industries strong {
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  font-weight: 600;
  font-variation-settings: "wdth" 106;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.about-services span, .about-industries span { font-size: var(--fs-sm); line-height: 1.6; color: var(--grey-dark); }

.about-steps { display: grid; gap: 2px; counter-reset: step; }
.about-steps li {
  display: grid;
  gap: 4px;
  padding: clamp(14px, 1.8vw, 20px) 0;
  border-bottom: 1px solid var(--line);
}
.about-steps li:first-child { border-top: 1px solid var(--black); }
.about-steps strong { font-size: clamp(1rem, 1.3vw, 1.25rem); font-weight: 600; text-transform: uppercase; letter-spacing: .01em; }
.about-steps span:last-child { font-size: var(--fs-sm); line-height: 1.55; color: var(--grey-dark); }

.about-cities__list { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 64px); margin-top: clamp(28px, 3.5vw, 44px); }
.about-cities__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: clamp(1.75rem, 4.5vw, 3.5rem);
  font-weight: 600;
  font-variation-settings: "wdth" 108;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.about-cities__note { max-width: 46ch; margin-top: clamp(24px, 3vw, 36px); font-size: var(--fs-md); color: var(--grey-mid); }

.about-work { padding-top: 0; }
.about__more { margin-top: 24px; }

/* 16. PROJECT PAGE ---------------------------------------------------------- */
.project__hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(88vh, 900px);
  color: var(--white);
  background: #0B0C0E;
  overflow: hidden;
}
.project__media { position: absolute; inset: 0; z-index: -2; }
.project__media img { width: 100%; height: 100%; object-fit: cover; animation: hero-drift 30s ease-in-out infinite alternate; }
.project__overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11, 12, 14, .55) 0%, rgba(11, 12, 14, .1) 35%, rgba(11, 12, 14, .88) 100%);
}
.project__head { padding-top: calc(var(--nav-h) + 80px); padding-bottom: clamp(48px, 7vw, 96px); }
.project__back {
  display: inline-flex;
  gap: 10px;
  margin-bottom: clamp(32px, 5vw, 64px);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  transition: color .3s;
}
.project__back:hover { color: var(--orange); }
.project__cat { font-size: var(--fs-sm); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.project__title {
  max-width: 18ch;
  margin-top: 14px;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  font-weight: 600;
  font-variation-settings: "wdth" 108;
  letter-spacing: -.03em;
  line-height: .95;
  text-wrap: balance;
}
.project__body {
  display: grid;
  gap: 48px;
  padding-block: clamp(56px, 7vw, 112px);
}
.project__desc { display: grid; gap: 1em; max-width: 60ch; font-size: var(--fs-lg); line-height: 1.45; }
.project__desc p + p { font-size: var(--fs-md); color: var(--grey-dark); }
.project__player { margin-top: clamp(40px, 5vw, 64px); }
.project__player .project__video { margin-top: 0; }
.project__video-note { margin-top: 12px; font-size: var(--fs-sm); color: var(--grey-dark); }
.project__video-note a { border-bottom: 1px solid var(--line); transition: border-color .3s; }
.project__video-note a:hover { border-color: var(--orange); }
.project__video {
  position: relative;
  margin-top: clamp(40px, 5vw, 64px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}
.project__video img, .project__video iframe, .project__video video { width: 100%; height: 100%; object-fit: cover; border: 0; }
.project__video img { filter: brightness(.7); }
@media (min-width: 900px) {
  .project__body { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); gap: clamp(48px, 6vw, 112px); align-items: start; }
  .project__facts { position: sticky; top: calc(var(--nav-h) + 32px); }
}
.project__gallery { padding: 0; }
.project__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(64px, 8vw, 120px);
  padding-block: 32px;
  border-top: 1px solid var(--black);
}
.project__cta-text { font-size: var(--fs-lg); font-weight: 600; font-variation-settings: "wdth" 106; }
.project .pd__nav { margin-top: clamp(40px, 5vw, 72px); }

.project__block { margin-top: clamp(40px, 5vw, 64px); padding-top: clamp(24px, 3vw, 36px); border-top: 1px solid var(--line); }
.project__block-title {
  margin-bottom: 14px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-ink);
}
.project__block-text { display: grid; gap: 1em; max-width: 60ch; font-size: var(--fs-md); line-height: 1.65; color: var(--grey-dark); }

/* 17. 404 ------------------------------------------------------------------- */
.notfound { min-height: 80vh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + 64px); background: var(--black); color: var(--white); }
.notfound__code { font-size: .875rem; font-weight: 600; letter-spacing: .12em; color: var(--orange); }
.notfound__title { margin-top: 16px; font-size: var(--fs-2xl); font-weight: 600; font-variation-settings: "wdth" 110; line-height: .95; letter-spacing: -.02em; }
.notfound__text { margin-top: 20px; color: var(--grey-mid); font-size: var(--fs-md); }
.notfound__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.notfound .btn--outline { --btn-fg: var(--white); --btn-border: rgba(255, 255, 255, .5); --btn-sweep: var(--white); --btn-sweep-fg: var(--black); }
body[data-page="notfound"] .nav { background: var(--black); }

/* 18. IMAGE FALLBACK -------------------------------------------------------- */
/* The smaller YouTube still is 4:3 with black bars: crop them off */
img.is-yt-fallback { object-fit: cover; transform: scale(1.34); }
.work-card__media img.is-yt-fallback { transform: scale(1.34); }
.work-card__link:hover .work-card__media img.is-yt-fallback { transform: scale(1.4); }
/* If a remote image fails, the dark frame behind it stays instead of a broken icon */
img.is-broken { visibility: hidden; }
