:root {
  --white: #fafafa;
  --archive: #f2f2ec;
  --black: #000000;
  --theme-dark-bg: #000000;
  --theme-dark-fg: #fafafa;
  --theme-light-bg: #f0eee7;
  --theme-light-fg: #000000;
  --ink-92: rgba(0, 0, 0, 0.92);
  --ink-72: rgba(0, 0, 0, 0.72);
  --ink-54: rgba(0, 0, 0, 0.54);
  --ink-28: rgba(0, 0, 0, 0.28);
  --ink-12: rgba(0, 0, 0, 0.12);
  --ink-06: rgba(0, 0, 0, 0.06);
  --paper-84: rgba(250, 250, 250, 0.84);
  --paper-58: rgba(250, 250, 250, 0.58);
  --paper-18: rgba(250, 250, 250, 0.18);
  --gutter: clamp(20px, 4vw, 76px);
  --section: clamp(118px, 14vw, 230px);
  --max: 1680px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
  color: var(--black);
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
  cursor: none;
}

body.loader-active {
  overflow: hidden;
}

html.p1-session-return body.loader-active {
  overflow: auto;
}

html.p1-session-return .site-loader,
html.p1-session-return #hero {
  display: none !important;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  color: #fafafa;
  pointer-events: auto;
  isolation: isolate;
}

/*
 * Loader: black bg, white logo, sinusoidal black wave rises bottom → top.
 *
 * Wave pattern directly adapted from the reference — two radial gradients,
 * half-period offset, tiled repeat-x, producing smooth sine-wave edge:
 *   Gradient A: crests  — full circles sitting AT the wave line, poke UP into white
 *   Gradient B: troughs — inverted circles sitting ABOVE the wave line, bite DOWN into black
 *
 * The container is SVG-masked so both pseudo-elements are clipped to the logo shape.
 * ::after rises by shrinking its `top` from 100% → 0% as --loader-progress increases.
 */

.brand-fill-loader {
  --loader-progress: 0%;
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(82px, 10vw, 142px);
  aspect-ratio: 1;
  /* small font-size so em units in wave background resolve to ~6-8px wave radius */
  font-size: 12px;
  -webkit-mask: url("assets/p1.svg") center / contain no-repeat;
  mask: url("assets/p1.svg") center / contain no-repeat;
}

.brand-fill-loader::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #fafafa;
}

.brand-fill-loader::after {
  position: absolute;
  inset: 0;
  top: calc(100% - var(--loader-progress));
  content: "";
  /*
   * Translated from reference (r = wave radius = 0.56em, period = 2r = 1.12em):
   *
   *   A: radial-gradient(r at 50% 1.6r, #000 99%, transparent 101%)
   *      x-start: calc(50% - r)   size: 2r × 100%   repeat-x
   *      → solid filled circles whose centres are 1.6r below top of element
   *        (crests that push upward into the white area)
   *
   *   B: radial-gradient(r at 50% -0.8r, transparent 99%, #000 101%)
   *      x-start: 50%             size: 2r × 100%   repeat-x, offset-y: 0.8r
   *      → punched-out circles above top edge
   *        (troughs that bite into the black fill)
   *
   * Animation shifts both x positions by +2r per cycle.
   */
  background:
    radial-gradient(0.56em at 50% 0.9em, #000 99%, transparent 101%)
      calc(50% - 0.56em) 0 / 1.12em 100% repeat-x,
    radial-gradient(0.56em at 50% -0.45em, transparent 99%, #000 101%)
      50% 0.45em / 1.12em 100% repeat-x;
  animation: loaderWave 1.6s linear infinite;
  will-change: top, background-position;
}

.brand-fill-loader img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
}

@keyframes loaderWave {
  to {
    background-position:
      calc(50% + 0.56em) 0,
      calc(50% + 1.12em) 0.45em;
  }
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--ink-06) 1px, transparent 1px) 0 0 / 25vw 100%;
}

a,
button {
  color: inherit;
  cursor: none;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

::selection {
  background: var(--black);
  color: var(--white);
}

.arabic {
  font-family: "IBM Plex Sans Arabic", Inter, sans-serif;
}

.editorial-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 300;
  display: grid;
  grid-template-columns: 52px minmax(190px, 360px) auto;
  align-items: center;
  gap: 16px;
  width: min(740px, calc(100vw - 32px));
  min-height: 54px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.94);
  border: 1px solid rgba(250, 250, 250, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
  transform: translateX(-50%);
  transition: color 520ms var(--ease-out), background 520ms var(--ease-out), border-color 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}

.editorial-nav.inverted-nav {
  color: var(--black);
  background: rgba(250, 250, 250, 0.9);
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 18px 60px rgba(250, 250, 250, 0.08);
}

.nav-left {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-left img {
  width: 26px;
  filter: invert(1);
  transition: filter 520ms var(--ease-out);
}

.editorial-nav.inverted-nav .nav-left img {
  filter: none;
}

.nav-center {
  min-width: 0;
}

.status-window {
  position: relative;
  height: 18px;
  overflow: hidden;
}

.active-status-label,
.menu-trigger,
.menu-drawer a,
.section-label,
.museum-label,
.index-item figcaption,
.studio-meta span,
.service-row span,
.phase-copy span,
.phase-data,
.footer-grid {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.active-status-label {
  display: block;
  white-space: nowrap;
}

.nav-right {
  justify-self: end;
}

.menu-trigger {
  padding: 12px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
}

/* Section-level colour continuity.
   A section owns one colour theme from its first pixel to its last;
   the palette changes only at the next data-theme boundary. */
main > section[data-theme="dark"],
footer[data-theme="dark"] {
  background-color: var(--theme-dark-bg);
  color: var(--theme-dark-fg);
}

main > section[data-theme="light"],
footer[data-theme="light"] {
  background-color: var(--theme-light-bg);
  color: var(--theme-light-fg);
}

.section-panel {
  position: relative;
  padding: var(--section) var(--gutter);
}

.section-panel > * {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.studio,
.exhibition,
.capabilities,
.culture {
  background: var(--white);
  color: var(--black);
}

.visual-index {
  background: var(--archive);
  color: var(--black);
}

.section-panel::before {
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0.12;
}

.section-label {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  margin-bottom: clamp(72px, 10vw, 160px);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.7fr);
  gap: clamp(52px, 9vw, 166px);
}

.studio-meta {
  display: grid;
  align-self: start;
  border-top: 1px solid var(--ink-12);
}

.studio-meta div {
  display: grid;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid var(--ink-12);
}

.studio-meta strong {
  max-width: 310px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.studio-copy {
  display: grid;
  gap: clamp(46px, 7vw, 112px);
}

.studio-copy h2,
.section-heading h2,
.progression-heading h2,
.culture-text h2,
.split-copy h2 {
  margin: 0;
  font-size: clamp(48px, 8vw, 132px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 90px);
  max-width: 920px;
}

.copy-columns p,
.progression-heading p,
.phase-copy p,
.culture-text p {
  margin: 0;
  color: var(--ink-72);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.68;
}

.split-transition {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.split-pin {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.split-pin::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(250, 250, 250, 0.1) 1px, transparent 1px) 0 0 / 25vw 100%;
}

.split-panel {
  position: absolute;
  top: 50%;
  width: min(45vw, 630px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--paper-18);
  transform: translateY(-50%);
  will-change: transform;
}

.split-left {
  right: 50%;
}

.split-right {
  left: 50%;
}

.split-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  position: absolute;
  top: clamp(112px, 14vh, 170px);
  left: var(--gutter);
  z-index: 4;
  display: grid;
  gap: 14px;
  width: min(460px, calc(100vw - 40px));
  color: var(--white);
}

.split-copy span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.split-copy h2 {
  font-size: clamp(26px, 3.4vw, 58px);
}

.section-heading {
  max-width: 1160px;
  margin-bottom: clamp(80px, 11vw, 180px);
}

.exhibition-grid,
.index-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 54px);
  align-items: start;
}

#exhibition .case-parallax-stack {
  display: grid;
}

#exhibition .relative {
  position: relative;
}

#exhibition .absolute {
  position: absolute;
}

#exhibition .inset-0 {
  inset: 0;
}

#exhibition .top-\[-15\%\] {
  top: -15%;
}

#exhibition .left-0 {
  left: 0;
}

#exhibition .bottom-8 {
  bottom: 32px;
}

#exhibition .left-8 {
  left: 32px;
}

#exhibition .w-full {
  width: 100%;
}

#exhibition .w-\[90vw\] {
  width: 90vw;
}

#exhibition .h-\[60vh\] {
  height: 60vh;
}

#exhibition .h-\[130\%\] {
  height: 130%;
}

#exhibition .min-h-\[80vh\] {
  min-height: 80vh;
}

#exhibition .flex {
  display: flex;
}

#exhibition .items-center {
  align-items: center;
}

#exhibition .justify-center {
  justify-content: center;
}

#exhibition .py-24 {
  padding-top: clamp(80px, 8vw, 128px);
  padding-bottom: clamp(80px, 8vw, 128px);
}

#exhibition .overflow-hidden {
  overflow: hidden;
}

#exhibition .object-cover {
  object-fit: cover;
}

#exhibition .z-10 {
  z-index: 10;
}

#exhibition .z-20 {
  z-index: 20;
}

#exhibition .pointer-events-none {
  pointer-events: none;
}

#exhibition .uppercase {
  text-transform: uppercase;
}

#exhibition .font-bold {
  font-weight: 900;
}

#exhibition .tracking-tighter {
  letter-spacing: 0;
}

#exhibition .tracking-widest {
  letter-spacing: 0.18em;
}

#exhibition .leading-tight {
  line-height: 1.1;
}

#exhibition .text-\[10px\] {
  font-size: 10px;
}

#exhibition .text-5xl {
  font-size: clamp(44px, 7vw, 80px);
}

#exhibition .text-\[\#FAFAFA\] {
  color: #fafafa;
}

#exhibition .text-\[\#0A0A0A\] {
  color: #0a0a0a;
}

#exhibition .bg-\[\#EAEAEA\] {
  background: #eaeaea;
}

#exhibition .mix-blend-difference {
  mix-blend-mode: difference;
}

#exhibition .border-b {
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

#exhibition .case-parallax-block {
  width: 100%;
  cursor: none;
}

#exhibition .case-container {
  overflow: hidden;
  will-change: transform;
}

#exhibition .case-parallax-img {
  will-change: transform;
}

#exhibition .case-title {
  max-width: min(1100px, 88vw);
  margin: 0;
  text-align: center;
  line-height: 0.88;
}

#exhibition .case-meta {
  display: grid;
  gap: 4px;
}

#exhibition .case-meta p {
  margin: 0;
}

@media (min-width: 768px) {
  #exhibition .md\:w-\[75vw\] {
    width: 75vw;
  }

  #exhibition .md\:h-\[80vh\] {
    height: 80vh;
  }

  #exhibition .md\:text-8xl {
    font-size: clamp(78px, 9vw, 150px);
  }

  #exhibition .md\:bottom-12 {
    bottom: 48px;
  }

  #exhibition .md\:left-12 {
    left: 48px;
  }
}

.work-item {
  display: grid;
  gap: 18px;
}

.work-item figure,
.index-item {
  margin: 0;
  overflow: hidden;
  background: var(--ink-06);
}

.work-item img,
.index-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.work-item:hover img,
.index-item:hover img {
  transform: scale(1.035);
}

.work-hero {
  grid-column: 1 / span 7;
}

.work-hero figure {
  aspect-ratio: 1 / 1.06;
}

.work-small {
  grid-column: 9 / span 3;
}

.work-small figure {
  aspect-ratio: 1 / 1.12;
}

.work-offset {
  margin-top: -6vw;
}

.work-tall {
  grid-column: 8 / span 4;
  margin-top: 12vw;
}

.work-tall figure {
  aspect-ratio: 3 / 4.4;
}

.work-wide {
  grid-column: 2 / span 6;
  margin-top: -3vw;
}

.work-wide figure {
  aspect-ratio: 1.35 / 1;
}

.work-narrow {
  grid-column: 10 / span 2;
  margin-top: 8vw;
}

.work-narrow figure {
  aspect-ratio: 0.86 / 1;
}

.museum-label {
  display: grid;
  gap: 6px;
  max-width: 330px;
  color: var(--ink-54);
}

.museum-label strong,
.museum-label em {
  color: var(--black);
  font-style: normal;
}

.museum-label::before {
  width: 42px;
  height: 1px;
  margin-bottom: 2px;
  content: "";
  background: var(--black);
  opacity: 0.42;
}

.index-mass {
  grid-column: 2 / span 7;
  aspect-ratio: 1.15 / 1;
}

.index-slip {
  grid-column: 10 / span 2;
  aspect-ratio: 1 / 1.25;
  margin-top: -5vw;
}

.index-tall {
  grid-column: 1 / span 4;
  aspect-ratio: 0.8 / 1;
  margin-top: 8vw;
}

.index-low {
  grid-column: 6 / span 5;
  aspect-ratio: 1.6 / 1;
  margin-top: 14vw;
}

.index-item {
  position: relative;
}

.index-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.visual-slideshow {
  position: relative;
  min-height: clamp(620px, 78vh, 860px);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.visual-slideshow::before,
.visual-slideshow::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
}

.visual-slideshow::before {
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 0.13) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(0deg, rgba(250, 250, 250, 0.09) 1px, transparent 1px) 0 0 / 100% 25%;
  opacity: 0.18;
}

.visual-slideshow::after {
  background: radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, 0.38) 76%);
}

.visual-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  pointer-events: none;
  will-change: opacity, transform;
}

.visual-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.visual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.06);
  will-change: transform;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  gap: 0.02em;
  width: min(1180px, calc(100vw - (var(--gutter) * 2)));
  color: var(--white);
  font-size: clamp(46px, 8.8vw, 154px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.075em;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.slide-text span {
  display: block;
}

.visual-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(250, 250, 250, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition: background 360ms var(--ease-out), border-color 360ms var(--ease-out);
}

.visual-nav:hover {
  background: rgba(250, 250, 250, 0.12);
  border-color: rgba(250, 250, 250, 0.42);
}

.visual-nav-left {
  left: clamp(18px, 2.5vw, 44px);
}

.visual-nav-right {
  right: clamp(18px, 2.5vw, 44px);
}

.visual-counter {
  position: absolute;
  right: clamp(18px, 2.5vw, 44px);
  bottom: clamp(18px, 2.5vw, 44px);
  z-index: 5;
  color: rgba(250, 250, 250, 0.84);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.visual-index .visual-slideshow,
.visual-index .portfolio-gallery {
  display: none;
}

.visual-index {
  background: var(--black);
  color: var(--white);
}

.visual-index .section-label {
  color: rgba(250, 250, 250, 0.76);
}

.visual-depth-gallery {
  position: relative;
  width: 100%;
  min-height: min(980px, 100vh);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.visual-depth-gallery::before,
.visual-depth-gallery::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.visual-depth-gallery::before {
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 0.09) 1px, transparent 1px) 0 0 / 20vw 100%,
    linear-gradient(0deg, rgba(250, 250, 250, 0.07) 1px, transparent 1px) 0 0 / 100% 25%;
  opacity: 0.18;
}

.visual-depth-gallery::after {
  background:
    radial-gradient(circle at 50% 45%, transparent 0, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.48));
}

