:root {
  --paper: #d9d0c1;
  --paper-light: #eee9e1;
  --ink: #161512;
  --moss: #7c8068;
  --cork: #9d7654;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; }

#depth-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.noise {
  position: fixed;
  z-index: 80;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}

.cursor {
  position: fixed;
  z-index: 100;
  width: 66px;
  height: 66px;
  top: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: rgba(15, 14, 12, .55);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 8px;
  letter-spacing: .18em;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.5);
  transition: opacity .25s, transform .35s var(--ease);
  backdrop-filter: blur(8px);
}
.cursor.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.progress { position: fixed; z-index: 90; inset: 0 0 auto; height: 2px; background: rgba(0,0,0,.08); }
.progress i { display: block; width: 0; height: 100%; background: #111; }

.site-header {
  position: fixed;
  z-index: 70;
  inset: 0 0 auto;
  height: 76px;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  mix-blend-mode: difference;
  color: white;
}
.brand { color: inherit; text-decoration: none; letter-spacing: .38em; font-size: 15px; }
.site-header nav { display: flex; gap: 28px; }
.site-header nav a { color: inherit; text-decoration: none; text-transform: uppercase; font-size: 9px; letter-spacing: .15em; }
.chapter-counter { justify-self: end; font-size: 9px; letter-spacing: .18em; }
.menu-toggle { display: none; border: 0; background: none; font-size: 9px; letter-spacing: .15em; }

.kicker { margin: 0 0 22px; text-transform: uppercase; letter-spacing: .18em; font-size: 9px; }
.reveal { opacity: 0; transform: translateY(45px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 8vw;
  perspective: 1400px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 45%, transparent 0 17%, rgba(217,208,193,.28) 35%, var(--paper) 69%);
}
.hero-copy { position: relative; z-index: 3; width: 70%; }
.hero h1 { margin: 0; font-size: clamp(76px, 11.8vw, 190px); font-weight: 400; line-height: .82; letter-spacing: -.085em; }
.hero-disciplines { margin: 38px 0 0 1%; width: max-content; font-size: clamp(11px, 1vw, 15px); letter-spacing: .1em; }
.hero-disciplines i { margin: 0 8px; font-style: normal; }

.hero-object {
  position: absolute;
  z-index: 2;
  width: min(36vw, 560px);
  right: 5vw;
  top: 17vh;
  padding: 0;
  border: 0;
  background: none;
  transform-style: preserve-3d;
  cursor: none;
  animation: heroFloat 7s ease-in-out infinite;
}
.hero-object img { position: relative; z-index: 2; display: block; width: 100%; box-shadow: 0 45px 80px rgba(43,35,24,.22); }
.object-shadow { position: absolute; z-index: 1; left: 13%; right: 13%; bottom: -9%; height: 20%; border-radius: 50%; background: rgba(40,31,20,.25); filter: blur(28px); transform: translateZ(-50px); }
@keyframes heroFloat { 0%,100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0); } 50% { transform: rotateY(-3deg) rotateX(-1deg) translateY(-18px); } }

