@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Mono:wght@400;500&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --black: #090a0b;
  --cream: #ece7dd;
  --acid: #eaff4f;
  --blue: #2a6fff;
  --orange: #ff5d3d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.hub-progress {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 3px;
}
.hub-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
}

.hub-header {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 clamp(20px,4vw,64px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .35s ease, backdrop-filter .35s ease;
}
.hub-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  background: rgba(9,10,11,.78);
  backdrop-filter: blur(18px);
}
.hub-header-logo { width: min(210px,42vw); }
.hub-header-logo img { width: auto; max-height: 43px; }

.hub-nav { display: flex; gap: 25px; }
.hub-nav a,
.hub-kicker {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

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

/* Cinematic hero */
.cinematic-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #090a0b;
}
.hero-scenes,
.hero-scene,
.scene-backdrop,
.scene-off-bg,
.scene-projects-bg {
  position: absolute;
  inset: 0;
}
.hero-scene {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1s ease, transform 1s ease;
  pointer-events: none;
}
.hero-scene.active {
  opacity: 1;
  transform: scale(1);
}
.hero-gridlines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / calc(100% / 6) 100%,
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 100% calc(100% / 5);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.6), transparent 22%, transparent 78%, rgba(0,0,0,.8));
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,.18), rgba(0,0,0,.48) 58%, rgba(0,0,0,.8)),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.65)),
    linear-gradient(90deg, rgba(0,0,0,.34), transparent 26%, transparent 74%, rgba(0,0,0,.32));
  z-index: 4;
  pointer-events: none;
}
.scene-backdrop {
  background-position: center;
  background-size: cover;
  filter: brightness(.48) saturate(.9);
  transform: scale(1.05);
}
.scene-projects-bg {
  background:
    radial-gradient(circle at 72% 30%, rgba(42,111,255,.45), transparent 28%),
    linear-gradient(125deg, #0f1624, #090a0b 65%);
}
.scene-projects-bg::before {
  content: "";
  position: absolute;
  inset: 9% 9% 9% auto;
  width: min(34vw, 420px);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 34px 100%;
  opacity: .24;
}
.scene-off-bg {
  background: linear-gradient(120deg, #201010, #090a0b 65%);
  background-position: center;
  background-size: cover;
  filter: brightness(.48) saturate(.88);
}
.scene-card,
.scene-browser,
.scene-app-icon {
  position: absolute;
  box-shadow: 0 28px 70px rgba(0,0,0,.48);
}
.drift {
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform .22s linear;
}
.polaroid {
  padding: 10px 10px 34px;
  background: #f4efe4;
}
.polaroid > div,
.scene-card.polaroid {
  background-position: center;
  background-size: cover;
}
.scene-card.large {
  left: 7vw;
  top: 17vh;
  width: min(48vw, 740px);
  height: min(60vh, 640px);
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.scene-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.15));
}
.scene-card.medium {
  right: 9vw;
  top: 13vh;
  width: min(22vw, 300px);
  height: min(29vw, 380px);
  transform: rotate(7deg);
}
.scene-card.small {
  right: 18vw;
  bottom: 10vh;
  width: min(16vw, 220px);
  height: min(20vw, 280px);
  transform: rotate(-6deg);
}
.tilt-left {
  transform: rotate(-2.5deg);
}
.scene-label,
.scene-film-tag {
  position: absolute;
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.scene-label.left { left: 9vw; bottom: 9vh; }
.scene-label.right { right: 8vw; bottom: 9vh; text-align: right; max-width: 240px; }
.scene-film-tag {
  left: 8vw;
  bottom: 8vh;
  color: rgba(255,255,255,.74);
}

/* Projects scene */
.scene-browser {
  overflow: hidden;
  background: #121416;
  border: 1px solid #272a2c;
  border-radius: 18px;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 14px;
  border-bottom: 1px solid #272a2c;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8f96a4;
}
.browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4a4f57;
}
.browser-bar span {
  margin-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-screen img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.browser-main {
  left: 8vw;
  top: 16vh;
  width: min(47vw, 760px);
  height: min(58vh, 600px);
}
.browser-main .browser-screen { height: calc(100% - 36px); }
.browser-small {
  right: 8vw;
  top: 12vh;
  width: min(27vw, 390px);
  height: min(33vh, 330px);
  transform: rotate(5deg);
}
.browser-small .browser-screen { height: calc(100% - 36px); }
.browser-phone {
  right: 18vw;
  bottom: 10vh;
  width: min(16vw, 205px);
  height: min(34vh, 350px);
  padding: 12px;
  border-radius: 30px;
  background: #0d0f12;
  transform: rotate(-7deg);
}
.browser-phone .browser-screen {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.scene-app-icon {
  right: 10vw;
  bottom: 11vh;
  width: min(11vw, 145px);
  filter: drop-shadow(0 24px 45px rgba(0,0,0,.4));
}
.scene-app-icon img { width: 100%; }

/* Off clock scene */
.off-large {
  left: 8vw;
  top: 15vh;
  width: min(24vw, 315px);
  height: min(31vw, 420px);
  transform: rotate(-8deg);
}
.off-medium {
  right: 10vw;
  top: 13vh;
  width: min(21vw, 285px);
  height: min(28vw, 370px);
  transform: rotate(8deg);
}
.off-small {
  right: 21vw;
  bottom: 11vh;
  width: min(18vw, 240px);
  height: min(23vw, 305px);
  transform: rotate(-2deg);
}
.off-large > div,
.off-medium > div,
.off-small > div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.welcome-content {
  position: relative;
  z-index: 6;
  min-height: 100svh;
  padding: 100px clamp(22px,5vw,78px) 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.welcome-logo {
  width: min(690px, 74vw);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.38));
}
.welcome-copy {
  max-width: 760px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.52);
  font-size: clamp(17px,1.65vw,25px);
  line-height: 1.52;
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
.welcome-copy strong,
.welcome-copy span {
  display: block;
}
.welcome-copy strong { margin-bottom: 4px; }

.explore-link {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
  z-index: 8;
}
.explore-link span { font-size: 18px; }

.hero-meta {
  position: absolute;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.hero-meta-left {
  left: clamp(18px,3vw,44px);
  bottom: 31px;
}
.hero-meta-right {
  right: clamp(18px,3vw,44px);
  bottom: 31px;
  align-items: flex-end;
  text-align: right;
}
.hero-dots {
  position: absolute;
  z-index: 8;
  right: clamp(18px,3vw,44px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-dot {
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hero-dot span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  background: transparent;
}
.hero-dot.active span {
  background: rgba(255,255,255,.9);
}

/* Work paths */
.work-paths {
  padding: 125px clamp(22px,5vw,78px);
  background: var(--cream);
  color: #090a0b;
}
.paths-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 45px;
  align-items: end;
  margin-bottom: 70px;
}
.paths-heading h1,
.hub-about h2,
.hub-contact h2 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(50px,7.3vw,118px);
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.path-card {
  position: relative;
  min-width: 0;
  background: #101214;
  color: #fff;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 6px 12px rgba(0,0,0,.06);
}
.path-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 55px rgba(0,0,0,.17);
}
.path-image {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #16191b;
}
.path-primary-image,
.path-secondary-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, opacity .7s ease;
}
.path-secondary-image {
  opacity: 0;
}
.path-real-estate:hover .path-primary-image {
  transform: scale(1.03);
  opacity: .12;
}
.path-real-estate:hover .path-secondary-image {
  opacity: 1;
  transform: scale(1.04);
}
.path-content { padding: 24px; }
.path-content > span {
  display: block;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #9da09d;
}
.path-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px,2.6vw,43px);
  line-height: .96;
  letter-spacing: -.035em;
}
.path-content p {
  min-height: 72px;
  margin: 0 0 22px;
  color: #b8bab7;
  font-size: 15px;
  line-height: 1.58;
}
.path-content b {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.project-card-image {
  background:
    radial-gradient(circle at 75% 25%, rgba(42,111,255,.48), transparent 35%),
    #0b0d12;
}
.project-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(42,111,255,.08), transparent);
}
.path-rmoh-icon {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 20px;
  width: 96px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.site-screens figure {
  position: absolute;
  margin: 0;
  width: 72%;
  height: 58%;
  border: 6px solid #191c20;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(0,0,0,.5);
  transition: transform .45s ease;
}
.site-screens img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.site-screens figure:nth-child(1) {
  left: 5%;
  top: 10%;
  transform: rotate(-6deg);
}
.site-screens figure:nth-child(2) {
  right: 2%;
  top: 4%;
  transform: rotate(5deg);
}
.site-screens figure:nth-child(3) {
  left: 17%;
  bottom: 2%;
  transform: rotate(1deg);
}
.path-projects:hover .site-screens figure:nth-child(1) { transform: rotate(-4deg) translateY(-6px); }
.path-projects:hover .site-screens figure:nth-child(2) { transform: rotate(3deg) translateY(-8px); }
.path-projects:hover .site-screens figure:nth-child(3) { transform: rotate(0deg) translateY(-4px); }

.off-card-image {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,93,61,.2), transparent 34%),
    #171110;
}
.mini-polaroid {
  position: absolute;
  padding: 8px 8px 27px;
  background: #f5efe4;
  box-shadow: 0 18px 40px rgba(0,0,0,.44);
  transition: transform .45s ease;
}
.mini-polaroid > div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.mp-a {
  left: 5%;
  top: 8%;
  width: 48%;
  height: 60%;
  transform: rotate(-7deg);
}
.mp-b {
  right: 4%;
  top: 4%;
  width: 45%;
  height: 57%;
  transform: rotate(6deg);
}
.mp-c {
  left: 25%;
  bottom: 3%;
  width: 50%;
  height: 58%;
  transform: rotate(1deg);
}
.path-off-clock:hover .mp-a { transform: rotate(-5deg) translateY(-4px); }
.path-off-clock:hover .mp-b { transform: rotate(4deg) translateY(-10px); }
.path-off-clock:hover .mp-c { transform: rotate(-1deg) translateY(-6px); }