.visual-depth-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: none;
}

.visual-depth-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: var(--gutter);
  text-align: center;
  pointer-events: none;
  mix-blend-mode: exclusion;
}

.visual-depth-overlay h2 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 8vw, 136px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.visual-depth-overlay .italic {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.visual-depth-overlay p {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(18px, 2.2vw, 30px);
  left: var(--gutter);
  margin: 0;
  color: rgba(250, 250, 250, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-depth-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  padding: clamp(40px, 6vw, 90px);
  opacity: 1;
  pointer-events: none;
  perspective: 1800px;
}

.visual-depth-gallery.is-webgl .visual-depth-fallback {
  opacity: 0;
}

.visual-depth-fallback figure {
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(250, 250, 250, 0.12);
  background: var(--black);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  transform-style: preserve-3d;
  animation: fallbackDepth 18s linear infinite;
}

.visual-depth-fallback figure:nth-child(1) {
  width: min(36vw, 520px);
  transform: translate3d(-80%, -36%, -220px) rotateY(-22deg) rotateZ(-3deg);
  animation-delay: 0s;
}

.visual-depth-fallback figure:nth-child(2) {
  width: min(28vw, 420px);
  transform: translate3d(6%, -72%, -360px) rotateY(18deg) rotateZ(2deg);
  animation-delay: -3s;
}

.visual-depth-fallback figure:nth-child(3) {
  width: min(24vw, 360px);
  transform: translate3d(48%, -10%, -520px) rotateY(-16deg) rotateZ(4deg);
  animation-delay: -6s;
}

.visual-depth-fallback figure:nth-child(4) {
  width: min(30vw, 450px);
  transform: translate3d(-30%, 10%, -680px) rotateY(24deg) rotateZ(-2deg);
  animation-delay: -9s;
}

.visual-depth-fallback figure:nth-child(5) {
  width: min(22vw, 340px);
  transform: translate3d(18%, 28%, -840px) rotateY(-28deg) rotateZ(3deg);
  animation-delay: -12s;
}

.visual-depth-fallback figure:nth-child(6) {
  width: min(26vw, 390px);
  transform: translate3d(-62%, 18%, -1000px) rotateY(14deg) rotateZ(-5deg);
  animation-delay: -15s;
}

.visual-depth-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fallbackDepth {
  0%,
  100% {
    opacity: 0.28;
    filter: blur(4px);
  }
  38%,
  68% {
    opacity: 0.92;
    filter: blur(0);
  }
}

.portfolio-gallery {
  position: relative;
  overflow: hidden;
  min-height: clamp(720px, 86vh, 860px);
  padding: clamp(46px, 5.6vw, 78px) clamp(18px, 3vw, 42px) 42px;
  border: 1px solid var(--ink-10);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    rgba(250, 250, 250, 0.82);
  color: var(--black);
  isolation: isolate;
}

.portfolio-gallery::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 38%, rgba(0, 0, 0, 0.075), transparent 38%);
  content: "";
}

.portfolio-gallery-header {
  position: relative;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.portfolio-gallery-header h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(50px, 5.9vw, 104px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.portfolio-archive-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-card-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(300px, 35vw, 390px);
  margin: clamp(-126px, -9vw, -96px) auto 0;
  padding-top: 0;
  perspective: 5000px;
}

.portfolio-card {
  position: relative;
  z-index: var(--z);
  flex: 0 0 clamp(220px, 21vw, 330px);
  aspect-ratio: 16 / 10;
  margin: 0 0 0 clamp(-244px, -15vw, -176px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink-06);
  box-shadow:
    rgba(0, 0, 0, 0.01) 1px 0 1px,
    rgba(0, 0, 0, 0.04) 3px 0 3px,
    rgba(0, 0, 0, 0.1) 8px 0 8px,
    rgba(0, 0, 0, 0.26) 24px 0 26px;
  cursor: none;
  --hover-y: 0px;
  --intro-y: 0px;
  --card-scale: 1;
  transform: perspective(5000px) rotateY(-45deg) translateY(calc((var(--lift) * -0.58) + var(--hover-y) + var(--intro-y))) scale(var(--card-scale));
  transform-origin: center bottom;
  transition: filter 240ms var(--ease-out);
  will-change: transform, opacity;
}

.portfolio-card:first-child {
  margin-left: 0;
}

.portfolio-card img,
.portfolio-mobile-marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.portfolio-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.portfolio-card.is-muted {
  filter: saturate(0.72) brightness(0.76);
}

.portfolio-card.is-hovered {
  filter: saturate(1.06) brightness(1.03);
}

.portfolio-mobile-marquee {
  display: none;
}

@keyframes portfolioMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 16px));
  }
}

.service-list {
  border-top: 1px solid var(--ink-12);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(260px, 0.9fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
  width: 100%;
  min-height: 132px;
  padding: 34px 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--ink-12);
  background: transparent;
  text-align: left;
  transition: padding 620ms var(--ease-out), border-color 620ms var(--ease-out), opacity 620ms var(--ease-out);
}

.service-row::before,
.service-row::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  content: "";
  background: var(--black);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s var(--ease-out), opacity 1.4s var(--ease-out);
}

.service-row::before {
  top: 34%;
}

.service-row::after {
  top: 66%;
}

.service-list:hover .service-row {
  opacity: 0.42;
}

.service-list .service-row:hover {
  padding-left: 18px;
  border-bottom-color: var(--black);
  opacity: 1;
}

.service-row:hover::before,
.service-row:hover::after {
  opacity: 0.18;
  transform: scaleX(1);
}

.service-row strong {
  font-size: clamp(34px, 5.2vw, 92px);
  font-weight: 900;
  line-height: 0.88;
}

.service-row em {
  display: grid;
  gap: 12px;
  max-width: 560px;
  color: var(--ink-54);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-row b {
  color: var(--black);
}

.progression {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.process-ink {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 72% 18%, rgba(250, 250, 250, 0.13), transparent 30%), var(--black);
  opacity: 0.42;
  transform: scale(1.04);
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
}

.progression-layout.is-backstage-active ~ * {
  pointer-events: none;
}

.progression.is-backstage-active .process-ink {
  opacity: 1;
  transform: scale(1);
}

.progression .section-label,
.progression-heading p,
.phase-copy p {
  color: var(--paper-58);
}

.progression-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1px minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 126px);
}

.progression-heading {
  position: sticky;
  top: 126px;
  align-self: start;
  display: grid;
  gap: 30px;
  max-width: 600px;
}

.progression-heading h2 {
  font-size: clamp(42px, 6vw, 104px);
}

.backstage-toggle {
  grid-column: 3;
  justify-self: start;
  align-self: start;
  margin-top: clamp(28px, 5vw, 58px);
  padding: clamp(18px, 2vw, 28px) 0 0;
  border: 0;
  border-top: 1px solid currentColor;
  background: transparent;
  color: var(--white);
  font-size: clamp(20px, 2.7vw, 42px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

.backstage-toggle.is-visible {
  opacity: 0.72;
  transform: translateY(0);
  pointer-events: auto;
}

.backstage-toggle:hover {
  opacity: 1;
  transform: translateX(10px);
}

.progress-tree {
  position: relative;
  height: 100%;
  background: var(--paper-18);
}

.progress-line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 0;
  background: var(--white);
}

.phase-stack {
  display: grid;
  border-top: 1px solid var(--paper-18);
}

.phase {
  position: relative;
  display: grid;
  min-height: clamp(310px, 27vw, 470px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--paper-18);
}

.phase-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 74px);
  will-change: opacity;
}

.phase-copy h3 {
  grid-column: 2;
  margin: 0;
  font-size: clamp(34px, 5vw, 86px);
  font-weight: 900;
  line-height: 0.88;
}

.phase-copy p {
  grid-column: 2;
  max-width: 620px;
}

.phase-video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  will-change: opacity, transform;
}

.phase-video-container::before,
.phase-video-container::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.phase-video-container::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
}

.phase-video-container::after {
  background: linear-gradient(90deg, rgba(250, 250, 250, 0.2) 1px, transparent 1px) 0 0 / 25% 100%, linear-gradient(0deg, rgba(250, 250, 250, 0.12) 1px, transparent 1px) 0 0 / 100% 50%;
  opacity: 0;
  transform: scaleX(0.92);
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
}

.progression.is-backstage-active .phase-video-container::after {
  opacity: 1;
  transform: scaleX(1);
}

.phase-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phase-data {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 16px;
  color: var(--white);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.4s var(--ease-out), transform 1.4s var(--ease-out);
}

.progression.is-backstage-active .phase-data {
  opacity: 1;
  transform: translateY(0);
}

.culture-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 54px);
  align-items: start;
}

.culture-image {
  margin: 0;
  overflow: hidden;
  background: var(--ink-06);
}

.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-a {
  grid-column: 1 / span 4;
  aspect-ratio: 4 / 5;
  margin-top: 12vw;
}

.culture-text {
  grid-column: 5 / span 7;
  display: grid;
  gap: 30px;
}

.culture-text h2 {
  font-size: clamp(48px, 7.2vw, 122px);
}

.culture-text .arabic {
  color: var(--black);
  font-size: clamp(28px, 4vw, 66px);
  font-weight: 300;
  line-height: 1.35;
}

.image-b {
  grid-column: 8 / span 5;
  aspect-ratio: 5 / 6;
}

.image-c {
  grid-column: 5 / span 3;
  aspect-ratio: 3 / 4;
  margin-top: 7vw;
}

.site-footer {
  position: relative;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(154px, 14vw, 230px) var(--gutter) 34px;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
  clip-path: none;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  left: -6vw;
  width: 112vw;
  pointer-events: none;
  content: "";
  transform: rotate(-2deg);
  transform-origin: center;
}

.site-footer::before {
  top: clamp(36px, 4.7vw, 82px);
  z-index: 1;
  height: 1px;
  background: rgba(250, 250, 250, 0.12);
}

.site-footer::after {
  top: clamp(78px, 7.2vw, 132px);
  z-index: 1;
  height: 1px;
  background: rgba(250, 250, 250, 0.055);
}

.footer-aurora {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -3;
  width: min(84vw, 1200px);
  height: 62vh;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 44%, rgba(201, 168, 74, 0.18), transparent 34%),
    radial-gradient(circle at 65% 62%, rgba(250, 250, 250, 0.08), transparent 42%);
  filter: blur(64px);
  opacity: 0.9;
  transform: translate(-50%, -50%);
  animation: footerBreath 8s ease-in-out infinite alternate;
}

.footer-grid-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(250, 250, 250, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250, 250, 250, 0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
}

.footer-giant-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -2;
  width: min(112vw, 1550px);
  opacity: 0.045;
  mix-blend-mode: screen;
  transform: translate(-50%, -48%);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.22) 62%, transparent 86%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.22) 62%, transparent 86%);
  pointer-events: none;
  user-select: none;
  filter: blur(1.2px);
  will-change: transform, opacity;
}

.footer-giant-logo img {
  width: 100%;
  filter: invert(1) grayscale(1);
}

.footer-marquee {
  position: absolute;
  top: clamp(46px, 5.2vw, 88px);
  left: -5vw;
  z-index: 2;
  width: 110vw;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(250, 250, 250, 0.08);
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transform: rotate(-2deg);
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(28px, 4vw, 72px);
  color: rgba(250, 250, 250, 0.48);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  animation: footerMarquee 36s linear infinite;
}

.footer-main {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3vw, 46px);
  width: min(1080px, 100%);
  margin: auto;
  text-align: center;
}

.footer-kicker {
  color: rgba(250, 250, 250, 0.48);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.footer-main h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(62px, 9.5vw, 168px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: none;
  text-wrap: balance;
}

.footer-actions,
.footer-secondary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 1.7vw, 24px);
}

.footer-pill {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 1px solid rgba(250, 250, 250, 0.12);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(250, 250, 250, 0.1), rgba(250, 250, 250, 0.025));
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 1px rgba(250, 250, 250, 0.14),
    inset 0 -1px 2px rgba(0, 0, 0, 0.28);
  color: var(--white);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 850;
  letter-spacing: -0.02em;
  backdrop-filter: blur(16px);
  transition: border-color 360ms var(--ease-out), background 360ms var(--ease-out), box-shadow 360ms var(--ease-out);
}

.footer-pill:hover {
  border-color: rgba(250, 250, 250, 0.26);
  background: linear-gradient(145deg, rgba(250, 250, 250, 0.18), rgba(250, 250, 250, 0.04));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(250, 250, 250, 0.22);
}

.footer-pill-small {
  min-height: 44px;
  padding: 0 24px;
  color: rgba(250, 250, 250, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  width: 100%;
  color: rgba(250, 250, 250, 0.58);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-legal,
.footer-time {
  display: grid;
  gap: 8px;
}

.footer-time {
  justify-items: center;
}

.footer-top {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(250, 250, 250, 0.12);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.08);
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
}

@keyframes footerBreath {
  from {
    opacity: 0.54;
    transform: translate(-50%, -50%) scale(0.96);
  }
  to {
    opacity: 0.94;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes footerMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cursor-point {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 24px;
  height: 24px;
  pointer-events: none;
  background: url("assets/p1.svg") center / contain no-repeat;
  filter: invert(1);
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.cursor-point.is-case-quickview {
  background: var(--black);
  border-radius: 999px;
  filter: none;
  mix-blend-mode: normal;
}

.cursor-point span {
  position: absolute;
  top: 50%;
  left: 34px;
  display: block;
  width: max-content;
  padding: 6px 8px;
  color: var(--white);
  background: var(--black);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  opacity: 0;
  transform: translateY(-50%) translateX(-8px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

body.is-viewing-raw .cursor-point span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.cursor-point.is-case-quickview span {
  left: 50%;
  padding: 0;
  color: var(--white);
  background: transparent;
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.system-intro-env {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  padding: 48px var(--gutter);
  background: #000;
  color: #fafafa;
  isolation: isolate;
}

.intro-progress-marker {
  position: absolute;
  z-index: 4;
  color: rgba(250, 250, 250, 0.68);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.intro-progress-marker {
  bottom: 48px;
  left: var(--gutter);
  margin: 0;
  opacity: 0.42;
  pointer-events: none;
}

.system-intro-env::before,
.system-intro-env::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.system-intro-env::before {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 0.08) 1px, transparent 1px) 0 0 / 25vw 100%,
    linear-gradient(0deg, rgba(250, 250, 250, 0.035) 1px, transparent 1px) 0 0 / 100% 20vh;
}

.system-intro-env::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 0, rgba(250, 250, 250, 0.12) 50%, transparent 100%) 50% 0 / 1px 100% no-repeat,
    linear-gradient(0deg, transparent 0, rgba(250, 250, 250, 0.1) 50%, transparent 100%) 0 50% / 100% 1px no-repeat,
    radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, 0.42) 72%);
  opacity: 0.72;
}

.system-intro-env > * {
  position: relative;
  z-index: 2;
}

.system-core-canvas {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  user-select: none;
}

#intro-query-block,
#intro-verdict-block,
#intro-logo-block {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform, opacity;
}

.query-heading {
  margin: 0;
  color: #fafafa;
  font-family: Inter, sans-serif;
  font-size: clamp(42px, 5.5vw, 92px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.verdict-heading {
  margin: 0;
  color: #fafafa;
  font-family: Inter, sans-serif;
  font-size: clamp(54px, 7.5vw, 130px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

#intro-logo-block.logo-container {
  width: 100%;
}

.logo-mark {
  width: clamp(72px, 7.2vw, 112px);
  height: auto;
  filter: invert(1);
  will-change: transform, opacity, filter;
}

.subtitle-anchor {
  display: flex;
  justify-content: center;
  width: 100%;
}

.subtitle-text {
  min-height: 2.5em;
  margin: 0;
  color: #c9a84a;
  font-family: "IBM Plex Sans Arabic", Inter, sans-serif;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  will-change: opacity;
}

.system-core-canvas .step-hide {
  display: none;
  opacity: 0;
}

#intro-query-block.is-active,
#intro-verdict-block.is-active,
#intro-logo-block.is-active {
  display: grid;
  place-items: center;
}

@media (max-width: 720px) {
  .system-intro-env {
    height: 100svh;
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 30px;
  }

  .intro-progress-marker {
    bottom: 26px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .query-heading {
    font-size: clamp(38px, 13vw, 58px);
  }

  .verdict-heading {
    font-size: clamp(48px, 16vw, 76px);
  }

  #intro-logo-block.logo-container {
    width: 100%;
  }

  .logo-mark {
    width: clamp(62px, 18vw, 86px);
  }

  .eval-meta {
    align-items: flex-start;
    font-size: 10px;
  }
}


/* =========================================================
   ONE VISION / INFINITE IMPACTS — compression -> detonation
   ========================================================= */
.vision-impact-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--theme-dark-bg);
  color: var(--theme-dark-fg);
  isolation: isolate;
}

.vision-impact-inner {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.vision-system-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.09) 1px, transparent 1px) 0 0 / 25vw 100%,
    linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px) 0 0 / 100% 25vh;
}

