:root {
  /* Color */
  --color-canvas: #030712;
  --color-lime: #bbf451;
  --color-lime-bright: #c8f037;
  --color-lime-soft: #ebfe98;
  --color-ink: #030712;
  --color-white: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-line: rgba(255, 255, 255, 0.18);

  /* Typography */
  --font-ui: Sora, sans-serif;
  --font-display: Sora, sans-serif;

  /* Layout */
  --content-width: 1320px;
  --page-gutter: max(24px, calc((100% - var(--content-width)) / 2));
  --radius-sm: 12px;
  --radius-md: 15px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-base: 220ms;

  /* Compatibility aliases for existing sections */
  --canvas: var(--color-canvas);
  --lime: var(--color-lime);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  background: var(--color-canvas);
  color: var(--color-white);
  font-family: var(--font-ui);
}

#about,
#project,
#information,
#contact {
  scroll-margin-top: 104px;
}

body.is-loading {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  color: #fff;
  background: var(--canvas);
  font: 600 12px/1 var(--font-ui);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader img {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  animation: loaderPulse 1.1s ease-in-out infinite alternate;
}

body.is-loaded .site-loader {
  visibility: hidden;
  opacity: 0;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  background: var(--lime);
  font: 700 13px/1 var(--font-ui);
  transform: translateY(-160%);
  transition: transform var(--duration-fast) ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

@keyframes loaderPulse {
  from { scale: 0.88; filter: drop-shadow(0 0 0 rgba(187, 244, 81, 0)); }
  to { scale: 1; filter: drop-shadow(0 0 14px rgba(187, 244, 81, 0.62)); }
}

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

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

.banner {
  position: relative;
  /* Do not create a stacking context: the fixed topbar must outrank later sections. */
  z-index: auto;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: var(--canvas);
}

.background-art {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 610px;
  max-width: none;
  object-fit: cover;
  transform: translateX(-50%) translateY(var(--hero-art-shift, 0));
  transition: transform 120ms linear;
  will-change: transform;
}

.green-shape {
  position: absolute;
  top: 50%;
  right: 0;
  width: 724px;
  height: 1024px;
  max-width: none;
  object-fit: cover;
  transform: translateY(calc(-50% + var(--hero-shape-shift, 0px)));
  transition: transform 120ms linear;
  will-change: transform;
}

.portrait {
  position: absolute;
  top: 92px;
  left: calc(50% + 10px);
  width: min(54.7vw, 1050px);
  height: auto;
  max-width: none;
  transform: translateY(var(--hero-portrait-shift, 0));
  transition: transform 120ms linear;
  will-change: transform;
}

.motion-ready .portrait {
  animation: portraitSpotlight 1.8s var(--ease-out) both;
}

@keyframes portraitSpotlight {
  0% { filter: drop-shadow(0 0 0 rgba(187, 244, 81, 0)); }
  45% { filter: drop-shadow(0 0 42px rgba(187, 244, 81, 0.3)); }
  100% { filter: drop-shadow(0 0 18px rgba(187, 244, 81, 0.1)); }
}

.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1920px;
  height: 89px;
  padding: 24px 300px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transform: translateX(-50%);
  transition: height var(--duration-base) ease, background var(--duration-base) ease, box-shadow var(--duration-base) ease;
}

.topbar.is-scrolled {
  height: 72px;
  background: rgba(3, 7, 18, 0.78);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(187, 244, 81, 0.65);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 100ms linear;
}

.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 36.116px;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -2.2px;
}

.brand img {
  width: 28px;
  height: 28px;
  margin-right: 1.62px;
}

.brand-dot {
  color: var(--lime);
}

.header-actions,
nav {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 32px;
}