/* About + contact */
.hub-about {
  padding: 125px clamp(22px,5vw,78px);
  background: #101214;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px,8vw,120px);
  align-items: start;
}
.hub-about-photo { position: sticky; top: 110px; }
.hub-about-photo img {
  max-height: 78vh;
  object-fit: cover;
  object-position: center top;
}
.hub-about-copy > p:not(.hub-kicker) {
  margin: 0 0 20px;
  color: #c2c4c0;
  font-size: clamp(16px,1.25vw,20px);
  line-height: 1.72;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.about-tags span {
  padding: 8px 10px;
  border: 1px solid #46494a;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: .12em;
}
.hub-contact {
  padding: 125px clamp(22px,5vw,78px);
  background: var(--acid);
  color: #090a0b;
}
.contact-options {
  margin-top: 65px;
  border-top: 1px solid rgba(0,0,0,.5);
}
.contact-options a {
  display: grid;
  grid-template-columns: .55fr 1.35fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0,0,0,.5);
}
.contact-options span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.contact-options strong {
  font-size: clamp(21px,3.2vw,48px);
  overflow-wrap: anywhere;
}
.contact-options b { font-size: 30px; }
.hub-footer {
  padding: 30px clamp(22px,5vw,78px);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #999;
}

/* Responsive */
@media (max-width: 980px) {
  .hub-header { height: 70px; }
  .hub-nav { display: none; }
  .hub-menu-button {
    display: block;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    position: relative;
  }
  .hub-menu-button span {
    position: absolute;
    left: 9px;
    width: 24px;
    height: 2px;
    background: #fff;
  }
  .hub-menu-button span:first-child { top: 16px; }
  .hub-menu-button span:nth-child(2) { top: 24px; }
  .hub-menu-button[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }
  .hub-menu-button[aria-expanded="true"] span:nth-child(2) {
    top: 20px;
    transform: rotate(-45deg);
  }
  .hub-mobile-menu {
    position: fixed;
    z-index: 105;
    inset: 0;
    padding: 95px 24px 50px;
    overflow-y: auto;
    background: #090a0b;
    flex-direction: column;
  }
  .hub-mobile-menu.open { display: flex; }
  .hub-mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid #2c2e2f;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(31px,8.7vw,54px);
    line-height: 1.03;
    text-transform: uppercase;
    overflow-wrap: anywhere;
  }

  .scene-card.large,
  .browser-main {
    width: 58vw;
  }
  .scene-card.medium,
  .off-large { width: 30vw; height: 40vw; }
  .scene-card.small,
  .off-medium,
  .off-small,
  .browser-phone { width: 25vw; }

  .paths-heading { grid-template-columns: 1fr; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
  }
  .path-image {
    height: 100%;
    min-height: 430px;
  }
  .path-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .path-content p { min-height: 0; }

  .hub-about { grid-template-columns: 1fr; }
  .hub-about-photo { position: relative; top: auto; }
}