.vision-system-grid::before,
.vision-system-grid::after {
  position: absolute;
  content: "";
  background: rgba(255,255,255,0.16);
}

.vision-system-grid::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.vision-system-grid::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.vision-system-meta {
  position: absolute;
  top: clamp(28px, 3vw, 46px);
  z-index: 8;
  color: rgba(247,247,242,0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.vision-system-meta-left { left: var(--gutter); }
.vision-system-meta-right { right: var(--gutter); text-align: right; }

.vision-collapse-stack,
.vision-output-field,
.vision-network,
.vision-service-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vision-collapse-stack { z-index: 3; }

.vision-collapse-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(170px, 23vw, 390px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.26);
  background: #111;
  box-shadow: 0 28px 90px rgba(0,0,0,0.4);
  will-change: transform, opacity;
}

.vision-collapse-card-tall { width: clamp(120px, 16vw, 260px); aspect-ratio: 3 / 4; }
.vision-collapse-card-wide { width: clamp(220px, 28vw, 470px); aspect-ratio: 16 / 9; }
.vision-collapse-card-small { width: clamp(110px, 13vw, 210px); aspect-ratio: 1 / 1; }

.vision-collapse-card img,
.vision-output-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-singular {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.vision-singular-index {
  position: absolute;
  top: calc(50% - min(12vw, 140px));
  left: 50%;
  color: rgba(247,247,242,0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.vision-one {
  margin: 0;
  color: #f7f7f2;
  font-size: clamp(150px, 31vw, 520px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.105em;
  text-transform: uppercase;
  transform-origin: center center;
  will-change: transform, opacity;
}

.vision-statement {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vh var(--gutter) 3vh;
  pointer-events: none;
}

.vision-statement-line {
  display: block;
  width: max-content;
  max-width: 100%;
  color: #f7f7f2;
  font-size: clamp(58px, 11.1vw, 185px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  will-change: transform, opacity;
}

.vision-statement-line-a { margin-left: 9vw; }
.vision-statement-line-b { margin-left: 24vw; }
.vision-statement-line-c { margin-left: 4vw; }

.vision-output-field { z-index: 7; }

.vision-output-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247,247,242,0.32);
  background: #101010;
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  will-change: transform, opacity;
}

.vision-output-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,0.58));
}

.vision-output-card figcaption {
  position: absolute;
  left: 9px;
  bottom: 8px;
  z-index: 2;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.vision-output-a { top: 13%; left: 6%; width: min(20vw, 310px); aspect-ratio: 4 / 3; }
.vision-output-b { top: 8%; right: 8%; width: min(15vw, 235px); aspect-ratio: 3 / 4; }
.vision-output-c { top: 48%; left: 2.5%; width: min(16vw, 250px); aspect-ratio: 1 / 1; }
.vision-output-d { right: 3%; bottom: 8%; width: min(21vw, 335px); aspect-ratio: 16 / 10; }
.vision-output-e { left: 25%; bottom: 5%; width: min(14vw, 220px); aspect-ratio: 4 / 5; }
.vision-output-f { top: 33%; right: 21%; width: min(12vw, 190px); aspect-ratio: 9 / 12; }

.vision-network { z-index: 2; }

.vision-network-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 42vh;
  background: linear-gradient(to bottom, rgba(247,247,242,0.5), rgba(247,247,242,0));
  transform-origin: top center;
}

.line-1 { transform: rotate(-64deg); }
.line-2 { transform: rotate(-35deg); }
.line-3 { transform: rotate(-8deg); }
.line-4 { transform: rotate(30deg); }
.line-5 { transform: rotate(61deg); }
.line-6 { transform: rotate(104deg); }

.vision-service-labels { z-index: 9; }

.service-label {
  position: absolute;
  color: rgba(247,247,242,0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  will-change: transform, opacity;
}

.service-content { top: 11%; left: 27%; }
.service-social { top: 24%; right: 28%; }
.service-campaign { top: 52%; left: 21%; }
.service-live { right: 26%; bottom: 24%; }
.service-brand { left: 43%; bottom: 10%; }
.service-film { top: 38%; right: 8%; }

.vision-arabic-echo {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(36px, 5vw, 70px);
  z-index: 10;
  max-width: 420px;
  margin: 0;
  color: rgba(247,247,242,0.55);
  font-size: clamp(17px, 1.9vw, 30px);
  font-weight: 300;
  line-height: 1.35;
  text-align: right;
  pointer-events: none;
}

.vision-multiplier {
  position: absolute;
  bottom: clamp(26px, 3vw, 44px);
  left: var(--gutter);
  z-index: 10;
  display: grid;
  place-items: center;
  width: clamp(58px, 5vw, 78px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(247,247,242,0.28);
  border-radius: 999px;
  color: #f7f7f2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vision-scroll-note {
  position: absolute;
  bottom: clamp(34px, 3.5vw, 52px);
  left: 50%;
  z-index: 10;
  color: rgba(247,247,242,0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 720px) {
  .vision-system-meta {
    top: 20px;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .vision-system-meta-right { display: none; }

  .vision-collapse-card { width: 44vw; }
  .vision-collapse-card-tall { width: 30vw; }
  .vision-collapse-card-wide { width: 52vw; }
  .vision-collapse-card-small { width: 27vw; }

  .vision-singular-index { top: calc(50% - 24vw); }

  .vision-one {
    font-size: clamp(130px, 49vw, 220px);
    letter-spacing: -0.095em;
  }

  .vision-statement {
    justify-content: center;
    padding: 11vh var(--gutter) 12vh;
  }

  .vision-statement-line {
    font-size: clamp(54px, 18vw, 90px);
    line-height: 0.82;
  }

  .vision-statement-line-a { margin-left: 0; }
  .vision-statement-line-b { margin-left: 8vw; }
  .vision-statement-line-c { margin-left: 0; }

  .vision-output-a { top: 13%; left: -7%; width: 42vw; }
  .vision-output-b { top: 7%; right: -5%; width: 31vw; }
  .vision-output-c { top: 50%; left: -8%; width: 34vw; }
  .vision-output-d { right: -10%; bottom: 12%; width: 47vw; }
  .vision-output-e { left: 20%; bottom: 4%; width: 30vw; }
  .vision-output-f { top: 36%; right: 4%; width: 24vw; }

  .service-label { font-size: 7px; }
  .service-content { top: 9%; left: 39%; }
  .service-social { top: 27%; right: 4%; }
  .service-campaign { top: 59%; left: 3%; }
  .service-live { right: 16%; bottom: 27%; }
  .service-brand { left: 45%; bottom: 8%; }
  .service-film { top: 38%; right: 4%; }

  .vision-network-line { height: 36vh; }

  .vision-arabic-echo {
    right: var(--gutter);
    bottom: 28px;
    max-width: 210px;
    font-size: 16px;
  }

  .vision-multiplier {
    bottom: 20px;
    left: var(--gutter);
    width: 48px;
    font-size: 9px;
  }

  .vision-scroll-note { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .vision-collapse-stack,
  .vision-network,
  .vision-scroll-note { display: none; }

  .vision-singular { opacity: 0.18; }
  .vision-statement-line,
  .vision-output-card,
  .service-label,
  .vision-arabic-echo { opacity: 1 !important; transform: none !important; }
}

/* Architectural archive refactor */
.editorial-nav {
  top: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(90vw, 980px);
  min-height: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.editorial-nav,
.nav-bar,
.menu-drawer {
  box-sizing: border-box;
}

.editorial-nav.inverted-nav {
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 12px 24px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(250, 250, 250, 0.12);
  backdrop-filter: blur(18px);
}

.editorial-nav.inverted-nav .nav-bar,
.editorial-nav.inverted-nav .menu-drawer {
  color: var(--black);
  background: rgba(240, 238, 231, 0.92);
  border-color: rgba(0, 0, 0, 0.14);
}

.editorial-nav.inverted-nav .nav-bar {
  height: 48px;
  min-height: 48px;
  padding: 12px 24px;
}

.nav-left {
  width: 24px;
  height: 24px;
  border-radius: 0;
}

.nav-left img {
  width: 24px;
}

.nav-center {
  display: flex;
  align-items: center;
  height: 18px;
  overflow: hidden;
}

.active-dot {
  display: block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 999px;
  background: currentColor;
  animation: statusPulse 1.6s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.72);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-trigger {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: opacity 360ms var(--ease-out);
}

.menu-trigger:hover {
  opacity: 0.6;
}

.menu-drawer {
  display: grid;
  grid-template-columns: repeat(5, minmax(max-content, 1fr));
  align-items: center;
  width: 100%;
  height: 0;
  overflow: hidden;
  column-gap: clamp(18px, 3vw, 54px);
  padding: 0 28px;
  color: rgba(250, 250, 250, 0.7);
  background: rgba(10, 10, 10, 0.88);
  border-right: 1px solid rgba(250, 250, 250, 0.12);
  border-bottom: 1px solid rgba(250, 250, 250, 0.12);
  border-left: 1px solid rgba(250, 250, 250, 0.12);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.menu-drawer a {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: color 360ms var(--ease-out), opacity 360ms var(--ease-out);
}

.menu-drawer a:hover {
  color: inherit;
  opacity: 1;
}

.hero-arrival {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  opacity: 0.62;
  transform: scale(1.2);
  will-change: transform, opacity;
}

.hero-ambient img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 0.09) 1px, transparent 1px) 0 0 / 25vw 100%,
    radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, 0.72) 72%);
}

.hero-arrival-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  width: min(1480px, calc(100vw - (var(--gutter) * 2)));
  text-align: center;
}

.hero-arrival-copy h1,
.hero-subtitle-mask {
  overflow: hidden;
  margin: 0;
}

.hero-arrival-copy h1 span,
.hero-subtitle-mask span {
  display: block;
  transform: none;
  will-change: transform;
}

.hero-arrival-copy h1 {
  font-size: clamp(54px, 12vw, 190px);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-subtitle-mask {
  justify-self: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-arrival .hero-arabic {
  max-width: none;
  margin: 0;
  color: rgba(250, 250, 250, 0.72);
  font-size: clamp(28px, 4vw, 66px);
  font-weight: 300;
}

#exhibition .case-parallax-stack {
  display: grid;
  gap: clamp(56px, 8vw, 140px);
  max-width: none;
}

#exhibition .case-parallax-block {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  cursor: none;
}

#exhibition .case-container {
  position: relative;
  overflow: hidden;
  background: #eaeaea;
  will-change: transform;
}

#exhibition .case-parallax-img {
  position: absolute;
  top: -15%;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

#exhibition .case-title {
  margin: 0;
  color: var(--black);
  font-size: clamp(42px, 8vw, 142px);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
  letter-spacing: 0;
}

#exhibition .case-meta {
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

#exhibition .case-meta p {
  margin: 0;
}

#exhibition .case-monolith {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 24px;
}

#exhibition .case-monolith .case-container {
  width: min(70vw, 1180px);
  height: 76vh;
}

#exhibition .case-monolith .case-title {
  text-align: center;
}

#exhibition .case-monolith .case-meta {
  justify-self: start;
  margin-left: 15vw;
}

#exhibition .case-offset {
  display: grid;
  grid-template-columns: 42vw minmax(0, 1fr);
  gap: clamp(36px, 6vw, 112px);
  align-items: center;
}

#exhibition .case-offset .case-container {
  width: 42vw;
  height: 72vh;
}

#exhibition .case-offset .case-copy {
  display: grid;
  gap: 28px;
  padding-right: var(--gutter);
}

#exhibition .case-offset .case-title {
  font-size: clamp(56px, 10vw, 170px);
}

#exhibition .case-void {
  min-height: 98vh;
  background: var(--black);
  color: var(--white);
}

#exhibition .case-void::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 33%;
  z-index: 0;
  width: 1px;
  content: "";
  background: rgba(250, 250, 250, 0.24);
}

#exhibition .case-void .case-container {
  position: absolute;
  top: 11vh;
  right: var(--gutter);
  width: min(56vw, 920px);
  height: 74vh;
}

#exhibition .case-void .case-title,
#exhibition .case-void .case-meta {
  position: absolute;
  left: var(--gutter);
  color: var(--white);
}

#exhibition .case-void .case-title {
  bottom: 88px;
  max-width: 320px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1;
}

#exhibition .case-void .case-meta {
  bottom: 36px;
}

#exhibition .case-takeover {
  display: grid;
  place-items: center;
  min-height: 100vh;
}

#exhibition .case-takeover .case-container {
  width: 100vw;
  height: 100vh;
}

#exhibition .case-takeover .case-title {
  position: absolute;
  z-index: 20;
  width: min(1180px, 88vw);
  color: var(--white);
  text-align: center;
  mix-blend-mode: difference;
}

#exhibition .case-takeover .case-meta {
  position: absolute;
  bottom: 42px;
  left: var(--gutter);
  z-index: 20;
  color: var(--white);
  mix-blend-mode: difference;
}

.service-row::before {
  top: 0;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 1px, transparent 1px) 0 0 / 80px 100%,
    linear-gradient(0deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px) 0 0 / 100% 28px;
}