.menu-toggle {
  display: none;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

nav a {
  position: relative;
  height: 40px;
  padding: 5.5px 15px;
  font: 400 16px/1.6 var(--font-ui);
  transition: color var(--duration-fast) ease;
}

nav a::after {
  position: absolute;
  right: 15px;
  bottom: 3px;
  left: 15px;
  height: 1px;
  background: var(--lime);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale var(--duration-base) var(--ease-out);
}

nav a:hover,
nav a:focus-visible {
  color: var(--lime);
}

nav a:hover::after,
nav a:focus-visible::after {
  scale: 1;
  transform-origin: left;
}

nav a.is-active {
  color: var(--lime);
}

nav a.is-active::after {
  scale: 1;
  transform-origin: left;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 11.5px 22px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  font: 600 18px/1.4 var(--font-ui);
  white-space: nowrap;
  transition: transform var(--duration-base) ease, box-shadow var(--duration-base) ease, filter var(--duration-base) ease;
}

.button--lime {
  background-color: var(--color-lime-bright);
  background-image: linear-gradient(to bottom, var(--color-lime-bright), var(--color-lime-soft)), var(--button-texture);
  background-size: auto, 307.2px 307.2px;
  background-blend-mode: normal, plus-lighter;
  box-shadow: 0 3.714px 4.846px rgba(200, 240, 55, 0.15), inset 0 1px 18px #f6ffc8, inset 0 1px 4px #f6ffc8;
}

.button--lime:hover {
  box-shadow: 0 12px 28px rgba(200, 240, 55, 0.4), 0 0 0 5px rgba(200, 240, 55, 0.14), inset 0 1px 18px #f6ffc8, inset 0 1px 4px #f6ffc8;
  filter: brightness(1.06);
  transform: translateY(-4px) scale(1.03);
}

.button--lime:active {
  transform: translateY(-1px) scale(0.98);
}

.button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.magnetic-target {
  translate: var(--magnetic-x, 0) var(--magnetic-y, 0);
  transition: translate 380ms var(--ease-out);
  will-change: translate;
}

.hello-button {
  --button-texture: url("assets/figma-button-texture.png");
}

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

  .button {
    transition: none;
  }

  .magnetic-target {
    translate: none;
  }

  .motion-ready .showreel-pin,
  .motion-ready .about-content,
  .motion-ready .information-intro,
  .motion-ready .information-row,
  .motion-ready .capabilities-heading,
  .motion-ready .capability-card,
  .motion-ready .process-heading,
  .motion-ready .process-list li,
  .motion-ready .writing-heading,
  .motion-ready .newsletter-feature,
  .motion-ready .writing-article,
  .motion-ready .footer-content,
  .motion-ready .footer-meta,
  .motion-ready .footer-wordmark-wrap,
  .motion-ready .work-card {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}

.hero-copy {
  position: absolute;
  top: 423px;
  left: calc(50% - 660px);
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  opacity: var(--hero-copy-opacity, 1);
  transform: translateY(var(--hero-copy-shift, 0));
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.hero-grid {
  width: 100%;
}

.hero-copy-content {
  min-width: 0;
}

h1 {
  margin: 0;
  margin-top: -60px;
  color: #fff;
  font: 200 290px/1.1 Sora, sans-serif;
  letter-spacing: -16px;
  white-space: nowrap;
}

.hero-copy p {
  margin: -40px 0 0 32px;
  font: 200 32px/1.1 var(--font-display);
  white-space: nowrap;
}

.motion-ready:not(.intro-complete) .brand,
.motion-ready:not(.intro-complete) .hero-copy h1,
.motion-ready:not(.intro-complete) .hero-copy p,
.motion-ready:not(.intro-complete) .socials,
.motion-ready:not(.intro-complete) .scroll-down {
  opacity: 0;
}

.motion-ready:not(.intro-complete) .brand {
  translate: 0 -18px;
}

.motion-ready:not(.intro-complete) .hero-copy h1 {
  translate: 0 38px;
}

.motion-ready:not(.intro-complete) .hero-copy p,
.motion-ready:not(.intro-complete) .socials {
  translate: 0 20px;
}

.motion-ready:not(.intro-complete) .scroll-down {
  translate: 0 14px;
}

.motion-ready .brand,
.motion-ready .hero-copy h1,
.motion-ready .hero-copy p,
.motion-ready .socials,
.motion-ready .scroll-down {
  transition: opacity 680ms ease, translate 900ms var(--ease-out);
}

.motion-ready .hero-copy h1 {
  transition-delay: 100ms;
}

.motion-ready .hero-copy p {
  transition-delay: 240ms;
}

.motion-ready .socials {
  transition-delay: 340ms;
}

.motion-ready .scroll-down {
  transition-delay: 460ms;
}

.socials {
  display: flex;
  align-items: center;
  gap: 19.2px;
  margin: 24px 0 0 32px;
}

.socials a {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.socials img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Scale the 1920px Figma hero proportionally on ultra-wide / 4K displays. */
@media (min-width: 1921px) {
  .background-art {
    width: 100vw;
    height: 31.77vw;
  }

  .green-shape {
    width: 37.71vw;
    height: 53.33vw;
  }

  .portrait {
    top: 4.8vw;
    left: calc(50% + 0.52vw);
    width: 54.7vw;
    height: auto;
  }

  .topbar {
    left: 0;
    width: 100%;
    height: 4.635vw;
    padding-inline: 15.625vw;
    transform: none;
  }

  .brand {
    font-size: 1.881vw;
    letter-spacing: -0.115vw;
  }

  .brand img {
    width: 1.458vw;
    height: 1.458vw;
    margin-right: 0.084vw;
  }

  .header-actions {
    gap: 1.667vw;
  }

  nav a {
    height: 2.083vw;
    padding: 0.286vw 0.781vw;
    font-size: 0.833vw;
  }

  .button {
    padding: 0.599vw 1.146vw;
    font-size: 0.938vw;
  }

  .socials {
    gap: 1vw;
    margin: 1.25vw 0 0 1.667vw;
  }

  .socials a {
    width: 1.25vw;
    height: 1.25vw;
  }

  .banner .scroll-down {
    top: 40.833vw;
    left: max(1.25vw, calc(50% - 46.615vw));
    gap: 0.365vw;
    width: 1.25vw;
  }

  .banner .scroll-down span {
    height: 4.688vw;
    padding-top: 1.823vw;
    font-size: 0.833vw;
  }

  .banner .scroll-down img {
    width: 1.25vw;
    height: 1.25vw;
  }

}

.scroll-down {
  position: absolute;
  top: 784px;
  left: max(24px, calc(50% - 895px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 24px;
}

.scroll-down span {
  height: 90px;
  padding-top: 35px;
  font: 400 16px/normal var(--font-ui);
  white-space: nowrap;
  transform: rotate(-90deg);
}

.scroll-down img {
  width: 24px;
  height: 24px;
}

.showreel-section {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  margin-top: 0;
  padding: 0;
  background: var(--canvas);
}

.showreel-pin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100svh;
}

.motion-ready .showreel-pin {
  opacity: 0;
  transform: translateY(56px) scale(0.985);
  transition: opacity 650ms ease, transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}

.motion-ready .showreel-pin.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.video-stage {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: #09111e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  transform: none;
  transition: filter 500ms ease;
  will-change: auto;
}

.showreel-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.showreel-shutters {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  pointer-events: none;
}

.showreel-shutters span {
  background: var(--canvas);
  opacity: 0;
}

.motion-ready .showreel-shutters span {
  opacity: 1;
  transform: translateX(0);
  transition: transform 850ms var(--ease-out), opacity 280ms ease 760ms;
}

.motion-ready .showreel-pin.is-inview .showreel-shutters span {
  opacity: 0;
}

.motion-ready .showreel-pin.is-inview .showreel-shutters span:nth-child(1) { transform: translateX(-102%); transition-delay: 0ms, 760ms; }
.motion-ready .showreel-pin.is-inview .showreel-shutters span:nth-child(2) { transform: translateX(102%); transition-delay: 80ms, 840ms; }
.motion-ready .showreel-pin.is-inview .showreel-shutters span:nth-child(3) { transform: translateX(-102%); transition-delay: 160ms, 920ms; }
.motion-ready .showreel-pin.is-inview .showreel-shutters span:nth-child(4) { transform: translateX(102%); transition-delay: 240ms, 1000ms; }

.video-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font: 600 14px/1.2 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 1;
  transform: none;
}

.video-caption span:last-child {
  color: var(--lime);
}

.video-is-paused .video-stage {
  filter: brightness(0.55) saturate(0.75);
}

.video-is-paused .showreel-video {
  transform: scale(1.035);
}

.about-section {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100svh;
  margin-top: 0;
  padding: 48px 24px;
  place-items: center;
  border-radius: 0;
  background: #dffb86;
  color: #030712;
  box-shadow: 0 -20px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.about-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 35%);
  content: "";
  opacity: var(--about-wash, 0);
  pointer-events: none;
  transition: opacity 180ms linear;
}

.about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: min(980px, 100%);
}

.motion-ready .about-section::before {
  opacity: var(--about-wash, 0);
}

.about-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eyebrow {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font: 600 16px/normal Sora, sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0;
  font: 400 clamp(52px, 7vw, 100px)/1 Sora, sans-serif;
  letter-spacing: -0.04em;
}

.about-content h2 span {
  display: block;
}

.motion-ready .about-content h2 span {
  clip-path: inset(0 0 105% 0);
  transform: translateY(105%);
  transition: clip-path 850ms var(--ease-out), transform 850ms var(--ease-out);
}

.motion-ready .about-content.is-inview h2 span {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.motion-ready .about-content.is-inview h2 span:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .about-content.is-inview h2 span:nth-child(3) {
  transition-delay: 180ms;
}

.about-copy {
  width: 100%;
  max-width: 980px;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  font: 400 24px/1.3 Sora, sans-serif;
  text-wrap: balance;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(797px, 100%);
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(3, 7, 18, 0.18);
  list-style: none;
}

.about-proof li {
  display: grid;
  gap: 3px;
}

.about-proof strong {
  font: 600 clamp(25px, 2.4vw, 36px)/1 var(--font-ui);
  letter-spacing: -0.06em;
}

.about-proof span {
  color: rgba(3, 7, 18, 0.66);
  font: 600 11px/1.35 var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.selected-works {
  position: relative;
  z-index: 3;
  min-height: 3419px;
  overflow: visible;
  background: var(--canvas);
  color: #fff;
  isolation: isolate;
}

.works-stars {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(3, 7, 18, 0.58) 0%, rgba(3, 7, 18, 0.76) 48%, rgba(3, 7, 18, 0.9) 100%),
    url("assets/selected-works-night-sky.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: calc(var(--stars-progress, 0) * 0.2);
  pointer-events: none;
}

.works-stars::before {
  position: absolute;
  inset: 0;
  content: "";
}

.works-stars::before {
  background: radial-gradient(ellipse at 50% 10%, rgba(66, 104, 147, 0.16), transparent 48%);
  mix-blend-mode: screen;
  opacity: 0.28;
}

.motion-ready .works-stars {
  animation: nightSkyDrift 52s ease-in-out infinite alternate;
}

.motion-ready .works-stars::before {
  animation: nightSkyGlow 12s ease-in-out infinite alternate;
}

@keyframes nightSkyDrift {
  from { background-position: center top; }
  to { background-position: center -120px; }
}

@keyframes nightSkyGlow {
  from { opacity: 0.14; }
  to { opacity: 0.32; }
}

.works-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0;
}

.works-kicker {
  margin: 0 0 120px;
  font: 400 42px/1.1 Sora, sans-serif;
  letter-spacing: -0.06em;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms ease 120ms, transform 850ms var(--ease-out) 120ms;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 610px));
  column-gap: 100px;
  row-gap: 200px;
}