@media (max-width: 720px) {
  .hero-dots,
  .hero-meta-right { display: none; }

  .welcome-content {
    padding: 95px 18px 68px;
  }
  .welcome-logo {
    width: min(92vw, 580px);
  }
  .welcome-copy {
    max-width: 92vw;
    margin-top: 22px;
    padding-top: 20px;
    font-size: 16px;
  }
  .hero-meta-left {
    left: 18px;
    bottom: 24px;
  }
  .explore-link {
    bottom: 24px;
  }

  .scene-card.large,
  .browser-main {
    left: 5vw;
    top: 20vh;
    width: 74vw;
    height: 40vh;
  }
  .scene-card.medium,
  .scene-card.small,
  .browser-small,
  .browser-phone,
  .scene-app-icon,
  .off-small {
    display: none;
  }
  .off-large {
    left: 5vw;
    top: 17vh;
    width: 42vw;
    height: 56vw;
  }
  .off-medium {
    right: 5vw;
    top: 15vh;
    width: 38vw;
    height: 52vw;
  }
  .scene-label.left,
  .scene-label.right,
  .scene-film-tag {
    left: 18px;
    right: 18px;
    bottom: 14vh;
    max-width: none;
    text-align: left;
  }

  .work-paths,
  .hub-about,
  .hub-contact {
    padding: 88px 18px;
  }

  .paths-heading h1,
  .hub-about h2,
  .hub-contact h2 {
    font-size: clamp(40px, 12vw, 64px);
    line-height: .9;
    overflow-wrap: anywhere;
  }

  .path-card { display: block; }
  .path-image {
    height: 390px;
    min-height: 0;
  }
  .path-content { display: block; }
  .path-content h2 { font-size: 31px; }

  .contact-options a {
    grid-template-columns: 1fr auto;
  }
  .contact-options span {
    grid-column: 1 / -1;
  }
  .contact-options strong {
    font-size: clamp(22px,7vw,37px);
  }

  .hub-footer { flex-direction: column; }
}