.service-row::after {
  top: 18px;
  right: 24px;
  left: auto;
  width: 130px;
  height: auto;
  content: "X 26.2794 / Y 50.2083";
  background: transparent;
  color: var(--ink-54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: translateY(8px);
}

.service-row:hover::before {
  opacity: 0.16;
  transform: scaleX(1);
}

.service-row:hover::after {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal] {
  opacity: 1;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-mask span {
  display: inline-block;
  will-change: transform;
}

@media (max-width: 1024px) {
  body::before {
    background-size: 50vw 100%;
  }

  .editorial-nav {
    width: calc(100vw - 24px);
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .studio-layout,
  .progression-layout {
    grid-template-columns: 1fr;
  }

  .progression-heading,
  .progress-tree {
    position: relative;
  }

  .backstage-toggle {
    grid-column: 1;
    justify-self: start;
  }

  .progress-tree {
    height: 220px;
  }

  .work-hero,
  .work-small,
  .work-tall,
  .work-wide,
  .work-narrow,
  .index-mass,
  .index-slip,
  .index-tall,
  .index-low {
    grid-column: span 6;
    margin-top: 0;
  }

  .culture-text,
  .image-a,
  .image-b,
  .image-c {
    grid-column: span 12;
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --section: 92px;
  }

  body {
    cursor: auto;
  }

  body::before,
  .cursor-point {
    display: none;
  }

  a,
  button {
    cursor: pointer;
  }

  .editorial-nav {
    top: 12px;
    width: calc(100vw - 18px);
  }

  .nav-bar,
  .editorial-nav.inverted-nav .nav-bar {
    height: 46px;
    min-height: 46px;
    padding: 11px 14px;
  }

  .menu-drawer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0 12px;
  }

  .menu-drawer a {
    min-height: 48px;
    justify-content: flex-start;
    font-size: 9px;
  }

  .menu-trigger,
  .active-status-label {
    font-size: 9px;
  }

  .hero-arabic {
    max-width: 100%;
    font-size: 23px;
    line-height: 1.2;
  }

  .section-label,
  .copy-columns,
  .service-row,
  .phase-copy {
    grid-template-columns: 1fr;
  }

  .section-label {
    gap: 10px;
    margin-bottom: 56px;
  }

  .studio-copy h2,
  .section-heading h2,
  .progression-heading h2,
  .culture-text h2 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .exhibition-grid,
  .index-grid {
    display: block;
  }

  .visual-slideshow {
    min-height: 72vh;
  }

  .visual-depth-gallery {
    min-height: 76vh;
  }

  .visual-depth-overlay h2 {
    max-width: 420px;
    font-size: clamp(38px, 11vw, 70px);
  }

  .backstage-toggle {
    margin-top: 18px;
    font-size: clamp(18px, 7vw, 30px);
  }

  .visual-depth-overlay p {
    max-width: 320px;
    margin: 0 auto;
    font-size: 8px;
    line-height: 1.5;
  }

  .visual-depth-fallback {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    gap: 12px;
    padding: 20px;
  }

  .portfolio-gallery {
    min-height: auto;
    padding: 52px 0 34px;
  }

  .portfolio-gallery-header {
    padding: 0 18px;
  }

  .portfolio-gallery-header h2 {
    font-size: clamp(44px, 13vw, 72px);
    letter-spacing: -0.055em;
  }

  .portfolio-card-stage {
    display: none;
  }

  .portfolio-mobile-marquee {
    display: flex;
    gap: 16px;
    width: 100%;
    margin-top: 48px;
    overflow: hidden;
    padding: 12px 0 20px;
  }

  .portfolio-marquee-track {
    display: flex;
    flex: 0 0 auto;
    gap: 16px;
    animation: portfolioMarquee 34s linear infinite;
  }

  .portfolio-mobile-marquee:hover .portfolio-marquee-track {
    animation-play-state: paused;
  }

  .portfolio-mobile-marquee figure {
    flex: 0 0 260px;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ink-06);
    box-shadow: 18px 0 26px rgba(0, 0, 0, 0.16);
  }

  .slide-text {
    width: calc(100vw - 44px);
    font-size: clamp(38px, 13vw, 74px);
    line-height: 0.9;
    letter-spacing: -0.055em;
  }

  .visual-nav {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 20px;
    transform: none;
  }

  .visual-counter {
    right: auto;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
  }

  .work-item,
  .index-item {
    margin: 0 0 52px;
  }

  .work-item figure,
  .index-item {
    aspect-ratio: 1 / 1.15;
  }

  .split-transition {
    min-height: 100vh;
  }

  .split-panel {
    width: 78vw;
  }

  .service-row {
    min-height: auto;
    gap: 16px;
    padding: 34px 0;
  }

  .service-row strong {
    font-size: clamp(34px, 13vw, 66px);
  }

  .phase-copy h3,
  .phase-copy p {
    grid-column: auto;
  }

  .phase {
    min-height: 340px;
  }

  .site-footer {
    padding-top: 162px;
    clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%);
  }

  .footer-marquee {
    top: 56px;
  }

  .footer-main h2 {
    font-size: clamp(54px, 17vw, 86px);
    letter-spacing: -0.065em;
  }

  .footer-pill {
    min-height: 52px;
    width: 100%;
    max-width: 310px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .footer-time {
    justify-items: start;
  }

  .footer-top {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   TRUE HERO — intro logo hands off into DESIGNED BY US
   ========================================================= */
.visual-index.true-hero {
  min-height: 100svh;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.visual-index.true-hero::before,
.visual-index.true-hero > .true-hero-label,
.visual-index.true-hero > .portfolio-gallery,
.visual-index.true-hero > .visual-slideshow {
  display: none !important;
}

.visual-index.true-hero > .visual-depth-gallery {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  height: 100svh;
  margin: 0;
}

.visual-index.true-hero .visual-depth-overlay {
  justify-content: center;
  padding: clamp(24px, 4vw, 64px);
}

.visual-index.true-hero .visual-depth-overlay h2 {
  width: min(1120px, 92vw);
  max-width: none;
  font-size: clamp(64px, 10.5vw, 176px);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.visual-index.true-hero .visual-depth-overlay p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(250, 250, 250, 0.68);
  mix-blend-mode: normal;
}

.visual-index.true-hero .visual-depth-overlay p span:last-child {
  text-align: right;
}

@media (max-width: 720px) {
  .visual-index.true-hero .visual-depth-overlay h2 {
    width: 94vw;
    font-size: clamp(58px, 20vw, 96px);
    line-height: 0.84;
  }

  .visual-index.true-hero .visual-depth-overlay p {
    align-items: flex-end;
    font-size: 8px;
    letter-spacing: 0.13em;
  }
}


/* One Vision outward release / clean theme handoff */
.vision-output-card,
.vision-statement-line,
.service-label,
.vision-network-line,
.vision-system-meta,
.vision-arabic-echo,
.vision-multiplier {
  will-change: transform, opacity;
}

.vision-impact-section,
.vision-impact-inner {
  background-color: var(--theme-dark-bg);
}


/* =========================================================
   03 / FIELD × FEED — marketing meets events
   ========================================================= */
.field-feed-section {
  --ff-paper: var(--theme-light-bg);
  position: relative;
  min-height: 520svh;
  padding: 0;
  overflow: clip;
  background: var(--ff-paper);
  color: var(--black);
  isolation: isolate;
}

.field-feed-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--ff-paper);
}

.field-feed-topline {
  position: absolute;
  z-index: 40;
  top: clamp(88px, 10.5vh, 120px);
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field-feed-intro {
  position: absolute;
  z-index: 24;
  inset: 0;
  padding: clamp(158px, 18vh, 210px) var(--gutter) clamp(62px, 8vh, 96px);
  pointer-events: none;
}

.field-feed-statement-wrap {
  position: relative;
  width: 100%;
  height: clamp(220px, 23vw, 390px);
}

.field-feed-statement {
  position: absolute;
  top: 0;
  left: 0;
  width: min(1280px, 86vw);
  margin: 0;
  font-size: clamp(64px, 8.15vw, 142px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  transform-origin: left top;
  will-change: transform, opacity;
}

.field-feed-statement > span {
  display: block;
  white-space: nowrap;
}

.ff-statement-secondary {
  opacity: 0;
  transform: translateY(110%);
}

.field-feed-intro-copy {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(64px, 9vh, 112px);
  width: min(420px, 34vw);
  color: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transform: translateY(22px);
}

.field-feed-intro-copy p {
  margin: 0;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.55;
}

.field-feed-intro-copy strong {
  display: block;
  margin-top: 18px;
  color: #000;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field-feed-stage {
  --ff-base-split: 50%;
  --ff-pointer-shift: 0%;
  --ff-field-back-x: 0px;
  --ff-field-front-x: 0px;
  --ff-feed-back-x: 0px;
  --ff-feed-front-x: 0px;
  position: absolute;
  z-index: 14;
  top: clamp(104px, 12.5vh, 142px);
  right: var(--gutter);
  bottom: clamp(54px, 7vh, 84px);
  left: var(--gutter);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: #0a0a0a;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.11);
  opacity: 0;
  clip-path: inset(7% 7% 7% 7% round 2px);
  transform: translateY(26px) scale(0.985);
  will-change: opacity, transform, clip-path;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.ff-pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ff-field {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.42)),
    #0b0b0b;
  color: #fafafa;
}

.ff-feed {
  z-index: 2;
  background: #e7e3d9;
  color: #0a0a0a;
  clip-path: inset(0 0 0 calc(var(--ff-base-split) + var(--ff-pointer-shift)));
  will-change: clip-path;
}

.ff-pane::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
}

.ff-field::before {
  background:
    linear-gradient(rgba(250,250,250,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,250,250,0.08) 1px, transparent 1px);
  background-size: 25% 100%, 25% 100%;
  opacity: 0.28;
}

.ff-feed::before {
  background:
    linear-gradient(rgba(0,0,0,0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.065) 1px, transparent 1px);
  background-size: 25% 100%, 25% 100%;
  opacity: 0.32;
}

.ff-media-cluster {
  position: absolute;
  z-index: auto;
  inset: 0;
}

.ff-media {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid currentColor;
  background: #111;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  will-change: transform, opacity;
}

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

/* Media and typography share one depth stack: some title slices pass in front
   of the main image while smaller cards remain closer to the viewer. */
.ff-media-field-main,
.ff-media-feed-main { z-index: 3; }
.ff-media-field-small,
.ff-media-feed-small { z-index: 6; }
.ff-media-field-detail,
.ff-media-feed-detail { z-index: 8; }

.ff-media-field-main {
  top: 10%;
  left: 5%;
  width: 34%;
  height: 64%;
}

.ff-media-field-small {
  right: 52%;
  bottom: 8%;
  width: 18%;
  height: 31%;
}

.ff-media-field-detail {
  top: 7%;
  left: 32%;
  width: 14%;
  height: 23%;
}

.ff-media-feed-main {
  top: 9%;
  right: 5%;
  width: 29%;
  height: 65%;
}

.ff-media-feed-small {
  right: 31%;
  bottom: 8%;
  width: 18%;
  height: 31%;
}

.ff-media-feed-detail {
  top: 7%;
  right: 31%;
  width: 16%;
  height: 24%;
  background: #f2efe7;
}

.ff-feed .ff-media {
  border-color: rgba(0,0,0,0.28);
}

.ff-field .ff-media {
  border-color: rgba(250,250,250,0.3);
}

.ff-world-copy {
  position: absolute;
  z-index: 10;
  bottom: clamp(24px, 3.6vh, 46px);
  width: min(45%, 700px);
  pointer-events: none;
}

.ff-world-copy-field { left: clamp(22px, 3vw, 52px); }
.ff-world-copy-feed { right: clamp(22px, 3vw, 52px); text-align: right; }

.ff-world-index {
  display: block;
  margin-bottom: 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.68;
}

.ff-depth-title {
  position: absolute;
  bottom: clamp(56px, 7vh, 86px);
  width: min(49%, 760px);
  margin: 0;
  font-size: clamp(84px, 13vw, 224px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.ff-depth-title-field { left: clamp(22px, 3vw, 52px); }
.ff-depth-title-feed { right: clamp(22px, 3vw, 52px); text-align: right; }
.ff-field .ff-depth-title { color: #fafafa; }
.ff-feed .ff-depth-title { color: #0a0a0a; }

.ff-depth-title-back {
  z-index: 2;
  opacity: 0.96;
  transform: translate3d(var(--ff-field-back-x), 0, -22px) scale(0.995);
}
.ff-depth-title-feed.ff-depth-title-back {
  transform: translate3d(var(--ff-feed-back-x), 0, -22px) scale(0.995);
}

.ff-depth-title-front {
  z-index: 5;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.12));
  transform: translate3d(var(--ff-field-front-x), -2px, 26px) scale(1.005);
}
.ff-depth-title-feed.ff-depth-title-front {
  transform: translate3d(var(--ff-feed-front-x), -2px, 26px) scale(1.005);
}

/* Only selected pieces of the duplicate title sit in front of the imagery.
   The full word remains behind, which makes FIELD / FEED weave through the cards. */
.ff-depth-slice-field-a { clip-path: inset(0 77% 0 0); }
.ff-depth-slice-field-b { clip-path: inset(0 18% 0 54%); }
.ff-depth-slice-feed-a { clip-path: inset(0 62% 0 14%); }
.ff-depth-slice-feed-b { clip-path: inset(0 0 0 76%); }

.ff-world-copy p {
  max-width: 480px;
  margin: 12px 0 0;
  font-size: clamp(10px, 0.78vw, 13px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.ff-world-copy-feed p { margin-left: auto; }

.ff-seam {
  position: absolute;
  z-index: 18;
  top: 0;
  bottom: 0;
  left: calc(var(--ff-base-split) + var(--ff-pointer-shift));
  width: 0;
  pointer-events: none;
  will-change: left;
}

.ff-seam-band {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  border-left: 1px solid rgba(250,250,250,0.72);
  border-right: 1px solid rgba(0,0,0,0.42);
  background: rgba(240,238,231,0.06);
  backdrop-filter: blur(3px) contrast(1.08);
  transform: translateX(-50%);
}

.ff-seam-marker {
  position: absolute;
  top: 50%;
  left: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0,0,0,0.22);
  border-radius: 50%;
  background: var(--ff-paper);
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
  transform: translate(-50%, -50%);
}

.ff-seam-marker img {
  width: 25px;
  height: 25px;
}

.ff-center-lock {
  position: absolute;
  z-index: 22;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  width: min(560px, 68vw);
  padding: 22px 28px;
  border: 1px solid rgba(0,0,0,0.2);
  background: rgba(240,238,231,0.94);
  color: #000;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0,0,0,0.14);
  opacity: 0;
  translate: -50% -50%;
  transform: translateY(18px) scale(0.96);
  backdrop-filter: blur(18px);
}

.ff-center-lock span,
.ff-center-lock small {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ff-center-lock strong {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4.2vw, 66px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.ff-center-lock small { opacity: 0.54; }

.ff-stage-corners {
  position: absolute;
  z-index: 20;
  top: 14px;
  right: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  color: #fafafa;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  pointer-events: none;
}

.field-feed-capabilities {
  position: absolute;
  z-index: 32;
  right: var(--gutter);
  bottom: clamp(26px, 3.5vh, 42px);
  left: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  pointer-events: none;
  opacity: 0;
}

.ff-capability {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ff-capability-feed { justify-content: flex-end; text-align: right; }

.ff-capability span {
  position: relative;
}

.ff-capability span:not(:last-child)::after {
  position: absolute;
  right: -11px;
  content: "/";
  opacity: 0.35;
}

.field-feed-footnote {
  position: absolute;
  z-index: 34;
  left: 50%;
  bottom: clamp(20px, 2.8vh, 34px);
  margin: 0;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .field-feed-section { min-height: 470svh; }

  .field-feed-intro {
    padding-top: clamp(150px, 17vh, 190px);
  }

  .field-feed-statement-wrap {
    height: clamp(210px, 29vw, 330px);
  }

  .field-feed-statement {
    width: min(900px, 90vw);
    font-size: clamp(58px, 10.6vw, 108px);
  }

  .field-feed-intro-copy {
    width: min(390px, 44vw);
  }

  .ff-media-field-detail,
  .ff-media-feed-detail { display: none; }

  .ff-media-field-main { width: 40%; }
  .ff-media-field-small { right: 51%; width: 21%; }
  .ff-media-feed-main { width: 35%; }
  .ff-media-feed-small { right: 35%; width: 22%; }

  .ff-depth-title { font-size: clamp(82px, 15vw, 150px); }
}

@media (max-width: 720px) {
  .field-feed-section { min-height: 430svh; }

  .field-feed-topline {
    top: 72px;
    left: 18px;
    right: 18px;
    font-size: 7px;
  }

  .field-feed-intro {
    padding: 118px 18px 58px;
  }

  .field-feed-statement-wrap {
    height: clamp(170px, 47vw, 250px);
  }

  .field-feed-statement {
    width: calc(100vw - 36px);
    font-size: clamp(50px, 15.2vw, 76px);
    line-height: 0.84;
    letter-spacing: -0.06em;
  }

  .field-feed-intro-copy {
    right: 18px;
    bottom: 72px;
    width: min(310px, calc(100vw - 72px));
  }

  .field-feed-intro-copy p {
    font-size: 13px;
    line-height: 1.5;
  }

  .field-feed-intro-copy strong {
    margin-top: 14px;
    font-size: 7px;
  }

  .field-feed-stage {
    top: 88px;
    right: 12px;
    bottom: 66px;
    left: 12px;
  }

  .ff-media-field-main {
    top: 10%;
    left: 4%;
    width: 43%;
    height: 55%;
  }

  .ff-media-field-small {
    right: 51%;
    bottom: 13%;
    width: 26%;
    height: 27%;
  }

  .ff-media-feed-main {
    top: 10%;
    right: 4%;
    width: 42%;
    height: 55%;
  }

  .ff-media-feed-small {
    right: 27%;
    bottom: 13%;
    width: 26%;
    height: 27%;
  }

  .ff-world-copy {
    bottom: 26px;
    width: 46%;
  }

  .ff-world-copy-field { left: 14px; }
  .ff-world-copy-feed { right: 14px; }

  .ff-depth-title {
    bottom: 66px;
    width: 48%;
    font-size: clamp(62px, 22vw, 96px);
    line-height: 0.75;
  }

  .ff-depth-title-field { left: 14px; }
  .ff-depth-title-feed { right: 14px; }

  .ff-world-copy p {
    display: none;
  }

  .ff-world-index {
    font-size: 7px;
  }

  .ff-seam-marker {
    width: 42px;
    height: 42px;
  }

  .ff-seam-marker img {
    width: 21px;
    height: 21px;
  }

  .ff-center-lock {
    width: min(310px, 82vw);
    padding: 18px 16px;
  }

  .ff-center-lock strong {
    font-size: clamp(26px, 10vw, 42px);
  }

  .field-feed-capabilities {
    right: 18px;
    bottom: 24px;
    left: 18px;
    gap: 18px;
  }

  .ff-capability {
    gap: 4px 12px;
    font-size: 7px;
  }

  .ff-capability span:not(:last-child)::after { right: -8px; }
  .field-feed-footnote { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .field-feed-section { min-height: 100svh; }
  .field-feed-intro { display: none; }
  .field-feed-stage {
    opacity: 1 !important;
    clip-path: inset(0) !important;
    transform: none !important;
  }
  .field-feed-capabilities { opacity: 1 !important; }
  .ff-depth-title { opacity: 1 !important; transform: none !important; }
}


/* ================================================================
   V7 / FOCUSED DEPTH + SELECTED WORKS REFINEMENT + SERVICE INDEX
   ================================================================ */

/* FIELD / FEED: neutral by default. Only the focused word comes forward. */
.field-feed-stage {
  --ff-field-depth: 0px;
  --ff-feed-depth: 0px;
  --ff-field-title-scale: 1;
  --ff-feed-title-scale: 1;
  --ff-field-front-opacity: 0;
  --ff-feed-front-opacity: 0;
}

.ff-depth-title-field.ff-depth-title-back {
  transform: translate3d(var(--ff-field-back-x), 0, var(--ff-field-depth)) scale(var(--ff-field-title-scale));
}

.ff-depth-title-feed.ff-depth-title-back {
  transform: translate3d(var(--ff-feed-back-x), 0, var(--ff-feed-depth)) scale(var(--ff-feed-title-scale));
}

.ff-depth-title-field.ff-depth-title-front {
  opacity: var(--ff-field-front-opacity);
  transform: translate3d(var(--ff-field-front-x), -2px, calc(var(--ff-field-depth) + 34px)) scale(calc(var(--ff-field-title-scale) + 0.008));
}

.ff-depth-title-feed.ff-depth-title-front {
  opacity: var(--ff-feed-front-opacity);
  transform: translate3d(var(--ff-feed-front-x), -2px, calc(var(--ff-feed-depth) + 34px)) scale(calc(var(--ff-feed-title-scale) + 0.008));
}

/* Selected Works: keep the quiet-room composition, make focus deliberate. */
#exhibition .section-heading {
  max-width: min(920px, 78vw);
  margin-bottom: clamp(74px, 11vw, 174px);
}

#exhibition .case-parallax-stack {
  gap: clamp(92px, 12vw, 210px);
}

#exhibition .case-parallax-block {
  border-bottom-color: rgba(10, 10, 10, 0.07);
}

#exhibition .case-container {
  box-shadow: 0 16px 36px rgba(0,0,0,0.055);
  transform: translateZ(0) scale(0.986);
  transform-origin: center center;
  transition: transform 900ms cubic-bezier(.16,1,.3,1), box-shadow 900ms cubic-bezier(.16,1,.3,1), filter 700ms ease;
}

#exhibition .case-title,
#exhibition .case-meta {
  opacity: 0.46;
  transform: translateY(7px);
  transition: opacity 700ms cubic-bezier(.16,1,.3,1), transform 700ms cubic-bezier(.16,1,.3,1);
}

#exhibition .case-parallax-block.is-case-focused .case-container,
#exhibition .case-parallax-block:hover .case-container,
#exhibition .case-parallax-block:focus-within .case-container {
  transform: translateZ(0) scale(1);
  box-shadow: 0 30px 78px rgba(0,0,0,0.12);
}

#exhibition .case-parallax-block.is-case-focused .case-title,
#exhibition .case-parallax-block.is-case-focused .case-meta,
#exhibition .case-parallax-block:hover .case-title,
#exhibition .case-parallax-block:hover .case-meta {
  opacity: 1;
  transform: translateY(0);
}

#exhibition .case-void .case-title,
#exhibition .case-void .case-meta,
#exhibition .case-takeover .case-title,
#exhibition .case-takeover .case-meta {
  opacity: 0.58;
}

#exhibition .case-void.is-case-focused .case-title,
#exhibition .case-void.is-case-focused .case-meta,
#exhibition .case-takeover.is-case-focused .case-title,
#exhibition .case-takeover.is-case-focused .case-meta {
  opacity: 1;
}