.work-card {
  --column-offset: 0px;
  display: block;
  color: #fff;
  transition: opacity 650ms ease, filter 650ms ease, transform 850ms var(--ease-out), translate 400ms var(--ease-out);
}

.motion-ready .work-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(calc(var(--column-offset) + 72px));
}

.work-card:nth-child(even) {
  --column-offset: 200px;
}

.work-card:nth-child(2) { transition-delay: 70ms; }
.work-card:nth-child(3) { transition-delay: 120ms; }
.work-card:nth-child(4) { transition-delay: 170ms; }
.work-card:nth-child(5) { transition-delay: 220ms; }
.work-card:nth-child(6) { transition-delay: 270ms; }

.work-image {
  position: relative;
  height: 750px;
  overflow: hidden;
  border-radius: 15px;
  background: #ddd;
}

.work-image::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tilt-enabled .work-image {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 500ms var(--ease-out);
  will-change: transform;
}

.work-timodesk .work-image {
  height: auto;
  aspect-ratio: 610 / 785;
  background: #f3f3f3;
}

.work-timodesk .work-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.work-timodesk .work-image::after {
  z-index: 2;
}

.work-card:hover .work-image::after {
  opacity: 1;
}

.work-card:hover .work-image img {
  transform: scale(1.045);
}