@media (max-width: 390px) {
  .welcome-logo { width: 94vw; }
  .welcome-copy { font-size: 15px; }
  .path-image { height: 350px; }
}


/* Homepage refresh v24 */
.welcome-content-redesigned {
  align-items: stretch;
  justify-content: center;
  text-align: left;
  padding: 0;
}
.hero-centerpiece {
  position: absolute;
  z-index: 7;
  left: 50%;
  top: 50%;
  width: min(92vw, 860px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.hero-center-kicker,
.hero-floating-note {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.hero-center-kicker {
  font-size: 11px;
  color: rgba(255,255,255,.72);
}
.welcome-content-redesigned .welcome-logo {
  width: min(560px, 70vw);
  max-width: 100%;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.38));
}
.hero-center-rule {
  width: min(520px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
}
.hero-floating-note {
  position: absolute;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
  color: rgba(255,255,255,.74);
  text-shadow: 0 2px 18px rgba(0,0,0,.65);
}
.hero-floating-note span { display: block; }
.hero-note-top-left {
  left: clamp(22px, 3vw, 46px);
  top: clamp(32px, 4vw, 42px);
}
.hero-note-top-right {
  right: clamp(72px, 8vw, 122px);
  top: clamp(32px, 4vw, 42px);
  text-align: right;
  align-items: flex-end;
}
.hero-note-left-middle {
  left: clamp(22px, 3vw, 46px);
  bottom: clamp(126px, 14vh, 150px);
  max-width: 240px;
}
.hero-note-bottom-right {
  right: clamp(22px, 3vw, 46px);
  bottom: 32px;
  max-width: 270px;
  text-align: right;
  align-items: flex-end;
}
.welcome-content-redesigned .explore-link {
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
}

/* Hero composition refinements */
.scene-card.large {
  left: 8vw;
  top: 17vh;
  width: min(39vw, 640px);
  height: min(53vh, 560px);
}
.scene-card.medium {
  right: 9vw;
  top: 16vh;
  width: min(18vw, 250px);
  height: min(24vw, 330px);
}
.scene-card.small {
  right: 19vw;
  bottom: 14vh;
  width: min(15vw, 210px);
  height: min(19vw, 250px);
}
.browser-main {
  left: 7vw;
  top: 17vh;
  width: min(39vw, 640px);
  height: min(53vh, 560px);
}
.browser-small {
  right: 8vw;
  top: 14vh;
  width: min(24vw, 360px);
  height: min(31vh, 300px);
}
.browser-phone {
  right: 17vw;
  bottom: 13vh;
  width: min(14vw, 185px);
  height: min(31vh, 320px);
}
.scene-app-icon {
  right: 9vw;
  bottom: 12vh;
  width: min(10vw, 132px);
}
.off-large {
  left: 8vw;
  top: 16vh;
  width: min(23vw, 300px);
  height: min(30vw, 400px);
}
.off-medium {
  right: 9vw;
  top: 14vh;
  width: min(20vw, 270px);
  height: min(27vw, 360px);
}
.off-small {
  right: 19vw;
  bottom: 12vh;
  width: min(17vw, 230px);
  height: min(22vw, 295px);
}
.scene-label.left,
.scene-label.right,
.scene-film-tag {
  opacity: .8;
}

/* Film bin teaser */
.home-film-bin-tease {
  padding: 24px clamp(22px,5vw,78px) 120px;
  background: var(--cream);
  color: #190e0a;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.film-bin-copy {
  padding: 0;
  max-width: 540px;
}
.film-bin-copy h2 {
  margin: 12px 0 18px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(60px, 8vw, 112px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.film-bin-copy p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.6;
  color: #42231a;
}
.film-bin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(25,14,10,.55);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.film-bin-preview {
  --film-strip-base: #c96d16;
  --film-strip-dark: #8e4105;
  --film-hole: #f5f1e8;
  position: relative;
  align-self: center;
  padding: 34px 16px 34px;
  background: linear-gradient(180deg, #cf741b, #b95a0d);
  border: 2px solid #9b4807;
  border-radius: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.14);
}
.film-bin-preview::before,
.film-bin-preview::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 18px;
  background: repeating-linear-gradient(90deg,
    transparent 0 8px,
    var(--film-hole) 8px 22px,
    transparent 22px 34px);
  pointer-events: none;
}
.film-bin-preview::before { top: 7px; }
.film-bin-preview::after { bottom: 7px; }
.film-strip-edge {
  position: absolute;
  z-index: 3;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(67, 28, 2, .72);
  pointer-events: none;
}
.film-strip-edge.edge-top { top: 4px; left: 42px; }
.film-strip-edge.edge-bottom { bottom: 4px; right: 28px; }
.film-strip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px 8px 10px;
  background: transparent;
  border-left: 3px solid rgba(121, 48, 0, .65);
  box-shadow: none;
}
.film-strip-card:first-of-type { border-left: 0; }
.film-strip-card > div {
  aspect-ratio: .92;
  margin-top: 12px;
  background-position: center;
  background-size: cover;
  background-color: #f0ede6;
  border: 2px solid rgba(121, 48, 0, .82);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.film-strip-card span {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(56, 22, 0, .86);
}
.fs-a, .fs-b, .fs-c, .fs-d { margin-top: 0; }

@media (max-width: 980px) {
  .hero-note-left-middle {
    bottom: 112px;
    max-width: 190px;
  }
  .hero-note-top-right {
    right: 64px;
  }
  .home-film-bin-tease {
    grid-template-columns: 1fr;
  }
  .film-bin-copy {
    max-width: none;
  }
  .film-bin-preview {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-film-bin-tease {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .welcome-content-redesigned {
    min-height: 100svh;
    padding: 0;
  }
  .hero-centerpiece {
    width: 92vw;
    top: 50%;
    gap: 14px;
  }
  .welcome-content-redesigned .welcome-logo {
    width: min(90vw, 500px);
  }
  .hero-center-rule {
    width: 72vw;
  }
  .hero-note-top-left {
    top: 26px;
    left: 18px;
  }
  .hero-note-top-right {
    top: 26px;
    right: 18px;
  }
  .hero-note-left-middle {
    left: 18px;
    bottom: 96px;
    max-width: 170px;
  }
  .hero-note-bottom-right {
    display: none;
  }
  .welcome-content-redesigned .explore-link {
    bottom: 22px;
  }

  .scene-card.large,
  .browser-main {
    left: 5vw;
    top: 18vh;
    width: 74vw;
    height: 38vh;
  }
  .off-large {
    left: 5vw;
    top: 18vh;
  }
  .off-medium {
    right: 5vw;
    top: 14vh;
  }

  .home-film-bin-tease {
    padding: 0 18px 88px;
  }
  .film-bin-copy {
    padding-top: 0;
  }
  .film-bin-copy h2 {
    font-size: clamp(50px, 14vw, 88px);
  }
  .film-bin-copy p {
    font-size: 16px;
  }
  .film-bin-preview {
    padding: 28px 10px 28px;
    grid-template-columns: 1fr 1fr;
  }
  .film-bin-preview::before,
  .film-bin-preview::after {
    left: 6px;
    right: 6px;
    height: 14px;
    background: repeating-linear-gradient(90deg, transparent 0 6px, var(--film-hole) 6px 16px, transparent 16px 24px);
  }
  .film-bin-preview::before { top: 6px; }
  .film-bin-preview::after { bottom: 6px; }
  .film-strip-edge { font-size: 7px; }
  .film-strip-edge.edge-top { left: 24px; }
  .film-strip-edge.edge-bottom { right: 16px; }
  .film-strip-card { padding: 10px 6px 8px; border-left-width: 2px; }
  .film-strip-card > div { margin-top: 8px; }
  .film-strip-card span { font-size: 7px; }
}

@media (max-width: 460px) {
  .hero-note-top-right {
    display: none;
  }
  .hero-note-left-middle {
    bottom: 86px;
    max-width: 145px;
    font-size: 9px;
  }
  .film-bin-preview {
    grid-template-columns: 1fr;
  }
  .film-strip-card:not(:first-of-type) { border-top: 2px solid rgba(121, 48, 0, .55); border-left: 0; }
}


/* Expanded homepage category sections v25 */
.work-showcase {
  background: var(--cream);
  color: #090a0b;
}
.showcase-section {
  min-height: 92vh;
  padding: clamp(70px,8vw,130px) clamp(22px,5vw,78px);
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
  gap: clamp(42px,7vw,110px);
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.14);
  overflow: hidden;
}
.showcase-section:nth-child(even) {
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
}
.showcase-copy {
  position: relative;
  z-index: 3;
}
.showcase-copy h2 {
  margin: 0 0 28px;
  max-width: none;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(46px, 4.8vw, 78px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}
.showcase-copy h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.6px currentColor;
}
.showcase-copy > p:not(.hub-kicker) {
  max-width: 610px;
  margin: 0;
  font-size: clamp(17px,1.35vw,22px);
  line-height: 1.62;
  color: #3d3d39;
}
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 34px;
}
.showcase-actions a {
  display: inline-flex;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.showcase-visual {
  position: relative;
  min-height: 620px;
}
.showcase-bg {
  position: absolute;
  inset: 5% 8% 6% 0;
  width: 92%;
  height: 89%;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(0,0,0,.18);
}
.showcase-overlay-photo {
  position: absolute;
  right: 0;
  bottom: 2%;
  width: 34%;
  aspect-ratio: .82;
  object-fit: cover;
  padding: 9px 9px 32px;
  background: #f4efe4;
  box-shadow: 0 22px 50px rgba(0,0,0,.22);
  transform: rotate(5deg);
}
.showcase-index {
  position: absolute;
  left: 0;
  bottom: 0;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0,0,0,.56);
}
.showcase-projects {
  background: #0c0f13;
  color: #fff;
  border-bottom-color: rgba(255,255,255,.12);
}
.showcase-projects .showcase-copy > p:not(.hub-kicker) {
  color: #b8bcc2;
}
.showcase-projects .showcase-index {
  color: rgba(255,255,255,.54);
}
.projects-visual {
  background:
    radial-gradient(circle at 70% 30%, rgba(42,111,255,.4), transparent 32%),
    linear-gradient(135deg,#111826,#090a0b 68%);
  min-height: 650px;
  overflow: hidden;
}
.projects-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px) 0 0 / 100% 36px,
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px) 0 0 / 36px 100%;
  opacity: .38;
}
.project-screen {
  position: absolute;
  overflow: hidden;
  border: 7px solid #181b20;
  box-shadow: 0 30px 65px rgba(0,0,0,.5);
  transition: transform .45s ease;
}
.project-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ps-1 {
  left: 5%;
  top: 9%;
  width: 61%;
  height: 58%;
  transform: rotate(-5deg);
}
.ps-2 {
  right: 3%;
  top: 5%;
  width: 52%;
  height: 48%;
  transform: rotate(6deg);
}
.ps-3 {
  left: 22%;
  bottom: 4%;
  width: 60%;
  height: 47%;
  transform: rotate(1deg);
}
.showcase-rmoh {
  position: absolute;
  z-index: 5;
  right: 5%;
  bottom: 7%;
  width: min(19%,145px);
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.45));
}
.showcase-projects:hover .ps-1 { transform: rotate(-3deg) translateY(-8px); }
.showcase-projects:hover .ps-2 { transform: rotate(4deg) translateY(-12px); }
.showcase-projects:hover .ps-3 { transform: rotate(0deg) translateY(-6px); }