/* Service Index */
.services-index-section {
  --service-line: rgba(250,250,250,0.16);
  --service-muted: rgba(250,250,250,0.4);
  --service-soft: rgba(250,250,250,0.68);
  overflow: visible;
  background: #090909 !important;
  color: #fafafa !important;
}

.services-index-section::before {
  background: #fafafa;
  opacity: 0.16;
}

.services-index-section .section-label {
  color: #fafafa;
}

.services-index-header {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
  gap: clamp(32px, 6vw, 100px);
  align-items: end;
  padding-bottom: clamp(72px, 9vw, 132px);
}

.services-index-header h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 11vw, 176px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.services-index-header-meta {
  display: grid;
  gap: 22px;
  align-self: end;
  padding-bottom: 8px;
}

.services-index-header-meta span,
.service-group-marker,
.service-index-number,
.service-index-category,
.services-preview-topline,
.services-preview-tags,
.services-index-outro span {
  font-size: 9px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.services-index-header-meta span {
  color: #fafafa;
}

.services-index-header-meta p {
  max-width: 420px;
  margin: 0;
  color: var(--service-soft);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.55;
}

.services-index-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.03fr) minmax(420px, .97fr);
  gap: clamp(56px, 7vw, 120px);
  /* The preview column must be as tall as the service list. If it only sizes
     itself to its own content, position: sticky runs out of containing block
     before the later services are reached. */
  align-items: stretch;
}

.services-index-list {
  min-width: 0;
  border-top: 1px solid var(--service-line);
}

.service-group-marker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 15px;
  color: rgba(250,250,250,.58);
  border-bottom: 1px solid var(--service-line);
}

.service-group-marker-events {
  margin-top: clamp(58px, 7vw, 104px);
  border-top: 1px solid rgba(250,250,250,.42);
}

.service-index-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 108px;
  padding: 26px 0;
  border-bottom: 1px solid var(--service-line);
  outline: none;
  cursor: pointer;
  opacity: .4;
  transition: opacity 480ms ease, padding 650ms cubic-bezier(.16,1,.3,1), border-color 480ms ease;
}

.service-index-row::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: #fafafa;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(.16,1,.3,1);
}

.service-index-row.is-active,
.service-index-row:hover,
.service-index-row:focus-visible {
  opacity: 1;
  padding-left: 10px;
}

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

.service-index-number,
.service-index-category {
  color: rgba(250,250,250,.58);
}

.service-index-row h3 {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 48px);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.045em;
}

.service-index-category {
  justify-self: end;
  white-space: nowrap;
}

.service-index-mobile-copy,
.service-index-mobile-media {
  display: none;
}

.services-preview {
  position: relative;
  min-width: 0;
  align-self: stretch;
}

.services-preview-sticky {
  position: sticky;
  top: clamp(82px, 9vh, 112px);
  display: grid;
  grid-template-rows: auto auto auto;
  gap: clamp(12px, 1.5vh, 18px);
  width: 100%;
  min-height: 0;
  padding-top: 1px;
}

.services-preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(250,250,250,.58);
}

.services-preview-media {
  position: relative;
  height: clamp(300px, 47vh, 520px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(250,250,250,.19);
  background: #151515;
}

.services-preview-image {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(.92) contrast(1.02);
  will-change: opacity, transform;
}

.services-preview-image.is-current {
  opacity: 1;
  transform: scale(1);
}

.services-preview-media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.12));
}

.services-preview-number {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: -0.08em;
  color: rgba(250,250,250,.9);
  font-size: clamp(96px, 15vw, 244px);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.08em;
  mix-blend-mode: difference;
  pointer-events: none;
}

.services-preview-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(200px, .9fr);
  gap: 26px 44px;
  align-items: start;
}

.services-preview-copy h3 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(34px, 4.1vw, 72px);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.055em;
}

.services-preview-copy p {
  margin: 0;
  color: rgba(250,250,250,.7);
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.55;
}

.services-preview-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px 14px;
  color: rgba(250,250,250,.54);
}

.services-preview-tags span:not(:last-child)::after {
  margin-left: 14px;
  content: "/";
  opacity: .45;
}

.services-index-outro {
  display: grid;
  gap: 18px;
  margin-top: clamp(110px, 14vw, 220px);
  padding-top: 30px;
  border-top: 1px solid var(--service-line);
}

.services-index-outro span {
  color: rgba(250,250,250,.54);
}

.services-index-outro strong {
  max-width: 1180px;
  font-size: clamp(52px, 9vw, 150px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.065em;
}

@media (min-width: 981px) and (max-height: 760px) {
  .services-preview-sticky {
    top: 72px;
    gap: 10px;
  }

  .services-preview-media {
    height: clamp(250px, 42vh, 360px);
  }

  .services-preview-copy h3 {
    font-size: clamp(30px, 3.3vw, 54px);
  }

  .services-preview-copy p {
    font-size: 13px;
    line-height: 1.42;
  }
}

@media (max-width: 980px) {
  .services-index-header {
    grid-template-columns: 1fr;
  }

  .services-index-header-meta {
    max-width: 560px;
  }

  .services-index-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-preview {
    display: none;
  }

  .service-index-row {
    grid-template-columns: 42px 1fr auto;
    min-height: auto;
    padding: 25px 0;
    opacity: .62;
  }

  .service-index-row.is-active {
    opacity: 1;
  }

  .service-index-row h3 {
    font-size: clamp(28px, 6vw, 50px);
  }

  .service-index-mobile-copy {
    display: block;
    grid-column: 2 / -1;
    max-width: 560px;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    color: rgba(250,250,250,.66);
    font-size: 13px;
    line-height: 1.55;
    opacity: 0;
    transition: max-height 650ms cubic-bezier(.16,1,.3,1), opacity 450ms ease, margin 650ms cubic-bezier(.16,1,.3,1);
  }

  .service-index-mobile-media {
    display: block;
    grid-column: 2 / -1;
    width: 100%;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 760ms cubic-bezier(.16,1,.3,1), opacity 500ms ease, margin 760ms cubic-bezier(.16,1,.3,1);
  }

  .service-index-mobile-media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .service-index-row.is-active .service-index-mobile-copy {
    max-height: 150px;
    margin-top: 2px;
    opacity: 1;
  }

  .service-index-row.is-active .service-index-mobile-media {
    max-height: 56vw;
    margin-top: 16px;
    opacity: 1;
  }

  #exhibition .case-parallax-stack {
    gap: 86px;
  }
}

@media (max-width: 620px) {
  .services-index-header h2 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .service-index-row {
    grid-template-columns: 32px 1fr;
    gap: 10px 14px;
  }

  .service-index-category {
    display: none;
  }

  .service-index-mobile-copy,
  .service-index-mobile-media {
    grid-column: 2;
  }

  .service-group-marker-events {
    margin-top: 44px;
  }

  .services-index-outro {
    margin-top: 88px;
  }

  .services-index-outro strong {
    font-size: clamp(48px, 15vw, 78px);
  }

  #exhibition .section-heading {
    max-width: 100%;
    margin-bottom: 72px;
  }

  #exhibition .case-title,
  #exhibition .case-meta {
    opacity: 1;
    transform: none;
  }

  #exhibition .case-container {
    transform: none;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
  }
}

/* ================================================================
   PROCESS / THE MAKING OF — v9
   ================================================================ */
.progression.process-sequence {
  --process-line: rgba(250, 250, 250, 0.18);
  --process-soft: rgba(250, 250, 250, 0.58);
  --process-faint: rgba(250, 250, 250, 0.08);
  overflow: clip;
  padding-top: clamp(96px, 9vw, 150px);
  padding-bottom: clamp(96px, 10vw, 170px);
  background: var(--theme-dark-bg);
}

.progression.process-sequence::before {
  background: rgba(250,250,250,.16);
}

.process-sequence .process-ink {
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: none;
  margin: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(255,255,255,.065), transparent 26%),
    radial-gradient(circle at 18% 58%, rgba(255,255,255,.035), transparent 32%),
    var(--theme-dark-bg);
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.process-sequence-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  column-gap: clamp(50px, 8vw, 140px);
  align-items: end;
  padding-bottom: clamp(90px, 11vw, 180px);
}