.work-card.is-click-zooming .work-image img {
  transform: scale(1.09);
}

.work-card.is-click-zooming .work-image::after {
  opacity: 0.22;
}

.work-card:hover {
  translate: 0 -8px;
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  font-family: Sora, sans-serif;
  min-width: 0;
  line-height: 1.35;
  white-space: nowrap;
  transition: opacity 240ms ease, translate 400ms var(--ease-out), color 300ms ease;
}

.work-card:hover .work-meta {
  translate: 8px 0;
}

.work-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 8px;
}

.work-meta strong {
  font-size: 24px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.work-meta span {
  font-size: 18px;
  overflow-wrap: anywhere;
}

.works-revealed .works-kicker,
.motion-ready .work-card.is-inview {
  filter: blur(0);
  opacity: 1;
  transform: translateY(var(--column-offset));
}


.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  width: 10px;
  height: 10px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #030712;
  font: 700 0px/1 Sora, sans-serif;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  transition: width 260ms ease, height 260ms ease, font-size 180ms ease, opacity 160ms ease;
  translate: -50% -50%;
}

.cursor-dot span {
  display: block;
  width: 100%;
  opacity: 0;
  text-align: center;
  transition: opacity 160ms ease 80ms;
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-dot.is-work-hover {
  width: 132px;
  height: 132px;
  font-size: 19px;
  font-weight: 800;
}

.cursor-dot.is-work-hover::after {
  position: absolute;
  inset: -9px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  animation: cursorRipple 1.2s ease-out infinite;
}

@keyframes cursorRipple {
  0% { opacity: 0.72; scale: 0.7; }
  100% { opacity: 0; scale: 1.42; }
}

.cursor-dot.is-work-hover span {
  opacity: 1;
}

.cursor-dot.is-footer-hover {
  width: 64px;
  height: 64px;
}

.cursor-dot.is-social-hover {
  width: 48px;
  height: 48px;
}

.information-section {
  display: grid;
  grid-template-columns: 518px 648px;
  gap: 142px;
  min-height: 1024px;
  padding: 188px max(24px, calc((100% - 1320px) / 2));
  background: #030712;
  color: #fff;
}

.information-intro {
  align-self: start;
}

.information-kicker {
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.7);
  font: 400 16px/normal Sora, sans-serif;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.information-intro h2 {
  margin: 0;
  font: 600 28px/1.4 Sora, sans-serif;
}

.cv-button {
  --button-texture: url("assets/info-button-texture.png");
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
}

.cv-button img {
  width: 24px;
  height: 24px;
}

.information-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.information-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 25px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.information-row:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.information-row dt {
  color: rgba(255, 255, 255, 0.5);
  font: 400 16px/1.35 Sora, sans-serif;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.information-row dd {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  min-width: 0;
  letter-spacing: 0.32px;
}

.information-row strong {
  font: 600 16px/1.45 Sora, sans-serif;
}

.information-row strong span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.information-row small {
  color: rgba(255, 255, 255, 0.8);
  font: 400 16px/1.5 Sora, sans-serif;
}

@media (pointer: fine) {
  .work-image,
  .socials a,
  .footer-heading-link,
  .footer-contacts a,
  .footer-socials a {
    cursor: none;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin: 0;
  color: currentColor;
  font: 600 13px/1 Sora, sans-serif;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.section-label::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  scale: 1;
  transform-origin: left;
}

.motion-ready .capabilities-heading .section-label::before,
.motion-ready .process-heading .section-label::before {
  scale: 0 1;
  transition: scale 560ms var(--ease-out) 180ms;
}

.motion-ready .capabilities-heading.is-inview .section-label::before,
.motion-ready .process-heading.is-inview .section-label::before {
  scale: 1;
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.92fr);
  gap: 104px;
  padding: 172px max(24px, calc((100% - 1320px) / 2));
  color: #030712;
  background: var(--lime);
}

.capabilities-heading {
  max-width: 610px;
}

.capabilities-heading h2,
.process-heading h2,
.contact-footer h2 {
  margin: 24px 0 32px;
  font: 400 clamp(48px, 5.6vw, 88px) / 0.98 var(--font-display);
  letter-spacing: -4.4px;
}

.capabilities-heading h2 em,
.contact-footer h2 em {
  font-family: var(--font-ui);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
}

.capabilities-heading > p:last-child {
  max-width: 430px;
  margin: 0;
  font: 400 18px/1.55 Sora, sans-serif;
}

.capabilities-list {
  align-self: end;
  border-top: 1px solid rgba(3, 7, 18, 0.24);
}

.capability-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px 20px;
  padding: 30px 0 28px;
  border-bottom: 1px solid rgba(3, 7, 18, 0.24);
  transition: padding 250ms ease;
}

.capability-card:hover {
  padding-inline: 16px;
}

.capability-card span {
  grid-row: span 2;
  opacity: 0.65;
  font: 600 13px/1.2 Sora, sans-serif;
}

.capability-card h3 {
  margin: 0;
  font: 600 24px/1.1 Sora, sans-serif;
}

.capability-card p {
  max-width: 420px;
  margin: 0;
  font: 400 15px/1.55 Sora, sans-serif;
}

.process-section {
  padding: 178px max(24px, calc((100% - 1320px) / 2));
  color: #fff;
  background: var(--canvas);
}

.process-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 100px;
}