.showcase-off-clock {
  background: #1a1110;
  color: #fff;
  border-bottom-color: rgba(255,255,255,.1);
}
.showcase-off-clock .showcase-copy > p:not(.hub-kicker) {
  color: #c2b8b3;
}
.showcase-off-clock .showcase-index {
  color: rgba(255,255,255,.55);
}
.off-visual {
  min-height: 650px;
  background: radial-gradient(circle at 32% 30%, rgba(255,93,61,.22), transparent 34%), #130d0c;
}
.off-showcase-card {
  position: absolute;
  padding: 10px 10px 34px;
  background: #f4efe4;
  box-shadow: 0 24px 55px rgba(0,0,0,.48);
  transition: transform .45s ease;
}
.off-showcase-card > div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.osc-1 {
  left: 5%;
  top: 8%;
  width: 44%;
  height: 58%;
  transform: rotate(-7deg);
}
.osc-2 {
  right: 6%;
  top: 4%;
  width: 43%;
  height: 56%;
  transform: rotate(6deg);
}
.osc-3 {
  left: 26%;
  bottom: 3%;
  width: 48%;
  height: 57%;
  transform: rotate(1deg);
}
.showcase-off-clock:hover .osc-1 { transform: rotate(-5deg) translateY(-8px); }
.showcase-off-clock:hover .osc-2 { transform: rotate(4deg) translateY(-12px); }
.showcase-off-clock:hover .osc-3 { transform: rotate(-1deg) translateY(-6px); }