.process-section-label {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: clamp(60px, 7vw, 108px);
  color: rgba(250,250,250,.54);
}

.process-heading-copy {
  grid-column: 1;
  display: grid;
  gap: clamp(20px, 2.6vw, 36px);
  max-width: 920px;
}

.process-eyebrow {
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,250,250,.55);
}

.process-heading-copy h2 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(58px, 8.5vw, 142px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.068em;
  text-transform: uppercase;
}

.process-heading-copy p {
  max-width: 610px;
  margin: 0;
  font-size: clamp(14px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--process-soft);
}

.process-sequence .backstage-toggle {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 420;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  min-height: 46px;
  margin: 0;
  padding: 8px 15px 8px 12px;
  border: 1px solid rgba(250,250,250,.2);
  border-radius: 999px;
  color: rgba(250,250,250,.54);
  background: rgba(10,10,10,.82);
  box-shadow: 0 16px 48px rgba(0,0,0,.32);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(.985);
  font-size: clamp(9px, .76vw, 12px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition:
    opacity .45s var(--ease-out),
    visibility .45s step-end,
    transform .55s var(--ease-out),
    color .35s var(--ease-out),
    border-color .35s var(--ease-out),
    background .35s var(--ease-out),
    box-shadow .35s var(--ease-out);
}

.process-sequence .backstage-toggle.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition:
    opacity .45s var(--ease-out),
    visibility 0s step-start,
    transform .55s var(--ease-out),
    color .35s var(--ease-out),
    border-color .35s var(--ease-out),
    background .35s var(--ease-out),
    box-shadow .35s var(--ease-out);
}

.process-sequence .backstage-toggle:hover {
  color: var(--white);
  border-color: rgba(250,250,250,.48);
  background: rgba(18,18,18,.92);
  box-shadow: 0 20px 58px rgba(0,0,0,.42);
}

.process-sequence .backstage-toggle i {
  color: rgba(250,250,250,.24);
  font-style: normal;
}

.process-sequence .backstage-dock-kicker {
  display: inline-grid;
  place-items: center;
  height: 28px;
  padding: 0 9px;
  margin-right: 1px;
  border-radius: 999px;
  color: rgba(250,250,250,.46);
  background: rgba(250,250,250,.07);
  font-size: 8px;
  letter-spacing: .18em;
}

.process-sequence .mode-label {
  transition: color .45s var(--ease-out), opacity .45s var(--ease-out);
}

.process-sequence .mode-label-output {
  color: var(--white);
  opacity: 1;
}

.process-sequence .mode-label-backstage {
  opacity: .42;
}

.process-sequence.is-backstage-active .backstage-toggle {
  border-color: rgba(250,250,250,.34);
  background: rgba(18,18,18,.94);
}

.process-sequence.is-backstage-active .backstage-dock-kicker {
  color: rgba(250,250,250,.72);
  background: rgba(250,250,250,.11);
}

.process-sequence.is-backstage-active .mode-label-output {
  opacity: .3;
  color: rgba(250,250,250,.55);
}

.process-sequence.is-backstage-active .mode-label-backstage {
  opacity: 1;
  color: var(--white);
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--process-line);
}

.process-axis {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  z-index: 0;
  background: var(--process-line);
  transform: translateX(-.5px);
  pointer-events: none;
}

.process-axis-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: rgba(250,250,250,.92);
  box-shadow: 0 0 20px rgba(255,255,255,.18);
  will-change: height;
}

.process-sequence .phase.process-step {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
  align-items: center;
  min-height: min(88vh, 900px);
  padding: clamp(78px, 9vw, 150px) 0;
  overflow: visible;
  border-bottom: 1px solid var(--process-line);
  isolation: isolate;
}

.process-step::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(250,250,250,.6);
  border-radius: 50%;
  background: var(--theme-dark-bg);
  content: "";
  transform: translate(-50%, -50%) scale(.72);
  transition: transform .55s var(--ease-out), background .55s var(--ease-out), border-color .55s var(--ease-out);
}

.process-step.is-process-active::before {
  border-color: var(--white);
  background: var(--white);
  transform: translate(-50%, -50%) scale(1);
}

.process-step-copy {
  grid-column: 1 / span 5;
  display: grid;
  align-content: center;
  gap: clamp(17px, 2vw, 28px);
  max-width: 620px;
  padding-right: clamp(28px, 4vw, 72px);
  opacity: .42;
  transform: translateY(18px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

.process-step-reverse .process-step-copy {
  grid-column: 8 / span 5;
  padding-right: 0;
  padding-left: clamp(28px, 4vw, 72px);
}

.process-step.is-process-active .process-step-copy {
  opacity: 1;
  transform: translateY(0);
}

.process-step-index {
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250,250,250,.48);
}

.process-step-copy h3 {
  margin: 0;
  max-width: 7.5ch;
  font-size: clamp(46px, 6.4vw, 104px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.process-step-copy p {
  max-width: 490px;
  margin: 0;
  font-size: clamp(13px, 1.08vw, 17px);
  line-height: 1.55;
  color: var(--process-soft);
}

.process-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 6px;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(250,250,250,.42);
}

.process-step-media {
  position: relative;
  grid-column: 8 / span 5;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #090909;
  transform: translateY(14px) scale(.965);
  transform-origin: center;
  opacity: .56;
  transition: transform .85s var(--ease-out), opacity .85s var(--ease-out), box-shadow .85s var(--ease-out);
}

.process-step-reverse .process-step-media {
  grid-column: 1 / span 5;
  grid-row: 1;
}

.process-step.is-process-active .process-step-media {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 26px 70px rgba(0,0,0,.34);
}

.process-step-go-live .process-step-copy {
  grid-column: 1 / span 4;
}

.process-step-go-live .process-step-media {
  grid-column: 6 / span 7;
  aspect-ratio: 16 / 9;
}

.process-step-go-live.is-process-active .process-step-media {
  transform: translateY(0) scale(1.025);
}

.process-output-frame,
.process-raw-frame {
  position: absolute;
  inset: 0;
  margin: 0;
}

.process-output-frame {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  transition: opacity .7s var(--ease-out), transform 1s var(--ease-out), filter .7s var(--ease-out);
}

.process-output-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.32));
  pointer-events: none;
}

.process-output-frame img,
.process-raw-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-output-frame figcaption {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(250,250,250,.78);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.process-sequence .phase-video-container.process-raw-frame {
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: opacity .7s var(--ease-out), transform 1s var(--ease-out);
}

.process-sequence .phase-video-container.process-raw-frame::before {
  background: linear-gradient(90deg, rgba(0,0,0,.34), rgba(0,0,0,.02));
}

.process-sequence .phase-video-container.process-raw-frame::after {
  background:
    linear-gradient(90deg, rgba(250,250,250,.11) 1px, transparent 1px) 0 0 / 25% 100%,
    linear-gradient(0deg, rgba(250,250,250,.08) 1px, transparent 1px) 0 0 / 100% 50%;
  opacity: .5;
  transform: none;
}

.process-sequence.is-backstage-active .process-output-frame {
  opacity: 0;
  transform: scale(.985);
  filter: grayscale(.3);
}

.process-sequence.is-backstage-active .phase-video-container.process-raw-frame {
  opacity: 1;
  transform: scale(1);
}

.process-sequence .phase-data {
  right: 15px;
  bottom: 13px;
  display: flex;
  gap: 14px;
  opacity: 1;
  transform: none;
  color: rgba(250,250,250,.82);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-sequence.is-backstage-active .process-step-media {
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
}

.process-sequence.is-backstage-active .process-step-tags span::before {
  content: "RAW / ";
  color: rgba(250,250,250,.26);
}

.process-sequence-outro {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.1fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
  padding-top: clamp(82px, 9vw, 140px);
}

.process-sequence-outro span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,250,250,.42);
}

.process-sequence-outro strong {
  max-width: 820px;
  justify-self: end;
  font-size: clamp(28px, 4vw, 66px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .process-sequence-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .process-heading-copy {
    grid-column: 1;
  }

  .process-axis {
    left: 18px;
  }

  .process-sequence .phase.process-step,
  .process-sequence .phase.process-step-reverse,
  .process-sequence .phase.process-step-go-live {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    min-height: auto;
    padding: 88px 0 88px;
  }

  .process-step::before {
    left: 18px;
    top: 92px;
  }

  .process-step-copy,
  .process-step-reverse .process-step-copy,
  .process-step-go-live .process-step-copy {
    grid-column: 2;
    grid-row: auto;
    max-width: 680px;
    padding: 0;
  }

  .process-step-media,
  .process-step-reverse .process-step-media,
  .process-step-go-live .process-step-media {
    grid-column: 2;
    grid-row: auto;
    width: 100%;
    max-width: 820px;
    margin-top: 30px;
    aspect-ratio: 16 / 10;
  }

  .process-step-go-live.is-process-active .process-step-media {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 720px) {
  .progression.process-sequence {
    padding-top: 92px;
    padding-bottom: 102px;
  }

  .process-sequence-head {
    padding-bottom: 56px;
  }

  .process-section-label {
    margin-bottom: 48px;
  }

  .process-heading-copy {
    gap: 18px;
  }

  .process-heading-copy h2 {
    max-width: 10ch;
    font-size: clamp(46px, 16vw, 74px);
  }

  .process-heading-copy p {
    max-width: 92%;
    font-size: 13px;
  }

  .process-sequence .backstage-toggle {
    bottom: max(16px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding: 7px 12px 7px 9px;
    gap: 9px;
  }

  .process-sequence .backstage-dock-kicker {
    height: 26px;
    padding: 0 8px;
  }

  .process-axis {
    left: 10px;
  }

  .process-sequence .phase.process-step,
  .process-sequence .phase.process-step-reverse,
  .process-sequence .phase.process-step-go-live {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    padding: 62px 0 70px;
  }

  .process-step::before {
    left: 10px;
    top: 66px;
    width: 7px;
    height: 7px;
  }

  .process-step-copy,
  .process-step-reverse .process-step-copy,
  .process-step-go-live .process-step-copy,
  .process-step-media,
  .process-step-reverse .process-step-media,
  .process-step-go-live .process-step-media {
    grid-column: 2;
  }

  .process-step-copy h3 {
    max-width: none;
    font-size: clamp(40px, 14vw, 70px);
  }

  .process-step-copy p {
    font-size: 12px;
  }

  .process-step-media,
  .process-step-reverse .process-step-media,
  .process-step-go-live .process-step-media {
    margin-top: 24px;
    aspect-ratio: 4 / 3;
  }

  .process-output-frame figcaption,
  .process-sequence .phase-data {
    font-size: 7px;
  }

  .process-sequence-outro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 74px;
  }

  .process-sequence-outro strong {
    justify-self: start;
    font-size: clamp(30px, 11vw, 54px);
  }
}


/* v10 — section-local bottom backstage control */
.process-sequence .backstage-toggle.backstage-dock {
  position: fixed !important;
  top: auto !important;
  right: auto !important;
  left: 50% !important;
  bottom: max(24px, env(safe-area-inset-bottom)) !important;
  margin: 0 !important;
  justify-self: auto !important;
  transform: translate(-50%, 18px) scale(.985) !important;
}
.process-sequence .backstage-toggle.backstage-dock.is-visible {
  transform: translate(-50%, 0) scale(1) !important;
}
@media (max-width: 720px) {
  .process-sequence .backstage-toggle.backstage-dock {
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    max-width: calc(100vw - 28px);
  }
}

/* v11 — Project One personality / Creativity for Breakfast */
.breakfast-section {
  position: relative;
  z-index: 2;
  overflow: clip;
  padding: clamp(110px, 11vw, 178px) var(--gutter) clamp(118px, 12vw, 190px);
  color: #070707;
  background: var(--theme-light-bg);
  border-top: 1px solid rgba(0,0,0,.14);
  isolation: isolate;
}

.breakfast-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px) 0 0 / 25% 100%;
}

.breakfast-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: clamp(86px, 10vw, 160px);
}

.breakfast-section-label {
  margin: 0;
}

.breakfast-status {
  display: flex;
  gap: 28px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.breakfast-hero {
  position: relative;
  min-height: clamp(1040px, 112vw, 1740px);
}

.breakfast-heading-wrap {
  position: sticky;
  top: 126px;
  z-index: 6;
  width: min(1120px, 78vw);
  pointer-events: none;
}

.breakfast-kicker {
  margin: 0 0 20px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.breakfast-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  font-size: clamp(66px, 9.25vw, 160px);
  font-weight: 900;
  line-height: .79;
  letter-spacing: -.072em;
  text-transform: uppercase;
}

.breakfast-heading > span {
  display: block;
  white-space: nowrap;
}

.breakfast-heading .breakfast-line-em {
  width: max-content;
  padding-right: .08em;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.085em;
}

.breakfast-aside {
  position: absolute;
  right: 0;
  bottom: -42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.55vw, 25px);
  font-style: italic;
  opacity: .64;
  transform: rotate(-4deg);
}

.breakfast-morph {
  position: absolute;
  top: clamp(475px, 46vw, 750px);
  right: 0;
  z-index: 5;
  display: grid;
  gap: 9px;
  width: clamp(270px, 28vw, 470px);
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.35);
}

.breakfast-morph-label {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .58;
}

.breakfast-morph-window {
  position: relative;
  height: clamp(48px, 5.5vw, 86px);
  overflow: hidden;
}

.breakfast-morph-word {
  position: absolute;
  inset: 0 auto auto 0;
  font-size: clamp(38px, 5vw, 78px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.055em;
  opacity: 0;
  filter: blur(12px);
  transform: scale(.985);
  transition: opacity .72s var(--ease-out), filter .72s var(--ease-out), transform .72s var(--ease-out);
}

.breakfast-morph-word.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.breakfast-media-stage {
  position: absolute;
  inset: clamp(250px, 24vw, 410px) 0 0;
  z-index: 3;
  perspective: 1400px;
  pointer-events: none;
}

.breakfast-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 90px rgba(0,0,0,.16);
  transform-origin: center;
  will-change: transform;
}

.breakfast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breakfast-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  padding: 5px 7px;
  color: #fafafa;
  background: rgba(0,0,0,.72);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.breakfast-card-a { top: 7%; left: 2%; width: clamp(180px, 20vw, 340px); aspect-ratio: 4 / 5; transform: rotate(-2.5deg); }
.breakfast-card-b { top: 27%; left: 32%; width: clamp(205px, 24vw, 410px); aspect-ratio: 4 / 5; transform: rotate(1.5deg); }
.breakfast-card-c { top: 3%; right: 1%; width: clamp(145px, 17vw, 280px); aspect-ratio: 9 / 16; transform: rotate(2deg); }
.breakfast-card-d { top: 51%; left: 7%; width: clamp(140px, 16vw, 270px); aspect-ratio: 1; transform: rotate(2.2deg); }
.breakfast-card-e { top: 58%; right: 28%; width: clamp(190px, 21vw, 355px); aspect-ratio: 4 / 5; transform: rotate(-1.2deg); }
.breakfast-card-f { top: 42%; right: 0; width: clamp(170px, 19vw, 315px); aspect-ratio: 4 / 5; transform: rotate(2.8deg); }