.process-heading h2 {
  width: min(910px, 70vw);
  margin: 0;
  font-size: clamp(48px, 4.6vw, 76px);
}

.process-heading h2 span {
  display: block;
  white-space: nowrap;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li {
  display: grid;
  grid-template-columns: 31% 1fr;
  gap: 48px;
  padding: 38px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li > span {
  color: var(--lime);
  font: 600 13px/1.3 Sora, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0 0 13px;
  font: 400 clamp(28px, 3vw, 44px) / 1 var(--font-display);
  letter-spacing: -1.8px;
}

.process-list p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font: 400 16px/1.5 Sora, sans-serif;
}

/* Writing & Ideas */
.writing-section {
  padding: 178px var(--page-gutter);
  color: var(--color-white);
  background: #060a16;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.writing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 84px;
}

.writing-heading h2 {
  margin: 24px 0 0;
  font: 400 clamp(48px, 5.6vw, 88px) / 0.98 var(--font-display);
  letter-spacing: -4.4px;
}

.writing-heading h2 em {
  color: var(--lime);
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.writing-heading > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--color-text-muted);
  font: 400 18px/1.55 var(--font-ui);
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(0, 669px) minmax(360px, 1fr);
  gap: 28px;
}

.newsletter-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  background-color: #101932;
  background-image: url("assets/themerge-card-texture.jpeg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 1px solid #364156;
  border-radius: 20px;
  transition: background-color var(--duration-base) ease, border-color var(--duration-base) ease;
}

.newsletter-feature:hover,
.newsletter-feature:focus-within {
  background-color: #15203a;
  border-color: rgba(187, 244, 81, 0.62);
}

.newsletter-feature > div:first-child {
  position: absolute;
  top: 50px;
  left: 60px;
}

.newsletter-label,
.newsletter-type,
.writing-articles-label,
.writing-article-category {
  margin: 0;
  font: 600 12px/1.2 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-label {
  color: var(--lime);
}

.newsletter-type {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.52);
}

.newsletter-copy {
  position: absolute;
  top: 311px;
  left: 60px;
  width: min(513px, calc(100% - 120px));
  margin: 0;
}

.newsletter-copy h3 {
  width: min(487px, 100%);
  margin: 0;
}

.newsletter-copy h3 img {
  display: block;
  width: 100%;
  height: auto;
}

.newsletter-tagline {
  margin: -4px 0 0 20px;
  color: var(--color-white);
  font: 400 13px/1.25 var(--font-ui);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.newsletter-description {
  max-width: 487px;
  margin: 0
  px 0 0;
  color: var(--color-text-muted);
  font: 400 17px/1.58 var(--font-ui);
}

.writing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: inherit;
  font: 600 14px/1.2 var(--font-ui);
}

.writing-link--featured {
  position: absolute;
  bottom: 53px;
  left: 60px;
  color: var(--lime);
  font-size: 16px;
}

.writing-arrow {
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-out);
}

.newsletter-feature:hover .writing-arrow,
.writing-article:hover .writing-arrow,
.writing-article a:focus-visible .writing-arrow {
  transform: translateX(5px);
}

.writing-articles {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.writing-articles-label {
  margin: 7px 0 16px;
  color: rgba(255, 255, 255, 0.52);
}

.writing-articles-list {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.writing-article {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.writing-article a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 148px;
  padding: 22px 0;
  transition: padding var(--duration-base) var(--ease-out), color var(--duration-fast) ease;
}

.writing-article a:hover,
.writing-article a:focus-visible {
  padding-inline: 14px;
  color: var(--lime);
}

.writing-article-category {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.writing-article h3 {
  max-width: 510px;
  margin: 0;
  font: 500 clamp(19px, 1.65vw, 25px) / 1.16 var(--font-ui);
  letter-spacing: -0.045em;
}

.writing-article-description {
  display: -webkit-box;
  max-width: 500px;
  margin: 10px 0 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font: 400 13px/1.45 var(--font-ui);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.writing-article .writing-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.writing-article a:hover .writing-link,
.writing-article a:focus-visible .writing-link {
  color: var(--lime);
}

.contact-footer {
  position: relative;
  min-height: 1260px;
  overflow: hidden;
  padding: 150px var(--page-gutter) 0;
  color: #030712;
  background: var(--lime);
  border-radius: 50px 50px 0 0;
}

.footer-content,
.footer-meta,
.footer-wordmark-wrap {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  max-width: 984px;
}

.footer-title-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.footer-kicker {
  margin: 0;
  color: rgba(3, 7, 18, 0.7);
  font: 400 16px/normal var(--font-ui);
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.contact-footer h2 {
  width: 100%;
  margin: 0;
  color: var(--color-ink);
  font: 700 clamp(88px, 9.5vw, 182.222px) / normal var(--font-ui);
  letter-spacing: normal;
}

.footer-heading-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: fit-content;
}

.contact-footer h2 em {
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3.6444px;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 63px;
  font: 400 clamp(21px, 1.7vw, 32px) / 1.2 var(--font-ui);
}

.footer-email-group {
  display: grid;
  gap: 12px;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(3, 7, 18, 0.7);
  font: 600 12px/1.3 var(--font-ui);
  letter-spacing: 0.02em;
}

.availability-status > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #030712;
  box-shadow: 0 0 0 4px rgba(3, 7, 18, 0.1);
}

.motion-ready .availability-status > span:first-child {
  animation: availabilityPulse 3.6s ease-in-out infinite;
}

.availability-status.is-copied {
  color: rgba(3, 7, 18, 0.96);
}

.availability-status.is-copied > span:first-child {
  animation: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.32);
}

@keyframes availabilityPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(3, 7, 18, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(3, 7, 18, 0.03); }
}

.footer-contacts a,
.footer-socials a {
  opacity: 1;
}

.footer-divider {
  position: absolute;
  top: 730px;
  right: 0;
  left: 0;
  height: 1px;
}

.footer-divider img {
  width: 100%;
  height: 1px;
}

.footer-meta {
  position: absolute;
  top: 746px;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(3, 7, 18, 0.7);
  font: 400 14px/normal var(--font-ui);
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 22px;
}

.footer-meta p {
  margin: 0;
  white-space: nowrap;
}

.footer-wordmark-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 446px;
  overflow: hidden;
}

