:root {
  --ink: #101010;
  --muted: #686866;
  --paper: #f3f3f1;
  --paper-bright: #fafaf8;
  --line: rgba(16, 16, 16, 0.16);
  --white: #f7f7f4;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

::selection {
  color: #fff;
  background: #111;
}

.splash-cursor {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 22px;
  align-content: center;
  color: #222;
  background: #f5f5f3;
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader span {
  font-size: 9px;
  letter-spacing: 0.25em;
}

.loader-mark {
  width: 28px;
  height: 28px;
  background: #111;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  animation: loaderPulse 1.1s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  to { transform: rotate(90deg) scale(0.65); opacity: 0.35; }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(24px, 4vw, 72px);
  transition: height 0.45s var(--ease), background 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  height: 76px;
  background: rgba(245, 245, 243, 0.78);
  border-color: rgba(20, 20, 20, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1vw, 14px);
}

.brand-mark {
  width: auto;
  height: clamp(46px, 4.6vw, 66px);
  display: block;
  object-fit: contain;
  transition: transform 0.5s var(--ease), filter 0.5s ease;
}

.brand-wordmark {
  position: relative;
  width: clamp(84px, 7vw, 118px);
  height: clamp(28px, 3vw, 40px);
  display: inline-flex;
  align-items: center;
}

.brand-wordmark-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.brand-wordmark-image--white {
  display: none;
}

html[data-theme="dark"] .brand-wordmark-image--black,
.site-header.is-dark .brand-wordmark-image--black {
  display: none;
}

html[data-theme="dark"] .brand-wordmark-image--white,
.site-header.is-dark .brand-wordmark-image--white {
  display: block;
}

.brand:hover .brand-mark {
  transform: scale(1.06);
  filter: drop-shadow(0 5px 8px rgba(34, 34, 34, 0.16));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.nav-link {
  position: relative;
  padding: 15px 0;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: calc(50% - 2px);
  bottom: 3px;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.35s var(--ease);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.header-action {
  justify-self: end;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 11px 17px;
  font-size: 11px;
  border: 1px solid rgba(10, 10, 10, 0.28);
  border-radius: 99px;
  transition: color 0.3s, background 0.3s;
}

.header-action:hover {
  color: #fff;
  background: #111;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  overflow: hidden;
  background: #e9e9e7;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 248, 246, 0.6) 0%, rgba(248, 248, 246, 0.12) 48%, rgba(248, 248, 246, 0.04) 100%),
    linear-gradient(180deg, rgba(250, 250, 248, 0.22), transparent 30%, transparent 72%, rgba(238, 238, 236, 0.3));
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(30, 30, 30, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 30, 30, 0.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 40%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 5.7vw, 110px);
  top: 50%;
  width: min(660px, 47vw);
  transform: translateY(-42%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0;
  transform: translateY(16px);
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 1px;
  background: currentColor;
}

.hero-title {
  margin: 0;
  font-size: clamp(52px, 5.15vw, 99px);
  line-height: 1.03;
  font-weight: 300;
  letter-spacing: -0.07em;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-right: 0.08em;
}

.title-line > span {
  display: block;
  transform: translateY(112%);
}

body.is-ready .title-line > span {
  transform: translateY(0);
  transition: transform 1.15s var(--ease);
}

body.is-ready .title-line:nth-child(2) > span {
  transition-delay: 0.12s;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  margin: 28px 0 33px;
  font-size: 14px;
  letter-spacing: 0.25em;
  opacity: 0;
  transform: translateY(16px);
}

.hero-subtitle i,
.hero-meta i {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
}

.primary-cta {
  --specular-radius: 30px;
  width: min(310px, 100%);
  height: 58px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 4px 23px;
  color: #111;
  font-size: 13px;
  letter-spacing: 0.23em;
  background: transparent;
  border: 0;
  border-radius: var(--specular-radius);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(20, 24, 32, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: background 0.35s ease, box-shadow 0.35s ease, scale 0.15s ease;
}

.primary-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid rgba(82, 82, 82, 0.55);
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.primary-cta.is-specular-ready::before {
  opacity: 0;
}

.primary-cta:hover {
  background: transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 30px rgba(20, 24, 32, 0.12);
}

.primary-cta:active {
  scale: 0.98;
}

.primary-cta:focus-visible {
  outline: 2px solid rgba(71, 85, 105, 0.72);
  outline-offset: 4px;
}

.specular-cta__fx {
  position: absolute;
  z-index: 1;
  inset: -20px;
  pointer-events: none;
}

.specular-cta__fx canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.specular-cta__label {
  position: relative;
  z-index: 2;
}

.cta-icon {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111;
  border-radius: 50%;
  font-size: 21px;
  transition: color 0.35s, background 0.35s, transform 0.35s;
}

.primary-cta:hover .cta-icon {
  color: #111;
  background: #fff;
  transform: rotate(-30deg);
}

body.is-ready .reveal-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.9s var(--ease);
  transition-delay: 0.55s;
}

body.is-ready .hero-subtitle {
  transition-delay: 0.4s;
}

body.is-ready .primary-cta {
  transition: opacity 0.8s ease 0.55s, transform 0.9s var(--ease) 0.55s, background 0.35s ease, box-shadow 0.35s ease, scale 0.15s ease;
}

.hero-pagination {
  position: absolute;
  z-index: 2;
  right: clamp(23px, 2.6vw, 52px);
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateY(-50%);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.pagination-dots {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pagination-dots i {
  width: 4px;
  height: 4px;
  background: #111;
  border-radius: 50%;
  opacity: 0.25;
}

.pagination-dots i.active {
  width: 6px;
  height: 6px;
  opacity: 1;
  transform: translateX(-1px);
}

.scroll-cue,
.hero-meta {
  position: absolute;
  z-index: 2;
  bottom: 32px;
  display: flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.scroll-cue {
  left: clamp(34px, 5.7vw, 110px);
  gap: 23px;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background: #111;
  border-radius: 50%;
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  50% { box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.08); }
}

.hero-meta {
  right: clamp(58px, 6vw, 118px);
  gap: 19px;
}

.hero-meta i {
  width: 3px;
  height: 3px;
}

.section-shell {
  width: min(1600px, calc(100% - 11.5vw));
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
}

.creation {
  position: relative;
  padding: 110px 0 145px;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
  color: #4f4f4d;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.creation-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10vw;
  align-items: end;
  padding: 95px 0 75px;
}

.creation-heading h2,
.works-heading h2 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(58px, 7vw, 126px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.creation-heading p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.creation-stage {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #e7e7e4;
}

.prompt-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 58px);
  background: #f8f8f6;
}

.prompt-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5fbf76;
  box-shadow: 0 0 0 4px rgba(95, 191, 118, 0.13);
}

.prompt-copy {
  margin: auto 0 28px;
  font-size: clamp(22px, 2.1vw, 36px);
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.prompt-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prompt-tags span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #686866;
  font-size: 10px;
}

.generate-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 28px;
  padding: 16px 17px;
  color: #fff;
  background: #141414;
  border: 1px solid #141414;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.16em;
  transition: 0.3s ease;
}

.generate-button:hover {
  color: #111;
  background: transparent;
}

.generate-button.is-generating span:last-child {
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.visual-panel {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(166, 197, 255, 0.72), transparent 24%),
    radial-gradient(circle at 24% 72%, rgba(255, 186, 225, 0.58), transparent 27%),
    linear-gradient(135deg, #e4e9ef 0%, #fbfaf6 50%, #d5e1e4 100%);
}

.visual-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 50px 50px;
}

.visual-core {
  position: relative;
  z-index: 3;
  width: min(40%, 265px);
  filter: drop-shadow(0 34px 24px rgba(61, 72, 88, 0.24));
  animation: floatCore 5.5s ease-in-out infinite;
}

.visual-core svg {
  display: block;
  fill: url(#none);
}

.visual-core path {
  fill: #151515;
}

@keyframes floatCore {
  50% { transform: translateY(-18px) rotate(4deg); }
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(34, 42, 56, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.orbit-one {
  width: 68%;
  aspect-ratio: 1.65;
}

.orbit-two {
  width: 85%;
  aspect-ratio: 1.9;
  transform: rotate(23deg);
}

.visual-label,
.visual-time {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.visual-label { left: 28px; }
.visual-time { right: 28px; }

.visual-panel.is-shifting {
  animation: shiftVisual 0.9s var(--ease);
}

@keyframes shiftVisual {
  50% { filter: hue-rotate(55deg) saturate(1.5); }
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.feature-row article {
  position: relative;
  min-height: 220px;
  padding: 28px 4vw 20px 0;
}

.feature-row article:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 4vw;
}

.feature-row article > span {
  color: #8a8a87;
  font-size: 9px;
}

.feature-row h3 {
  margin: 55px 0 14px;
  font-size: 21px;
  font-weight: 400;
}

.feature-row p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.feature-commerce-video a,
.feature-film-director a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #171717;
  font-size: 9px;
  letter-spacing: .06em;
  text-decoration: none;
}

.feature-commerce-video a span,
.feature-film-director a span { transition: transform .2s ease; }
.feature-commerce-video a:hover span,
.feature-commerce-video a:focus-visible span,
.feature-film-director a:hover span,
.feature-film-director a:focus-visible span { transform: translateX(4px); }

.works {
  padding: 110px 0 155px;
  color: #ededeb;
  background: #111;
}

.section-kicker-light {
  color: #9a9a96;
  border-color: rgba(255, 255, 255, 0.18);
}

.works-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 90px 0 80px;
}

.works-heading h2 {
  font-size: clamp(58px, 6.6vw, 118px);
}

.works-heading a {
  display: flex;
  gap: 60px;
  align-items: center;
  min-width: 245px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 60px 26px;
}

.work-card-wide {
  grid-row: span 2;
}

.work-media {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 72%;
  background: #ddd;
}

.work-card-wide .work-media {
  padding-bottom: 112%;
}

.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease;
}

.work-card:hover .work-media::after {
  background: transparent;
}

.work-media-image {
  background-image: url("./assets/hero-reference.jpg");
  background-position: 67% center;
  background-size: cover;
  transition: background-size 1.2s var(--ease);
}

.work-card:hover .work-media-image {
  background-size: 112%;
}

.work-index,
.work-view {
  position: absolute;
  z-index: 4;
  top: 22px;
  font-size: 8px;
  letter-spacing: 0.16em;
}

.work-index { left: 22px; }
.work-view {
  right: 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.45s var(--ease);
}

.work-card:hover .work-view {
  opacity: 1;
  transform: translateY(0);
}

.work-info {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 20px 0 0;
}

.work-info h3 {
  margin: 0 0 9px;
  font-size: 21px;
  font-weight: 400;
}

.work-info p,
.work-info > span {
  margin: 0;
  color: #83837f;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.work-info > span {
  grid-column: 2;
  grid-row: 1 / 3;
}

.work-media-orb {
  background:
    radial-gradient(circle at 24% 20%, rgba(219, 255, 252, 0.9), transparent 20%),
    linear-gradient(145deg, #c8cad9, #f5d8df 48%, #82909c);
}

.iridescent-orb {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 33% 27%, #fff, #d5fcf3 18%, #b49edc 42%, #5e6d8d 67%, #e0b3c4 82%);
  box-shadow: inset -20px -18px 28px rgba(30, 41, 69, 0.28), 0 35px 50px rgba(44, 32, 54, 0.28);
  transition: transform 1s var(--ease);
}

.work-card:hover .iridescent-orb {
  transform: translate(-50%, -50%) scale(1.08) rotate(12deg);
}

.work-media-wave {
  background: #dcdedb;
}

.mesh-wave {
  position: absolute;
  z-index: 2;
  left: -10%;
  right: -10%;
  bottom: -30%;
  height: 90%;
  border-radius: 50% 50% 0 0;
  background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 10px, rgba(18,18,18,.75) 11px, transparent 12px 20px);
  transform: perspective(300px) rotateX(56deg);
  transition: transform 1.2s var(--ease);
}

.work-card:hover .mesh-wave {
  transform: perspective(300px) rotateX(49deg) translateY(-5%);
}

.about {
  padding: 115px 0 140px;
}

.about-statement {
  max-width: 1320px;
  margin: 145px auto 155px;
  font-size: clamp(40px, 5.6vw, 101px);
  font-weight: 300;
  line-height: 1.36;
  letter-spacing: -0.075em;
  text-align: center;
}

.about-statement span {
  position: relative;
  color: #8f8f8c;
  white-space: nowrap;
}

.about-statement span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 2px;
  background: currentColor;
}

.about-bottom {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8vw;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.about-note > span {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.about-note p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats div {
  display: flex;
  min-height: 125px;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.stats strong {
  font-size: clamp(34px, 3.5vw, 63px);
  font-weight: 300;
  letter-spacing: -0.06em;
}

.stats span {
  color: var(--muted);
  font-size: 10px;
}

.closing {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #f4f4f1;
  background: #0f0f0f;
}

.closing-glow {
  position: absolute;
  width: min(70vw, 950px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(195, 211, 235, 0.25), rgba(232, 178, 229, 0.09) 38%, transparent 68%);
  filter: blur(18px);
}

.closing-mark {
  position: relative;
  z-index: 2;
  width: 118px;
  margin-bottom: 40px;
  animation: floatCore 5.5s ease-in-out infinite;
}

.closing-mark svg {
  display: block;
  fill: #f4f4f1;
}

.closing p {
  position: relative;
  z-index: 2;
  margin: 0 0 33px;
  font-size: clamp(28px, 3.2vw, 53px);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.closing a {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 50px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 11px;
  letter-spacing: .14em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding: 70px 5.7vw 45px;
  color: #e8e8e4;
  background: #0f0f0f;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-brand {
  width: clamp(150px, 14vw, 220px);
  display: inline-flex;
  align-items: center;
  transition: opacity .35s ease, transform .35s var(--ease);
}

.footer-brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand:hover {
  opacity: .82;
  transform: translateY(-2px);
}

.site-footer p {
  margin: 15px 0 0;
  color: #6d6d69;
  font-size: 8px;
  letter-spacing: .2em;
}

.footer-links {
  display: flex;
  gap: 38px;
  font-size: 10px;
}

.copyright { justify-self: end; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.9s ease, transform 1s var(--ease);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .desktop-nav { gap: 35px; }
  .header-action { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { justify-self: end; }
  .hero-content { width: min(660px, 61vw); }
  .hero-meta { display: none; }
  .creation-heading { grid-template-columns: 1fr; gap: 45px; }
  .creation-heading p { margin-left: auto; }
  .creation-stage { grid-template-columns: 1fr 1fr; min-height: 490px; }
}

@media (max-width: 760px) {
  .site-header {
    height: 78px;
    padding: 0 20px;
  }

  .site-header.is-scrolled { height: 68px; }
  .brand { gap: 8px; }
  .brand-mark { width: auto; height: 42px; }
  .brand-wordmark { width: 76px; height: 28px; }
  .desktop-nav { display: none; }

  .menu-button {
    position: relative;
    z-index: 102;
    justify-self: end;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    width: 22px;
    height: 1px;
    background: #111;
    transition: 0.35s var(--ease);
  }

  .menu-open .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 95px 24px 35px;
    background: rgba(244, 244, 241, .97);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: 0.45s var(--ease);
  }

  .menu-open .mobile-menu { opacity: 1; visibility: visible; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 14px 0;
    font-size: 38px;
    font-weight: 300;
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu a span { font-size: 9px; color: #8d8d89; }
  .mobile-menu p { margin-top: auto; font-size: 8px; letter-spacing: .18em; color: #777; }

  .hero { min-height: 690px; }
  .hero-video { object-position: 58% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(248,248,246,.78), rgba(248,248,246,.18)); }
  .hero-grid { background-size: 50px 50px; }
  .hero-content {
    left: 24px;
    right: 24px;
    top: 47%;
    width: auto;
    transform: translateY(-42%);
  }
  .eyebrow { margin-bottom: 18px; font-size: 8px; }
  .hero-title { font-size: clamp(45px, 13.3vw, 67px); line-height: 1.08; }
  .hero-subtitle { gap: 11px; margin: 22px 0 29px; font-size: 10px; letter-spacing: .14em; }
  .hero-subtitle i { width: 3px; height: 3px; }
  .primary-cta { width: 250px; height: 51px; padding-left: 18px; font-size: 11px; }
  .cta-icon { width: 39px; height: 39px; }
  .hero-pagination { display: none; }
  .scroll-cue { left: 24px; bottom: 23px; font-size: 8px; gap: 14px; }

  .section-shell { width: calc(100% - 40px); }
  .creation, .works, .about { padding-top: 75px; padding-bottom: 90px; }
  .section-kicker span:last-child { display: none; }
  .creation-heading { padding: 66px 0 50px; }
  .creation-heading h2, .works-heading h2 { font-size: 58px; }
  .creation-heading p { font-size: 12px; line-height: 1.9; }
  .creation-stage { grid-template-columns: 1fr; }
  .prompt-panel { min-height: 420px; }
  .visual-panel { min-height: 390px; }
  .feature-row { grid-template-columns: 1fr; margin-top: 60px; }
  .feature-row article { min-height: 180px; border-bottom: 1px solid var(--line); }
  .feature-row article:not(:last-child) { margin: 0; border-right: 0; }
  .feature-row h3 { margin-top: 37px; }

  .works-heading { display: block; padding: 66px 0 55px; }
  .works-heading a { margin-top: 40px; }
  .work-grid { grid-template-columns: 1fr; gap: 55px; }
  .work-card-wide { grid-row: auto; }
  .work-card-wide .work-media, .work-media { padding-bottom: 84%; }

  .about-statement { margin: 90px auto 110px; font-size: 39px; line-height: 1.45; text-align: left; }
  .about-statement br { display: none; }
  .about-bottom { grid-template-columns: 1fr; }
  .stats { margin-top: 30px; }
  .stats div { min-height: 100px; padding-left: 12px; }
  .stats span { font-size: 8px; line-height: 1.4; }
  .closing { min-height: 650px; padding: 30px 24px; text-align: center; }
  .closing-mark { width: 85px; }
  .closing p { font-size: 31px; }

  .site-footer { grid-template-columns: 1fr; padding: 55px 24px 35px; }
  .footer-brand { width: 142px; }
  .footer-links { grid-row: 2; }
  .copyright { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .splash-cursor { display: none; }
  .primary-cta::before { border-color: rgba(82, 82, 82, 0.72); }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