.breakfast-belief {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 9vw, 160px);
  align-items: start;
  padding: clamp(100px, 11vw, 170px) 0 clamp(84px, 9vw, 140px);
  border-top: 1px solid rgba(0,0,0,.2);
}

.breakfast-belief-title,
.breakfast-belief-copy {
  display: grid;
  gap: 18px;
}

.breakfast-belief-title > span,
.breakfast-belief-copy > span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .55;
}

.breakfast-belief h3 {
  margin: 0;
  font-size: clamp(54px, 7vw, 118px);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.062em;
  text-transform: uppercase;
}

.breakfast-belief-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.07em;
}

.breakfast-belief-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: clamp(14px, 1.25vw, 20px);
  line-height: 1.45;
}

.breakfast-rule {
  width: calc(100% + (var(--gutter) * 2));
  margin-left: calc(var(--gutter) * -1);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(0,0,0,.22);
}

.breakfast-rule-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 20px 0 22px;
  font-size: clamp(42px, 6.6vw, 108px);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.06em;
  text-transform: uppercase;
  will-change: transform;
}

.breakfast-rule-track span { padding: 0 .18em; }
.breakfast-rule-track i { font-family: Georgia, serif; font-weight: 400; opacity: .28; }

.breakfast-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: clamp(78px, 8vw, 130px);
  border-bottom: 1px solid rgba(0,0,0,.2);
}

.breakfast-principle {
  position: relative;
  min-height: clamp(570px, 58vw, 840px);
  padding: 18px clamp(18px, 2.5vw, 42px) 34px;
  border-left: 1px solid rgba(0,0,0,.18);
  overflow: hidden;
}

.breakfast-principle:last-child { border-right: 1px solid rgba(0,0,0,.18); }
.breakfast-principle-no { font-size: 8px; font-weight: 900; letter-spacing: .18em; }
.breakfast-principle h3 { margin: 32px 0 18px; font-size: clamp(52px, 6vw, 104px); line-height: .82; letter-spacing: -.065em; }
.breakfast-principle p { position: relative; z-index: 3; max-width: 28ch; margin: 0; font-size: 13px; line-height: 1.45; }

.breakfast-principle figure {
  position: absolute;
  right: clamp(16px, 2vw, 30px);
  bottom: 28px;
  left: clamp(16px, 2vw, 30px);
  margin: 0;
  height: 46%;
  overflow: hidden;
  background: #111;
  transform: translateY(8%) scale(.96);
  transition: transform .9s var(--ease-out), box-shadow .9s var(--ease-out);
}

.breakfast-principle figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); transition: transform 1.1s var(--ease-out), filter .8s var(--ease-out); }
.breakfast-principle.is-breakfast-focused figure,
.breakfast-principle:hover figure { transform: translateY(0) scale(1); box-shadow: 0 30px 75px rgba(0,0,0,.14); }
.breakfast-principle.is-breakfast-focused figure img,
.breakfast-principle:hover figure img { transform: scale(1.035); filter: saturate(1) contrast(1); }

.breakfast-outro {
  display: grid;
  grid-template-columns: .72fr 1.35fr .65fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding-top: clamp(100px, 11vw, 180px);
}

.breakfast-outro > div {
  display: grid;
  gap: 8px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.breakfast-outro h3 {
  margin: 0;
  font-size: clamp(58px, 7.8vw, 132px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.breakfast-outro h3 span { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; }
.breakfast-outro p { margin: 0 0 5px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 2vw, 30px); font-style: italic; }

@media (max-width: 980px) {
  .breakfast-heading-wrap { width: 94%; }
  .breakfast-heading { font-size: clamp(62px, 12vw, 112px); }
  .breakfast-morph { top: 520px; }
  .breakfast-media-stage { top: 360px; }
  .breakfast-belief { grid-template-columns: 1fr; }
  .breakfast-belief-copy { width: min(720px, 88%); margin-left: auto; }
  .breakfast-principles { grid-template-columns: 1fr; }
  .breakfast-principle { min-height: 640px; border-right: 1px solid rgba(0,0,0,.18); border-bottom: 1px solid rgba(0,0,0,.18); }
  .breakfast-principle figure { height: 55%; }
  .breakfast-outro { grid-template-columns: 1fr; align-items: start; }
  .breakfast-outro h3 { max-width: 10ch; }
}

@media (max-width: 720px) {
  .breakfast-section { padding: 92px 20px 110px; }
  .breakfast-section::before { background-size: 50% 100%; }
  .breakfast-header { margin-bottom: 70px; }
  .breakfast-status { flex-direction: column; gap: 5px; align-items: flex-end; text-align: right; font-size: 7px; }
  .breakfast-hero { min-height: 1180px; }
  .breakfast-heading-wrap { top: 92px; width: 100%; }
  .breakfast-kicker { font-size: 7px; }
  .breakfast-heading { font-size: clamp(50px, 17vw, 78px); line-height: .82; letter-spacing: -.07em; }
  .breakfast-heading > span { white-space: normal; }
  .breakfast-aside { right: 4px; bottom: -30px; font-size: 15px; }
  .breakfast-morph { top: 355px; right: auto; left: 0; width: 62%; }
  .breakfast-morph-window { height: 42px; }
  .breakfast-morph-word { font-size: 34px; }
  .breakfast-media-stage { top: 455px; right: -4px; left: -4px; height: 660px; }
  .breakfast-card-a { top: 0; left: 0; width: 42%; }
  .breakfast-card-b { top: 150px; left: 43%; width: 43%; }
  .breakfast-card-c { top: 12px; right: 0; width: 29%; }
  .breakfast-card-d { top: 370px; left: 4%; width: 33%; }
  .breakfast-card-e { top: 402px; right: 6%; width: 42%; }
  .breakfast-card-f { top: 290px; right: 26%; width: 31%; }
  .breakfast-card figcaption { font-size: 6px; }
  .breakfast-belief { gap: 58px; padding-top: 72px; }
  .breakfast-belief h3 { font-size: clamp(50px, 15vw, 78px); }
  .breakfast-belief-copy { width: 100%; margin-left: 0; }
  .breakfast-belief-copy p { font-size: 13px; }
  .breakfast-rule-track { font-size: 48px; }
  .breakfast-principles { padding-top: 64px; }
  .breakfast-principle { min-height: 520px; padding: 16px 14px 24px; }
  .breakfast-principle h3 { font-size: 62px; }
  .breakfast-principle p { font-size: 12px; }
  .breakfast-principle figure { right: 14px; bottom: 22px; left: 14px; height: 52%; }
  .breakfast-outro { gap: 42px; padding-top: 86px; }
  .breakfast-outro h3 { font-size: clamp(52px, 15vw, 76px); }
}

/* v12 — editorial refinement inspired by the supplied reference site */
.breakfast-section {
  --breakfast-ink: #090909;
  --breakfast-paper: #f2efe6;
  --breakfast-hairline: rgba(9,9,9,.19);
  background: var(--breakfast-paper);
}

.breakfast-hero {
  min-height: clamp(1120px, 118vw, 1820px);
}

/* The headline is now part of the spatial field instead of sitting on top of everything. */
.breakfast-heading-wrap {
  z-index: 1;
  width: min(1260px, 88vw);
}

.breakfast-heading {
  position: relative;
  z-index: 1;
  font-size: clamp(68px, 9.6vw, 168px);
  line-height: .77;
}

.breakfast-heading .breakfast-line {
  position: relative;
}

.breakfast-heading .breakfast-line-a {
  padding-left: .005em;
}

.breakfast-heading .breakfast-line-em {
  margin-left: 1.8vw;
  font-size: 1.08em;
  line-height: .72;
}

.breakfast-heading .breakfast-line-b {
  margin-left: 8vw;
  width: max-content;
}

.breakfast-handnote {
  position: absolute;
  z-index: 7;
  color: var(--breakfast-ink);
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: none;
  opacity: .76;
  transform: rotate(-5deg);
}

.breakfast-handnote-hero {
  right: 1%;
  bottom: -70px;
}

.breakfast-media-stage {
  top: clamp(300px, 28vw, 455px);
  z-index: 3;
  height: calc(100% - clamp(300px, 28vw, 455px));
}

.breakfast-card {
  border: 1px solid rgba(9,9,9,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.13);
  transition: box-shadow .7s var(--ease-out), filter .7s var(--ease-out);
}

.breakfast-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 64%, rgba(0,0,0,.18));
  opacity: .4;
}

.breakfast-card:hover {
  box-shadow: 0 34px 90px rgba(0,0,0,.19);
}

.breakfast-card-a {
  top: 7%; left: 1.4%; width: clamp(170px, 17vw, 290px); aspect-ratio: 4 / 5;
}
.breakfast-card-b {
  top: 30%; left: 28%; width: clamp(215px, 23vw, 390px); aspect-ratio: 5 / 6;
}
.breakfast-card-c {
  top: 3%; right: 1%; width: clamp(150px, 16vw, 270px); aspect-ratio: 9 / 16;
}
.breakfast-card-d {
  top: 57%; left: 8.5%; width: clamp(145px, 14vw, 245px); aspect-ratio: 1;
}
.breakfast-card-e {
  top: 62%; right: 27%; width: clamp(185px, 19vw, 325px); aspect-ratio: 4 / 5;
}
.breakfast-card-f {
  top: 43%; right: 0; width: clamp(175px, 18vw, 305px); aspect-ratio: 4 / 5;
}

/* Let the media cover the headline naturally, then use a small reactive label instead of a second huge word over it. */
.breakfast-morph {
  top: clamp(640px, 61vw, 980px);
  right: 3.5%;
  z-index: 7;
  width: clamp(210px, 22vw, 350px);
  padding: 10px 12px 12px;
  background: rgba(242,239,230,.88);
  border: 1px solid rgba(9,9,9,.22);
  backdrop-filter: blur(8px);
}

.breakfast-morph-window {
  height: clamp(28px, 3vw, 44px);
}

.breakfast-morph-word {
  font-size: clamp(24px, 2.8vw, 44px);
  letter-spacing: -.055em;
}

.breakfast-morph-word:nth-child(2) {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.breakfast-belief {
  margin-top: clamp(20px, 3vw, 50px);
}

/* Reference-site influence: bordered editorial modules, type contrast and handwritten micro-notes. */
.breakfast-principles {
  position: relative;
  gap: 0;
  padding-top: clamp(70px, 7vw, 112px);
  border-top: 1px solid var(--breakfast-hairline);
}

.breakfast-principle {
  min-height: clamp(690px, 64vw, 940px);
  padding: 18px clamp(18px, 2.1vw, 34px) 30px;
  isolation: isolate;
  background: transparent;
}

.breakfast-principle::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background: #111;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .8s var(--ease-out);
}

.breakfast-principle::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 1px;
  content: "";
  background: rgba(0,0,0,.18);
}

.breakfast-principle-topline {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,.2);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: color .55s var(--ease-out), border-color .55s var(--ease-out);
}

.breakfast-principle-no {
  font-size: inherit;
}

.breakfast-principle-ghost {
  position: absolute;
  top: 4%;
  right: -2%;
  z-index: -1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(180px, 18vw, 310px);
  font-style: italic;
  line-height: .72;
  letter-spacing: -.09em;
  opacity: .045;
  pointer-events: none;
  transition: opacity .7s var(--ease-out), transform .9s var(--ease-out), color .55s var(--ease-out);
}

.breakfast-principle h3 {
  position: relative;
  z-index: 4;
  width: max-content;
  margin: clamp(46px, 5.2vw, 82px) 0 16px;
  font-size: clamp(64px, 7.1vw, 122px);
  line-height: .76;
  transition: color .55s var(--ease-out), transform .75s var(--ease-out);
}

.breakfast-principle p {
  z-index: 4;
  max-width: 30ch;
  transition: color .55s var(--ease-out), opacity .55s var(--ease-out);
}

.breakfast-principle .breakfast-handnote {
  left: clamp(18px, 2.1vw, 34px);
  bottom: 25px;
  z-index: 6;
  opacity: 0;
  transform: translateY(8px) rotate(-4deg);
  transition: opacity .55s var(--ease-out), transform .7s var(--ease-out), color .55s var(--ease-out);
}

.breakfast-principle figure {
  right: auto;
  bottom: 76px;
  left: auto;
  z-index: 2;
  height: auto;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
  transition: transform .9s var(--ease-out), filter .8s var(--ease-out);
}

.breakfast-principle figure::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(0,0,0,.22);
  pointer-events: none;
  transition: border-color .55s var(--ease-out);
}

.breakfast-principle figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.62) contrast(1.06);
}

.breakfast-principle figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
  font-size: 6px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .55s var(--ease-out);
}

.breakfast-principle-think figure {
  left: clamp(16px, 2vw, 30px);
  width: 82%;
  height: 45%;
}

.breakfast-principle-make h3 {
  margin-left: 7%;
}
.breakfast-principle-make p {
  margin-left: 7%;
}
.breakfast-principle-make figure {
  left: 15%;
  width: 76%;
  height: 51%;
  transform: translateY(-1.5%);
}

.breakfast-principle-move h3 {
  margin-left: 2%;
}
.breakfast-principle-move figure {
  right: clamp(16px, 2vw, 30px);
  width: 88%;
  height: 43%;
}

.breakfast-principle.is-breakfast-focused::before,
.breakfast-principle:hover::before {
  transform: scaleY(1);
}

.breakfast-principle.is-breakfast-focused .breakfast-principle-topline,
.breakfast-principle:hover .breakfast-principle-topline {
  color: #f2efe6;
  border-color: rgba(242,239,230,.28);
}

.breakfast-principle.is-breakfast-focused .breakfast-principle-ghost,
.breakfast-principle:hover .breakfast-principle-ghost {
  color: #f2efe6;
  opacity: .075;
  transform: translate(-2%, 3%);
}

.breakfast-principle.is-breakfast-focused h3,
.breakfast-principle:hover h3,
.breakfast-principle.is-breakfast-focused p,
.breakfast-principle:hover p,
.breakfast-principle.is-breakfast-focused figure figcaption,
.breakfast-principle:hover figure figcaption {
  color: #f2efe6;
}

.breakfast-principle.is-breakfast-focused h3,
.breakfast-principle:hover h3 {
  transform: translateX(2%);
}

.breakfast-principle.is-breakfast-focused .breakfast-handnote,
.breakfast-principle:hover .breakfast-handnote {
  color: #f2efe6;
  opacity: .8;
  transform: translateY(0) rotate(-4deg);
}

.breakfast-principle.is-breakfast-focused figure::before,
.breakfast-principle:hover figure::before {
  border-color: rgba(242,239,230,.32);
}

.breakfast-principle.is-breakfast-focused figure,
.breakfast-principle:hover figure {
  transform: translateY(-10px) rotate(-.6deg);
  box-shadow: none;
}

.breakfast-principle-make.is-breakfast-focused figure,
.breakfast-principle-make:hover figure {
  transform: translateY(-20px) rotate(.8deg);
}

.breakfast-principle-move.is-breakfast-focused figure,
.breakfast-principle-move:hover figure {
  transform: translateY(-8px) translateX(-2%) rotate(.45deg);
}

.breakfast-principle.is-breakfast-focused figure img,
.breakfast-principle:hover figure img {
  transform: scale(1.028);
  filter: saturate(1) contrast(1.02);
}