.footer-wordmark {
  position: absolute;
  top: 0.04px;
  left: -0.415vw;
  width: 108.67vw;
  max-width: none;
}

.motion-ready .footer-wordmark {
  transform: translateY(12%);
  transition: transform 1200ms var(--ease-out) 380ms;
}

.motion-ready .footer-wordmark-wrap.is-inview .footer-wordmark {
  transform: translateY(0);
}

/* Scroll reveal choreography: JavaScript only adds .motion-ready after it is available. */
.motion-ready .about-content,
.motion-ready .information-intro,
.motion-ready .information-row,
.motion-ready .capabilities-heading,
.motion-ready .capability-card,
.motion-ready .process-heading,
.motion-ready .process-list li,
.motion-ready .writing-heading,
.motion-ready .newsletter-feature,
.motion-ready .writing-article,
.motion-ready .footer-content,
.motion-ready .footer-meta,
.motion-ready .footer-wordmark-wrap {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 700ms ease, transform 900ms var(--ease-out);
}

.motion-ready .about-content.is-inview,
.motion-ready .information-intro.is-inview,
.motion-ready .information-row.is-inview,
.motion-ready .capabilities-heading.is-inview,
.motion-ready .capability-card.is-inview,
.motion-ready .process-heading.is-inview,
.motion-ready .process-list li.is-inview,
.motion-ready .writing-heading.is-inview,
.motion-ready .newsletter-feature.is-inview,
.motion-ready .writing-article.is-inview,
.motion-ready .footer-content.is-inview,
.motion-ready .footer-meta.is-inview,
.motion-ready .footer-wordmark-wrap.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .about-content.is-inview {
  transition-duration: 900ms;
}

.motion-ready .information-row:nth-child(2),
.motion-ready .capability-card:nth-child(2),
.motion-ready .process-list li:nth-child(2) {
  transition-delay: 100ms;
}

.motion-ready .information-row:nth-child(3),
.motion-ready .capability-card:nth-child(3),
.motion-ready .process-list li:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .writing-article:nth-child(2) {
  transition-delay: 100ms;
}

.motion-ready .writing-article:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .information-row:nth-child(4) {
  transition-delay: 240ms;
}

.motion-ready .information-row:nth-child(5) {
  transition-delay: 300ms;
}

.motion-ready .information-row:nth-child(6) {
  transition-delay: 360ms;
}

.motion-ready .footer-meta {
  transition-delay: 180ms;
}

.motion-ready .footer-wordmark-wrap {
  transition-delay: 260ms;
}