.hero-orbit { position: absolute; inset: 0; pointer-events: none; }
.orbit { position: absolute; border: 1px solid rgba(22,21,18,.2); border-radius: 50%; transform: rotateX(67deg) rotateZ(-18deg); }
.orbit-a { width: 73vw; height: 42vw; right: -8vw; top: 11vh; animation: orbitSpin 20s linear infinite; }
.orbit-b { width: 56vw; height: 30vw; right: 2vw; top: 23vh; animation: orbitSpin 15s linear reverse infinite; }
.orbit-c { width: 39vw; height: 20vw; right: 11vw; top: 34vh; }
@keyframes orbitSpin { to { transform: rotateX(67deg) rotateZ(342deg); } }
.scroll-hint { position: absolute; z-index: 4; bottom: 34px; left: 8vw; display: flex; align-items: center; gap: 16px; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
.scroll-hint i { width: 70px; height: 1px; background: currentColor; transform-origin: left; animation: pulseLine 2s ease-in-out infinite; }
@keyframes pulseLine { 0%,100% { transform: scaleX(.25); } 50% { transform: scaleX(1); } }

.intro { min-height: 110vh; padding: 12vw 8vw; display: grid; grid-template-columns: .45fr 2.4fr 1fr; gap: 5vw; align-items: center; background: #181713; color: #e9e2d7; }
.intro-index { align-self: start; font-size: clamp(70px, 10vw, 160px); font-weight: 300; opacity: .18; }
.intro-copy h2 { margin: 0; max-width: 920px; font-size: clamp(42px, 6.5vw, 105px); font-weight: 400; letter-spacing: -.06em; line-height: .98; }
.intro-copy em { color: #a99a84; font-style: italic; }
.intro-note { align-self: end; max-width: 260px; font-size: 13px; line-height: 1.7; }

.project-section { position: relative; background: var(--paper-light); }
.section-heading { min-height: 100vh; padding: 12vw 8vw; display: flex; flex-direction: column; justify-content: center; }
.section-heading h2 { margin: 0 0 40px; font-size: clamp(86px, 17vw, 255px); font-weight: 400; line-height: .7; letter-spacing: -.09em; }
.section-heading > p:last-child { width: 270px; margin-left: 57%; font-size: 13px; line-height: 1.65; }

.project-scene { position: relative; height: 180vh; background: #e8e1d5; }
.project-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; grid-template-columns: 31% 69%; align-items: center; padding: 6vw; perspective: 1500px; }
.dark-scene { background: #1e1c18; color: #ede7de; }
.project-copy { position: relative; z-index: 2; }
.project-copy span { display: block; margin-bottom: 28px; font-size: 9px; letter-spacing: .16em; }
.project-copy h3 { margin: 0 0 22px; font-size: clamp(34px, 4.8vw, 76px); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.project-copy p { margin: 0; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; }
.project-frame { position: relative; width: 100%; padding: 0; border: 0; background: none; cursor: none; transform-style: preserve-3d; will-change: transform, opacity; }
.project-frame::before { content: ""; position: absolute; inset: 4% -2% -4% 5%; z-index: -1; background: rgba(120,99,71,.24); transform: translateZ(-70px); filter: blur(12px); }
.project-frame img { display: block; width: 100%; box-shadow: 0 40px 90px rgba(25,21,17,.22); }
.project-frame > span { position: absolute; right: 20px; bottom: 18px; padding: 10px 13px; background: rgba(20,18,15,.72); color: #fff; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; backdrop-filter: blur(8px); }

.landscape-section { background: #afb094; }
.landscape-heading { background: #afb094; }
.landscape-scene { background: #bcc0a3; }
.landscape-scene .project-frame::before { background: rgba(47, 62, 38, .25); }
.landscape-scene.dark-scene { background: #454d3d; }

.tunnel-section { position: relative; height: 430vh; background: #858974; color: #f0ebe3; }
.tunnel-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; perspective: 1100px; }
.tunnel-heading { position: absolute; z-index: 8; left: 6vw; top: 12vh; width: 37vw; pointer-events: none; }
.tunnel-heading h2 { margin: 0 0 25px; font-size: clamp(72px, 12vw, 178px); font-weight: 400; line-height: .72; letter-spacing: -.08em; }
.tunnel-heading > p:last-child { width: 240px; line-height: 1.65; font-size: 12px; }
.tunnel { position: absolute; inset: 0; transform-style: preserve-3d; perspective: 1100px; will-change: transform; }
.tunnel::before, .tunnel::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.18); transform: translate(-50%,-50%); }
.tunnel::before { width: 90vw; height: 80vh; }
.tunnel::after { width: 58vw; height: 50vh; }
.tunnel-card { position: absolute; width: min(52vw, 800px); left: 50%; top: 50%; padding: 0; border: 0; background: transparent; cursor: none; transform-style: preserve-3d; will-change: transform, opacity; }
.tunnel-card img { width: 100%; display: block; box-shadow: 0 40px 90px rgba(13,20,12,.35); }
.tunnel-card span { position: absolute; left: -42px; top: 0; font-size: 11px; letter-spacing: .16em; }
.tunnel-axis { position: absolute; z-index: 8; right: 4vw; bottom: 7vh; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .17em; text-transform: uppercase; }
.tunnel-axis i { display: block; width: 100px; height: 1px; background: currentColor; transform-origin: left; }

.product-section { min-height: 125vh; padding: 12vh 5vw; display: grid; grid-template-columns: .75fr 1.5fr; align-items: center; overflow: hidden; background: #c6ac8f; }
.product-copy { position: relative; z-index: 5; }
.product-copy h2 { margin: 0 0 35px; font-size: clamp(68px, 10vw, 150px); line-height: .72; letter-spacing: -.08em; font-weight: 400; }
.product-copy > p:last-child { width: 250px; font-size: 12px; line-height: 1.65; }
.product-brand-link { display: block; width: min(100%, 240px); margin-top: 24px; color: inherit; text-decoration: none; }
.product-brand-link img { display: block; width: 100%; height: auto; }
.carousel-wrap { position: relative; height: 78vh; perspective: 1500px; cursor: grab; touch-action: pan-y; }
.carousel-wrap.dragging { cursor: grabbing; }
.carousel { position: absolute; left: 50%; top: 50%; width: 1px; height: 1px; transform-style: preserve-3d; will-change: transform; }
.carousel-card { position: absolute; width: min(48vw, 700px); left: 0; top: 0; padding: 0; border: 0; background: none; transform-style: preserve-3d; backface-visibility: hidden; cursor: pointer; transition: filter .5s, opacity .5s; }
.carousel-card img { display: block; width: 100%; box-shadow: 0 45px 80px rgba(42,28,16,.3); }
.carousel-card span { display: block; margin-top: 12px; text-align: left; text-transform: uppercase; font-size: 9px; letter-spacing: .14em; }
.carousel-card:not(.active) { filter: saturate(.55) brightness(.72); opacity: .55; }
.carousel-controls { position: absolute; z-index: 8; right: 2vw; bottom: 0; display: flex; align-items: center; gap: 20px; }
.carousel-controls button { width: 45px; height: 45px; border: 1px solid rgba(0,0,0,.35); border-radius: 50%; background: transparent; cursor: pointer; }
.carousel-controls span { font-size: 9px; letter-spacing: .14em; }

footer { min-height: 90vh; padding: 8vw 5vw 3vw; background: #151411; color: #eee8de; display: flex; flex-direction: column; justify-content: space-between; }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.footer-mail { width: max-content; color: inherit; text-decoration: none; font-size: clamp(24px, 4vw, 62px); border-bottom: 1px solid currentColor; }
.footer-brand { font-size: clamp(76px, 17vw, 270px); line-height: .7; letter-spacing: -.05em; }

.viewer { width: 100vw; max-width: none; height: 100vh; max-height: none; padding: 0; border: 0; background: rgba(15,14,12,.96); color: #fff; overflow: hidden; }
.viewer::backdrop { background: #111; }
.viewer-toolbar { position: absolute; z-index: 5; top: 0; left: 0; right: 0; height: 65px; display: flex; align-items: center; justify-content: space-between; padding: 0 3vw; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.viewer-tools { display: flex; align-items: center; gap: 8px; }
.viewer-tools button { min-width: 34px; height: 34px; padding: 0 8px; border: 1px solid rgba(255,255,255,.38); color: #fff; background: transparent; font-size: 13px; line-height: 1; cursor: pointer; }
.viewer-tools .viewer-close { min-width: 0; margin-left: 10px; padding: 0; border: 0; font-size: 8px; letter-spacing: .14em; }
.viewer-close { border: 0; background: none; color: inherit; cursor: pointer; letter-spacing: .14em; }
.viewer-stage { position: absolute; inset: 65px 0 70px; overflow: hidden; cursor: grab; display: grid; place-items: center; touch-action: none; }
.viewer-stage.dragging { cursor: grabbing; }
.viewer-stage img { max-width: 88vw; max-height: calc(100vh - 160px); user-select: none; transform-origin: center; will-change: transform; box-shadow: 0 30px 90px #000; }
.viewer-nav { position: absolute; z-index: 5; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; align-items: center; gap: 22px; }
.viewer-nav button { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: white; background: none; cursor: pointer; }
.viewer-count { font-size: 8px; letter-spacing: .14em; }

@media (max-width: 800px) {
  .cursor { display: none; }
  .site-header { height: 64px; padding: 0 5vw; grid-template-columns: 1fr auto; }
  .chapter-counter { display: none; }
  .menu-toggle { display: block; }
  .site-header nav { display: none; position: absolute; right: 5vw; top: 54px; padding: 22px; flex-direction: column; gap: 18px; color: var(--ink); background: var(--paper-light); mix-blend-mode: normal; }
  .site-header nav.open { display: flex; }
  .hero { padding: 23vw 6vw 13vw; align-items: start; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: 17vw; line-height: .9; letter-spacing: -.07em; }
  .hero-disciplines { margin: 30px 0 0; width: auto; font-size: 10px; line-height: 1.8; }
  .hero-object { width: 65vw; right: 4vw; top: 47vh; }
  .orbit-a { width: 130vw; height: 70vw; right: -45vw; top: 45vh; }
  .orbit-b { width: 100vw; height: 50vw; right: -25vw; top: 49vh; }
  .orbit-c { display: none; }
  .scroll-hint { left: 6vw; bottom: 22px; }
  .intro { min-height: 100vh; padding: 24vw 7vw 15vw; grid-template-columns: 1fr; gap: 35px; }
  .intro-index { display: none; }
  .intro-copy h2 { font-size: 13.5vw; }
  .intro-note { align-self: auto; }
  .section-heading { padding: 20vw 7vw; min-height: 82vh; }
  .section-heading h2 { font-size: 24vw; }
  .section-heading > p:last-child { margin-left: 20%; }
  .project-scene { height: 145vh; }
  .project-sticky { padding: 16vw 6vw 8vw; grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: 35px; }
  .project-copy h3 { font-size: 10vw; }
  .project-frame { align-self: start; }
  .project-frame img { width: 128%; margin-left: -14%; }
  .tunnel-heading { left: 6vw; top: 13vh; width: 88vw; }
  .tunnel-heading h2 { font-size: 21vw; }
  .tunnel-card { width: 82vw; }
  .tunnel-card span { left: 0; top: -22px; }
  .tunnel-axis { right: 6vw; bottom: 5vh; }
  .product-section { min-height: 115vh; padding: 16vh 6vw 8vh; grid-template-columns: 1fr; align-content: start; }
  .product-copy h2 { font-size: 19vw; }
  .product-copy > p:last-child { width: 75%; }
  .carousel-wrap { height: 58vh; margin-top: 4vh; }
  .carousel-card { width: 84vw; }
  .carousel-controls { right: 0; }
  footer { min-height: 75vh; padding: 16vw 6vw 5vw; }
  .footer-top, .footer-bottom { gap: 20px; line-height: 1.6; }
  .footer-mail { font-size: 6vw; }
  .footer-brand { font-size: 21vw; }
  .viewer-toolbar > span { display: none; }
  .viewer-stage img { max-width: 96vw; }
}

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

/* Brand lockup and the new first-viewport composition. */
.site-header {
  mix-blend-mode: normal;
  color: var(--ink);
  background: rgba(217, 208, 193, .78);
  border-bottom: 1px solid rgba(22, 21, 18, .12);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; letter-spacing: 0; }
.brand img { display: block; width: 112px; height: auto; }
.brand-location { padding-left: 14px; border-left: 1px solid rgba(22, 21, 18, .24); font-size: 8px; letter-spacing: .14em; }
.site-header nav a, .menu-toggle { color: var(--ink); }
.hero { min-height: 100svh; padding: 9vw 8vw 7vw; }
.hero-copy { width: min(48%, 580px); }
.hero-brand { width: min(100%, 470px); min-height: 0 !important; margin: 0 !important; display: block !important; line-height: 0 !important; letter-spacing: 0 !important; }
.hero-brand img { display: block; width: 100%; height: auto; }
.hero-disciplines { margin-top: 22px; }
.hero-service { max-width: 430px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(22, 21, 18, .22); }
.hero-service h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 42px); font-weight: 400; line-height: 1.04; letter-spacing: -.045em; }
.hero-service p { max-width: 360px; margin: 0; color: rgba(22, 21, 18, .7); font-size: 12px; line-height: 1.65; }
.hero-cta { display: inline-flex; gap: 16px; align-items: center; margin-top: 26px; padding-bottom: 8px; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: 9px; letter-spacing: .14em; }
.hero-cta span { font-size: 15px; }
.hero-gallery { position: absolute; z-index: 2; top: 14vh; right: 6vw; width: min(50vw, 720px); height: min(71vh, 690px); display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1fr 1fr 28px; gap: 12px; transform: translate3d(calc(var(--gallery-x, 0) * 1px), calc(var(--gallery-y, 0) * 1px), 0); transform-style: preserve-3d; transition: transform .7s var(--ease); }
.gallery-card { position: relative; min-width: 0; min-height: 0; padding: 0; overflow: hidden; border: 0; background: var(--paper-light); cursor: none; transform-style: preserve-3d; box-shadow: 0 28px 60px rgba(42, 33, 23, .16); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(12, 11, 9, .58)); pointer-events: none; }
.gallery-card:hover { transform: translateY(-7px) translateZ(18px); box-shadow: 0 42px 85px rgba(42, 33, 23, .23); }
.gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gallery-card > span { position: absolute; z-index: 2; left: 14px; right: 14px; bottom: 13px; color: #fff; text-align: left; text-transform: uppercase; font-size: 8px; letter-spacing: .14em; }
.gallery-feature { grid-row: 1 / 3; }
.gallery-secondary img, .gallery-tertiary img { object-position: center; }
.gallery-catalog { position: absolute; z-index: 3; left: 12%; bottom: -10%; width: 29%; height: 34%; border: 7px solid var(--paper-light); box-shadow: 0 20px 38px rgba(42, 33, 23, .2); }
.gallery-catalog::after { background: linear-gradient(180deg, transparent 45%, rgba(12, 11, 9, .72)); }
.gallery-catalog img { object-fit: cover; object-position: top center; }
.gallery-meta { grid-column: 1 / 3; display: flex; align-items: center; gap: 12px; text-transform: uppercase; font-size: 8px; letter-spacing: .15em; }
.gallery-meta i { width: 32px; height: 1px; background: currentColor; }
.scroll-hint { left: 8vw; }

.catalog-section { min-height: 100vh; padding: 12vw 8vw; display: grid; grid-template-columns: .85fr 1fr .55fr; gap: 6vw; align-items: center; background: var(--paper-light); }
.catalog-copy h2 { margin: 0 0 28px; font-size: clamp(56px, 8vw, 126px); font-weight: 400; line-height: .8; letter-spacing: -.08em; }
.catalog-copy > p:not(.kicker) { max-width: 300px; margin: 0; font-size: 13px; line-height: 1.7; }
.catalog-note-label { display: inline-block; margin-top: 38px; color: var(--moss); text-transform: uppercase; font-size: 8px; letter-spacing: .14em; }
.catalog-cover { position: relative; width: min(100%, 450px); justify-self: center; padding: 0; border: 0; background: #f4eee6; cursor: none; box-shadow: 0 36px 80px rgba(46, 37, 28, .2); }
.catalog-cover img { display: block; width: 100%; height: auto; }
.catalog-cover span { position: absolute; right: 14px; bottom: 14px; padding: 9px 11px; background: rgba(20, 18, 15, .78); color: #fff; text-transform: uppercase; font-size: 8px; letter-spacing: .13em; }
.catalog-index { align-self: end; max-width: 190px; border-top: 1px solid rgba(22, 21, 18, .3); padding-top: 14px; }
.catalog-index span { display: block; margin-bottom: 22px; color: var(--cork); font-size: 11px; letter-spacing: .16em; }
.catalog-index p { margin: 0; font-size: 12px; line-height: 1.7; }
.footer-brand { width: min(74vw, 860px); font-size: 0; line-height: 1; }
.footer-brand img { display: block; width: 100%; height: auto; filter: invert(1); }
.viewer-close { color: inherit; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--cork); outline-offset: 5px; }

@media (max-width: 800px) {
  .site-header { background: rgba(217, 208, 193, .94); }
  .brand img { width: 96px; }
  .brand-location { display: none; }
  .hero { min-height: 100svh; padding: 22vw 6vw 18vw; align-items: start; }
  .hero-copy { width: 100%; }
  .hero-brand { width: min(88vw, 430px); }
  .hero-service { max-width: 360px; margin-top: 34px; }
  .hero-service h2 { font-size: 29px; }
  .hero-gallery { top: auto; right: 6vw; bottom: 10vh; width: 88vw; height: 42vh; min-height: 310px; grid-template-columns: 1.25fr .75fr; gap: 8px; }
  .gallery-catalog { border-width: 5px; }
  .gallery-meta { font-size: 7px; }
  .scroll-hint { bottom: 22px; }
  .catalog-section { min-height: 100svh; padding: 22vw 7vw 18vw; grid-template-columns: 1fr; gap: 36px; }
  .catalog-copy h2 { font-size: 20vw; }
  .catalog-cover { width: min(78vw, 370px); justify-self: start; }
  .catalog-index { max-width: 270px; justify-self: end; }
  .footer-brand { width: 82vw; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gallery { transform: none !important; transition: none !important; }
}

/* The catalog copy is presented as readable portfolio content, not as text trapped in an image. */
.portfolio-section { grid-template-columns: 1.15fr 1fr .42fr; gap: 5vw; }
.portfolio-copy h2 { max-width: 680px; margin: 0 0 30px; font-size: clamp(42px, 5.3vw, 86px); font-weight: 400; line-height: .98; letter-spacing: -.055em; }
.portfolio-copy h2 em { color: var(--moss); font-style: italic; }
.portfolio-copy > p:not(.kicker) { max-width: 510px; margin: 0 0 15px; font-size: 14px; line-height: 1.75; }
.approach-panel { align-self: center; border-top: 1px solid rgba(22, 21, 18, .3); padding-top: 15px; }
.approach-list { list-style: none; margin: 0; padding: 0; }
.approach-list li { display: grid; grid-template-columns: minmax(105px, .72fr) 1.28fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid rgba(22, 21, 18, .18); }
.approach-list strong { color: var(--ink); font-size: 10px; font-weight: 600; line-height: 1.35; text-transform: uppercase; letter-spacing: .12em; }
.approach-list span { color: rgba(22, 21, 18, .72); font-size: 12px; line-height: 1.55; }
.catalog-index a { display: inline-block; margin-top: 20px; color: var(--ink); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 5px; }

@media (max-width: 800px) {
  .portfolio-section { grid-template-columns: 1fr; gap: 48px; }
  .portfolio-copy h2 { max-width: 560px; font-size: clamp(40px, 12vw, 66px); }
  .portfolio-copy > p:not(.kicker) { max-width: 560px; }
  .approach-panel { width: 100%; }
  .catalog-index { justify-self: start; }
}

/* Keep the opening frame focused on one message and the space itself. */
.hero { min-height: 100svh; padding: 112px 7vw 58px; display: grid; grid-template-columns: minmax(520px, 1.26fr) minmax(290px, .74fr); grid-template-areas: "gallery copy"; gap: 5vw; align-items: center; background: var(--paper); }
.hero::before { background: linear-gradient(270deg, rgba(217,208,193,.99) 0%, rgba(217,208,193,.94) 35%, rgba(217,208,193,.25) 100%); }
.hero-orbit { display: none; }
.hero-copy { grid-area: copy; width: auto; max-width: 470px; justify-self: end; }
.hero-brand { width: min(100%, 360px); min-height: 0 !important; margin: 0 !important; display: block !important; line-height: 0 !important; letter-spacing: 0 !important; }
.hero-brand img { display: block; width: 100%; height: auto; }
.hero-kicker { width: min(100%, 360px); margin: 16px 0 0; text-align: center; }
.hero-disciplines { display: none; }
.hero-service { max-width: 410px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(22, 21, 18, .3); }
.hero-service h2 { margin: 0 0 12px; font-size: clamp(25px, 2.45vw, 39px); font-weight: 400; line-height: 1.06; letter-spacing: -.045em; }
.hero-service p { max-width: 350px; margin: 0; color: rgba(22, 21, 18, .7); font-size: 12px; line-height: 1.65; }
.hero-cta { display: inline-flex; align-items: center; gap: 13px; margin-top: 27px; padding: 0 0 8px; color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(22, 21, 18, .72); text-transform: uppercase; font-size: 9px; letter-spacing: .14em; transition: color .25s ease, border-color .25s ease; }
.hero-cta:hover { color: var(--cork); border-color: currentColor; }
.hero-cta span { font-size: 15px; line-height: .7; }
.hero-gallery { grid-area: gallery; position: relative; top: auto; right: auto; width: 100%; height: min(63vh, 610px); margin: 0; grid-template-columns: minmax(0, 1.42fr) minmax(0, .58fr); grid-template-rows: 1fr 1fr 24px; gap: 10px; transform: translate3d(calc(var(--gallery-x, 0) * .55px), calc(var(--gallery-y, 0) * .55px), 0); }
.gallery-card { box-shadow: 0 22px 46px rgba(42, 33, 23, .14); }
.gallery-card { opacity: 1; filter: none; }
.gallery-card:hover { transform: translateY(-4px) translateZ(8px); box-shadow: 0 30px 58px rgba(42, 33, 23, .19); }
.gallery-card > span { left: 12px; right: 12px; bottom: 11px; font-size: 7px; }
.gallery-secondary img, .gallery-tertiary img { object-position: center; }
.gallery-meta { font-size: 7px; }
.scroll-hint { left: 7vw; }

.project-frame img, .tunnel-card img { transform-origin: center; transition: transform 1.1s var(--ease), filter 1.1s ease; }
.project-frame:hover img, .tunnel-card:hover img { transform: scale(1.025) translateX(6px); filter: saturate(1.04); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: minmax(420px, 1.2fr) minmax(260px, .8fr); gap: 4vw; padding-left: 6vw; padding-right: 6vw; }
  .hero-gallery { height: min(61vh, 540px); }
}

@media (max-width: 800px) {
  .hero { min-height: 100svh; padding: 108px 6vw 52px; display: grid; grid-template-columns: 1fr; grid-template-areas: "gallery" "copy"; gap: 0; align-items: start; }
  .hero::before { background: linear-gradient(180deg, rgba(217,208,193,.98) 0%, rgba(217,208,193,.9) 64%, rgba(217,208,193,.35) 100%); }
  .hero-copy { max-width: 430px; justify-self: start; }
  .hero-brand { width: min(78vw, 330px); }
  .hero-service { margin-top: 34px; }
  .hero-service h2 { font-size: 28px; }
  .hero-gallery { width: 100%; height: 340px; min-height: 0; margin: 0 0 74px; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: 7px; }
  .gallery-meta { font-size: 6px; }
  .scroll-hint { bottom: 20px; }
}

/* Compact spacing for the mobile-first opening and contact footer. */
.hero-copy { opacity: 1; transform: none; }
footer { min-height: 48vh; padding: 5vw 5vw 2vw; justify-content: initial; gap: 20px; }
.footer-mail { font-size: clamp(24px, 3.2vw, 48px); }
.footer-brand { width: min(45vw, 520px); margin-top: 10px; }
.footer-bottom { margin-top: 6px; }

@media (max-width: 800px) {
  .hero { min-height: 100svh; padding: 88px 6vw 42px; }
  .hero-kicker { width: min(100%, 330px); margin-top: 13px; }
  .hero-gallery { margin-bottom: 16px; }
  .hero-service { margin-top: 30px; }
  footer { min-height: 44svh; padding: 10vw 6vw 4vw; gap: 18px; }
  .footer-mail { font-size: clamp(20px, 5.3vw, 30px); }
  .footer-brand { width: min(64vw, 300px); margin-top: 8px; }
  .footer-bottom { margin-top: 4px; }
}

/* Final spacing pass: keep the visual rhythm compact without flattening the motion. */
.hero { min-height: 100svh; padding: 92px 6.5vw 42px; gap: 4vw; }
.hero-copy { max-width: 420px; }
.hero-kicker { margin-top: 12px; }
.hero-service { margin-top: 28px; }
.hero-gallery { height: min(57vh, 560px); }
.scroll-hint { bottom: 24px; }
.section-heading { min-height: 76vh; padding-top: 10vw; padding-bottom: 10vw; }
.section-heading h2 { margin-bottom: 28px; font-size: clamp(62px, 11vw, 175px); }
.project-scene { height: 155vh; }
.tunnel-section { height: 350vh; }
.product-section { min-height: 105vh; padding-top: 10vh; padding-bottom: 10vh; }
.product-copy h2 { font-size: clamp(58px, 8vw, 120px); }
footer { min-height: 42vh; padding: 4.5vw 5vw 2vw; gap: 18px; }
.footer-mail { font-size: clamp(24px, 3vw, 46px); }
.footer-brand { width: min(44vw, 520px); margin-top: 6px; }
.footer-bottom { margin-top: 4px; }

@media (max-width: 800px) {
  .hero { min-height: 100svh; padding: 76px 6vw 34px; }
  .hero-gallery { height: 300px; margin-bottom: 26px; }
  .hero-service { margin-top: 24px; }
  .section-heading { min-height: 72vh; padding-top: 18vw; padding-bottom: 18vw; }
  .section-heading h2 { font-size: clamp(58px, 15vw, 92px); }
  .project-scene { height: 138vh; }
  .tunnel-section { height: 310vh; }
  .product-section { min-height: 94vh; padding-top: 8vh; padding-bottom: 8vh; }
  footer { min-height: 40svh; padding: 9vw 6vw 4vw; gap: 14px; }
  .footer-mail { font-size: clamp(20px, 5vw, 30px); }
  .footer-brand { width: min(62vw, 290px); margin-top: 4px; }
  .footer-bottom { margin-top: 0; }
  .product-brand-link { width: min(100%, 220px); margin-top: 20px; }
}

/* Desktop readability pass: keep project titles clear of the moving image and give the portfolio note a stable reading width. */
@media (min-width: 801px) {
  .project-sticky { grid-template-columns: clamp(300px, 34%, 450px) minmax(0, 1fr); }
  .project-copy { min-width: 0; }
  .project-copy h3 { max-width: 100%; font-size: clamp(34px, 4.1vw, 66px); overflow-wrap: normal; }
  .project-frame { min-width: 0; }
  .catalog-index { grid-column: 2 / 4; width: 100%; max-width: 650px; justify-self: end; align-self: end; display: grid; grid-template-columns: 42px minmax(0, 1fr) auto; gap: 22px; align-items: start; }
  .catalog-index span { margin-bottom: 0; }
  .catalog-index p { max-width: 360px; }
  .catalog-index a { margin-top: 0; align-self: start; }
}

@media (max-width: 800px) {
  .catalog-index { grid-column: 1; width: 100%; max-width: 420px; display: block; }
}

/* Keep the contact focus compact and centered on every viewport. */
.footer-mail { align-self: center; max-width: 100%; font-size: clamp(18px, 2.4vw, 34px); text-align: center; overflow-wrap: anywhere; }
.footer-brand { align-self: center; }

/* Minimal image focus cursor: the image remains the visual focus. */
.cursor { width: 24px; height: 24px; border-color: rgba(255, 255, 255, .82); background: rgba(15, 14, 12, .18); backdrop-filter: blur(4px); }
.cursor span { display: none; }
.cursor::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: #fff; }

/* Footer redesign: a single center axis keeps the identity and contact information calm and balanced. */
footer { min-height: 34vh; padding: 28px 5vw 20px; gap: 0; }
.footer-top .kicker { margin-bottom: 0; }
.footer-top { padding-bottom: 16px; border-bottom: 1px solid rgba(238, 232, 222, .25); }
.footer-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 0 22px; text-align: center; }
.footer-center::before { content: ""; width: 28px; height: 1px; margin-bottom: 18px; background: rgba(238, 232, 222, .45); }
.footer-brand { width: min(38vw, 390px); margin: 0 0 14px; align-self: center; }
.footer-disciplines { margin: 0 0 24px; color: rgba(238, 232, 222, .66); text-transform: uppercase; font-size: 9px; letter-spacing: .14em; }
.footer-center .kicker { margin: 0 0 12px; color: rgba(238, 232, 222, .66); }
.footer-mail { align-self: center; max-width: 100%; font-size: clamp(18px, 2.1vw, 32px); line-height: 1.2; text-align: center; overflow-wrap: anywhere; }
.footer-contact-link { display: inline-block; margin-top: 14px; color: inherit; text-decoration: none; text-transform: uppercase; font-size: 9px; letter-spacing: .14em; border-bottom: 1px solid rgba(238, 232, 222, .62); padding-bottom: 6px; }
.footer-bottom { padding-top: 18px; }

@media (max-width: 800px) {
  footer { min-height: 42svh; padding: 24px 6vw 18px; }
  .footer-top { padding-bottom: 14px; }
  .footer-center { padding: 20px 0 18px; }
  .footer-center::before { margin-bottom: 14px; }
  .footer-brand { width: min(68vw, 290px); margin-bottom: 12px; }
  .footer-disciplines { margin-bottom: 20px; }
  .footer-mail { font-size: clamp(18px, 5vw, 27px); }
  .footer-contact-link { margin-top: 14px; }
  .footer-bottom { padding-top: 14px; }
}

/* Final footer balance: only the essential location and brand line remain. */
.footer-top, .footer-bottom { justify-content: center; text-align: center; }
.footer-identity, .footer-contact { align-items: center; text-align: center; }
.footer-brand, .footer-mail { align-self: center; }

@media (max-width: 800px) {
  .footer-identity, .footer-contact { align-items: center; text-align: center; }
}

/* Keep the opening chapter content-led instead of forcing an empty viewport. */
.hero { min-height: 88svh; padding: 76px 6.5vw 30px; gap: 3vw; }
.hero-gallery { height: min(50vh, 500px); }

@media (max-width: 800px) {
  .hero { min-height: auto; padding: 68px 6vw 24px; gap: 15px; }
  .hero-gallery { height: 260px; margin-bottom: 15px; }
  .hero-copy { padding-bottom: 4px; }
  .hero-service { margin-top: 15px; }
}

/* 2026 layout scale: tighter rhythm, quieter headings, and a balanced two-field footer. */
.hero { min-height: calc(100svh - 8px); padding: 76px 6.5vw 26px; gap: 3vw; }
.hero-gallery { height: min(52vh, 520px); }
.hero-service { margin-top: 20px; }
.hero-service h2 { font-size: clamp(24px, 2.1vw, 34px); }
.intro { min-height: 90vh; padding: 8vw; gap: 15px 3vw; }
.intro-copy h2 { font-size: clamp(34px, 4.2vw, 72px); }
.section-heading { min-height: 60vh; padding: 7vw 8vw; }
.section-heading h2 { margin-bottom: 20px; font-size: clamp(48px, 7vw, 110px); line-height: .8; }
.portfolio-section { gap: 15px 3vw; }
.portfolio-copy h2 { font-size: clamp(38px, 4.2vw, 68px); }
.approach-list li { gap: 15px; padding: 15px 0; }
.project-copy h3 { font-size: clamp(32px, 3.5vw, 56px); }
.tunnel-heading h2 { font-size: clamp(58px, 8vw, 120px); }
.product-section { min-height: 90vh; padding-top: 7vh; padding-bottom: 7vh; }
.product-copy h2 { font-size: clamp(46px, 5.5vw, 82px); }

footer { min-height: 34vh; padding: 28px 5vw 20px; gap: 0; }
.footer-top .kicker { margin-bottom: 0; }
.footer-top { padding-bottom: 16px; border-bottom: 1px solid rgba(238, 232, 222, .25); }
.footer-grid { flex: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; border-bottom: 1px solid rgba(238, 232, 222, .25); }
.footer-identity, .footer-contact { min-width: 0; min-height: 165px; display: flex; flex-direction: column; justify-content: center; }
.footer-identity { align-items: flex-start; padding-right: 5vw; border-right: 1px solid rgba(238, 232, 222, .25); }
.footer-contact { align-items: flex-start; padding-left: 5vw; }
.footer-brand { width: min(100%, 330px); margin: 0 0 8px; align-self: flex-start; }
.footer-disciplines { margin: 0; color: rgba(238, 232, 222, .66); text-transform: uppercase; font-size: 9px; letter-spacing: .14em; }
.footer-contact .kicker { margin: 0 0 12px; color: rgba(238, 232, 222, .66); }
.footer-mail { align-self: flex-start; max-width: 100%; font-size: clamp(18px, 2.1vw, 32px); line-height: 1.2; text-align: left; overflow-wrap: anywhere; }
.footer-contact-link { display: inline-block; margin-top: 14px; color: inherit; text-decoration: none; text-transform: uppercase; font-size: 9px; letter-spacing: .14em; border-bottom: 1px solid rgba(238, 232, 222, .62); padding-bottom: 6px; }
.footer-bottom { padding-top: 16px; margin-top: 0; }

@media (max-width: 800px) {
  .hero { min-height: 100svh; padding: 68px 6vw 28px; }
  .hero-gallery { height: 290px; margin-bottom: 15px; }
  .hero-service { margin-top: 20px; }
  .intro { min-height: 88svh; padding: 14vw 7vw 11vw; gap: 15px; }
  .intro-copy h2 { font-size: clamp(34px, 9vw, 54px); }
  .section-heading { min-height: 60vh; padding: 13vw 7vw; }
  .section-heading h2 { font-size: clamp(48px, 11vw, 72px); }
  .portfolio-section { gap: 30px; }
  .portfolio-copy h2 { font-size: clamp(36px, 9vw, 56px); }
  .project-copy h3 { font-size: clamp(32px, 9vw, 54px); }
  .product-section { min-height: 90svh; padding-top: 7vh; padding-bottom: 7vh; }
  .product-copy h2 { font-size: clamp(46px, 12vw, 76px); }
  footer { min-height: 42svh; padding: 24px 6vw 18px; }
  .footer-grid { grid-template-columns: 1fr; padding: 18px 0; gap: 15px; }
  .footer-identity, .footer-contact { min-height: 0; }
  .footer-identity { padding: 0 0 18px; border-right: 0; border-bottom: 1px solid rgba(238, 232, 222, .25); }
  .footer-contact { padding: 0; }
  .footer-brand { width: min(72vw, 290px); margin-bottom: 8px; }
  .footer-mail { font-size: clamp(18px, 5vw, 27px); }
  .footer-bottom { padding-top: 14px; }
}

/* Final viewport and footer correction: keep each block in normal flow and centered. */
.hero { min-height: 86svh; padding-top: 76px; padding-bottom: 28px; }
.hero-gallery { position: relative; top: auto; right: auto; align-self: center; }
.scroll-hint { position: absolute; }
.footer-identity, .footer-contact { align-items: center; text-align: center; }
.footer-brand, .footer-mail { align-self: center; text-align: center; }

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding: 80px 6vw 28px;
    grid-template-areas: "gallery" "copy";
    align-content: start;
    gap: 15px;
  }
  .hero-gallery {
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    width: 100%;
    height: 260px;
    margin: 0;
  }
  .hero-copy { position: relative; z-index: 3; width: 100%; padding-bottom: 0; }
  .hero-service { margin-top: 15px; }
  .scroll-hint { position: static; left: auto; bottom: auto; margin-top: 15px; }
  .footer-identity, .footer-contact { align-items: center; text-align: center; }
  .footer-brand, .footer-mail { align-self: center; text-align: center; }
}

/* Project rows show the complete project set while keeping each gallery scoped to its row. */
.project-media {
  width: 100%;
  height: min(66vh, 640px);
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(160px, .72fr);
  gap: 10px;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.project-media .project-frame {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.project-media .project-frame img,
.project-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
}
.project-thumbs {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.project-thumb {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: none;
}
.project-thumb:nth-child(n + 3) { display: none; }
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}
.project-thumb img { transition: transform .7s var(--ease), filter .7s ease; }
.project-thumb:hover img { transform: scale(1.04); filter: saturate(1.06); }

@media (max-width: 800px) {
  .project-sticky { gap: 20px; }
  .project-media {
    height: min(54vh, 360px);
    grid-template-columns: minmax(0, 1.45fr) minmax(112px, .75fr);
    gap: 7px;
  }
  .project-thumbs { gap: 7px; }
  .project-media .project-frame > span { right: 10px; bottom: 10px; padding: 8px 10px; font-size: 7px; }
}

/* Restore the original per-project collage as the row cover; detail photos remain in its scoped viewer. */
.project-media { display: block; height: min(70vh, 680px); }
.project-media .project-frame { width: 100%; height: 100%; }
.project-media .project-frame img { object-fit: contain; object-position: center; background: var(--paper-light); }
.project-thumbs { display: none; }

@media (max-width: 800px) {
  .project-media { height: min(58vh, 390px); }
  .project-media .project-frame img { object-fit: contain; }
}

/* Tighten section transitions without altering the individual collage compositions. */
.section-heading { min-height: 48vh; padding-top: 5vw; padding-bottom: 5vw; }
.project-scene { height: 112vh; }

@media (max-width: 800px) {
  .section-heading { min-height: 44vh; padding-top: 10vw; padding-bottom: 10vw; }
  .project-scene { height: 108vh; }
}

/* Final compact rhythm: reduce transition tails, not the artwork inside each collage. */
.section-heading { min-height: 38vh; padding-top: 3vw; padding-bottom: 3vw; }
.project-scene { height: 104vh; }

@media (max-width: 800px) {
  .section-heading { min-height: 40vh; padding-top: 8vw; padding-bottom: 8vw; }
  .project-scene { height: 103vh; }
}

/* Bring each project collage closer to the row start while keeping the copy readable. */
.project-media { align-self: start; margin-top: 2vw; }

@media (max-width: 800px) {
  .project-sticky { padding-top: 7vw; padding-bottom: 4vw; }
  .project-media { margin-top: 0; }
}

@media (min-width: 801px) {
  .project-sticky { padding-top: 2vw; padding-bottom: 2vw; }
}