@media (max-width: 980px) {
  .breakfast-heading-wrap { z-index: 1; width: 96%; }
  .breakfast-heading .breakfast-line-b { margin-left: 3vw; }
  .breakfast-media-stage { z-index: 3; }
  .breakfast-morph { top: 660px; right: 1%; }
  .breakfast-principle { min-height: 720px; }
  .breakfast-principle-think figure,
  .breakfast-principle-make figure,
  .breakfast-principle-move figure {
    left: 50%;
    right: auto;
    width: min(620px, 78%);
    height: 48%;
    transform: translateX(-50%);
  }
  .breakfast-principle-make h3,
  .breakfast-principle-make p,
  .breakfast-principle-move h3 { margin-left: 0; }
  .breakfast-principle.is-breakfast-focused figure,
  .breakfast-principle:hover figure,
  .breakfast-principle-make.is-breakfast-focused figure,
  .breakfast-principle-make:hover figure,
  .breakfast-principle-move.is-breakfast-focused figure,
  .breakfast-principle-move:hover figure {
    transform: translateX(-50%) translateY(-10px);
  }
}

@media (max-width: 720px) {
  .breakfast-hero { min-height: 1240px; }
  .breakfast-heading-wrap { top: 92px; }
  .breakfast-heading { font-size: clamp(48px, 16.6vw, 76px); }
  .breakfast-heading .breakfast-line-em { margin-left: 0; }
  .breakfast-heading .breakfast-line-b { margin-left: 0; }
  .breakfast-handnote-hero { right: 2px; bottom: -54px; font-size: 12px; }
  .breakfast-media-stage { top: 465px; height: 700px; }
  .breakfast-morph { top: 384px; right: 0; left: auto; width: 50%; padding: 8px 9px 10px; }
  .breakfast-morph-window { height: 30px; }
  .breakfast-morph-word { font-size: 25px; }
  .breakfast-card-a { top: 4%; left: 0; width: 39%; }
  .breakfast-card-b { top: 30%; left: 33%; width: 47%; }
  .breakfast-card-c { top: 2%; right: 0; width: 29%; }
  .breakfast-card-d { top: 62%; left: 3%; width: 31%; }
  .breakfast-card-e { top: 66%; right: 6%; width: 41%; }
  .breakfast-card-f { top: 43%; right: 0; width: 30%; }
  .breakfast-principles { padding-top: 52px; }
  .breakfast-principle { min-height: 610px; padding: 14px 14px 22px; }
  .breakfast-principle-topline { font-size: 6px; }
  .breakfast-principle h3 { margin-top: 36px; font-size: clamp(60px, 18vw, 82px); }
  .breakfast-principle-ghost { font-size: 170px; }
  .breakfast-principle figure,
  .breakfast-principle-think figure,
  .breakfast-principle-make figure,
  .breakfast-principle-move figure {
    bottom: 70px;
    width: calc(100% - 40px);
    height: 46%;
  }
  .breakfast-principle .breakfast-handnote { left: 14px; bottom: 24px; font-size: 12px; }
}

/* Keep one module permanently dark so the three-part system has rhythm even before interaction. */
.breakfast-principle-make::before { transform: scaleY(1); }
.breakfast-principle-make .breakfast-principle-topline {
  color: #f2efe6;
  border-color: rgba(242,239,230,.28);
}
.breakfast-principle-make .breakfast-principle-ghost { color: #f2efe6; opacity: .07; }
.breakfast-principle-make h3,
.breakfast-principle-make p,
.breakfast-principle-make figure figcaption { color: #f2efe6; }
.breakfast-principle-make h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.075em;
}
.breakfast-principle-make figure::before { border-color: rgba(242,239,230,.28); }
.breakfast-principle-make .breakfast-handnote {
  color: #f2efe6;
  opacity: .58;
  transform: translateY(0) rotate(-4deg);
}

/* =========================================================
   v13 — GOOD COMPANY / CREATIVE CTA / TEAM
   ========================================================= */
.good-company-section {
  position: relative;
  min-height: 300vh;
  background: #f2efe7;
  color: #0b0b0b;
  overflow: clip;
  border-top: 1px solid rgba(0,0,0,.14);
}
.good-company-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  padding: clamp(82px, 9vh, 118px) clamp(18px, 4vw, 64px) 32px;
}
.good-company-label {
  position: absolute;
  top: 28px;
  left: clamp(18px, 4vw, 64px);
  right: clamp(18px, 4vw, 64px);
  z-index: 6;
}
.good-company-intro {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
  align-items: end;
  gap: 32px;
  pointer-events: none;
}
.good-company-intro > p,
.good-company-note {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.good-company-intro > p {
  position: absolute;
  top: -22px;
  left: 0;
}
.good-company-intro h2 {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 1060px;
  font-size: clamp(64px, 9.4vw, 154px);
  line-height: .77;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 900;
}
.good-company-intro h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.065em;
}
.good-company-note {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: min(330px, 28vw);
  text-transform: none;
  letter-spacing: -.015em;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 500;
}
.good-company-viewport {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6vh;
  height: 42vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.good-company-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  height: 100%;
  padding: 0 50vw;
  will-change: transform;
}
.brand-credit {
  position: relative;
  flex: 0 0 clamp(330px, 31vw, 560px);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: 22px clamp(20px, 2.5vw, 40px) 20px;
  border-right: 1px solid rgba(0,0,0,.14);
  opacity: .24;
  filter: blur(.2px);
  transform: scale(.9);
  transform-origin: center;
  transition: opacity .35s ease, transform .55s cubic-bezier(.2,.75,.15,1), background-color .35s ease, color .35s ease;
}
.brand-credit:first-child { border-left: 1px solid rgba(0,0,0,.14); }
.brand-credit > span,
.brand-credit > small {
  font-size: 9px;
  line-height: 1;
  letter-spacing: .17em;
  font-weight: 700;
  text-transform: uppercase;
}
.brand-credit > small { align-self: end; }
.brand-credit strong {
  display: block;
  font-size: clamp(44px, 5.3vw, 86px);
  line-height: .83;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.brand-credit:nth-child(3n+2) strong,
.brand-credit:nth-child(5n) strong {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
}
.brand-credit.is-active {
  opacity: 1;
  transform: scale(1);
  background: #0c0c0c;
  color: #f2efe7;
}
.good-company-centerline {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0,0,0,.32);
  pointer-events: none;
}
.good-company-centerline span {
  position: absolute;
  left: 8px;
  top: 9px;
  white-space: nowrap;
  font-size: 8px;
  letter-spacing: .18em;
  font-weight: 700;
}
.good-company-counter {
  position: absolute;
  right: clamp(18px, 4vw, 64px);
  bottom: calc(48vh + 14px);
  display: flex;
  align-items: baseline;
  gap: 5px;
  z-index: 7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.good-company-counter [data-brand-current] { font-size: 24px; letter-spacing: -.05em; }
.good-company-counter i { opacity: .35; font-style: normal; }

.creative-cta {
  position: relative;
  min-height: 76vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) clamp(18px, 4vw, 64px);
}
.creative-cta-client {
  background: #f2efe7;
  color: #0b0b0b;
  border-top: 1px solid rgba(0,0,0,.16);
}
.creative-cta-team {
  min-height: 84vh;
  background: #080808;
  color: #f4f1e9;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.creative-cta::before,
.creative-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.creative-cta::before {
  inset: 0;
  background-image: linear-gradient(to right, currentColor 1px, transparent 1px);
  background-size: 25vw 100%;
  opacity: .055;
}
.creative-cta::after {
  width: 62vw;
  height: 62vw;
  max-width: 850px;
  max-height: 850px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .08;
  transform: translate(26vw, 26vw);
}
.creative-cta-index {
  position: absolute;
  top: 28px;
  left: clamp(18px, 4vw, 64px);
  z-index: 3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
}
.creative-cta-link {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
}
.creative-cta-small {
  grid-column: 1 / -1;
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.creative-cta-link strong {
  margin: 0;
  font-size: clamp(70px, 10.8vw, 176px);
  line-height: .76;
  letter-spacing: -.078em;
  text-transform: uppercase;
  font-weight: 900;
}
.creative-cta-link strong em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
}
.creative-cta-action {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid currentColor;
  min-width: 240px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.creative-cta-action b {
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
  transition: transform .3s ease;
}
.creative-cta-link:hover .creative-cta-action b,
.creative-cta-link:focus-visible .creative-cta-action b { transform: translate(5px,-5px); }
.creative-cta-team .creative-cta-link:hover .creative-cta-action b,
.creative-cta-team .creative-cta-link:focus-visible .creative-cta-action b { transform: translateY(5px); }

.team-section {
  position: relative;
  background: #f2efe7;
  color: #0b0b0b;
  min-height: 100vh;
  padding: clamp(86px, 10vh, 132px) clamp(18px, 4vw, 64px) clamp(90px, 10vw, 150px);
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.15);
}
.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 25% 100%;
}
.team-section-label,
.team-heading,
.team-roster,
.team-footnote { position: relative; z-index: 2; }
.team-section-label { margin-bottom: clamp(70px, 10vh, 140px); }
.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.team-heading > p,
.team-heading > span {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
}
.team-heading > p { grid-column: 1 / -1; }
.team-heading h2 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(66px, 9.5vw, 150px);
  line-height: .77;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 900;
}
.team-heading h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
}
.team-heading > span { max-width: 300px; text-transform: none; letter-spacing: -.01em; font-size: 13px; font-weight: 500; }
.team-roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(0,0,0,.2);
  border-left: 1px solid rgba(0,0,0,.2);
}
.team-card {
  min-width: 0;
  border-right: 1px solid rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(0,0,0,.2);
  outline: none;
  transition: background-color .35s ease, color .35s ease;
}
.team-card-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,.2);
  background: #121212;
  color: #f2efe7;
}
.team-card-portrait::before,
.team-card-portrait::after {
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  filter: blur(8px);
  transition: transform .7s cubic-bezier(.2,.75,.15,1), filter .5s ease;
}
.team-card-portrait-a::before { background: radial-gradient(circle at 35% 36%, #f06730 0 10%, transparent 38%), radial-gradient(circle at 65% 62%, #4f0fef, transparent 40%); }
.team-card-portrait-b::before { background: radial-gradient(circle at 60% 35%, #f1d342 0 11%, transparent 35%), radial-gradient(circle at 34% 68%, #d429bd, transparent 43%); }
.team-card-portrait-c::before { background: radial-gradient(circle at 40% 45%, #44a376 0 12%, transparent 38%), radial-gradient(circle at 73% 70%, #f44336, transparent 44%); }
.team-card-portrait-d::before { background: radial-gradient(circle at 58% 46%, #ded8c5 0 9%, transparent 34%), radial-gradient(circle at 30% 72%, #2767df, transparent 45%); }
.team-card-portrait::after {
  inset: 12%;
  border-radius: 50% 42% 48% 36%;
  border: 1px solid rgba(255,255,255,.36);
  filter: none;
  transform: rotate(-8deg);
}
.team-card-portrait > span {
  position: relative;
  z-index: 2;
  font-size: clamp(72px, 8vw, 132px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.09em;
  mix-blend-mode: difference;
}
.team-card-portrait > i {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  font-size: 10px;
  font-style: normal;
  letter-spacing: .16em;
  font-weight: 700;
}
.team-card-copy { padding: 20px 18px 28px; min-height: 260px; }
.team-card-role {
  display: block;
  margin-bottom: 42px;
  font-size: 8px;
  line-height: 1.2;
  letter-spacing: .18em;
  font-weight: 800;
}
.team-card h3 {
  margin: 0 0 18px;
  font-size: clamp(27px, 2.5vw, 44px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.team-card p {
  margin: 0;
  max-width: 31ch;
  font-size: 13px;
  line-height: 1.35;
}
.team-card:hover,
.team-card:focus-visible,
.team-card.is-team-active {
  background: #0b0b0b;
  color: #f2efe7;
}
.team-card:hover .team-card-portrait::before,
.team-card:focus-visible .team-card-portrait::before,
.team-card.is-team-active .team-card-portrait::before { transform: rotate(13deg) scale(1.18); filter: blur(2px); }
.team-footnote {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-top: clamp(54px, 8vw, 110px);
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.2);
}
.team-footnote span {
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .17em;
  font-weight: 700;
}
.team-footnote strong {
  max-width: 720px;
  text-align: right;
  font-size: clamp(38px, 5vw, 78px);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 900;
}

@media (max-width: 980px) {
  .good-company-section { min-height: auto; padding: 92px 0 72px; }
  .good-company-sticky { position: relative; height: auto; min-height: 0; padding: 0; overflow: visible; }
  .good-company-label { position: relative; top: auto; left: auto; right: auto; margin: 0 18px 72px; }
  .good-company-intro { display: block; padding: 0 18px 48px; }
  .good-company-intro > p { position: static; margin-bottom: 18px; }
  .good-company-intro h2 { font-size: clamp(58px, 14vw, 112px); }
  .good-company-note { position: static; display: block; width: min(420px, 100%); margin-top: 24px; }
  .good-company-viewport { position: relative; bottom: auto; height: auto; min-height: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .good-company-viewport::-webkit-scrollbar { display:none; }
  .good-company-track { padding: 0 18px; transform: none !important; }
  .brand-credit { flex-basis: min(78vw, 430px); min-height: 350px; scroll-snap-align: center; opacity: 1; transform: none; }
  .brand-credit.is-active { transform: none; }
  .good-company-centerline, .good-company-counter { display: none; }
  .creative-cta { min-height: 70vh; }
  .creative-cta-link { grid-template-columns: 1fr; }
  .creative-cta-action { min-width: 0; width: min(320px, 100%); }
  .team-heading { display: block; }
  .team-heading > p { margin-bottom: 18px; }
  .team-heading > span { display: block; margin-top: 26px; }
  .team-roster { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-card-portrait { aspect-ratio: 4 / 4.6; }
}

@media (max-width: 640px) {
  .good-company-section { padding-top: 76px; }
  .good-company-label { margin-bottom: 54px; }
  .good-company-intro h2 { font-size: clamp(52px, 17vw, 76px); line-height: .8; }
  .brand-credit { flex-basis: 82vw; min-height: 320px; }
  .brand-credit strong { font-size: clamp(44px, 15vw, 72px); }
  .creative-cta { min-height: 66vh; padding-top: 90px; padding-bottom: 76px; }
  .creative-cta-link strong { font-size: clamp(54px, 17vw, 86px); line-height: .79; }
  .creative-cta-small { font-size: 10px; }
  .team-section { padding-top: 86px; }
  .team-section-label { margin-bottom: 58px; }
  .team-heading h2 { font-size: clamp(52px, 16.8vw, 82px); }
  .team-roster { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-left: -18px; margin-right: -18px; padding-left: 18px; border-left: 0; scrollbar-width: none; }
  .team-roster::-webkit-scrollbar { display:none; }
  .team-card { flex: 0 0 82vw; scroll-snap-align: center; border-left: 1px solid rgba(0,0,0,.2); }
  .team-card-copy { min-height: 245px; }
  .team-card:hover { background: transparent; color: inherit; }
  .team-card.is-team-active { background: #0b0b0b; color: #f2efe7; }
  .team-footnote { display: block; }
  .team-footnote strong { display: block; text-align: left; margin-top: 28px; font-size: clamp(38px, 13vw, 58px); }
}