@media (max-width: 1100px) {
  .topbar {
    width: 100%;
    height: 64px;
    padding: 0 48px;
  }

  .topbar.is-scrolled {
    height: 64px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 24px;
    height: 24px;
  }

  .topbar.is-menu-open {
    background: rgba(3, 7, 18, 0.96);
  }

  .topbar.is-menu-open .header-actions {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    height: calc(100svh - 64px);
    padding: 24px 48px 28px;
    overflow-y: auto;
    background: rgba(3, 7, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar.is-menu-open nav {
    display: grid;
    gap: 4px;
  }

  .topbar.is-menu-open nav a {
    height: auto;
    padding: 12px 0;
    font-size: 18px;
  }

  .topbar.is-menu-open .hello-button {
    align-self: flex-start;
  }

  .portrait {
    left: 50%;
  }

  .hero-copy {
    left: 12%;
    width: 76%;
  }

  .scroll-down {
    left: 30px;
  }

  .showreel-section {
    min-height: 100svh;
    margin-top: 0;
  }

  .selected-works {
    min-height: auto;
  }

  .works-content {
    width: min(100% - 64px, 960px);
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 150px;
  }

  .work-image {
    height: auto;
    aspect-ratio: 610 / 750;
  }

  .information-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 72px;
    min-height: auto;
    padding: 140px 48px;
  }

  .capabilities-section {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 128px 48px;
  }

  .process-section {
    padding: 128px 48px;
  }

  .writing-section {
    padding: 128px 48px;
  }

  .writing-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .newsletter-feature {
    width: min(100%, 669px);
    min-height: 650px;
  }

  .contact-footer {
    padding-inline: 48px;
  }

  .footer-meta {
    right: 48px;
    left: 48px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .topbar {
    left: 50%;
    width: min(100%, 744px);
    height: 72px;
    padding: 0 16px;
    transform: translateX(-50%);
  }

  .topbar.is-scrolled {
    height: 72px;
  }

  .brand {
    font-size: 36.116px;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .topbar.is-menu-open .header-actions {
    top: 72px;
    height: calc(100svh - 72px);
    padding: 24px 16px 28px;
  }

  .green-shape {
    top: calc(50% + 299.57px);
    right: -119px;
    width: 775px;
    height: 1096.133px;
    transform: translateY(calc(-50% + var(--hero-shape-shift, 0px)));
  }

  .hero-copy {
    top: 157px;
    left: 50%;
    width: min(569px, calc(100% - 48px));
    text-align: center;
    transform: translateX(-50%) translateY(var(--hero-copy-shift, 0));
  }

  h1 {
    margin-top: 0;
    font-size: clamp(150px, 26.66vw, 198.335px);
    line-height: 1.1;
    letter-spacing: -11px;
  }

  .hero-copy p {
    margin-top: 38px;
    margin-left: 0;
    font-family: var(--font-display);
    font-size: clamp(22px, 4.01vw, 29.86px);
    line-height: 1.1;
    white-space: normal;
  }

  .socials {
    justify-content: center;
    gap: 26.8px;
    margin: 39.813px auto 0;
  }

  .socials a {
    width: 33.178px;
    height: 33.178px;
  }

  .portrait {
    top: 300px;
    left: 50%;
    width: min(116vw, 890px);
    height: auto;
    transform: translateX(-50%) translateY(var(--hero-portrait-shift, 0));
  }

  .scroll-down {
    display: none;
  }
}

/* 1024px laptop composition from the dedicated Figma frame. */
@media (min-width: 1024px) and (max-width: 1100px) {
  .background-art {
    width: 1446px;
    height: 460px;
  }

  .green-shape {
    top: calc(50% + 36px);
    right: -90.09px;
    width: 492.094px;
    height: 696px;
  }

  .topbar {
    left: 0;
    width: 100%;
    height: 88px;
    padding: 24px 44px;
    transform: none;
  }

  .topbar.is-scrolled {
    height: 72px;
  }

  .header-actions {
    display: flex;
    gap: 20px;
  }

  .menu-toggle {
    display: none;
  }

  nav a {
    padding-inline: 10px;
  }

  .button {
    padding: 11.5px 18px;
  }

  .hero-copy {
    top: 350px;
    left: 44px;
    width: min(46%, 450px);
    text-align: left;
    transform: translateY(var(--hero-copy-shift, 0));
  }

  h1 {
    margin-top: 0;
    font-size: clamp(132px, 14.5vw, 150px);
    line-height: 0.96;
    letter-spacing: -8px;
  }

  .hero-copy p {
    margin: 14px 0 0 2px;
    font-size: 18px;
    line-height: 1.1;
    white-space: normal;
  }

  .socials {
    justify-content: flex-start;
    gap: 14px;
    margin: 16px 0 0 2px;
  }

  .socials a {
    width: 21px;
    height: 21px;
  }

  .portrait {
    top: 92px;
    left: 75%;
    width: min(78vw, 800px);
    height: auto;
    transform: translateX(-50%) translateY(var(--hero-portrait-shift, 0));
  }
}

@media (max-width: 767.98px) {
  #about,
  #project,
  #information,
  #contact {
    scroll-margin-top: 72px;
  }

  .banner {
    min-height: 100svh;
    height: 100svh;
  }

  /* Safari's bottom controls change the visible viewport while scrolling. */
  @supports (height: 100dvh) {
    .banner {
      min-height: 100dvh;
      height: 100dvh;
    }

    .topbar.is-menu-open .header-actions {
      height: calc(100dvh - 56px);
    }
  }

  .topbar {
    height: 56px;
    padding: 0 16px;
  }

  .topbar.is-scrolled {
    height: 56px;
  }

  .brand {
    font-size: 30.712px;
    letter-spacing: -1.85px;
  }

  .brand img {
    width: 23.81px;
    height: 23.81px;
    margin-right: 1.38px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    width: 24px;
    height: 24px;
  }

  .topbar.is-menu-open {
    background: rgba(3, 7, 18, 0.96);
  }

  .topbar.is-menu-open .header-actions {
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    height: calc(100svh - 56px);
    padding: 20px 16px 24px;
    overflow-y: auto;
    background: rgba(3, 7, 18, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .topbar.is-menu-open nav {
    display: grid;
    gap: 4px;
  }

  .topbar.is-menu-open nav a {
    height: auto;
    padding: 12px 0;
    font-size: 18px;
  }

  .topbar.is-menu-open .hello-button {
    align-self: flex-start;
  }

  .background-art {
    top: 0;
    left: calc(50% + 0.5px);
    width: 1428px;
    height: 453px;
    object-fit: cover;
  }

  .green-shape {
    top: 347px;
    right: -73px;
    width: 448px;
    height: 635px;
    transform: translateY(var(--hero-shape-shift, 0));
  }

  .portrait {
    top: 324px;
    left: 50%;
    width: min(145vw, 540px);
    height: auto;
    max-width: none;
    transform: translateX(-50%) translateY(var(--hero-portrait-shift, 0));
  }

  .hero-copy {
    top: 142px;
    bottom: auto;
    left: 16px;
    width: calc(100% - 32px);
    text-align: center;
  }

  .hero-copy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
  }

  h1 {
    margin: 0;
    font-size: clamp(88px, 31.88vw, 119.558px);
    line-height: 0.9;
    letter-spacing: -7px;
    transform: translateY(15px);
  }

  .hero-copy p {
    margin: 0;
    font-size: 18px;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .socials {
    display: flex;
    gap: 16px;
    margin: 0;
  }

  .socials a {
    width: 20px;
    height: 20px;
  }

  .scroll-down {
    display: none;
  }

  /* Preserve the 375px Figma composition on iPhone 16 Pro's 402px viewport. */
  @media (min-width: 390px) and (max-width: 430px) and (min-height: 800px) {
    .portrait {
      top: 314px;
      left: 50%;
      width: 540px;
    }
  }

  .showreel-section {
    min-height: 100svh;
    margin-top: 0;
    padding: 0;
  }

  .video-stage {
    min-height: 0;
  }

  .video-caption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 11px;
  }

  .about-section {
    min-height: 100svh;
    margin-top: 0;
    padding: 48px 24px;
    border-radius: 0;
  }

  .about-content h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .about-copy {
    font-size: 17px;
  }

  .about-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
    padding-top: 14px;
  }

  .about-proof li {
    grid-template-columns: 72px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .selected-works {
    min-height: auto;
  }

  .works-content {
    width: min(100% - 40px, 610px);
    padding: 84px 0 110px;
  }

  .works-kicker {
    margin-bottom: 54px;
    font-size: 34px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .work-card,
  .work-card:nth-child(even) {
    --column-offset: 0px;
  }

  .work-image {
    height: auto;
    aspect-ratio: 610 / 750;
    border-radius: 12px;
  }

  .work-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 12px;
    white-space: normal;
  }

  .work-meta strong {
    font-size: 19px;
  }

  .work-meta span {
    font-size: 13px;
    text-wrap: balance;
  }

  .cursor-dot {
    display: none;
  }

  .information-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 96px 24px;
  }

  .information-kicker {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .information-intro h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .cv-button {
    margin-top: 24px;
    padding: 9px 16px;
    font-size: 15px;
  }

  .information-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 28px;
  }

  .information-row dt,
  .information-row strong,
  .information-row small {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .capabilities-section,
  .process-section {
    display: block;
    padding: 96px 24px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 2.2px;
  }

  .capabilities-heading h2,
  .process-heading h2 {
    width: auto;
    margin: 20px 0 24px;
    font-size: clamp(46px, 13vw, 62px);
    letter-spacing: -3px;
  }

  .process-heading h2 span {
    white-space: normal;
  }

  .capabilities-heading > p:last-child {
    font-size: 16px;
  }

  .capabilities-list {
    margin-top: 60px;
  }

  .capability-card {
    grid-template-columns: 42px 1fr;
    gap: 12px 8px;
    padding: 24px 0;
  }

  .capability-card h3 {
    font-size: 20px;
  }

  .capability-card p {
    font-size: 14px;
  }

  .process-heading {
    display: block;
    padding-bottom: 56px;
  }

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

  .process-list li {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .process-list h3 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }

  .process-list p {
    font-size: 14px;
  }

  .writing-section {
    padding: 96px 24px;
  }

  .writing-heading {
    display: block;
    margin-bottom: 56px;
  }

  .writing-heading h2 {
    margin-top: 20px;
    font-size: clamp(46px, 13vw, 62px);
    letter-spacing: -3px;
  }

  .writing-heading > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .writing-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .newsletter-feature {
    min-height: 0;
    padding: 28px;
  }

  .newsletter-feature > div:first-child,
  .newsletter-copy,
  .writing-link--featured {
    position: static;
  }

  .newsletter-copy {
    width: auto;
    margin: 74px 0 54px;
  }

  .newsletter-copy h3 {
    width: min(487px, 100%);
  }

  .newsletter-tagline {
    margin-left: 12px;
    font-size: 11px;
    white-space: normal;
  }

  .newsletter-description {
    margin-top: 22px;
    font-size: 15px;
  }

  .writing-link--featured {
    margin-top: auto;
  }

  .writing-articles-label {
    margin-top: 0;
  }

  .writing-article a {
    min-height: 0;
    padding: 26px 0;
  }

  .writing-article h3 {
    font-size: 20px;
  }

  .writing-article-description {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .contact-footer {
    min-height: 800px;
    padding: 84px 24px 0;
    border-radius: 28px 28px 0 0;
  }

  .footer-content {
    gap: 48px;
  }

  .footer-kicker {
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .contact-footer h2 {
    font-size: clamp(58px, 16vw, 86px);
    letter-spacing: -0.065em;
  }

  .footer-heading-link {
    gap: 30px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 12px;
    font-size: 18px;
  }

  .footer-contacts a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-divider {
    position: relative;
    top: auto;
    margin-top: 42px;
  }

  .footer-meta {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    align-items: flex-start;
    margin-top: 18px;
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .footer-socials {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-meta p {
    text-align: right;
  }

  .footer-wordmark {
    left: -40vw;
    width: 180vw;
  }

  .footer-wordmark-wrap {
    position: relative;
    height: min(68vw, 280px);
    margin-top: 48px;
  }
}