@media (max-width: 980px) {
  .showcase-section,
  .showcase-section:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .showcase-projects .showcase-copy { order: 2; }
  .showcase-projects .showcase-visual { order: 1; }
  .showcase-visual,
  .projects-visual,
  .off-visual { min-height: 560px; }
}

@media (max-width: 720px) {
  .showcase-section {
    padding: 86px 18px;
    gap: 34px;
  }
  .showcase-copy h2 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 58px);
    line-height: .92;
  }
  .showcase-copy > p:not(.hub-kicker) {
    font-size: 16px;
  }
  .showcase-visual,
  .projects-visual,
  .off-visual { min-height: 430px; }
  .showcase-bg {
    inset: 3% 7% 8% 0;
    width: 93%;
    height: 89%;
  }
  .showcase-overlay-photo { width: 38%; }
  .showcase-index { font-size: 9px; }
}


/* Homepage cleanup v26 */
.hero-note-top-right,
.hero-note-left-middle,
.hero-note-bottom-right,
.hero-center-kicker,
.hero-center-rule {
  display: none !important;
}
.welcome-content-redesigned .hero-centerpiece {
  gap: 0;
}
.welcome-content-redesigned .welcome-logo {
  width: min(590px, 72vw);
}
.welcome-content-redesigned .hero-note-top-left {
  top: clamp(28px, 3.5vw, 42px);
  left: clamp(22px, 3vw, 46px);
  color: rgba(255,255,255,.76);
}
.welcome-content-redesigned .explore-link {
  bottom: 30px;
}

.showcase-copy h2 span {
  color: transparent;
  -webkit-text-stroke: 1.7px #090a0b;
  text-stroke: 1.7px #090a0b;
}
.showcase-projects .showcase-copy h2 span,
.showcase-off-clock .showcase-copy h2 span {
  -webkit-text-stroke-color: #fff;
  text-stroke-color: #fff;
}

@media (max-width: 720px) {
  .welcome-content-redesigned .welcome-logo {
    width: min(88vw, 520px);
  }
  .welcome-content-redesigned .hero-note-top-left {
    font-size: 9px;
  }
  .showcase-copy h2 span {
    -webkit-text-stroke-width: 1.2px;
    text-stroke-width: 1.2px;
  }
}

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