:root {
  --paper: #f0eee8;
  --paper-2: #e8e5de;
  --ink: #11110f;
  --muted: #77736b;
  --line: rgba(17,17,15,.18);
  --white: #f8f7f3;
  --red: #7f241f;
  --pad: clamp(20px, 3.2vw, 56px);
  --max: 1800px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --font-sans: ivyepic, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif: ivypresto-display, "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}
body.is-loading { opacity: 0; }
body.is-ready { opacity: 1; transition: opacity .45s ease; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; color: inherit; }

.page-shell { overflow: clip; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  mix-blend-mode: difference;
  color: white;
  pointer-events: none;
}
.site-header a { pointer-events: auto; }
.brand {
  justify-self: start;
  display: flex;
  flex-direction: column;
  font-size: 11px;
  line-height: .95;
  letter-spacing: -.02em;
  font-weight: 600;
  text-transform: uppercase;
}
.header-center {
  justify-self: center;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav {
  justify-self: end;
  display: flex;
  gap: 24px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right .2s ease;
}
.nav a:hover::after { right: 0; }

.micro {
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
}
.kicker { color: var(--red); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

/* Home hero */
.home-hero {
  height: 165vh;
  position: relative;
  background: var(--ink);
  color: var(--white);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding: 90px var(--pad) 26px;
  --photo-start-w: 31vw;
  --photo-start-h: 43vh;
  --photo-bottom: 24px;
}
.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 3;
}
.hero-meta p:nth-child(2) { text-align: center; }
.hero-meta p:nth-child(3) { text-align: right; }
.hero-meta .micro { font-weight: 400; opacity: .82; }
.hero-title {
  margin: clamp(68px, 10vh, 120px) 0 0;
  position: relative;
  z-index: 3;
  font-size: clamp(72px, 13.1vw, 234px);
  line-height: .73;
  letter-spacing: -.05em;
  font-weight: 300;
  text-transform: uppercase;
  transform: translate3d(0, calc(var(--hero-p, 0) * -9vh), 0);
  opacity: calc(1 - var(--hero-p, 0) * 1.25);
  will-change: transform, opacity;
}
.hero-title span { display: block; }
.hero-title .name-line + .name-line { margin-top: .035em; }
.hero-tagline-block {
  position: absolute;
  top: calc(100vh - var(--photo-bottom) - var(--photo-start-h) + 10px);
  left: calc(var(--pad) + 8vw);
  right: calc(var(--pad) + var(--photo-start-w) + 2.2vw);
  z-index: 4;
  transform: translate3d(0, calc(var(--hero-p, 0) * -7vh), 0);
  opacity: calc(1 - var(--hero-p, 0) * 1.35);
  will-change: transform, opacity;
}
.hero-tagline {
  margin: 0;
  font-size: clamp(40px, 4.55vw, 82px);
  line-height: .9;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.hero-disciplines {
  margin: .55em 0 0;
  font-size: clamp(13px, 1.25vw, 21px);
  line-height: 1.1;
  letter-spacing: .075em;
  text-transform: uppercase;
  text-align: right;
  font-weight: 400;
}
.hero-photo {
  position: absolute;
  right: var(--pad);
  bottom: var(--photo-bottom);
  width: calc(var(--photo-start-w) + (100vw - var(--photo-start-w) - var(--pad) * 2) * var(--hero-p, 0));
  height: calc(var(--photo-start-h) + (100vh - var(--photo-start-h) - var(--photo-bottom) * 2) * var(--hero-p, 0));
  z-index: 2;
  overflow: hidden;
  will-change: width, height;
}
.hero-photo img {
  object-position: 66% 48%;
  transform: scale(calc(1.08 - var(--hero-p, 0) * .08));
  will-change: transform;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,calc(.12 - var(--hero-p, 0) * .10));
}
.hero-caption {
  position: absolute;
  font-weight: 400;
  left: var(--pad);
  bottom: 24px;
  z-index: 4;
  width: min(340px, 35vw);
  font-size: 13px;
  line-height: 1.38;
  opacity: calc(1 - var(--hero-p, 0) * 1.5);
}
.roundel {
  position: absolute;
  right: calc(var(--pad) + var(--photo-start-w) - 62px);
  bottom: 40px;
  z-index: 5;
  width: 124px;
  aspect-ratio: 1;
  color: var(--white);
  opacity: calc(1 - var(--hero-p, 0) * 2.35);
}
.roundel svg { width: 100%; height: 100%; animation: spin 24s linear infinite; }
.roundel .arrow {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 22px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Editorial statement */
.statement {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(110px, 14vw, 240px) var(--pad);
  display: grid;
  grid-template-columns: minmax(120px,.35fr) 1.65fr;
  gap: 6vw;
  border-bottom: 1px solid var(--line);
}
.statement h2 {
  margin: 0;
  max-width: 1280px;
  font-size: clamp(48px, 7.3vw, 128px);
  line-height: .92;
  letter-spacing: -.05em;
  font-weight: 300;
}
.statement h2 .serif { display: inline-block; padding: 0 .05em; }

/* Featured work */
.featured {
  width: min(100%, var(--max));
  margin: auto;
  padding: 90px var(--pad) 150px;
}
.section-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 100px;
}
.section-top p:last-child { text-align: right; }
.project-feature {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(260px,.85fr);
  gap: clamp(28px, 5vw, 90px);
  align-items: center;
  padding: 70px 0 110px;
  border-bottom: 1px solid var(--line);
}
.project-feature:nth-of-type(even) { grid-template-columns: minmax(260px,.85fr) minmax(0,1.15fr); }
.project-feature:nth-of-type(even) .feature-visual { order: 2; }
.feature-visual {
  position: relative;
  overflow: hidden;
  height: min(72vh, 790px);
  background: #d7d3ca;
}
.project-feature:nth-of-type(2) .feature-visual { height: min(78vh, 850px); width: 82%; justify-self: end; }
.project-feature:nth-of-type(3) .feature-visual { height: min(65vh, 700px); }
.project-feature:nth-of-type(4) .feature-visual { height: min(74vh, 800px); width: 88%; }
.feature-visual img { transition: transform .75s var(--ease); }
.project-feature:hover .feature-visual img { transform: scale(1.025); }
.feature-copy {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.feature-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.feature-copy h3 {
  margin: 60px 0 30px;
  font-size: clamp(56px, 7.4vw, 128px);
  line-height: .78;
  letter-spacing: -.055em;
  font-weight: 300;
}
.feature-copy h3 span { display: block; }
.feature-copy h3 .serif { font-size: .65em; line-height: .92; text-transform: none; letter-spacing: -.04em; }
.feature-description {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.45;
}
.feature-description p { margin: 0; }
.feature-link {
  margin-top: 50px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.feature-link i {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  font-style: normal;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.project-feature:hover .feature-link i { transform: translateX(5px); background: var(--ink); color: var(--white); }
.project-feature:focus-visible { outline: 2px solid var(--red); outline-offset: 8px; }
.project-feature:focus-visible .feature-link i { transform: translateX(5px); background: var(--ink); color: var(--white); }

/* Horizontal capabilities */
.capabilities {
  position: relative;
  height: calc(100vh + 390vw);
  background: var(--ink);
  color: var(--white);
}
.cap-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding-top: 76px;
}
.cap-head {
  position: absolute;
  z-index: 3;
  top: 104px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.cap-track {
  height: 100%;
  display: flex;
  width: max-content;
  transform: translate3d(calc(var(--cap-p, 0) * var(--cap-shift, 0px) * -1),0,0);
  will-change: transform;
  padding-left: 0;
}
.cap-card {
  width: 76vw;
  height: 100%;
  padding: 180px var(--pad) 45px;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 6vw;
  border-right: 1px solid rgba(255,255,255,.2);
}
.cap-number {
  font-size: clamp(120px, 19vw, 340px);
  line-height: .72;
  letter-spacing: -.055em;
  color: rgba(255,255,255,.16);
}
.cap-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 5vh;
}
.cap-content h3 {
  margin: 0 0 28px;
  font-size: clamp(54px, 8vw, 142px);
  line-height: .82;
  letter-spacing: -.055em;
  font-weight: 300;
}
.cap-content p {
  margin: 0;
  max-width: 530px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.68);
}

/* About */
.about {
  width: min(100%, var(--max));
  margin: auto;
  padding: clamp(120px, 15vw, 260px) var(--pad) 120px;
}
.about-grid {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  gap: 6vw;
}
.about h2 {
  margin: 0;
  font-size: clamp(55px, 8.4vw, 148px);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 300;
}
.about-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  margin: 90px 0 0 25%;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.about-lower p { margin: 0; font-size: 17px; line-height: 1.55; }
.about-lower .micro-list { font-size: 11px; line-height: 1.9; letter-spacing: .08em; text-transform: uppercase; }

.contact {
  min-height: 82vh;
  background: var(--paper-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 90px var(--pad) 34px;
}
.contact h2 {
  margin: 14vh 0 0;
  font-size: clamp(68px, 13vw, 230px);
  line-height: .74;
  letter-spacing: -.05em;
  font-weight: 300;
}
.contact h2 a { display: inline-block; }
.contact h2 a::after {
  content: ""; display: block; height: .035em; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.contact h2 a:hover::after { transform: scaleX(1); }
.footer-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.footer-meta p { margin: 0; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-meta p:nth-child(2) { text-align: center; }
.footer-meta p:nth-child(3) { text-align: right; }

/* Project pages */
.project-page { background: var(--paper); }
.project-hero {
  min-height: 100vh;
  padding: 120px var(--pad) 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.project-hero-top p:last-child { text-align: right; }
.project-hero h1 {
  margin: 8vh 0 7vh;
  font-size: clamp(78px, 15vw, 265px);
  line-height: .69;
  letter-spacing: -.055em;
  font-weight: 300;
  text-transform: uppercase;
}
.project-hero h1 span { display: block; }
.project-hero h1 .serif { font-size: .55em; text-transform: none; letter-spacing: -.05em; }
.project-hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
}
.project-lead {
  margin: 0;
  font-weight: 400;
  max-width: 980px;
  font-size: clamp(28px, 4vw, 62px);
  line-height: 1;
  letter-spacing: -.045em;
}
.project-facts {
  margin: 0;
  display: grid;
}
.project-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.project-facts div:last-child { border-bottom: 1px solid var(--line); }
.project-facts dt, .project-facts dd { margin: 0; font-weight: 400; font-size: 11px; line-height: 1.4; }
.project-facts dt { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.project-cover {
  margin: 0 var(--pad);
  height: min(86vh, 1000px);
  overflow: hidden;
  background: #d8d4cb;
}
.project-cover img { object-position: center; }
.project-intro {
  width: min(100%, var(--max));
  margin: auto;
  padding: clamp(120px, 14vw, 230px) var(--pad);
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
}
.intro-content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
}
.intro-content h2 {
  margin: 0;
  font-size: clamp(46px, 6.4vw, 112px);
  line-height: .93;
  letter-spacing: -.06em;
  font-weight: 300;
}
.intro-copy { max-width: 560px; font-size: 17px; line-height: 1.58; }
.intro-copy p { margin: 0 0 24px; }
.media-section { width: min(100%, var(--max)); margin: auto; padding: 0 var(--pad) clamp(120px,12vw,210px); }
.media-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: clamp(10px,1.5vw,24px); align-items: start; }
.media { position: relative; overflow: hidden; background: #d7d3ca; min-height: 320px; }
.media img { transition: transform .7s var(--ease); }
.media:hover img { transform: scale(1.018); }
.media .caption {
  position: absolute; left: 12px; bottom: 10px;
  color: white; mix-blend-mode: difference;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
}
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
.h-portrait { height: min(72vw, 980px); }
.h-tall { height: min(62vw, 820px); }
.h-land { height: min(44vw, 690px); }
.h-wide { height: min(52vw, 780px); }
.offset-top { margin-top: 12vw; }
.image-contain img { object-fit: contain; padding: 6%; }
.bg-warm { background: #e7e1d8; }
.bg-dark { background: #101010; }

.project-quote {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(100px, 13vw, 220px) var(--pad);
  margin-bottom: clamp(120px, 12vw, 210px);
}
.project-quote p {
  margin: 0;
  font-weight: 300;
  max-width: 1500px;
  font-size: clamp(54px, 8.2vw, 145px);
  line-height: .86;
  letter-spacing: -.055em;
}
.project-next {
  background: var(--ink);
  color: var(--white);
  padding: 40px var(--pad) 90px;
}
.project-next-top { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.25); }
.project-next a {
  display: flex;
  font-weight: 300;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 90px;
  font-size: clamp(70px, 12vw, 220px);
  line-height: .72;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.project-next a span:last-child { font-size: .45em; padding-bottom: .1em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .header-center { display: none; }
  .home-hero { height: auto; }
  .hero-sticky { position: relative; height: auto; min-height: 100svh; padding-bottom: 22px; }
  .hero-title { transform: none; opacity: 1; font-size: clamp(68px, 16vw, 126px); margin-top: 14vh; }
  .hero-title .name-line + .name-line { margin-top: .045em; }
  .hero-tagline-block {
    position: relative;
    top: auto; left: auto; right: auto;
    transform: none; opacity: 1;
    margin-top: 7vh;
  }
  .hero-tagline { font-size: clamp(38px, 8.5vw, 66px); white-space: normal; }
  .hero-disciplines { text-align: left; font-size: 13px; }
  .hero-photo { position: relative; width: 100%; height: 56vh; right: auto; bottom: auto; margin-top: 6vh; }
  .hero-photo img { transform: none; }
  .hero-caption { position: relative; left: auto; bottom: auto; width: 100%; margin-top: 18px; opacity: 1; }
  .roundel { right: 42px; bottom: 55vh; width: 92px; opacity: 1; }
  .statement, .project-intro, .about-grid { grid-template-columns: 1fr; }
  .statement { gap: 44px; }
  .section-top { margin-bottom: 60px; }
  .project-feature, .project-feature:nth-of-type(even) { grid-template-columns: 1fr; min-height: auto; padding: 50px 0 90px; }
  .project-feature:nth-of-type(even) .feature-visual { order: initial; }
  .project-feature:nth-of-type(2) .feature-visual, .project-feature:nth-of-type(4) .feature-visual { width: 100%; }
  .feature-visual, .project-feature:nth-of-type(2) .feature-visual, .project-feature:nth-of-type(3) .feature-visual, .project-feature:nth-of-type(4) .feature-visual { height: 62svh; }
  .feature-copy { min-height: 480px; }
  .feature-copy h3 { margin-top: 50px; }
  .capabilities { height: auto; }
  .cap-sticky { position: relative; height: auto; overflow: visible; padding-top: 100px; }
  .cap-head { position: relative; top: auto; margin: 0 var(--pad) 70px; left: auto; right: auto; }
  .cap-track { width: auto; display: block; transform: none !important; }
  .cap-card { width: 100%; height: auto; min-height: 70svh; grid-template-columns: .3fr 1fr; padding: 70px var(--pad); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .cap-number { font-size: 19vw; }
  .about-lower { margin-left: 0; }
  .project-hero { min-height: auto; padding-top: 120px; }
  .project-hero h1 { font-size: clamp(72px, 18vw, 160px); margin: 13vh 0 10vh; }
  .project-hero-bottom { grid-template-columns: 1fr; gap: 70px; }
  .project-cover { height: 72svh; }
  .intro-content { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-grid > * { grid-column: auto !important; }
  .span-12 { grid-column: 1 / -1 !important; }
  .offset-top { margin-top: 0; }
  .h-portrait, .h-tall, .h-land, .h-wide { height: 55vw; }
}

@media (max-width: 620px) {
  :root { --pad: 18px; }
  .site-header { height: 64px; }
  .nav { gap: 14px; }
  .nav a:nth-child(2) { display: none; }
  .hero-sticky { padding-top: 78px; }
  .hero-meta { grid-template-columns: 1fr auto; }
  .hero-meta p:nth-child(2) { display: none; }
  .hero-title { font-size: 12.8vw; line-height: .78; letter-spacing: -.08em; }
  .hero-photo { height: 55svh; }
  .roundel { left: 30px; right: auto; bottom: 47svh; width: 84px; }
  .statement { padding-top: 100px; padding-bottom: 100px; }
  .statement h2 { font-size: 13.5vw; }
  .featured { padding-top: 60px; padding-bottom: 90px; }
  .section-top { grid-template-columns: 1fr auto; margin-bottom: 40px; }
  .feature-visual, .project-feature:nth-of-type(2) .feature-visual, .project-feature:nth-of-type(3) .feature-visual, .project-feature:nth-of-type(4) .feature-visual { height: 55svh; }
  .feature-copy { min-height: 410px; }
  .feature-copy h3 { font-size: 17vw; }
  .feature-description { grid-template-columns: 1fr; }
  .cap-card { grid-template-columns: 1fr; min-height: 78svh; padding-top: 60px; }
  .cap-number { font-size: 30vw; }
  .cap-content h3 { font-size: 15vw; }
  .about { padding-top: 100px; }
  .about h2 { font-size: 15vw; }
  .about-lower { grid-template-columns: 1fr; margin-top: 60px; }
  .contact { min-height: 76svh; }
  .contact h2 { font-size: 18vw; }
  .footer-meta { grid-template-columns: 1fr; }
  .footer-meta p:nth-child(2), .footer-meta p:nth-child(3) { text-align: left; }
  .project-hero-top { grid-template-columns: 1fr auto; }
  .project-hero h1 { font-size: 18vw; }
  .project-lead { font-size: 8.5vw; }
  .project-cover { margin: 0; height: 66svh; }
  .project-intro { padding-top: 100px; padding-bottom: 100px; }
  .intro-content h2 { font-size: 13vw; }
  .media-section { padding-left: 0; padding-right: 0; }
  .media-grid { grid-template-columns: 1fr; gap: 8px; }
  .media-grid > *, .span-12 { grid-column: 1 !important; }
  .h-portrait, .h-tall, .h-land, .h-wide { height: 70svh; }
  .image-contain img { padding: 10%; }
  .project-quote { padding-left: 18px; padding-right: 18px; }
  .project-quote p { font-size: 13vw; }
  .project-next a { font-size: 17vw; margin-top: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title, .hero-tagline-block { transform: none; opacity: 1; }
}


/* Featured Work V4 ------------------------------------------------------- */
.project-feature--vitesse {
  width: calc(100% + (var(--pad) * 2));
  margin-left: calc(var(--pad) * -1);
  min-height: auto;
  padding: clamp(86px, 7vw, 126px) var(--pad) clamp(100px, 8vw, 150px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(16px, 2vw, 34px);
  align-items: start;
  background: #111720;
  color: var(--paper);
  border-bottom: 0;
}
.project-feature--vitesse .vitesse-index {
  grid-column: 1 / -1;
  grid-row: 1;
  border-color: rgba(240,238,232,.24);
}
.project-feature--vitesse .vitesse-title {
  grid-column: 1 / 8;
  grid-row: 2;
  align-self: start;
  position: relative;
  z-index: 3;
  margin: clamp(62px, 6vw, 108px) 0 0;
  font-size: clamp(82px, 11vw, 192px);
  line-height: .73;
  letter-spacing: -.06em;
  font-weight: 300;
}
.project-feature--vitesse .vitesse-title span { display: block; }
.project-feature--vitesse .vitesse-title .serif {
  font-size: .58em;
  line-height: .88;
  letter-spacing: -.045em;
}
.project-feature--vitesse .vitesse-visual {
  grid-column: 3 / 13;
  grid-row: 2;
  width: 100%;
  height: min(76vh, 850px);
  margin-top: clamp(90px, 8vw, 146px);
  background: #0b0f16;
}
.project-feature--vitesse .vitesse-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,23,32,.28), transparent 34%);
  pointer-events: none;
}
.project-feature--vitesse .vitesse-bottom {
  grid-column: 7 / 13;
  grid-row: 3;
  margin-top: 42px;
}
.project-feature--vitesse .feature-description {
  border-color: rgba(240,238,232,.24);
}
.project-feature--vitesse .feature-link i {
  border-color: rgba(240,238,232,.32);
}
.project-feature--vitesse:hover .feature-link i,
.project-feature--vitesse:focus-visible .feature-link i {
  background: var(--paper);
  color: #111720;
}
.project-feature--vitesse:focus-visible {
  outline-color: var(--paper);
  outline-offset: -10px;
}

/* Ruwens closes the sequence with a more energetic image composition. */
.project-feature--ruwens {
  grid-template-columns: minmax(260px,.82fr) minmax(0,1.18fr);
}
.project-feature--ruwens .feature-copy {
  order: 1;
}
.ruwens-collage {
  order: 2;
  height: min(76vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(155px, .72fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1.1vw, 18px);
  min-width: 0;
}
.ruwens-collage > div {
  position: relative;
  overflow: hidden;
}
.ruwens-collage img {
  transition: transform .75s var(--ease);
}
.ruwens-main {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #d5cec3;
}
.ruwens-main img {
  object-fit: cover;
}
.ruwens-detail {
  grid-column: 2;
  display: grid;
  place-items: center;
}
.ruwens-detail img {
  object-fit: contain;
  padding: 11%;
}
.ruwens-detail--hotdog {
  grid-row: 1;
  background: #ead9ca;
}
.ruwens-detail--soup {
  grid-row: 2;
  background: #d9e7e3;
}
.project-feature--ruwens:hover .ruwens-main img,
.project-feature--ruwens:focus-visible .ruwens-main img {
  transform: scale(1.024);
}
.project-feature--ruwens:hover .ruwens-detail img,
.project-feature--ruwens:focus-visible .ruwens-detail img {
  transform: scale(1.045);
}

/* Long IvyPresto subtitle: give Vibiota a slightly more controlled scale. */
.project-feature--vibiota .feature-copy h3 .serif {
  font-size: .54em;
  margin-top: .08em;
  white-space: nowrap;
}

@media (max-width: 1000px) {
  .project-feature--vitesse {
    width: calc(100% + (var(--pad) * 2));
    margin-left: calc(var(--pad) * -1);
    display: block;
    padding: 80px var(--pad) 100px;
  }
  .project-feature--vitesse .vitesse-title {
    margin: 58px 0 42px;
    font-size: clamp(78px, 16vw, 148px);
  }
  .project-feature--vitesse .vitesse-visual {
    width: 100%;
    height: 62svh;
    margin: 0;
  }
  .project-feature--vitesse .vitesse-bottom {
    margin-top: 42px;
  }
  .project-feature--ruwens {
    grid-template-columns: 1fr;
  }
  .project-feature--ruwens .ruwens-collage {
    order: initial;
    height: 68svh;
    width: 100%;
  }
  .project-feature--ruwens .feature-copy {
    order: 2;
  }
}

@media (max-width: 620px) {
  .project-feature--vibiota .feature-copy h3 .serif {
    white-space: normal;
    font-size: .57em;
  }
  .project-feature--vitesse {
    padding-top: 68px;
    padding-bottom: 88px;
  }
  .project-feature--vitesse .vitesse-title {
    font-size: 18vw;
    margin-top: 52px;
  }
  .project-feature--vitesse .vitesse-visual {
    height: 55svh;
  }
  .project-feature--vitesse .vitesse-bottom {
    margin-top: 34px;
  }
  .ruwens-collage {
    height: 58svh !important;
    grid-template-columns: minmax(0, 1.55fr) minmax(105px, .72fr);
    gap: 7px;
  }
}



/* V5 / Featured Work refinements --------------------------------------- */
/* Interaction: not the whole module. Only image side and text side are clickable. */
.project-feature {
  cursor: default;
}
.project-feature:hover .feature-visual img,
.project-feature:hover .ruwens-collage img,
.project-feature:hover .feature-link i,
.project-feature:focus-visible .feature-link i {
  transform: none;
  background: transparent;
  color: inherit;
}
.project-feature:focus-visible {
  outline: none;
}

.feature-visual-link,
.feature-copy-link,
.vitesse-copy,
.vitesse-stage,
.ruwens-collage {
  color: inherit;
  text-decoration: none;
  display: block;
}
.feature-copy-link,
.vitesse-copy {
  min-width: 0;
}

.feature-visual-link:hover img,
.feature-visual-link:focus-visible img,
.vitesse-stage:hover img,
.vitesse-stage:focus-visible img,
.ruwens-collage:hover img,
.ruwens-collage:focus-visible img {
  transform: scale(1.025);
}

.feature-copy-link:hover .feature-link i,
.feature-copy-link:focus-visible .feature-link i,
.vitesse-copy:hover .feature-link i,
.vitesse-copy:focus-visible .feature-link i {
  transform: translateX(5px);
  background: var(--ink);
  color: var(--white);
}

.feature-visual-link:focus-visible,
.feature-copy-link:focus-visible,
.vitesse-copy:focus-visible,
.vitesse-stage:focus-visible,
.ruwens-collage:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 8px;
}

/* Keep Vibiota heading elegant and compact. */
.project-feature--vibiota .feature-copy h3 .serif {
  font-size: .54em;
  margin-top: .08em;
  white-space: nowrap;
}

/* Vitesse: stronger and wider, but without turning it into the page's main headline. */
.project-feature--vitesse {
  min-height: auto;
  padding: clamp(82px, 7vw, 118px) 0 clamp(94px, 8vw, 138px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 clamp(16px, 2vw, 28px);
  align-items: start;
}
.project-feature--vitesse .vitesse-index {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 0;
}
.project-feature--vitesse .vitesse-copy {
  grid-column: 1 / 5;
  grid-row: 2;
  align-self: start;
  position: relative;
  z-index: 3;
  margin-top: clamp(56px, 5vw, 88px);
}
.project-feature--vitesse .vitesse-title {
  margin: 0;
  font-size: clamp(76px, 9.1vw, 142px);
  line-height: .76;
  letter-spacing: -.06em;
  font-weight: 300;
}
.project-feature--vitesse .vitesse-title span {
  display: block;
}
.project-feature--vitesse .vitesse-title .serif {
  font-size: .58em;
  line-height: .88;
  letter-spacing: -.045em;
}
.project-feature--vitesse .vitesse-copy .feature-description {
  margin-top: clamp(110px, 13vw, 190px);
}
.project-feature--vitesse .vitesse-stage {
  grid-column: 4 / 13;
  grid-row: 2;
  height: min(72vh, 760px);
  background: #0d1622;
  padding: clamp(18px, 1.8vw, 26px);
  display: block;
}
.project-feature--vitesse .vitesse-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.project-feature--vitesse .vitesse-stage:focus-visible {
  outline-color: #0d1622;
}
.project-feature--vitesse .vitesse-copy:focus-visible .feature-link i {
  background: var(--ink);
  color: var(--white);
}

/* Ruwens: same concept, but with stronger detail crops. */
.project-feature--ruwens {
  grid-template-columns: minmax(260px,.8fr) minmax(0,1.2fr);
}
.project-feature--ruwens .feature-copy {
  order: 1;
}
.project-feature--ruwens .ruwens-collage {
  order: 2;
  height: min(74vh, 800px);
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(150px, .78fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1vw, 16px);
  min-width: 0;
}
.project-feature--ruwens .ruwens-collage > div {
  position: relative;
  overflow: hidden;
}
.project-feature--ruwens .ruwens-main {
  grid-column: 1;
  grid-row: 1 / 3;
  background: #d5cec3;
}
.project-feature--ruwens .ruwens-detail {
  grid-column: 2;
  background: #f3eee7;
}
.project-feature--ruwens .ruwens-detail--hotdog {
  grid-row: 1;
}
.project-feature--ruwens .ruwens-detail--soup {
  grid-row: 2;
}
.project-feature--ruwens .ruwens-collage img {
  width: 100%;
  height: 100%;
  transition: transform .75s var(--ease);
}
.project-feature--ruwens .ruwens-main img {
  object-fit: cover;
  object-position: center;
}
.project-feature--ruwens .ruwens-detail img {
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

@media (max-width: 1000px) {
  .project-feature--vitesse {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 74px 0 100px;
  }
  .project-feature--vitesse .vitesse-index {
    grid-column: 1;
    grid-row: 1;
  }
  .project-feature--vitesse .vitesse-copy {
    grid-column: 1;
    grid-row: 2;
    margin-top: 42px;
  }
  .project-feature--vitesse .vitesse-title {
    font-size: clamp(72px, 14vw, 128px);
  }
  .project-feature--vitesse .vitesse-copy .feature-description {
    margin-top: 30px;
  }
  .project-feature--vitesse .vitesse-stage {
    grid-column: 1;
    grid-row: 3;
    height: 62svh;
    margin-top: 34px;
  }

  .project-feature--ruwens {
    grid-template-columns: 1fr;
  }
  .project-feature--ruwens .ruwens-collage {
    height: 68svh;
    width: 100%;
    order: initial;
  }
  .project-feature--ruwens .feature-copy {
    order: 2;
  }
}

@media (max-width: 620px) {
  .project-feature--vibiota .feature-copy h3 .serif {
    white-space: normal;
    font-size: .57em;
  }
  .project-feature--vitesse .vitesse-title {
    font-size: 18vw;
  }
  .project-feature--vitesse .vitesse-stage {
    height: 53svh;
    padding: 12px;
  }
  .project-feature--ruwens .ruwens-collage {
    height: 58svh;
    grid-template-columns: minmax(0, 1.56fr) minmax(104px, .72fr);
    gap: 7px;
  }
}


/* V6 refinements -------------------------------------------------------- */
/* Restore bottom alignment of the two short description texts to the image edge. */
.feature-copy.feature-copy-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  height: 100%;
}

/* Keep the Vitesse copy vertically organized as well. */
.vitesse-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Remove the dark Vitesse background stage so the image can breathe more. */
.project-feature--vitesse .vitesse-stage {
  background: transparent;
  padding: 0;
  height: min(68vh, 700px);
}
.project-feature--vitesse .vitesse-stage img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1000px) {
  .project-feature--vitesse .vitesse-stage {
    height: 58svh;
    padding: 0;
  }
}

@media (max-width: 620px) {
  .project-feature--vitesse .vitesse-stage {
    height: 50svh;
    padding: 0;
  }
}


/* V7 refinements -------------------------------------------------------- */
/* Bring back image zoom on hover / focus across all project modules. */
.feature-visual img,
.vitesse-stage img,
.ruwens-collage img {
  transition: transform .75s var(--ease);
  will-change: transform;
}

.feature-visual-link:hover img,
.feature-visual-link:focus-visible img,
.vitesse-stage:hover img,
.vitesse-stage:focus-visible img,
.ruwens-collage:hover img,
.ruwens-collage:focus-visible img {
  transform: scale(1.03);
}

/* Remove the dark Vitesse section stage entirely. Keep the broader layout, but let the image do the work. */
.project-feature--vitesse {
  width: 100%;
  margin-left: 0;
  background: transparent;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.project-feature--vitesse .vitesse-index,
.project-feature--vitesse .feature-description {
  border-color: var(--line);
}
.project-feature--vitesse .feature-link i {
  border-color: var(--line);
}
.project-feature--vitesse:hover .feature-link i,
.project-feature--vitesse:focus-visible .feature-link i,
.project-feature--vitesse .vitesse-copy:hover .feature-link i,
.project-feature--vitesse .vitesse-copy:focus-visible .feature-link i {
  background: var(--ink);
  color: var(--white);
}
.project-feature--vitesse:focus-visible,
.project-feature--vitesse .vitesse-stage:focus-visible {
  outline-color: var(--red);
}

/* Slightly calmer image stage for Vitesse. */
.project-feature--vitesse .vitesse-stage {
  background: transparent;
  padding: 0;
  height: min(66vh, 690px);
}
.project-feature--vitesse .vitesse-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1000px) {
  .project-feature--vitesse {
    width: 100%;
    margin-left: 0;
  }
  .project-feature--vitesse .vitesse-stage {
    height: 58svh;
  }
}

@media (max-width: 620px) {
  .project-feature--vitesse .vitesse-stage {
    height: 50svh;
  }
}


/* V8 refinements -------------------------------------------------------- */
/* Stronger, unmistakable hover zoom for all featured project images. */
.featured .project-feature .feature-visual,
.featured .project-feature .vitesse-stage,
.featured .project-feature .ruwens-main,
.featured .project-feature .ruwens-detail {
  overflow: hidden;
}

.featured .project-feature .feature-visual img,
.featured .project-feature .vitesse-stage img,
.featured .project-feature .ruwens-collage img {
  transition: transform .9s var(--ease);
  transform-origin: center center;
  will-change: transform;
}

.featured .project-feature:hover .feature-visual img,
.featured .project-feature:focus-within .feature-visual img,
.featured .project-feature:hover .vitesse-stage img,
.featured .project-feature:focus-within .vitesse-stage img,
.featured .project-feature:hover .ruwens-collage img,
.featured .project-feature:focus-within .ruwens-collage img {
  transform: scale(1.06);
}

/* Vitesse: create more breathing room between title and image. */
.project-feature--vitesse {
  gap: 0 clamp(22px, 2.6vw, 42px);
}
.project-feature--vitesse .vitesse-copy {
  grid-column: 1 / 5;
}
.project-feature--vitesse .vitesse-stage {
  grid-column: 5 / 13;
  height: min(64vh, 660px);
  overflow: hidden;
}
.project-feature--vitesse .vitesse-title {
  font-size: clamp(74px, 8.5vw, 138px);
}

/* If the viewport gets tighter, solve overlap structurally rather than with visual tricks. */
@media (max-width: 1220px) {
  .project-feature--vitesse {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .project-feature--vitesse .vitesse-index {
    grid-column: 1;
    grid-row: 1;
  }
  .project-feature--vitesse .vitesse-copy {
    grid-column: 1;
    grid-row: 2;
    margin-top: 42px;
  }
  .project-feature--vitesse .vitesse-copy .feature-description {
    margin-top: 34px;
  }
  .project-feature--vitesse .vitesse-stage {
    grid-column: 1;
    grid-row: 3;
    margin-top: 36px;
    height: 58svh;
  }
}

/* Ruwens: two small images left, big feature image center, copy on the right. */
.project-feature--ruwens {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .7fr);
  gap: clamp(28px, 4vw, 64px);
}
.project-feature--ruwens .ruwens-collage {
  order: 1;
  height: min(74vh, 800px);
  display: grid;
  grid-template-columns: minmax(118px, .48fr) minmax(0, 1.42fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1vw, 16px);
}
.project-feature--ruwens .feature-copy {
  order: 2;
}
.project-feature--ruwens .ruwens-detail {
  grid-column: 1;
}
.project-feature--ruwens .ruwens-main {
  grid-column: 2;
  grid-row: 1 / 3;
}
.project-feature--ruwens .ruwens-detail--hotdog {
  grid-row: 1;
}
.project-feature--ruwens .ruwens-detail--soup {
  grid-row: 2;
}
.project-feature--ruwens .ruwens-detail img {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1000px) {
  .project-feature--ruwens {
    grid-template-columns: 1fr;
  }
  .project-feature--ruwens .ruwens-collage {
    width: 100%;
    order: 1;
    grid-template-columns: minmax(104px, .5fr) minmax(0, 1.5fr);
  }
  .project-feature--ruwens .feature-copy {
    order: 2;
  }
}

@media (max-width: 620px) {
  .project-feature--ruwens .ruwens-collage {
    height: 58svh;
    grid-template-columns: minmax(88px, .48fr) minmax(0, 1.42fr);
    gap: 7px;
  }
}


/* V9 / Featured Work composition --------------------------------------- */
/*
  Decision:
  01 Overnight: image left, copy right
  02 Vibiota: copy left, image right
  03 Vitesse: wide image left, copy right
  04 Ruwens: three-image composition left, copy right
*/

/* Hover zoom belongs to the image itself, not the whole project module. */
.featured .project-feature:hover .feature-visual img,
.featured .project-feature:focus-within .feature-visual img,
.featured .project-feature:hover .vitesse-stage img,
.featured .project-feature:focus-within .vitesse-stage img,
.featured .project-feature:hover .ruwens-collage img,
.featured .project-feature:focus-within .ruwens-collage img {
  transform: none;
}

.featured .project-feature .feature-visual:hover img,
.featured .project-feature .feature-visual:focus-visible img,
.featured .project-feature .vitesse-stage:hover img,
.featured .project-feature .vitesse-stage:focus-visible img,
.featured .project-feature .ruwens-collage:hover img,
.featured .project-feature .ruwens-collage:focus-visible img {
  transform: scale(1.055);
}

/* Vitesse: cinematic image left, information right. */
.project-feature--vitesse {
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, .66fr);
  gap: clamp(34px, 4.5vw, 76px);
}
.project-feature--vitesse .vitesse-index {
  grid-column: 1 / -1;
  grid-row: 1;
}
.project-feature--vitesse .vitesse-stage {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  height: min(64vh, 660px);
  margin-top: clamp(58px, 5vw, 88px);
}
.project-feature--vitesse .vitesse-copy {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  height: min(64vh, 660px);
  margin-top: clamp(58px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.project-feature--vitesse .vitesse-title {
  margin: 0;
  font-size: clamp(68px, 7.2vw, 116px);
  line-height: .78;
}
.project-feature--vitesse .vitesse-copy .feature-description {
  margin-top: auto;
}
.project-feature--vitesse .vitesse-copy .feature-link {
  margin-top: 50px;
}

/* Ruwens: equal overall split, with the three-image composition on the left. */
.project-feature--ruwens {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 4.5vw, 76px);
}
.project-feature--ruwens .ruwens-collage {
  order: 1;
  width: 100%;
  height: min(74vh, 800px);
  /* 50% Gesamtbreite für die Bildgruppe.
     Innerhalb der Bildgruppe: 17% Gesamtbreite für die zwei kleinen Bilder,
     33% Gesamtbreite für das große Bild = 17:33. */
  grid-template-columns: minmax(120px, 17fr) minmax(0, 33fr);
}
.project-feature--ruwens .feature-copy {
  order: 2;
  width: 100%;
}

/* Avoid typographic collisions by stacking before the layouts become cramped. */
@media (max-width: 1120px) {
  .project-feature--vitesse,
  .project-feature--ruwens {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-feature--vitesse .vitesse-index {
    grid-column: 1;
    grid-row: 1;
  }
  .project-feature--vitesse .vitesse-stage {
    grid-column: 1;
    grid-row: 2;
    height: 58svh;
    margin-top: 42px;
  }
  .project-feature--vitesse .vitesse-copy {
    grid-column: 1;
    grid-row: 3;
    height: auto;
    margin-top: 42px;
  }
  .project-feature--vitesse .vitesse-copy .feature-description {
    margin-top: 34px;
  }

  .project-feature--ruwens .ruwens-collage {
    order: 1;
    height: 68svh;
  }
  .project-feature--ruwens .feature-copy {
    order: 2;
    margin-top: 42px;
  }
}

@media (max-width: 620px) {
  .project-feature--vitesse .vitesse-stage {
    height: 50svh;
  }
  .project-feature--ruwens .ruwens-collage {
    height: 58svh;
    grid-template-columns: minmax(88px, 17fr) minmax(0, 33fr);
    gap: 7px;
  }
}



/* V11 / Capabilities ---------------------------------------------------- */
.capabilities {
  height: 100vh; /* wird auf Desktop präzise per JavaScript berechnet */
}

.cap-head {
  align-items: flex-end;
}

.cap-progress {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cap-progress-line {
  position: relative;
  display: block;
  width: clamp(76px, 8vw, 132px);
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.cap-progress-line i {
  position: absolute;
  inset: 0;
  display: block;
  background: rgba(255,255,255,.8);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Ziffern als poetischer Kontrapunkt, Titel bleiben eindeutig in IvyEpic. */
.cap-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.075em;
  color: rgba(255,255,255,.085);
  transition: color .55s var(--ease), opacity .55s var(--ease);
}

.cap-content {
  opacity: .23;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .65s var(--ease);
}

.cap-content h3 {
  color: rgba(255,255,255,.74);
  transition: color .55s var(--ease);
}

.cap-content p {
  color: rgba(255,255,255,.42);
  transition: color .55s var(--ease);
}

/* Die aktive Karte wird klar geführt, Nachbarkarten bleiben als Vorschau sichtbar. */
.cap-card.is-active .cap-number {
  color: rgba(255,255,255,.19);
}

.cap-card.is-active .cap-content {
  opacity: 1;
  transform: translateY(0);
}

.cap-card.is-active .cap-content h3 {
  color: var(--white);
}

.cap-card.is-active .cap-content p {
  color: rgba(255,255,255,.72);
}

/* Kontrollierte typografische Choreografie statt fünf identischer Karten. */
.cap-card:nth-child(1) .cap-number { margin-top: 1vh; }
.cap-card:nth-child(1) .cap-content { padding-bottom: 7vh; }

.cap-card:nth-child(2) .cap-number { margin-top: 8vh; }
.cap-card:nth-child(2) .cap-content {
  padding-bottom: 10vh;
  margin-left: 7vw;
}

.cap-card:nth-child(3) .cap-number { margin-top: 2vh; }
.cap-card:nth-child(3) .cap-content {
  padding-bottom: 13vh;
  margin-left: -2vw;
}

.cap-card:nth-child(4) .cap-number { margin-top: 10vh; }
.cap-card:nth-child(4) .cap-content {
  padding-bottom: 5vh;
  margin-left: 5vw;
}

.cap-card:nth-child(5) .cap-number { margin-top: 4vh; }
.cap-card:nth-child(5) .cap-content {
  padding-bottom: 9vh;
  margin-left: 1vw;
}

.cap-card:nth-child(5) .cap-content h3 {
  font-size: clamp(58px, 8.5vw, 150px);
}

/* Auf Tablets/Mobil bleibt die bestehende vertikale Darstellung klar lesbar. */
@media (max-width: 1000px) {
  .capabilities {
    height: auto !important;
  }

  .cap-progress {
    gap: 10px;
  }

  .cap-progress-line {
    display: none;
  }

  .cap-card .cap-number,
  .cap-card .cap-content,
  .cap-card.is-active .cap-number,
  .cap-card.is-active .cap-content {
    opacity: 1;
    transform: none;
  }

  .cap-card .cap-number {
    color: rgba(255,255,255,.16);
  }

  .cap-card .cap-content h3 {
    color: var(--white);
  }

  .cap-card .cap-content p {
    color: rgba(255,255,255,.68);
  }

  .cap-card:nth-child(n) .cap-number {
    margin-top: 0;
  }

  .cap-card:nth-child(n) .cap-content {
    margin-left: 0;
    padding-bottom: 5vh;
  }
}



/* V12 / Profil, Header und Kontakt ------------------------------------- */

/* Lesbarer Header: Inhalte dürfen darunter weiterlaufen, werden aber
   nicht mehr optisch mit Navigation und Wortmarke vermischt. */
.site-header {
  mix-blend-mode: normal;
  color: var(--ink);
  background: rgba(240, 238, 232, .97);
  border-bottom: 1px solid rgba(17, 17, 15, .09);
  transition:
    color .28s ease,
    background-color .28s ease,
    border-color .28s ease;
}

.site-header.is-dark {
  color: var(--white);
  background: rgba(17, 17, 15, .97);
  border-bottom-color: rgba(255, 255, 255, .10);
}

.profile-facts {
  max-width: 360px;
}

/* Funktionsfähiger Footer mit direkten Kontaktwegen. */
.footer-meta {
  grid-template-columns: 1.35fr 1.1fr .65fr .65fr 1fr;
  align-items: end;
}

.footer-meta a,
.footer-meta p {
  margin: 0;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-meta a {
  width: max-content;
  max-width: 100%;
  position: relative;
}

.footer-meta a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transition: right .22s ease;
}

.footer-meta a:hover::after,
.footer-meta a:focus-visible::after {
  right: 0;
}

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

@media (max-width: 1000px) {
  .footer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .footer-meta p:last-child {
    grid-column: 2;
    text-align: right;
  }
}

@media (max-width: 620px) {
  .footer-meta {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .footer-meta p:last-child {
    grid-column: auto;
    text-align: left;
    margin-top: 12px;
  }
}



/* V12.2 / Mobile QA und Projektseiten-Hotfix -------------------------- */

@media (max-width: 620px) {
  /* „zusammenhängender“ bestimmt die mobile Maximalgröße.
     Dadurch bleibt die gesamte Headline auch auf schmalen iPhones im Viewport. */
  .about h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(28px, 8.5vw, 44px);
    line-height: .93;
    letter-spacing: -.06em;
  }
}

/* Nur dieses ruhige Signatur-Element bleibt bei reduzierter Bewegung aktiv.
   Alle großflächigen Scroll- und Reveal-Effekte respektieren die Einstellung. */
@media (prefers-reduced-motion: reduce) {
  .roundel svg {
    animation: spin 40s linear infinite !important;
  }
}



/* V13 / Overnight Materialteil ----------------------------------------- */
.overnight-materials {
  padding-top: 0;
}

.material-figure {
  margin: 0;
  min-width: 0;
}

.material-image {
  position: relative;
  overflow: visible;
  background: transparent;
}

.material-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .7s var(--ease);
}

.material-figure:hover .material-image img {
  transform: scale(1.008);
}

.material-figure figcaption {
  margin-top: 12px;
  color: rgba(17, 17, 15, .62);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* Variante B: vertikale editoriale Choreografie mit drei klar
   unterschiedlichen Bildgrößen. Kein Motiv wird beschnitten. */
.material-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 1.8vw, 30px);
  row-gap: clamp(110px, 12vw, 210px);
  align-items: start;
}

.material-editorial .material-care {
  grid-column: 1 / span 4;
}

.material-editorial .material-detail {
  grid-column: 7 / span 5;
  margin-top: clamp(90px, 9vw, 160px);
}

.material-editorial .material-board {
  grid-column: 2 / span 10;
  margin-top: clamp(10px, 2vw, 36px);
}

.material-editorial .material-board figcaption {
  text-align: right;
}

@media (max-width: 1000px) {
  .material-editorial {
    row-gap: 90px;
  }

  .material-editorial .material-care {
    grid-column: 1 / span 5;
  }

  .material-editorial .material-detail {
    grid-column: 7 / span 6;
    margin-top: 70px;
  }

  .material-editorial .material-board {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .overnight-materials--editorial {
    padding-left: 18px;
    padding-right: 18px;
  }

  .material-editorial {
    display: flex;
    flex-direction: column;
    gap: 62px;
  }

  .material-editorial .material-care {
    width: 86%;
  }

  .material-editorial .material-detail {
    width: 92%;
    margin-top: 0;
    margin-left: auto;
  }

  .material-editorial .material-board {
    width: 100%;
    margin-top: 4px;
  }

  .material-editorial .material-board figcaption {
    text-align: left;
  }
}



/* V13B / Overnight Textdramaturgie ------------------------------------ */

.intro-copy--story {
  max-width: 610px;
}

.intro-copy--story p {
  margin-bottom: 30px;
}

.project-system-story {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(130px, 14vw, 240px);
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
}

.system-story-content {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.system-story-lead {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 5.1vw, 88px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 300;
}

.system-story-copy {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.58;
}

.system-story-copy p {
  margin: 0 0 26px;
}

.project-closing {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(30px, 4vw, 70px) var(--pad) clamp(120px, 13vw, 220px);
}

.project-closing p {
  margin: 0;
  max-width: 1250px;
  font-size: clamp(48px, 7vw, 122px);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .project-system-story {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .system-story-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .system-story-copy {
    margin-left: auto;
    width: min(78%, 560px);
  }
}

@media (max-width: 620px) {
  .intro-copy--story p {
    margin-bottom: 24px;
  }

  .project-system-story {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 120px;
  }

  .system-story-copy {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
  }

  .project-closing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .project-closing p {
    font-size: clamp(42px, 12vw, 62px);
  }
}



/* V14 / VIBIOTA -------------------------------------------------------- */

.intro-copy--vibiota {
  max-width: 610px;
}

.intro-copy--vibiota p {
  margin-bottom: 27px;
}

.intro-copy--vibiota .vibiota-opening {
  font-size: 1.22em;
  line-height: 1.42;
}

.vibiota-real-system {
  height: auto;
  min-height: 0;
  background: transparent;
}

.vibiota-real-system img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vibiota-decision {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(40px, 4vw, 70px) var(--pad) clamp(140px, 15vw, 250px);
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
}

.vibiota-decision-content {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.vibiota-decision-lead {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 108px);
  line-height: .89;
  letter-spacing: -.058em;
  font-weight: 300;
}

.vibiota-decision-copy {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.58;
}

.vibiota-decision-copy p {
  margin: 0 0 27px;
}

.vibiota-decision-copy .vibiota-closing-line {
  margin-top: 48px;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.vibiota-retail {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(130px, 14vw, 230px);
}

.vibiota-retail-head {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
  padding-bottom: clamp(70px, 8vw, 130px);
}

.vibiota-retail-head h2 {
  margin: 0;
  font-size: clamp(52px, 7.3vw, 128px);
  line-height: .87;
  letter-spacing: -.058em;
  font-weight: 300;
}

.vibiota-store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
}

.retail-figure,
.vibiota-dropper {
  margin: 0;
}

.retail-image,
.dropper-image {
  overflow: hidden;
  background: #d7d3ca;
}

.retail-image {
  aspect-ratio: 4 / 3;
}

.retail-image img,
.dropper-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.retail-figure:hover img,
.vibiota-dropper:hover img {
  transform: scale(1.012);
}

.retail-figure figcaption,
.vibiota-dropper figcaption {
  margin-top: 11px;
  color: rgba(17, 17, 15, .62);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vibiota-dropper {
  width: min(52%, 760px);
  margin: clamp(100px, 11vw, 180px) 6vw 0 auto;
}

.dropper-image {
  aspect-ratio: 851 / 913;
}

@media (max-width: 1000px) {
  .vibiota-decision,
  .vibiota-retail-head {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .vibiota-decision-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .vibiota-decision-copy {
    margin-left: auto;
    width: min(78%, 560px);
  }

  .vibiota-dropper {
    width: min(70%, 720px);
  }
}

@media (max-width: 620px) {
  .intro-copy--vibiota .vibiota-opening {
    font-size: 1.1em;
  }

  .vibiota-decision,
  .vibiota-retail {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vibiota-decision-copy {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
  }

  .vibiota-store-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .vibiota-dropper {
    width: 88%;
    margin-top: 72px;
    margin-right: 0;
    margin-left: auto;
  }
}


/* V15 / VIBIOTA additional mockups --------------------------------------- */
.vibiota-additions {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(120px, 12vw, 210px);
}

.vibiota-additions-head {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: clamp(44px, 5vw, 84px);
}

.vibiota-additions-copy {
  max-width: 980px;
}

.vibiota-additions-copy h2,
.vibiota-digital-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(44px, 6vw, 104px);
  line-height: .92;
  letter-spacing: -.058em;
  font-weight: 300;
}

.vibiota-additions-copy p,
.vibiota-digital-copy p {
  max-width: 560px;
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
}

.vibiota-digital-closing {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(120px, 12vw, 210px);
}

.vibiota-digital-head {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: clamp(44px, 5vw, 84px);
}

.vibiota-digital-figure {
  margin: 0;
}

.vibiota-digital-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.vibiota-digital-figure figcaption {
  margin-top: 11px;
  color: rgba(17, 17, 15, .62);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .vibiota-additions-head,
  .vibiota-digital-head {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 620px) {
  .vibiota-additions,
  .vibiota-digital-closing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vibiota-additions-copy h2,
  .vibiota-digital-copy h2 {
    font-size: 13vw;
  }

  .vibiota-additions-copy p,
  .vibiota-digital-copy p {
    font-size: 16px;
  }
}



/* V17 / VITESSE SUITE ------------------------------------------------- */

.vitesse-cover {
  position: relative;
  height: auto;
  min-height: 0;
  margin: 0 var(--pad);
  overflow: hidden;
}

.vitesse-cover img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vitesse-cover .caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  color: white;
  mix-blend-mode: difference;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intro-copy--vitesse {
  max-width: 620px;
}

.intro-copy--vitesse p {
  margin-bottom: 29px;
}

.intro-copy--vitesse .vitesse-opening {
  font-size: 1.22em;
  line-height: 1.42;
}

.vitesse-system-flatlay,
.vitesse-material-detail {
  height: auto;
  min-height: 0;
  background: transparent;
}

.vitesse-system-flatlay img,
.vitesse-material-detail img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vitesse-decision {
  background: #101217;
  color: var(--white);
}

.vitesse-decision-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(120px, 13vw, 220px) var(--pad);
}

.vitesse-decision .micro {
  color: rgba(248,247,243,.62);
  margin-bottom: clamp(70px, 8vw, 130px);
}

.vitesse-decision-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(70px, 9vw, 160px);
  align-items: start;
}

.vitesse-decision-copy {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(248,247,243,.78);
}

.vitesse-decision-copy p {
  margin: 0 0 28px;
}

.vitesse-decision-lead {
  margin: 0;
  font-size: clamp(54px, 7.5vw, 132px);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 300;
}

.vitesse-consequence {
  width: min(62%, 930px);
  margin: clamp(100px, 11vw, 190px) 0 clamp(80px, 9vw, 150px) auto;
  font-size: clamp(28px, 3.3vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 300;
}

.vitesse-brand-material {
  margin: 0;
}

.vitesse-brand-material img {
  display: block;
  width: 100%;
  height: auto;
}

.vitesse-brand-material figcaption,
.vitesse-welcome figcaption {
  margin-top: 12px;
  color: rgba(248,247,243,.55);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vitesse-quote {
  margin-bottom: 0;
}

.vitesse-closing {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(130px, 14vw, 240px) var(--pad);
}

.vitesse-closing-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(70px, 9vw, 160px);
  align-items: center;
}

.vitesse-welcome {
  margin: 0;
}

.vitesse-welcome img {
  display: block;
  width: 100%;
  height: auto;
}

.vitesse-welcome figcaption {
  color: rgba(17,17,15,.58);
}

.vitesse-closing-copy {
  padding-top: 5vw;
}

.vitesse-closing-copy > p:not(.vitesse-closing-lead) {
  margin: 0 0 18px;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.35;
}

.vitesse-closing-lead {
  margin: clamp(70px, 8vw, 130px) 0 0;
  font-size: clamp(50px, 6.7vw, 118px);
  line-height: .9;
  letter-spacing: -.058em;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .vitesse-decision-grid,
  .vitesse-closing-grid {
    grid-template-columns: 1fr;
  }

  .vitesse-decision-copy {
    width: min(78%, 560px);
  }

  .vitesse-decision-lead {
    margin-left: 12vw;
  }

  .vitesse-consequence {
    width: min(82%, 800px);
  }

  .vitesse-welcome {
    width: min(76%, 760px);
  }

  .vitesse-closing-copy {
    padding-top: 0;
    margin-left: 12vw;
  }
}

@media (max-width: 620px) {
  .vitesse-cover {
    margin-left: 0;
    margin-right: 0;
  }

  .intro-copy--vitesse .vitesse-opening {
    font-size: 1.1em;
  }

  .vitesse-decision-inner,
  .vitesse-closing {
    padding-left: 18px;
    padding-right: 18px;
  }

  .vitesse-decision-copy {
    width: 100%;
    font-size: 16px;
  }

  .vitesse-decision-lead {
    margin-left: 0;
    font-size: 13vw;
  }

  .vitesse-consequence {
    width: 100%;
    margin-left: 0;
    font-size: 8vw;
  }

  .vitesse-welcome {
    width: 88%;
  }

  .vitesse-closing-copy {
    margin-left: 0;
  }

  .vitesse-closing-copy > p:not(.vitesse-closing-lead) {
    font-size: 18px;
  }

  .vitesse-closing-lead {
    font-size: 12.5vw;
  }
}



/* V18 / RUWENS RELOADED ----------------------------------------------- */

.ruwens-cover {
  position: relative;
  height: auto;
  min-height: 0;
  margin: 0 var(--pad);
  overflow: hidden;
}

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

.ruwens-cover .caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  color: white;
  mix-blend-mode: difference;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intro-copy--ruwens {
  max-width: 620px;
}

.intro-copy--ruwens p {
  margin-bottom: 29px;
}

.ruwens-history,
.ruwens-redesign {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(140px, 15vw, 250px);
}

.ruwens-history-head,
.ruwens-redesign-head {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: clamp(70px, 8vw, 130px);
}

.ruwens-history-copy,
.ruwens-redesign-copy {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
}

.ruwens-history-copy h2,
.ruwens-redesign-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6.8vw, 118px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 300;
}

.ruwens-history-copy p,
.ruwens-redesign-copy p {
  max-width: 560px;
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.58;
}

.ruwens-history-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: clamp(90px, 10vw, 170px);
  align-items: start;
}

.ruwens-history-poster {
  grid-column: 1 / span 7;
}

.ruwens-history-logo {
  grid-column: 8 / span 5;
  margin-top: clamp(90px, 9vw, 150px);
}

.ruwens-history-sketchbook {
  grid-column: 1 / span 5;
}

.ruwens-history-development {
  grid-column: 6 / span 7;
  margin-top: clamp(70px, 7vw, 120px);
}

.ruwens-figure,
.ruwens-system-figure,
.ruwens-menu-detail,
.ruwens-clean-card,
.ruwens-dish {
  margin: 0;
}

.ruwens-figure img,
.ruwens-system-figure img,
.ruwens-menu-detail img,
.ruwens-clean-card img {
  display: block;
  width: 100%;
  height: auto;
}

.ruwens-figure figcaption,
.ruwens-system-figure figcaption,
.ruwens-menu-detail figcaption,
.ruwens-clean-card figcaption,
.ruwens-dish figcaption {
  margin-top: 11px;
  color: rgba(17,17,15,.6);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ruwens-illustrations {
  background: #101217;
  color: var(--white);
}

.ruwens-illustrations-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(120px, 13vw, 220px) var(--pad);
}

.ruwens-illustrations-head {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: clamp(90px, 10vw, 170px);
}

.ruwens-illustrations-head .micro {
  color: rgba(248,247,243,.58);
}

.ruwens-illustrations-head > div {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 140px);
}

.ruwens-illustrations-head h2 {
  margin: 0;
  font-size: clamp(58px, 7.6vw, 132px);
  line-height: .88;
  letter-spacing: -.062em;
  font-weight: 300;
}

.ruwens-illustrations-head p:not(.micro) {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(248,247,243,.72);
  font-size: 17px;
  line-height: 1.58;
}

.ruwens-illustration-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: clamp(80px, 9vw, 150px);
  align-items: center;
}

.ruwens-dish {
  position: relative;
}

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

.ruwens-dish figcaption {
  color: rgba(248,247,243,.5);
}

.ruwens-dish-hotdog {
  grid-column: 1 / span 7;
}

.ruwens-dish-pita {
  grid-column: 8 / span 5;
  margin-top: clamp(70px, 8vw, 130px);
}

.ruwens-dish-soup {
  grid-column: 2 / span 5;
}

.ruwens-dish-waffles {
  grid-column: 7 / span 6;
  margin-top: clamp(80px, 8vw, 140px);
}

.ruwens-transition {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(130px, 15vw, 250px) var(--pad);
}

.ruwens-transition p {
  max-width: 1450px;
  margin: 0;
  font-size: clamp(52px, 7vw, 122px);
  line-height: .9;
  letter-spacing: -.058em;
  font-weight: 300;
}

.ruwens-logo-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 42px);
  align-items: start;
}

.ruwens-clean-motifs {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
  padding: clamp(110px, 12vw, 200px) 0;
}

.ruwens-clean-card:first-child {
  grid-column: 2 / span 4;
}

.ruwens-clean-card:last-child {
  grid-column: 8 / span 4;
  margin-top: clamp(90px, 9vw, 150px);
}

.ruwens-system-head {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 6vw;
  align-items: start;
  padding-bottom: clamp(70px, 8vw, 130px);
}

.ruwens-system-head h3 {
  margin: 0;
  font-size: clamp(48px, 6vw, 104px);
  line-height: .91;
  letter-spacing: -.058em;
  font-weight: 300;
}

.ruwens-system-comparison {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 3vw, 52px);
  align-items: start;
}

.ruwens-system-figure:last-child {
  margin-top: clamp(100px, 10vw, 170px);
}

.ruwens-menu-detail {
  width: min(88%, 1380px);
  margin: clamp(130px, 14vw, 230px) 0 0 auto;
}

.ruwens-final-quote {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .ruwens-history-head,
  .ruwens-redesign-head,
  .ruwens-illustrations-head,
  .ruwens-system-head {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ruwens-history-copy,
  .ruwens-redesign-copy,
  .ruwens-illustrations-head > div {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ruwens-history-copy p,
  .ruwens-redesign-copy p,
  .ruwens-illustrations-head p:not(.micro) {
    width: min(78%, 560px);
    margin-left: auto;
  }

  .ruwens-history-grid,
  .ruwens-illustration-grid {
    row-gap: 90px;
  }

  .ruwens-history-poster {
    grid-column: 1 / span 8;
  }

  .ruwens-history-logo {
    grid-column: 8 / span 5;
  }

  .ruwens-history-sketchbook {
    grid-column: 1 / span 6;
  }

  .ruwens-history-development {
    grid-column: 6 / span 7;
  }

  .ruwens-dish-hotdog {
    grid-column: 1 / span 8;
  }

  .ruwens-dish-pita {
    grid-column: 8 / span 5;
  }

  .ruwens-dish-soup {
    grid-column: 1 / span 6;
  }

  .ruwens-dish-waffles {
    grid-column: 6 / span 7;
  }

  .ruwens-menu-detail {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .ruwens-cover {
    margin-left: 0;
    margin-right: 0;
  }

  .ruwens-history,
  .ruwens-redesign,
  .ruwens-illustrations-inner,
  .ruwens-transition {
    padding-left: 18px;
    padding-right: 18px;
  }

  .ruwens-history-copy p,
  .ruwens-redesign-copy p,
  .ruwens-illustrations-head p:not(.micro) {
    width: 100%;
    margin-left: 0;
    font-size: 16px;
  }

  .ruwens-history-grid,
  .ruwens-illustration-grid,
  .ruwens-logo-comparison,
  .ruwens-system-comparison {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .ruwens-history-grid > *,
  .ruwens-illustration-grid > *,
  .ruwens-clean-motifs > * {
    grid-column: 1 !important;
    margin-top: 0 !important;
  }

  .ruwens-illustrations-head h2,
  .ruwens-history-copy h2,
  .ruwens-redesign-copy h2,
  .ruwens-system-head h3 {
    font-size: 13vw;
  }

  .ruwens-transition p {
    font-size: 12.5vw;
  }

  .ruwens-clean-motifs {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 88px;
    padding-bottom: 110px;
  }

  .ruwens-system-figure:last-child {
    margin-top: 0;
  }

  .ruwens-menu-detail {
    width: 100%;
    margin-top: 100px;
  }
}


/* V19 / RUWENS TUNED -------------------------------------------------- */
.ruwens-poster-intro {
  width: min(100%, calc(var(--max) * .9));
  margin: 0 auto;
  padding: 0 var(--pad) clamp(110px, 12vw, 180px);
}
.ruwens-poster-intro img {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  height: auto;
}
.ruwens-poster-intro figcaption {
  margin-top: 14px;
  text-align: center;
  color: rgba(17,17,15,.6);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ruwens-history {
  padding-top: 0;
}
.ruwens-history-head,
.ruwens-redesign-head {
  padding-bottom: clamp(65px, 7vw, 110px);
}
.ruwens-history-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: clamp(70px, 8vw, 120px);
  align-items: start;
}
.ruwens-history-logo {
  grid-column: 4 / span 6;
  width: min(100%, 420px);
  margin: 0 auto;
  text-align: center;
}
.ruwens-history-logo img {
  width: 100%;
}
.ruwens-history-logo figcaption {
  text-align: center;
}
.ruwens-history-sketchbook {
  grid-column: 1 / span 5;
}
.ruwens-history-development {
  grid-column: 7 / span 6;
  margin-top: clamp(65px, 7vw, 120px);
}

.ruwens-illustration-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: clamp(60px, 8vw, 120px);
  align-items: end;
}
.ruwens-dish figcaption {
  text-align: center;
}
.ruwens-dish-hotdog {
  grid-column: 1 / span 7;
}
.ruwens-dish-pita {
  grid-column: 9 / span 4;
  margin-top: clamp(30px, 4vw, 60px);
}
.ruwens-dish-waffles {
  grid-column: 2 / span 4;
  margin-top: clamp(10px, 2vw, 25px);
}
.ruwens-dish-soup {
  grid-column: 7 / span 6;
  margin-top: clamp(45px, 5vw, 80px);
}

.ruwens-poster-redesign {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding: clamp(100px, 11vw, 170px) 0 clamp(120px, 12vw, 190px);
}
.ruwens-new-poster {
  margin: 0;
}
.ruwens-new-poster img {
  display: block;
  width: 100%;
  height: auto;
}
.ruwens-new-poster figcaption {
  margin-top: 11px;
  text-align: center;
  color: rgba(17,17,15,.6);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ruwens-new-poster-hotdog {
  grid-column: 1 / span 4;
  margin-top: clamp(70px, 8vw, 130px);
}
.ruwens-new-poster-soup {
  grid-column: 5 / span 4;
}
.ruwens-new-poster-falafel {
  grid-column: 9 / span 4;
  margin-top: clamp(120px, 10vw, 180px);
}

.ruwens-system-comparison {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(26px, 3vw, 56px);
  align-items: start;
}
.ruwens-system-figure-old {
  width: min(100%, 560px);
  justify-self: start;
  margin-top: clamp(45px, 5vw, 80px);
}
.ruwens-system-figure-new {
  width: 100%;
}

@media (max-width: 1000px) {
  .ruwens-history-logo {
    grid-column: 4 / span 6;
  }
  .ruwens-history-sketchbook {
    grid-column: 1 / span 5;
  }
  .ruwens-history-development {
    grid-column: 7 / span 6;
  }
  .ruwens-dish-hotdog {
    grid-column: 1 / span 7;
  }
  .ruwens-dish-pita {
    grid-column: 8 / span 5;
  }
  .ruwens-dish-waffles {
    grid-column: 1 / span 5;
  }
  .ruwens-dish-soup {
    grid-column: 6 / span 7;
  }
  .ruwens-new-poster-hotdog {
    grid-column: 1 / span 4;
  }
  .ruwens-new-poster-soup {
    grid-column: 5 / span 4;
  }
  .ruwens-new-poster-falafel {
    grid-column: 9 / span 4;
  }
}

@media (max-width: 620px) {
  .ruwens-poster-intro {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 90px;
  }
  .ruwens-history-grid,
  .ruwens-illustration-grid,
  .ruwens-poster-redesign,
  .ruwens-system-comparison {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .ruwens-history-grid > *,
  .ruwens-illustration-grid > *,
  .ruwens-poster-redesign > * {
    grid-column: 1 !important;
    margin-top: 0 !important;
    width: 100%;
  }
  .ruwens-history-logo,
  .ruwens-system-figure-old,
  .ruwens-system-figure-new {
    width: 100%;
  }
}


/* V20 / Weitere Arbeiten --------------------------------------------- */
.more-work {
  position: relative;
}

.more-work-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.more-work-light {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(110px, 12vw, 190px) 0 clamp(62px, 7vw, 96px);
}

.more-work-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.more-work-head p:last-child {
  text-align: right;
}

.more-work-intro {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: end;
  padding: clamp(70px, 8vw, 125px) 0 clamp(95px, 10vw, 165px);
}

.more-work-intro h2 {
  margin: 0;
  max-width: 1160px;
  font-size: clamp(54px, 7.2vw, 124px);
  line-height: .9;
  letter-spacing: -.058em;
  font-weight: 300;
}

.more-work-intro p {
  max-width: 500px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.55;
}

.more-work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(24px, 3vw, 54px);
  align-items: start;
}

.more-work-item {
  min-width: 0;
}

.more-work-item--spatial {
  grid-column: 1 / span 7;
}

.more-work-item--lettering {
  grid-column: 9 / span 4;
  margin-top: clamp(112px, 12vw, 206px);
}

.more-work-visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d8d3ca;
}

.more-work-item--spatial .more-work-visual {
  aspect-ratio: 1.36 / 1;
}

.more-work-item--lettering .more-work-visual {
  aspect-ratio: .92 / 1;
}

.more-work-visual img,
.more-work-ai-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s var(--ease), filter .55s var(--ease);
}

.more-work-item--lettering .more-work-visual img {
  object-position: 52% center;
}

.more-work-visual:hover img,
.more-work-visual:focus-visible img,
.more-work-ai-visual:hover img,
.more-work-ai-visual:focus-visible img {
  transform: scale(1.035);
}

.more-work-copy,
.more-work-ai-copy {
  color: inherit;
  text-decoration: none;
}

.more-work-copy {
  display: block;
  padding-top: 22px;
}

.more-work-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .62;
}

.more-work-copy h3,
.more-work-ai-copy h3 {
  margin: 28px 0 0;
  font-size: clamp(46px, 5vw, 88px);
  line-height: .86;
  letter-spacing: -.055em;
  font-weight: 300;
}

.more-work-item--lettering .more-work-copy h3 {
  font-size: clamp(42px, 4.4vw, 74px);
}

.more-work-copy h3 span,
.more-work-ai-copy h3 span {
  display: inline-block;
}

.more-work-description {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: end;
  margin-top: 32px;
}

.more-work-description p {
  max-width: 560px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.more-work-description > span,
.more-work-ai-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.more-work-description i,
.more-work-ai-link i {
  font-style: normal;
  font-size: 18px;
  transition: transform .25s ease;
}

.more-work-copy:hover .more-work-description i,
.more-work-copy:focus-visible .more-work-description i,
.more-work-ai-copy:hover .more-work-ai-link i,
.more-work-ai-copy:focus-visible .more-work-ai-link i {
  transform: translate(4px, -4px);
}

.more-work-dark {
  position: relative;
  overflow: visible;
  background: transparent;
  color: var(--ink);
  padding: clamp(36px, 4vw, 52px) 0 0;
}

.more-work-dark::before {
  display: none;
}

.more-work-ai {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.more-work-ai-copy {
  display: block;
  align-self: stretch;
}

.more-work-ai-copy .more-work-meta {
  border-bottom-color: currentColor;
}

.more-work-ai-copy h3 {
  margin: 28px 0 0;
  font-size: clamp(48px, 5vw, 82px);
}

.more-work-ai-copy > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(17,17,17,.72);
  font-size: 14px;
  line-height: 1.55;
}

.more-work-ai-link {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(17,17,17,.9);
}

.more-work-ai-visual {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.56 / 1;
  background: #220505;
}

/* Die dunkle AI-Zone führt bewusst in die dunkle Capabilities-Section. */
.more-work-dark + .capabilities {
  border-top: none;
}

@media (max-width: 1000px) {
  .more-work-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .more-work-intro p {
    width: min(72%, 500px);
    margin-left: auto;
  }

  .more-work-item--spatial {
    grid-column: 1 / span 7;
  }

  .more-work-item--lettering {
    grid-column: 8 / span 5;
    margin-top: 100px;
  }

  .more-work-ai {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .more-work-ai-copy {
    min-height: 0;
  }

  .more-work-ai-copy > p {
    width: 100%;
    margin: 24px 0 0;
  }
}

@media (max-width: 700px) {
  .more-work-light,
  .more-work-dark {
    padding-top: 92px;
  }

  .more-work-light {
    padding-bottom: 68px;
  }

  .more-work-dark {
    padding-top: 42px;
    padding-bottom: 0;
  }

  .more-work-head {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .more-work-intro {
    padding-top: 58px;
    padding-bottom: 82px;
  }

  .more-work-intro h2 {
    font-size: 13vw;
  }

  .more-work-intro p,
  .more-work-ai-copy > p {
    width: 100%;
    margin-left: 0;
  }

  .more-work-grid {
    grid-template-columns: 1fr;
    row-gap: 82px;
  }

  .more-work-item--spatial,
  .more-work-item--lettering {
    grid-column: 1;
    margin-top: 0;
  }

  .more-work-item--spatial .more-work-visual {
    aspect-ratio: 1.2 / 1;
  }

  .more-work-item--lettering .more-work-visual {
    aspect-ratio: 1.05 / 1;
  }

  .more-work-copy h3,
  .more-work-item--lettering .more-work-copy h3,
  .more-work-ai-copy h3 {
    font-size: 13vw;
  }

  .more-work-description {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .more-work-ai {
    width: 100%;
  }

  .more-work-ai-visual {
    aspect-ratio: 1.08 / 1;
  }
}

/* V22 / Header theme corrections and AI-to-Capabilities spacing -------- */
.more-work-dark {
  padding-bottom: clamp(110px, 10vw, 170px);
}

@media (max-width: 700px) {
  .more-work-dark {
    padding-bottom: 96px;
  }
}

/* V23 / Lettering & Brand Marks -------------------------------------- */
.lettering-page {
  --lettering-max: 1720px;
}

.lettering-hero {
  min-height: 100svh;
  padding: 118px var(--pad) 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.lettering-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.lettering-hero-top p:last-child { text-align: right; }

.lettering-hero-title-wrap {
  position: relative;
  isolation: isolate;
  margin: clamp(78px, 10vh, 140px) 0 clamp(68px, 8vh, 110px);
}

.lettering-hero-ghost {
  position: absolute;
  z-index: -1;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(260px, 38vw, 680px);
  line-height: .65;
  letter-spacing: -.11em;
  color: rgba(17,17,15,.035);
  white-space: nowrap;
  pointer-events: none;
}

.lettering-hero h1 {
  margin: 0;
  font-size: clamp(78px, 14.5vw, 258px);
  line-height: .67;
  letter-spacing: -.065em;
  font-weight: 300;
  text-transform: uppercase;
}

.lettering-hero h1 span { display: block; }
.lettering-hero h1 .serif {
  padding-left: 17vw;
  font-size: .47em;
  line-height: .88;
  text-transform: none;
  letter-spacing: -.055em;
}

.lettering-hero-bottom {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 9vw;
  align-items: end;
}

.lettering-hero-lead {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(28px, 4.2vw, 68px);
  line-height: .98;
  letter-spacing: -.047em;
}

.lettering-opening {
  width: min(100%, var(--lettering-max));
  margin: 0 auto;
  padding: clamp(130px, 15vw, 250px) var(--pad) clamp(125px, 14vw, 230px);
  display: grid;
  grid-template-columns: .25fr 1.15fr .6fr;
  gap: clamp(34px, 5vw, 90px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.lettering-opening h2 {
  margin: 0;
  font-size: clamp(58px, 7.8vw, 138px);
  line-height: .86;
  letter-spacing: -.065em;
  font-weight: 300;
}

.lettering-opening > p:last-child {
  max-width: 470px;
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.58;
}

.lettering-story {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(45px, 6vw, 110px);
  align-items: start;
}

.lettering-rail {
  position: sticky;
  top: 112px;
  z-index: 4;
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--line);
}

.lettering-rail a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(17,17,15,.35);
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease, padding-left .25s ease;
}

.lettering-rail a span { color: rgba(17,17,15,.24); }
.lettering-rail a.is-active,
.lettering-rail a:hover {
  color: var(--ink);
  padding-left: 8px;
}

.lettering-story-content { min-width: 0; }

.lettering-chapter {
  scroll-margin-top: 100px;
  padding-bottom: clamp(150px, 16vw, 270px);
}

.lettering-chapter-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: clamp(68px, 8vw, 125px);
}

.lettering-chapter-head h2,
.lettering-wall-title h2,
.lettering-calligraphy-head h2,
.lettering-marks-head h2 {
  margin: 30px 0 0;
  font-size: clamp(58px, 7.6vw, 132px);
  line-height: .86;
  letter-spacing: -.063em;
  font-weight: 300;
}

.lettering-chapter-head > p:last-child,
.lettering-calligraphy-head > p:last-child,
.lettering-marks-head > p:last-child {
  max-width: 520px;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.58;
}

.lettering-figure { margin: 0; }
.lettering-figure img { background: #d8d4cb; }
.lettering-figure figcaption,
.lettering-certificate figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 11px;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(17,17,15,.58);
}

.lettering-figure--menu-hero {
  width: 88%;
  margin-left: auto;
}
.lettering-figure--menu-hero img { aspect-ratio: 1.5 / 1; }

.lettering-menu-pair {
  display: grid;
  grid-template-columns: 1.25fr .55fr;
  gap: clamp(24px, 4vw, 68px);
  align-items: start;
  margin-top: clamp(90px, 10vw, 170px);
}

.lettering-figure--stella { margin-top: clamp(95px, 9vw, 155px); }
.lettering-figure--stella img { aspect-ratio: 1.34 / 1; }
.lettering-figure--praterwirt img { aspect-ratio: .75 / 1; }

.lettering-menu-detail-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(24px, 3vw, 54px);
  align-items: end;
  margin-top: clamp(80px, 9vw, 150px);
}

.lettering-menu-detail-row figure:first-child { width: 82%; }
.lettering-menu-detail-row img { aspect-ratio: 1.34 / 1; }

.lettering-raw {
  margin-top: clamp(150px, 18vw, 290px);
  padding-top: clamp(95px, 10vw, 165px);
  border-top: 1px solid var(--line);
}

.lettering-raw-head {
  display: grid;
  grid-template-columns: .55fr 1.05fr .75fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 125px);
}

.lettering-raw-head h3 {
  margin: 0;
  font-size: clamp(52px, 6.5vw, 112px);
  line-height: .87;
  letter-spacing: -.06em;
  font-weight: 300;
}

.lettering-raw-head > p:last-child {
  max-width: 460px;
  margin: 0 0 7px;
  font-size: 15px;
  line-height: 1.55;
}

.lettering-raw-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
}

.lettering-raw-grid figure { grid-column: span 4; }
.lettering-raw-grid figure img { aspect-ratio: 1 / 1; }
.lettering-raw-main {
  grid-column: 1 / span 7 !important;
  grid-row: span 2;
}
.lettering-raw-main img { aspect-ratio: 1 / 1.18 !important; }
.lettering-raw-grid figure:nth-child(2) { grid-column: 9 / span 4; }
.lettering-raw-grid figure:nth-child(3) { grid-column: 8 / span 5; margin-top: clamp(24px, 4vw, 62px); }
.lettering-raw-grid figure:nth-child(4) { grid-column: 2 / span 5; margin-top: clamp(24px, 4vw, 62px); }

.lettering-wall {
  padding-top: clamp(95px, 10vw, 170px);
  border-top: 1px solid var(--line);
}

.lettering-wall-title {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 5vw;
  align-items: start;
  margin-bottom: clamp(72px, 8vw, 125px);
}

.lettering-wall-title h2 { margin-top: 0; }
.lettering-wall-band {
  margin: 0 calc(var(--pad) * -1);
  overflow: hidden;
  background: #e6e1d8;
}
.lettering-wall-band img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lettering-wall-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: start;
  margin-top: clamp(80px, 9vw, 150px);
}

.lettering-wall-copy {
  max-width: 460px;
  margin: clamp(40px, 7vw, 110px) 0 0;
  font-size: 17px;
  line-height: 1.62;
}

.lettering-wall-grid figure img { aspect-ratio: 1.34 / 1; }

.lettering-calligraphy {
  padding-top: clamp(100px, 11vw, 180px);
  border-top: 1px solid var(--line);
}

.lettering-calligraphy-head {
  display: grid;
  grid-template-columns: .35fr 1.05fr .6fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(78px, 9vw, 145px);
}

.lettering-calligraphy-head h2 { margin: 0; }
.lettering-certificate {
  width: 88%;
  margin: 0 auto;
}
.lettering-certificate img { height: auto; object-fit: contain; }

.lettering-marks {
  scroll-margin-top: 76px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(130px, 14vw, 230px) 0 clamp(130px, 14vw, 230px);
}

.lettering-marks-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--pad);
}

.lettering-marks-head {
  display: grid;
  grid-template-columns: .36fr 1.04fr .6fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(90px, 10vw, 170px);
}

.lettering-marks-head h2 { margin: 0; }
.lettering-marks-head > p:last-child { color: rgba(248,247,243,.66); }

.lettering-logo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: clamp(10px, 1.35vw, 22px);
}

.logo-card {
  grid-column: span 4;
  min-height: clamp(270px, 25vw, 430px);
  padding: clamp(22px, 2.2vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.logo-card--major {
  grid-column: span 7;
  min-height: clamp(340px, 27vw, 470px);
}
.logo-card--minor {
  grid-column: span 5;
  min-height: clamp(285px, 22vw, 390px);
  align-self: end;
}
.logo-card--paper { background: var(--paper); color: var(--ink); }
.logo-card--dark { background: #181816; color: var(--white); }
.logo-card img {
  width: 100%;
  height: calc(100% - 48px);
  min-height: 180px;
  object-fit: contain;
  padding: 7%;
  transition: transform .5s var(--ease);
}
.logo-card--dark img { filter: invert(1) grayscale(1) brightness(1.35); }
.logo-card:hover img { transform: scale(1.035); }
.logo-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: 8.5px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .68;
}
.logo-card div span:last-child { text-align: right; }

.lettering-closing {
  min-height: 80vh;
  padding: clamp(110px, 12vw, 190px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.lettering-closing > p:last-child {
  max-width: 1550px;
  margin: clamp(110px, 14vw, 240px) 0 0;
  font-size: clamp(62px, 9vw, 158px);
  line-height: .84;
  letter-spacing: -.065em;
  font-weight: 300;
}

@media (max-width: 1200px) {
  .lettering-story { grid-template-columns: 150px minmax(0,1fr); }
  .lettering-opening { grid-template-columns: .22fr 1.2fr .58fr; }
  .lettering-raw-head,
  .lettering-calligraphy-head,
  .lettering-marks-head { grid-template-columns: .3fr 1fr .7fr; }
  .logo-card,
  .logo-card--major,
  .logo-card--minor {
    grid-column: span 6;
    min-height: clamp(300px, 34vw, 430px);
    align-self: stretch;
  }
}

@media (max-width: 1000px) {
  .lettering-hero { min-height: auto; padding-top: 120px; }
  .lettering-hero-title-wrap { margin: 14vh 0 10vh; }
  .lettering-hero h1 { font-size: clamp(74px, 17vw, 160px); }
  .lettering-hero h1 .serif { padding-left: 9vw; font-size: .52em; }
  .lettering-hero-bottom { grid-template-columns: 1fr; gap: 70px; }
  .lettering-opening { grid-template-columns: 1fr; gap: 44px; }
  .lettering-opening > p:last-child { margin-left: auto; width: min(72%, 470px); }
  .lettering-story { grid-template-columns: 1fr; }
  .lettering-rail {
    position: sticky;
    top: 76px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    background: rgba(240,238,232,.97);
    border-bottom: 1px solid var(--line);
    z-index: 15;
    scrollbar-width: none;
  }
  .lettering-rail::-webkit-scrollbar { display: none; }
  .lettering-rail a {
    flex: 0 0 auto;
    grid-template-columns: auto 1fr;
    padding: 14px 18px 14px 0;
    border-bottom: 0;
    margin-right: 18px;
  }
  .lettering-rail a.is-active,
  .lettering-rail a:hover { padding-left: 0; }
  .lettering-chapter-head,
  .lettering-wall-title { grid-template-columns: 1fr; gap: 42px; }
  .lettering-chapter-head > p:last-child { margin-left: auto; width: min(72%, 520px); }
  .lettering-raw-head,
  .lettering-calligraphy-head,
  .lettering-marks-head { grid-template-columns: 1fr; gap: 42px; }
  .lettering-raw-head > p:last-child,
  .lettering-calligraphy-head > p:last-child,
  .lettering-marks-head > p:last-child { margin-left: auto; width: min(72%, 500px); }
  .lettering-menu-pair { grid-template-columns: 1.1fr .7fr; }
  .lettering-wall-grid { grid-template-columns: 1fr; }
  .lettering-wall-copy { margin: 0; width: min(72%, 500px); margin-left: auto; }
  .lettering-certificate { width: 100%; }
}

@media (max-width: 700px) {
  .lettering-hero { padding-top: 106px; padding-bottom: 28px; }
  .lettering-hero-top { grid-template-columns: 1fr auto; gap: 15px; }
  .lettering-hero-top p:last-child { max-width: 150px; }
  .lettering-hero-title-wrap { margin: 13vh 0 12vh; }
  .lettering-hero h1 { font-size: 17vw; line-height: .72; }
  .lettering-hero h1 .serif { padding-left: 0; margin-top: .12em; font-size: .61em; }
  .lettering-hero-ghost { font-size: 74vw; }
  .lettering-hero-lead { font-size: 10.2vw; }
  .lettering-opening { padding-top: 110px; padding-bottom: 120px; }
  .lettering-opening h2,
  .lettering-chapter-head h2,
  .lettering-wall-title h2,
  .lettering-calligraphy-head h2,
  .lettering-marks-head h2,
  .lettering-raw-head h3 { font-size: 13.2vw; }
  .lettering-opening > p:last-child,
  .lettering-chapter-head > p:last-child,
  .lettering-raw-head > p:last-child,
  .lettering-calligraphy-head > p:last-child,
  .lettering-marks-head > p:last-child,
  .lettering-wall-copy { width: 100%; margin-left: 0; }
  .lettering-story { padding: 0; gap: 0; }
  .lettering-rail { padding: 0 var(--pad); }
  .lettering-story-content { padding: 0 var(--pad); }
  .lettering-chapter { padding-bottom: 130px; }
  .lettering-figure--menu-hero { width: 100%; }
  .lettering-figure--menu-hero img { aspect-ratio: 1.16 / 1; }
  .lettering-menu-pair,
  .lettering-menu-detail-row { grid-template-columns: 1fr; gap: 72px; }
  .lettering-figure--stella { margin-top: 0; }
  .lettering-figure--praterwirt { width: 74%; margin-left: auto; }
  .lettering-menu-detail-row figure:first-child { width: 100%; }
  .lettering-raw-grid { grid-template-columns: 1fr; gap: 64px; }
  .lettering-raw-grid figure,
  .lettering-raw-main,
  .lettering-raw-grid figure:nth-child(2),
  .lettering-raw-grid figure:nth-child(3),
  .lettering-raw-grid figure:nth-child(4) {
    grid-column: 1 !important;
    margin-top: 0;
  }
  .lettering-raw-main img { aspect-ratio: 1 / 1.08 !important; }
  .lettering-wall-band { margin: 0; }
  .lettering-wall-band img { min-height: 180px; object-fit: cover; object-position: center; }
  .lettering-wall-grid { gap: 62px; }
  .lettering-wall-grid figure { width: 100%; }
  .lettering-marks { padding-top: 110px; padding-bottom: 110px; }
  .lettering-logo-grid { grid-template-columns: 1fr; gap: 12px; }
  .logo-card,
  .logo-card--major,
  .logo-card--minor {
    grid-column: 1;
    min-height: 310px;
    align-self: stretch;
  }
  .lettering-closing { min-height: 68vh; }
  .lettering-closing > p:last-child { font-size: 14vw; }
}

/* V26 / Spatial Branding & Murals ------------------------------------- */
.spatial-page {
  background: var(--paper);
}

.spatial-page figure {
  margin: 0;
}

.spatial-page figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 11px;
  font-size: 8.5px;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .62;
}

.spatial-page video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #11110f;
}

.spatial-hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #11110f;
  color: var(--white);
}

.spatial-hero-video,
.spatial-hero-shade {
  position: absolute;
  inset: 0;
}

.spatial-hero-video {
  object-position: center center;
}

.spatial-hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.04) 38%, rgba(0,0,0,.50) 100%),
    linear-gradient(90deg, rgba(0,0,0,.34) 0%, transparent 50%);
  pointer-events: none;
}

.spatial-hero-ui {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 104px var(--pad) 30px;
}

.spatial-hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spatial-hero-top p:last-child {
  text-align: right;
}

.spatial-hero h1 {
  margin: auto 0 0;
  max-width: 1480px;
  font-size: clamp(78px, 10.7vw, 192px);
  line-height: .77;
  letter-spacing: -.066em;
  font-weight: 300;
}

.spatial-hero h1 span {
  display: block;
}

.spatial-hero h1 .serif {
  margin-left: 12vw;
  font-size: .78em;
  line-height: .86;
}

.spatial-hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-top: clamp(34px, 5vh, 72px);
}

.spatial-hero-bottom > p {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 36px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.spatial-video-toggle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(0,0,0,.10);
  color: inherit;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.spatial-video-toggle span {
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.spatial-video-toggle i {
  display: none;
}

.spatial-thesis {
  min-height: 88vh;
  padding: clamp(120px, 14vw, 230px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(60px, 10vw, 180px);
  align-items: end;
}

.spatial-thesis .kicker {
  grid-column: 1 / -1;
  align-self: start;
}

.spatial-thesis h2 {
  margin: 0;
  max-width: 1180px;
  font-size: clamp(58px, 8.3vw, 150px);
  line-height: .86;
  letter-spacing: -.06em;
  font-weight: 300;
}

.spatial-thesis > p:last-child {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.58;
}

.spatial-case,
.spatial-type-space {
  padding: clamp(120px, 13vw, 220px) var(--pad);
}

.spatial-case-opener,
.spatial-dark-intro,
.spatial-light-intro {
  width: min(100%, var(--max));
  margin: 0 auto clamp(90px, 10vw, 170px);
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(280px, .48fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid currentColor;
}

.spatial-case-number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(82px, 9vw, 150px);
  line-height: .7;
  letter-spacing: -.08em;
  opacity: .22;
}

.spatial-case-title .micro,
.spatial-dark-intro .micro,
.spatial-light-intro .micro {
  margin-bottom: 28px;
}

.spatial-case-title h2,
.spatial-dark-intro h2,
.spatial-light-intro h2 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(54px, 6.7vw, 116px);
  line-height: .88;
  letter-spacing: -.058em;
  font-weight: 300;
}

.spatial-case-intro,
.spatial-dark-intro > p,
.spatial-light-intro > p {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.56;
}

.spatial-metrics {
  width: min(100%, var(--max));
  margin: 0 auto clamp(70px, 8vw, 130px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spatial-metrics > div {
  min-height: 160px;
  padding: 28px clamp(18px, 2.4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.spatial-metrics > div:first-child {
  padding-left: 0;
}

.spatial-metrics > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.spatial-metrics strong {
  font-size: clamp(28px, 3.2vw, 56px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.045em;
}

.spatial-metrics span {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .58;
}

.spatial-full-bleed {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.spatial-full-bleed img {
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.spatial-character-run {
  width: min(100%, var(--max));
  margin: clamp(100px, 11vw, 180px) auto 0;
  display: grid;
  grid-template-columns: .72fr 1.35fr .72fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
}

.spatial-character-run figure:nth-child(2) {
  margin-top: clamp(110px, 12vw, 210px);
}

.spatial-character-run figure:nth-child(3) {
  margin-top: clamp(40px, 5vw, 90px);
}

.spatial-portrait img {
  aspect-ratio: .75 / 1;
}

.spatial-landscape img {
  aspect-ratio: 1.55 / 1;
}

.spatial-field-note {
  width: min(900px, 70%);
  margin: clamp(130px, 15vw, 250px) auto;
  padding: clamp(44px, 5vw, 82px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spatial-field-note .micro {
  margin-bottom: 32px;
  color: var(--red);
}

.spatial-field-note > p:last-child {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.spatial-process-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.42fr .58fr;
  gap: clamp(24px, 4vw, 66px);
  align-items: start;
}

.spatial-process-main img {
  aspect-ratio: 1.32 / 1;
}

.spatial-process-stack {
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  padding-top: clamp(120px, 13vw, 220px);
}

.spatial-process-stack figure:nth-child(2) {
  width: 80%;
  margin-left: auto;
}

.spatial-process-stack img {
  aspect-ratio: .56 / 1;
  object-position: center top;
}

.spatial-seafood-closing {
  width: min(100%, var(--max));
  margin: clamp(140px, 16vw, 270px) auto 0;
  display: grid;
  grid-template-columns: .72fr 1.1fr .72fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
}

.spatial-seafood-closing figure:first-child {
  margin-top: 130px;
}

.spatial-seafood-closing figure:last-child {
  margin-bottom: 130px;
}

.spatial-seafood-closing figure img {
  aspect-ratio: .75 / 1;
}

.spatial-seafood-closing > div {
  padding: 70px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spatial-seafood-closing h3 {
  margin: 24px 0 30px;
  font-size: clamp(52px, 6vw, 104px);
  line-height: .9;
  letter-spacing: -.055em;
  font-weight: 300;
}

.spatial-seafood-closing > div > p:last-child {
  max-width: 560px;
  margin: 0;
  font-size: 15px;
  line-height: 1.56;
}

.spatial-brand-spaces,
.spatial-concept {
  background: var(--ink);
  color: var(--white);
  padding: clamp(130px, 14vw, 240px) var(--pad);
}

.spatial-dark-intro {
  border-top-color: rgba(255,255,255,.25);
}

.spatial-dark-intro > p,
.spatial-brand-spaces .spatial-subcase-head > p,
.spatial-concept .spatial-dark-intro > p {
  color: rgba(248,247,243,.66);
}

.spatial-subcase {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(110px, 12vw, 200px) 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.spatial-subcase + .spatial-subcase {
  margin-top: clamp(40px, 5vw, 80px);
}

.spatial-subcase-head {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: clamp(50px, 9vw, 160px);
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 130px);
}

.spatial-subcase-head .micro {
  margin-bottom: 28px;
}

.spatial-subcase-head h3 {
  margin: 0;
  font-size: clamp(50px, 6.5vw, 112px);
  line-height: .88;
  letter-spacing: -.058em;
  font-weight: 300;
}

.spatial-subcase-head > p {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.56;
}

.spatial-before-after {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  gap: clamp(18px, 2.5vw, 42px);
  align-items: end;
}

.spatial-before img {
  aspect-ratio: .75 / 1;
}

.spatial-after img {
  aspect-ratio: 1.58 / 1;
}

.spatial-dark-wide {
  margin-top: clamp(100px, 11vw, 180px);
}

.spatial-dark-wide img {
  aspect-ratio: 1.55 / 1;
}

.spatial-smashly-details {
  margin-top: clamp(80px, 9vw, 150px);
  display: grid;
  grid-template-columns: .95fr 1.3fr .75fr;
  gap: clamp(22px, 3.5vw, 58px);
  align-items: start;
}

.spatial-smashly-details figure:nth-child(2) {
  margin-top: clamp(90px, 9vw, 150px);
}

.spatial-smashly-details figure:nth-child(3) {
  margin-top: clamp(35px, 4vw, 70px);
}

.spatial-smashly-details img {
  aspect-ratio: 1 / 1.15;
}

.spatial-smashly-details figure:nth-child(2) img {
  aspect-ratio: 1.3 / 1;
}

.spatial-office-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(24px, 4vw, 66px);
  align-items: start;
}

.spatial-office-before {
  width: 78%;
  margin: 80px 0 0 auto;
}

.spatial-office-before img,
.spatial-office-detail img {
  aspect-ratio: 1.55 / 1;
}

.spatial-office-wide img {
  aspect-ratio: 1.65 / 1;
}

.spatial-office-video {
  width: 70%;
  margin: clamp(120px, 13vw, 210px) 0 0 auto;
}

.spatial-office-video video {
  aspect-ratio: .5625 / 1;
}

.spatial-office-video > span,
.spatial-menu-board-video > span {
  display: block;
  margin-top: 12px;
  opacity: .58;
}

.spatial-office-detail {
  margin-top: clamp(70px, 8vw, 130px);
}

.spatial-baschly-sequence {
  margin-top: clamp(90px, 10vw, 165px);
  display: grid;
  grid-template-columns: 1.2fr 1fr .7fr .72fr;
  gap: clamp(18px, 2.5vw, 40px);
  align-items: start;
}

.spatial-baschly-sequence figure:nth-child(2) {
  margin-top: 90px;
}

.spatial-baschly-sequence figure:nth-child(3) {
  margin-top: 180px;
}

.spatial-baschly-sequence figure:nth-child(4) {
  margin-top: 40px;
}

.spatial-baschly-sequence img {
  aspect-ratio: .78 / 1;
}

.spatial-baschly-sequence figure:first-child img,
.spatial-baschly-sequence figure:nth-child(2) img {
  aspect-ratio: 1.25 / 1;
}

.spatial-type-space {
  background: var(--paper);
  color: var(--ink);
}

.spatial-light-intro {
  margin-bottom: clamp(120px, 13vw, 220px);
}

.spatial-type-space .spatial-subcase {
  border-top-color: var(--line);
}

.spatial-type-space .spatial-subcase-head > p {
  color: rgba(17,17,15,.68);
}

.spatial-menu-board-before-after {
  display: grid;
  grid-template-columns: .54fr 1.46fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: end;
}

.spatial-menu-board-before-after figure:first-child {
  width: 78%;
  margin-left: auto;
}

.spatial-menu-board-before-after figure:first-child img {
  aspect-ratio: 1.33 / 1;
}

.spatial-menu-board-before-after figure:last-child img {
  aspect-ratio: 1.5 / 1;
}

.spatial-menu-board-process {
  margin-top: clamp(100px, 11vw, 180px);
  display: grid;
  grid-template-columns: .65fr .72fr 1.25fr;
  gap: clamp(22px, 3.5vw, 58px);
  align-items: start;
}

.spatial-menu-board-video {
  width: 86%;
}

.spatial-menu-board-video video {
  aspect-ratio: .5625 / 1;
}

.spatial-menu-board-process figure:nth-child(2) {
  margin-top: 140px;
}

.spatial-menu-board-process figure:nth-child(3) {
  margin-top: 50px;
}

.spatial-menu-board-process figure img {
  aspect-ratio: .75 / 1;
}

.spatial-menu-board-process figure:nth-child(3) img {
  aspect-ratio: 1.15 / 1;
}

.spatial-exhibition {
  margin-top: clamp(80px, 10vw, 170px);
}

.spatial-exhibition-grid {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: clamp(26px, 4.5vw, 76px);
  align-items: start;
}

.spatial-exhibition-main {
  grid-row: span 2;
}

.spatial-exhibition-main img {
  aspect-ratio: 1.25 / 1;
}

.spatial-exhibition-grid > figure:nth-child(2) {
  margin-top: 110px;
}

.spatial-exhibition-grid > figure:nth-child(2) img,
.spatial-exhibition-grid > figure:nth-child(3) img {
  aspect-ratio: .75 / 1;
}

.spatial-exhibition-grid > figure:nth-child(3) {
  width: 82%;
  margin-left: auto;
}

.spatial-concept {
  padding-bottom: clamp(140px, 16vw, 270px);
}

.spatial-facade-concept-night {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.spatial-facade-concept-night img {
  aspect-ratio: 1.7 / 1;
}

.spatial-facade-concept-thesis {
  width: min(1100px, 78%);
  margin: clamp(110px, 13vw, 220px) auto;
  padding: clamp(48px, 6vw, 92px) 0;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.spatial-facade-concept-thesis p {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 84px);
  line-height: 1.01;
  letter-spacing: -.048em;
}

.spatial-facade-concept-development {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(30px, 5vw, 82px);
  align-items: start;
}

.spatial-facade-concept-before {
  margin-top: 110px;
}

.spatial-facade-concept-before img {
  aspect-ratio: 1.72 / 1;
}

.spatial-facade-concept-sketches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.spatial-facade-concept-sketches figure:nth-child(2) {
  margin-top: 90px;
}

.spatial-facade-concept-sketches img {
  aspect-ratio: .72 / 1;
  background: var(--paper);
}

.spatial-facade-concept-social {
  width: min(1300px, 84%);
  margin: clamp(120px, 14vw, 230px) auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.spatial-facade-concept-social figure:nth-child(2) {
  margin-top: 120px;
}

.spatial-facade-concept-social img {
  aspect-ratio: .75 / 1;
}

.spatial-closing {
  min-height: 82vh;
  padding: clamp(120px, 14vw, 230px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.spatial-closing > p:last-child {
  max-width: 1500px;
  margin: 100px 0 0;
  font-size: clamp(58px, 8vw, 146px);
  line-height: .87;
  letter-spacing: -.06em;
}

@media (max-width: 1100px) {
  .spatial-case-opener,
  .spatial-dark-intro,
  .spatial-light-intro {
    grid-template-columns: 100px 1fr;
  }
  .spatial-case-intro,
  .spatial-dark-intro > p,
  .spatial-light-intro > p {
    grid-column: 2;
    max-width: 620px;
  }
  .spatial-thesis {
    grid-template-columns: 1fr;
    row-gap: 70px;
  }
  .spatial-thesis h2,
  .spatial-thesis > p:last-child {
    grid-column: 1;
  }
  .spatial-thesis > p:last-child {
    width: min(70%, 560px);
    margin-left: auto;
  }
  .spatial-character-run {
    grid-template-columns: .8fr 1.2fr .8fr;
  }
  .spatial-subcase-head {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .spatial-subcase-head > p {
    width: min(68%, 580px);
    margin-left: auto;
  }
  .spatial-office-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spatial-baschly-sequence {
    grid-template-columns: 1fr 1fr;
  }
  .spatial-baschly-sequence figure:nth-child(n) {
    margin-top: 0;
  }
  .spatial-baschly-sequence figure:nth-child(even) {
    margin-top: 80px;
  }
}

@media (max-width: 700px) {
  .spatial-page figcaption {
    font-size: 7.5px;
  }
  .spatial-hero {
    min-height: 680px;
  }
  .spatial-hero-ui {
    padding: 86px var(--pad) 22px;
  }
  .spatial-hero-top {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .spatial-hero-top p:last-child {
    text-align: left;
    opacity: .7;
  }
  .spatial-hero h1 {
    font-size: 17.5vw;
    line-height: .8;
  }
  .spatial-hero h1 .serif {
    margin-left: 0;
    font-size: .72em;
  }
  .spatial-hero-bottom {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }
  .spatial-hero-bottom > p {
    font-size: 18px;
  }
  .spatial-video-toggle {
    width: 56px;
    height: 56px;
  }
  .spatial-thesis,
  .spatial-case,
  .spatial-type-space,
  .spatial-brand-spaces,
  .spatial-concept {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .spatial-thesis {
    min-height: 72vh;
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .spatial-thesis h2 {
    font-size: 13.5vw;
  }
  .spatial-thesis > p:last-child {
    width: 100%;
    margin-left: 0;
  }
  .spatial-case-opener,
  .spatial-dark-intro,
  .spatial-light-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
  }
  .spatial-case-number {
    font-size: 94px;
  }
  .spatial-case-title h2,
  .spatial-dark-intro h2,
  .spatial-light-intro h2 {
    font-size: 13.5vw;
  }
  .spatial-case-intro,
  .spatial-dark-intro > p,
  .spatial-light-intro > p {
    grid-column: 1;
  }
  .spatial-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .spatial-metrics > div {
    min-height: 128px;
    padding: 22px 18px;
    border-bottom: 1px solid var(--line);
  }
  .spatial-metrics > div:first-child,
  .spatial-metrics > div:nth-child(3) {
    padding-left: 0;
  }
  .spatial-metrics > div:nth-child(2) {
    border-right: 0;
  }
  .spatial-full-bleed img,
  .spatial-dark-wide img,
  .spatial-facade-concept-night img {
    aspect-ratio: 1.08 / 1;
  }
  .spatial-character-run {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .spatial-character-run figure:nth-child(n) {
    margin-top: 0;
  }
  .spatial-character-run figure:nth-child(2) {
    width: 100%;
  }
  .spatial-character-run figure:nth-child(3) {
    width: 74%;
    margin-left: auto;
  }
  .spatial-field-note {
    width: 100%;
    margin: 110px auto;
  }
  .spatial-field-note > p:last-child {
    font-size: 9vw;
  }
  .spatial-process-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .spatial-process-stack {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 0;
  }
  .spatial-process-stack figure:nth-child(2) {
    width: 100%;
    margin: 70px 0 0;
  }
  .spatial-seafood-closing {
    grid-template-columns: 1fr;
    gap: 66px;
  }
  .spatial-seafood-closing figure:first-child,
  .spatial-seafood-closing figure:last-child {
    width: 72%;
    margin: 0;
  }
  .spatial-seafood-closing figure:last-child {
    margin-left: auto;
  }
  .spatial-seafood-closing > div {
    order: -1;
  }
  .spatial-subcase {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .spatial-subcase-head h3 {
    font-size: 13vw;
  }
  .spatial-subcase-head > p {
    width: 100%;
    margin-left: 0;
  }
  .spatial-before-after,
  .spatial-office-grid,
  .spatial-menu-board-before-after,
  .spatial-exhibition-grid,
  .spatial-facade-concept-development,
  .spatial-facade-concept-social {
    grid-template-columns: 1fr;
  }
  .spatial-before {
    width: 62%;
  }
  .spatial-smashly-details {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .spatial-smashly-details figure:nth-child(n) {
    margin-top: 0;
  }
  .spatial-smashly-details figure:nth-child(2) {
    width: 100%;
  }
  .spatial-smashly-details figure:nth-child(3) {
    width: 72%;
    margin-left: auto;
  }
  .spatial-office-before,
  .spatial-office-video {
    width: 72%;
    margin: 0;
  }
  .spatial-office-wide {
    margin-top: 64px;
  }
  .spatial-office-video {
    margin: 72px 0 0 auto;
  }
  .spatial-office-detail {
    margin-top: 70px;
  }
  .spatial-baschly-sequence {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .spatial-baschly-sequence figure:nth-child(n) {
    margin-top: 0;
  }
  .spatial-baschly-sequence figure:nth-child(even) {
    margin-top: 54px;
  }
  .spatial-menu-board-before-after figure:first-child {
    width: 68%;
    margin: 0;
  }
  .spatial-menu-board-before-after figure:last-child {
    margin-top: 64px;
  }
  .spatial-menu-board-process {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .spatial-menu-board-video {
    width: 100%;
    grid-row: span 2;
  }
  .spatial-menu-board-process figure:nth-child(n) {
    margin-top: 0;
  }
  .spatial-menu-board-process figure:nth-child(3) {
    margin-top: 40px;
  }
  .spatial-exhibition-main {
    grid-row: auto;
  }
  .spatial-exhibition-grid > figure:nth-child(2) {
    width: 72%;
    margin: 70px 0 0 auto;
  }
  .spatial-exhibition-grid > figure:nth-child(3) {
    width: 62%;
    margin: 60px 0 0;
  }
  .spatial-facade-concept-thesis {
    width: 100%;
  }
  .spatial-facade-concept-thesis p {
    font-size: 9.2vw;
  }
  .spatial-facade-concept-before {
    margin-top: 0;
  }
  .spatial-facade-concept-sketches {
    margin-top: 70px;
  }
  .spatial-facade-concept-social {
    width: 100%;
  }
  .spatial-facade-concept-social figure:nth-child(2) {
    width: 76%;
    margin: 70px 0 0 auto;
  }
  .spatial-closing {
    min-height: 70vh;
  }
  .spatial-closing > p:last-child {
    font-size: 13.5vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spatial-hero-video,
  .spatial-lazy-video {
    display: none;
  }
  .spatial-hero {
    background: url("images/spatial/seafood-video-poster.webp") center / cover no-repeat;
  }
  .spatial-video-toggle {
    display: none;
  }
}

/* V27 / AI Visual Direction ----------------------------------------- */
.ai-direction-page {
  background: var(--paper);
}
.ai-direction-page figure,
.ai-direction-page h1,
.ai-direction-page h2,
.ai-direction-page h3,
.ai-direction-page p {
  margin-top: 0;
}
.ai-direction-page figure { margin-left: 0; margin-right: 0; }
.ai-direction-page figure img { height: auto; object-fit: contain; }
.ai-direction-page figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid currentColor;
  font-size: 8.5px;
  line-height: 1.3;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .6;
}

.ai-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #080808;
  color: var(--white);
}
.ai-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(62vw, 1100px);
  height: 100%;
  opacity: .88;
}
.ai-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #080808 0%, rgba(8,8,8,.92) 8%, rgba(8,8,8,.1) 48%, rgba(8,8,8,.12) 100%), linear-gradient(0deg, rgba(8,8,8,.62), transparent 38%);
}
.ai-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}
.ai-hero-noise {
  position: absolute;
  inset: 0;
  opacity: .1;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,.12) 3px);
  mix-blend-mode: screen;
}
.ai-hero-ui {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 104px var(--pad) 38px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.ai-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.ai-hero h1 {
  align-self: center;
  max-width: 1050px;
  margin: 0;
  font-size: clamp(82px, 11.5vw, 208px);
  line-height: .78;
  letter-spacing: -.07em;
  font-weight: 300;
  text-transform: uppercase;
}
.ai-hero h1 span { display: block; }
.ai-hero h1 .serif {
  font-size: .55em;
  line-height: .95;
  text-transform: none;
  margin-left: 1.5em;
  letter-spacing: -.055em;
}
.ai-hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
}
.ai-hero-bottom > p {
  margin-bottom: 0;
  max-width: 680px;
  font-size: clamp(24px, 2.6vw, 45px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.ai-hero-role {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 28px;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.64);
}

.ai-thesis {
  min-height: 100vh;
  padding: clamp(130px, 14vw, 240px) var(--pad);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(50px, 8vw, 150px);
  align-content: center;
}
.ai-thesis .kicker { grid-column: 1 / -1; }
.ai-thesis h2 {
  margin-bottom: 0;
  max-width: 1120px;
  font-size: clamp(62px, 7.6vw, 136px);
  line-height: .86;
  letter-spacing: -.062em;
  font-weight: 300;
}
.ai-thesis-copy {
  align-self: end;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.6;
}
.ai-thesis-copy p:last-child {
  margin: 38px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 500;
}

.ai-case {
  position: relative;
}
.ai-case-opener {
  display: grid;
  grid-template-columns: 130px minmax(0,1.18fr) minmax(260px,.62fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
}
.ai-case-number {
  align-self: start;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(60px, 6vw, 110px);
  line-height: .8;
  opacity: .28;
}
.ai-case-opener h2 {
  margin: 10px 0 0;
  font-size: clamp(58px, 7vw, 126px);
  line-height: .87;
  letter-spacing: -.06em;
  font-weight: 300;
}
.ai-case-opener > p {
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 1.58;
}

.ai-signal {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  column-gap: clamp(38px, 5vw, 86px);
  align-items: start;
  background: #0a0909;
  color: var(--white);
  padding: clamp(130px, 12vw, 210px) var(--pad) clamp(140px, 14vw, 240px);
}
.ai-stage-rail {
  position: sticky;
  top: 110px;
  width: 150px;
  height: max-content;
  padding-right: 24px;
  pointer-events: none;
}
.ai-stage-rail::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,.1);
}
.ai-stage-rail a {
  position: relative;
  pointer-events: auto;
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,.28);
  font-size: 8.5px;
  line-height: 1.2;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}
.ai-stage-rail a.is-active {
  color: #ff2a22;
  transform: translateX(8px);
}
.ai-case-content {
  min-width: 0;
}
.ai-signal .ai-case-opener {
  padding-bottom: clamp(90px, 9vw, 150px);
}
.ai-signal-master {
  width: min(100%, 1600px);
  margin: 0 auto clamp(150px, 15vw, 260px);
}
.ai-signal-master img,
.ai-output-image img,
.ai-route img,
.ai-selection figure img {
  background: #050505;
}
.ai-route-section { scroll-margin-top: 100px; }
.ai-route-head {
  display: grid;
  grid-template-columns: .8fr 1.25fr .75fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 110px);
}
.ai-route-head h3,
.ai-selection h3,
.ai-refinement-copy h3,
.ai-rock-route-copy h3,
.ai-applied-case-head h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 86px);
  line-height: .9;
  letter-spacing: -.052em;
  font-weight: 300;
}
.ai-route-head > p:last-child,
.ai-selection-copy > p:last-child,
.ai-refinement-copy p,
.ai-rock-route-copy > p:last-child,
.ai-applied-case-head > p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.58;
}
.ai-route-grid {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: clamp(16px, 2vw, 32px);
}
.ai-route { grid-column: span 6; }
.ai-route--wide { grid-column: 1 / -1; width: 88%; margin-left: auto; }
.ai-route-grid .ai-route:nth-child(2) { margin-top: clamp(70px, 8vw, 130px); }
.ai-route-grid .ai-route:nth-child(3) { margin-top: clamp(10px, 2vw, 40px); }

.ai-selection {
  scroll-margin-top: 100px;
  margin-top: clamp(150px, 16vw, 270px);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(50px, 8vw, 150px);
  align-items: center;
}
.ai-selection-copy { max-width: 620px; }
.ai-selection-copy .micro { margin-bottom: 28px; color: #ff2a22; }
.ai-selection-copy > p:last-child { margin-top: 38px; color: rgba(255,255,255,.64); }
.ai-selection figure { margin: 0; }

.ai-refinement {
  scroll-margin-top: 100px;
  margin-top: clamp(150px, 16vw, 280px);
  padding-top: clamp(60px, 7vw, 110px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.ai-refinement > .micro { color: #ff2a22; }
.ai-refinement-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(50px, 9vw, 170px);
  margin-top: clamp(70px, 8vw, 130px);
}
.ai-refinement-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  align-content: start;
  font-size: clamp(12px, 1.1vw, 18px);
  letter-spacing: .12em;
  line-height: 1.3;
  color: rgba(255,255,255,.58);
}
.ai-refinement-statement span:nth-child(2n) { color: #ff2a22; }
.ai-refinement-copy p { margin-top: 42px; max-width: 620px; color: rgba(255,255,255,.66); }

.ai-output {
  scroll-margin-top: 100px;
  margin-top: clamp(160px, 18vw, 300px);
}
.ai-output-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.ai-output-head p:last-child {
  max-width: 580px;
  margin: 0 0 0 auto;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.66);
}
.ai-output-image {
  width: min(72%, 1050px);
  margin: clamp(80px, 9vw, 150px) auto 0;
}

.ai-rock {
  padding: clamp(140px, 14vw, 240px) var(--pad) clamp(150px, 15vw, 250px);
  background: var(--paper);
}
.ai-rock .ai-case-opener { margin-bottom: clamp(110px, 12vw, 190px); }
.ai-rock-key {
  width: min(74%, 1150px);
  margin: 0 auto clamp(140px, 14vw, 240px);
}
.ai-rock-key img { background: #101116; }
.ai-rock-routes {
  display: grid;
  gap: clamp(130px, 15vw, 250px);
}
.ai-rock-routes article {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(50px, 8vw, 150px);
  align-items: center;
}
.ai-rock-routes article:nth-child(2) { grid-template-columns: 1.3fr .7fr; }
.ai-rock-route-copy .micro { margin-bottom: 26px; color: #5942de; }
.ai-rock-route-copy > p:last-child { margin-top: 32px; color: rgba(17,17,15,.66); }
.ai-rock-decision {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: clamp(120px, 12vw, 200px);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ai-rock-decision i { height: 1px; background: var(--line); }
.ai-rock-decision strong { color: #5942de; font-weight: 600; }

.ai-nightlife {
  padding: clamp(140px, 14vw, 240px) var(--pad) clamp(140px, 14vw, 240px);
  color: #fff8fc;
  background: radial-gradient(circle at 52% 30%, #391028 0, #1b0715 45%, #090508 100%);
}
.ai-nightlife .ai-case-opener { margin-bottom: clamp(100px, 11vw, 180px); }
.ai-nightlife .ai-case-opener > p { color: rgba(255,248,252,.68); }
.ai-nightlife-board { width: min(100%, 1620px); margin: 0 auto; }
.ai-nightlife-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 140px);
  margin-top: clamp(90px, 10vw, 170px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: clamp(22px, 2.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.ai-nightlife-line p:last-child { text-align: right; color: #ff54b3; }

.ai-applied {
  padding: clamp(150px, 15vw, 260px) var(--pad);
  background: var(--paper);
}
.ai-applied-head {
  display: grid;
  grid-template-columns: .45fr 1.1fr .7fr;
  gap: clamp(40px, 7vw, 125px);
  align-items: end;
  margin-bottom: clamp(150px, 17vw, 280px);
}
.ai-applied-head h2,
.ai-tests-head h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 124px);
  line-height: .87;
  letter-spacing: -.06em;
  font-weight: 300;
}
.ai-applied-head > p:last-child {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.58;
}
.ai-applied-case + .ai-applied-case { margin-top: clamp(170px, 18vw, 300px); }
.ai-applied-case-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(50px, 8vw, 150px);
  align-items: end;
  margin-bottom: clamp(80px, 9vw, 150px);
}
.ai-applied-case-head .micro { margin-bottom: 24px; color: var(--red); }
.ai-applied-case-head > p { max-width: 560px; margin-left: auto; }
.ai-facade-grid {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
}
.ai-facade-day { grid-column: 1 / span 7; }
.ai-facade-night { grid-column: 6 / span 7; margin-top: clamp(100px, 12vw, 190px); }
.ai-facade-portrait { grid-column: 2 / span 5; margin-top: clamp(40px, 6vw, 100px); }
.ai-interior-sequence {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: clamp(16px, 2vw, 32px);
  align-items: start;
}
.ai-interior-before { grid-column: 1 / span 6; }
.ai-interior-character { grid-column: 8 / span 4; margin-top: clamp(70px, 8vw, 130px); }
.ai-interior-room { grid-column: span 6; margin-top: clamp(90px, 10vw, 160px); }
.ai-interior-room--wide { grid-column: 3 / span 8; }

.ai-tests {
  padding: clamp(140px, 14vw, 240px) var(--pad) clamp(150px, 15vw, 260px);
  background: #0b0b0b;
  color: var(--white);
}
.ai-tests-head {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: clamp(50px, 9vw, 170px);
  align-items: start;
  margin-bottom: clamp(100px, 12vw, 190px);
}
.ai-tests-head h2 { font-size: clamp(52px, 6vw, 108px); }
.ai-tests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 52px);
  align-items: start;
}
.ai-tests-grid figure:nth-child(2) { margin-top: clamp(90px, 10vw, 170px); }

.ai-closing {
  min-height: 88vh;
  padding: clamp(120px, 13vw, 220px) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
}
.ai-closing > p:last-child {
  margin: 0;
  max-width: 1500px;
  font-size: clamp(62px, 8vw, 144px);
  line-height: .88;
  letter-spacing: -.062em;
}

@media (max-width: 1100px) {
  .ai-hero-image { width: 72vw; opacity: .68; }
  .ai-case-opener { grid-template-columns: 95px 1fr; }
  .ai-case-opener > p { grid-column: 2; max-width: 560px; }
  .ai-signal { display: block; }
  .ai-stage-rail { display: none; }
  .ai-case-content { margin-left: 0; }
  .ai-route-head { grid-template-columns: .55fr 1.25fr; }
  .ai-route-head > p:last-child { grid-column: 2; }
  .ai-selection { grid-template-columns: 1fr; }
  .ai-selection figure { width: 82%; margin-left: auto; }
  .ai-refinement-grid { grid-template-columns: .75fr 1.25fr; }
  .ai-rock-routes article,
  .ai-rock-routes article:nth-child(2) { grid-template-columns: 1fr; }
  .ai-rock-routes article:nth-child(2) figure { order: 2; }
  .ai-rock-routes article:nth-child(2) .ai-rock-route-copy { order: 1; }
  .ai-applied-head { grid-template-columns: .45fr 1.35fr; }
  .ai-applied-head > p:last-child { grid-column: 2; max-width: 650px; }
}

@media (max-width: 700px) {
  .ai-direction-page figcaption { gap: 12px; font-size: 7.5px; }
  .ai-hero-ui { padding: 94px var(--pad) 24px; }
  .ai-hero-image { width: 100%; opacity: .55; }
  .ai-hero-image::before { background: linear-gradient(0deg,#080808 0%,rgba(8,8,8,.28) 60%,rgba(8,8,8,.5) 100%); }
  .ai-hero h1 { font-size: 21vw; line-height: .8; align-self: end; margin-bottom: 14vh; }
  .ai-hero h1 .serif { margin-left: .35em; font-size: .6em; }
  .ai-hero-top { grid-template-columns: 1fr auto; }
  .ai-hero-top p:last-child { text-align: right; }
  .ai-hero-bottom { grid-template-columns: 1fr; gap: 24px; }
  .ai-hero-bottom > p { font-size: 7.2vw; }
  .ai-hero-role { grid-template-columns: 1fr 1fr; }
  .ai-thesis { grid-template-columns: 1fr; min-height: auto; padding-top: 110px; padding-bottom: 120px; }
  .ai-thesis h2 { font-size: 13.2vw; }
  .ai-thesis-copy { max-width: none; }
  .ai-case-opener { grid-template-columns: 1fr; gap: 24px; }
  .ai-case-number { font-size: 20vw; }
  .ai-case-opener > p { grid-column: 1; }
  .ai-case-opener h2 { font-size: 13vw; }
  .ai-signal,
  .ai-rock,
  .ai-nightlife,
  .ai-applied,
  .ai-tests { padding-left: var(--pad); padding-right: var(--pad); }
  .ai-route-head { grid-template-columns: 1fr; }
  .ai-route-head > p:last-child { grid-column: 1; }
  .ai-route-head h3,
  .ai-selection h3,
  .ai-refinement-copy h3,
  .ai-rock-route-copy h3,
  .ai-applied-case-head h3 { font-size: 11vw; }
  .ai-route-grid { grid-template-columns: 1fr; }
  .ai-route,
  .ai-route--wide { grid-column: 1; width: 100%; margin: 0; }
  .ai-route-grid .ai-route:nth-child(2),
  .ai-route-grid .ai-route:nth-child(3) { margin-top: 54px; }
  .ai-selection figure { width: 100%; }
  .ai-refinement-grid { grid-template-columns: 1fr; }
  .ai-refinement-statement { grid-template-columns: 1fr 1fr; }
  .ai-output-head { grid-template-columns: 1fr; }
  .ai-output-head p:last-child { margin-left: 0; }
  .ai-output-image { width: 100%; }
  .ai-rock-key { width: 100%; }
  .ai-rock-decision { grid-template-columns: 1fr; text-align: center; }
  .ai-rock-decision i { width: 1px; height: 30px; justify-self: center; }
  .ai-nightlife-line { grid-template-columns: 1fr; }
  .ai-nightlife-line p:last-child { text-align: left; }
  .ai-applied-head { grid-template-columns: 1fr; }
  .ai-applied-head > p:last-child { grid-column: 1; }
  .ai-applied-head h2,
  .ai-tests-head h2 { font-size: 13vw; }
  .ai-applied-case-head { grid-template-columns: 1fr; }
  .ai-applied-case-head > p { margin-left: 0; }
  .ai-facade-grid,
  .ai-interior-sequence { grid-template-columns: 1fr; }
  .ai-facade-day,
  .ai-facade-night,
  .ai-facade-portrait,
  .ai-interior-before,
  .ai-interior-character,
  .ai-interior-room,
  .ai-interior-room--wide { grid-column: 1; margin-top: 60px; }
  .ai-facade-day,
  .ai-interior-before { margin-top: 0; }
  .ai-tests-head { grid-template-columns: 1fr; }
  .ai-tests-grid { grid-template-columns: 1fr; }
  .ai-tests-grid figure:nth-child(2) { margin-top: 70px; }
  .ai-closing { min-height: 70vh; }
  .ai-closing > p:last-child { font-size: 13.4vw; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-hero-noise { display: none; }
}


/* V28 / Final footer, project index and legal pages ------------------- */

/* Homepage finale */
.contact-final {
  min-height: auto;
  padding: clamp(92px, 9vw, 150px) var(--pad) 34px;
  gap: clamp(110px, 13vw, 210px);
}

.contact-opening {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: clamp(56px, 9vw, 160px);
  align-items: end;
  padding-bottom: clamp(70px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
}

.contact-statement-wrap > .micro,
.contact-availability > .micro {
  margin-bottom: clamp(28px, 3vw, 46px);
}

.contact-statement {
  margin: 0;
  font-size: clamp(48px, 7.8vw, 138px);
  line-height: .88;
  letter-spacing: -.058em;
  font-weight: 300;
}

.contact-availability {
  max-width: 520px;
  justify-self: end;
}

.contact-availability > p:last-child {
  margin: 0;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.42;
  letter-spacing: -.015em;
}

.contact-main {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-final .contact-main h2 {
  margin: clamp(48px, 8vh, 110px) 0 0;
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-final .footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(22px, 2.4vw, 42px);
  align-items: center;
  padding: 0;
  border: 0;
}

.contact-final .footer-meta a,
.contact-final .footer-meta p {
  font-size: 10px;
  line-height: 1.25;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-final .footer-meta p:last-child {
  margin-left: auto;
  text-align: left;
}

.footer-top {
  width: 68px;
  height: 68px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.footer-top::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line);
  border-radius: inherit;
  transition: transform .45s var(--ease);
}

.footer-top span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.footer-top i {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  transition: transform .35s var(--ease);
}

.footer-top:hover::before,
.footer-top:focus-visible::before {
  transform: rotate(20deg) scale(.93);
}

.footer-top:hover i,
.footer-top:focus-visible i {
  transform: translateY(-5px);
}

/* Previous / index / next navigation */
.project-next {
  min-height: min(56vh, 620px);
  padding: clamp(40px, 4vw, 60px) var(--pad) 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
}

.project-nav-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(26px, 4vw, 72px);
  align-items: center;
}

.project-next .project-nav-link {
  width: 100%;
  min-height: clamp(160px, 22vw, 220px);
  padding: clamp(14px, 1.8vw, 22px) 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 28px);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: normal;
  text-transform: none;
  min-width: 0;
}

.project-nav-link--prev {
  align-items: flex-start;
  text-align: left;
  justify-self: start;
}

.project-nav-link--next {
  align-items: flex-end;
  text-align: right;
  justify-self: end;
}

.project-nav-kicker {
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(248,247,243,.58);
}

.project-nav-title {
  display: block;
  max-width: 11ch;
  font-size: clamp(46px, 5.2vw, 92px);
  line-height: .88;
  letter-spacing: -.055em;
  font-weight: 300;
  text-transform: none;
  transition: transform .4s var(--ease), opacity .3s ease;
}

.project-nav-link::after {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(248,247,243,.24);
  transition: width .35s var(--ease), background-color .3s ease;
}

.project-nav-link--next::after {
  margin-left: auto;
}

.project-nav-link--next .project-nav-title {
  margin-left: auto;
}

.project-nav-link--prev:hover .project-nav-title,
.project-nav-link--prev:focus-visible .project-nav-title {
  transform: translateX(-10px);
}

.project-nav-link--next:hover .project-nav-title,
.project-nav-link--next:focus-visible .project-nav-title {
  transform: translateX(10px);
}

.project-nav-link:hover::after,
.project-nav-link:focus-visible::after {
  width: 88px;
  background: rgba(248,247,243,.46);
}

.project-next .project-nav-home {
  margin: 0;
  width: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
}

.project-nav-icon {
  position: relative;
  width: 92px;
  height: 92px;
  display: block;
  color: currentColor;
}

.project-nav-icon::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  transition: transform .42s var(--ease), border-color .3s ease, opacity .3s ease;
}

.project-nav-icon i {
  position: absolute;
  width: 26px;
  height: 34px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.36);
  background: rgba(255,255,255,.02);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  transition: transform .46s var(--ease), border-color .3s ease, background-color .3s ease, box-shadow .46s var(--ease);
}

.project-nav-icon i:nth-child(1) { transform: translate(26px, 24px) rotate(-8deg); }
.project-nav-icon i:nth-child(2) { transform: translate(37px, 20px) rotate(6deg); }
.project-nav-icon i:nth-child(3) { transform: translate(24px, 34px) rotate(-2deg); }
.project-nav-icon i:nth-child(4) { transform: translate(35px, 30px) rotate(9deg); }

.project-nav-home-label {
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,247,243,.55);
  transition: color .3s ease, transform .35s var(--ease);
}

.project-nav-home:hover .project-nav-icon::before,
.project-nav-home:focus-visible .project-nav-icon::before {
  transform: scale(.96);
  border-color: rgba(255,255,255,.34);
}

.project-nav-home:hover .project-nav-icon i,
.project-nav-home:focus-visible .project-nav-icon i {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.05);
  box-shadow: 0 16px 30px rgba(0,0,0,.24);
}

.project-nav-home:hover .project-nav-icon i:nth-child(1),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(16px, 16px) rotate(-2deg); }
.project-nav-home:hover .project-nav-icon i:nth-child(2),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(49px, 16px) rotate(2deg); }
.project-nav-home:hover .project-nav-icon i:nth-child(3),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(16px, 46px) rotate(2deg); }
.project-nav-home:hover .project-nav-icon i:nth-child(4),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(49px, 46px) rotate(-2deg); }

.project-nav-home:hover .project-nav-home-label,
.project-nav-home:focus-visible .project-nav-home-label {
  color: rgba(248,247,243,.84);
  transform: translateY(2px);
}

.project-nav-meta {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  color: rgba(248,247,243,.58);
}

.project-nav-meta p,
.project-nav-meta a {
  margin: 0;
  font-size: 8.5px;
  line-height: 1.3;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-next .project-nav-meta a {
  display: inline-block;
  margin: 0;
  font-weight: 400;
  font-size: 8.5px;
  line-height: 1.3;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.project-nav-meta div {
  display: flex;
  gap: 24px;
}

.project-nav-meta a:hover,
.project-nav-meta a:focus-visible {
  color: var(--white);
}

/* Legal pages */
.legal-page {
  background: var(--paper);
}

.legal-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 140px var(--pad) 40px;
}

.legal-hero {
  min-height: min(74vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: clamp(70px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
}

.legal-hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.legal-hero h1 {
  margin: clamp(70px, 10vh, 140px) 0 0;
  font-size: clamp(72px, 14vw, 240px);
  line-height: .72;
  letter-spacing: -.06em;
  font-weight: 300;
  text-transform: uppercase;
}

.legal-hero > p {
  width: min(58%, 760px);
  margin: clamp(52px, 7vw, 110px) 0 0 auto;
  font-size: clamp(22px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.legal-content {
  padding: clamp(80px, 10vw, 170px) 0 clamp(100px, 12vw, 190px);
}

.legal-section {
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: clamp(34px, 6vw, 110px);
  padding: clamp(42px, 5vw, 80px) 0;
  border-top: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-section > div {
  max-width: 900px;
}

.legal-section h2 {
  margin: 0 0 28px;
  font-size: clamp(32px, 4.1vw, 70px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 300;
}

.legal-section p:not(.micro) {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.65;
}

.legal-section a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.legal-footer {
  display: grid;
  grid-template-columns: repeat(3, max-content) 1fr;
  gap: 30px;
  align-items: center;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.legal-footer a,
.legal-footer p {
  margin: 0;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

@media (max-width: 1000px) {
  .contact-opening {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-availability {
    width: min(70%, 520px);
    justify-self: end;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .contact-final .footer-meta p:last-child {
    margin-left: 0;
  }

  .project-next {
    min-height: min(52vh, 560px);
  }

  .project-nav-grid {
    gap: 24px;
  }

  .project-nav-title {
    font-size: clamp(40px, 6vw, 72px);
  }

  .project-next .project-nav-home {
    width: 108px;
  }

  .project-nav-icon {
    width: 78px;
    height: 78px;
  }

  .project-nav-icon i {
    width: 22px;
    height: 29px;
  }

  .project-nav-icon i:nth-child(1) { transform: translate(21px, 20px) rotate(-8deg); }
  .project-nav-icon i:nth-child(2) { transform: translate(31px, 17px) rotate(6deg); }
  .project-nav-icon i:nth-child(3) { transform: translate(20px, 29px) rotate(-2deg); }
  .project-nav-icon i:nth-child(4) { transform: translate(29px, 26px) rotate(9deg); }

  .project-nav-home:hover .project-nav-icon i:nth-child(1),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(13px, 13px) rotate(-2deg); }
  .project-nav-home:hover .project-nav-icon i:nth-child(2),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(42px, 13px) rotate(2deg); }
  .project-nav-home:hover .project-nav-icon i:nth-child(3),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(13px, 39px) rotate(2deg); }
  .project-nav-home:hover .project-nav-icon i:nth-child(4),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(42px, 39px) rotate(-2deg); }

  .legal-hero > p {
    width: min(76%, 760px);
  }
}

@media (max-width: 700px) {
  .contact-final {
    padding-top: 80px;
    gap: 92px;
  }

  .contact-opening {
    gap: 54px;
    padding-bottom: 72px;
  }

  .contact-statement {
    font-size: 13vw;
  }

  .contact-availability {
    width: 100%;
    justify-self: stretch;
  }

  .contact-final .contact-main h2 {
    font-size: 25vw;
    margin-top: 64px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .contact-final .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-top {
    width: 58px;
    height: 58px;
  }

  .project-next {
    min-height: auto;
    padding-top: 44px;
  }

  .project-nav-grid {
    min-height: 320px;
    grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
    gap: 16px;
  }

  .project-next .project-nav-link {
    min-height: 0;
    gap: 16px;
  }

  .project-nav-kicker {
    font-size: 7px;
  }

  .project-nav-title {
    max-width: 8ch;
    font-size: clamp(28px, 7vw, 42px);
    line-height: .9;
  }

  .project-nav-link::after {
    width: 34px;
  }

  .project-nav-link:hover::after,
  .project-nav-link:focus-visible::after {
    width: 48px;
  }

  .project-next .project-nav-home {
    width: 78px;
    gap: 10px;
  }

  .project-nav-icon {
    width: 60px;
    height: 60px;
  }

  .project-nav-icon::before {
    inset: 8px;
    border-radius: 16px;
  }

  .project-nav-icon i {
    width: 16px;
    height: 21px;
    border-radius: 5px;
  }

  .project-nav-icon i:nth-child(1) { transform: translate(17px, 16px) rotate(-8deg); }
  .project-nav-icon i:nth-child(2) { transform: translate(24px, 14px) rotate(6deg); }
  .project-nav-icon i:nth-child(3) { transform: translate(16px, 23px) rotate(-2deg); }
  .project-nav-icon i:nth-child(4) { transform: translate(23px, 21px) rotate(9deg); }

  .project-nav-home:hover .project-nav-icon i:nth-child(1),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(10px, 10px) rotate(-2deg); }
  .project-nav-home:hover .project-nav-icon i:nth-child(2),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(33px, 10px) rotate(2deg); }
  .project-nav-home:hover .project-nav-icon i:nth-child(3),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(10px, 29px) rotate(2deg); }
  .project-nav-home:hover .project-nav-icon i:nth-child(4),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(33px, 29px) rotate(-2deg); }

  .project-nav-home-label {
    font-size: 6px;
  }

  .project-nav-meta {
    align-items: flex-start;
  }

  .project-nav-meta div {
    flex-direction: column;
    gap: 8px;
    text-align: right;
  }

  .legal-main {
    padding-top: 112px;
  }

  .legal-hero {
    min-height: 65vh;
  }

  .legal-hero h1 {
    font-size: 18vw;
  }

  .legal-hero > p {
    width: 100%;
    font-size: 7vw;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-section h2 {
    font-size: 9vw;
  }

  .legal-footer {
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
  }

  .legal-footer p {
    grid-column: 1 / -1;
    text-align: left;
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-top::before,
  .footer-top i,
  .project-nav-title,
  .project-nav-icon,
  .project-nav-icon i {
    transition: none;
  }
}

/* V29 / Kompakter Abschluss und reduzierte Rechtstexte --------------- */
.contact-final {
  padding-top: clamp(84px, 8vw, 126px);
  gap: clamp(62px, 7vw, 104px);
}

.contact-opening {
  grid-template-columns: 1.28fr .72fr;
  gap: clamp(44px, 7vw, 118px);
  padding-bottom: clamp(48px, 5vw, 76px);
}

.contact-statement-wrap > .micro,
.contact-availability > .micro {
  margin-bottom: clamp(20px, 2vw, 30px);
}

.contact-statement {
  font-size: clamp(44px, 6.15vw, 104px);
  line-height: .9;
}

.contact-availability > p:last-child {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.48;
}

.contact-main--compact {
  display: grid;
  grid-template-columns: .28fr 1.72fr;
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: clamp(26px, 3vw, 46px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-main--compact > .micro {
  margin: 0;
}

.contact-final .contact-main--compact .contact-cta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  margin: 0;
  font-size: clamp(52px, 8.4vw, 144px);
  line-height: .82;
  letter-spacing: -.055em;
  font-weight: 300;
}

.contact-cta > span {
  display: inline-block;
}

.contact-cta i {
  flex: 0 0 auto;
  font-style: normal;
  font-size: .32em;
  line-height: 1;
  transition: transform .35s var(--ease);
}

.contact-cta:hover i,
.contact-cta:focus-visible i {
  transform: translate(8px, -8px);
}

.site-footer {
  padding-top: 18px;
}

.legal-content--compact {
  padding-bottom: clamp(82px, 9vw, 130px);
}

.legal-content--compact .legal-section {
  padding-top: clamp(36px, 4vw, 62px);
  padding-bottom: clamp(36px, 4vw, 62px);
}

@media (max-width: 1000px) {
  .contact-opening {
    grid-template-columns: 1fr;
  }

  .contact-main--compact {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 700px) {
  .contact-final {
    gap: 64px;
  }

  .contact-opening {
    padding-bottom: 54px;
  }

  .contact-statement {
    font-size: 12.2vw;
  }

  .contact-final .contact-main--compact .contact-cta {
    font-size: 17vw;
  }

  .contact-cta i {
    font-size: .38em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cta i {
    transition: none;
  }
}


/* V32 / Projektnavigation mit radialer Übersicht --------------------- */
.project-next {
  min-height: clamp(400px, 50vh, 580px);
  padding-top: clamp(36px, 4vw, 58px);
  gap: clamp(24px, 3vw, 46px);
}

.project-nav-grid {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 76px);
  align-items: center;
}

.project-next .project-nav-link {
  width: 100%;
  max-width: none;
  min-height: clamp(190px, 18vw, 244px);
  padding: clamp(12px, 1.4vw, 18px) 0;
  gap: clamp(16px, 1.8vw, 24px);
}

.project-nav-link--prev {
  justify-self: stretch;
  align-items: flex-start;
  text-align: left;
  padding-right: clamp(16px, 2vw, 34px);
}

.project-nav-link--next {
  justify-self: stretch;
  align-items: flex-end;
  text-align: right;
  padding-left: clamp(16px, 2vw, 34px);
}

.project-nav-kicker {
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(248,247,243,.62);
}

.project-nav-title {
  max-width: 10ch;
  font-size: clamp(64px, 6vw, 112px);
  line-height: .9;
  letter-spacing: -.055em;
}

.project-nav-link--prev .project-nav-title {
  max-width: 8.5ch;
}

.project-nav-link--next .project-nav-title {
  margin-left: auto;
  max-width: 9.5ch;
}

.project-nav-link::after {
  width: 62px;
}

.project-nav-link:hover::after,
.project-nav-link:focus-visible::after {
  width: 98px;
}

.project-nav-overview {
  position: relative;
  width: min(100%, 380px);
  height: 300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.project-next .project-nav-home {
  position: relative;
  z-index: 4;
  width: 156px;
  gap: 14px;
}

.project-nav-icon {
  width: 104px;
  height: 104px;
}

.project-nav-home-label {
  font-size: 9px;
  letter-spacing: .18em;
}

.project-nav-overview .project-nav-icon::before,
.project-nav-overview .project-nav-icon i,
.project-nav-overview .project-nav-home-label {
  transition: transform .42s var(--ease), border-color .3s ease, background-color .3s ease, box-shadow .42s var(--ease), color .3s ease, opacity .3s ease;
}

.project-nav-overview:hover .project-nav-icon::before,
.project-nav-overview:focus-within .project-nav-icon::before,
.project-nav-home:hover .project-nav-icon::before,
.project-nav-home:focus-visible .project-nav-icon::before {
  transform: scale(.94);
  border-color: rgba(255,255,255,.34);
}

.project-nav-overview:hover .project-nav-icon i,
.project-nav-overview:focus-within .project-nav-icon i,
.project-nav-home:hover .project-nav-icon i,
.project-nav-home:focus-visible .project-nav-icon i {
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.05);
  box-shadow: 0 16px 30px rgba(0,0,0,.24);
}

.project-nav-overview:hover .project-nav-icon i:nth-child(1),
.project-nav-overview:focus-within .project-nav-icon i:nth-child(1),
.project-nav-home:hover .project-nav-icon i:nth-child(1),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(18px, 18px) rotate(-2deg); }
.project-nav-overview:hover .project-nav-icon i:nth-child(2),
.project-nav-overview:focus-within .project-nav-icon i:nth-child(2),
.project-nav-home:hover .project-nav-icon i:nth-child(2),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(55px, 18px) rotate(2deg); }
.project-nav-overview:hover .project-nav-icon i:nth-child(3),
.project-nav-overview:focus-within .project-nav-icon i:nth-child(3),
.project-nav-home:hover .project-nav-icon i:nth-child(3),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(18px, 52px) rotate(2deg); }
.project-nav-overview:hover .project-nav-icon i:nth-child(4),
.project-nav-overview:focus-within .project-nav-icon i:nth-child(4),
.project-nav-home:hover .project-nav-icon i:nth-child(4),
.project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(55px, 52px) rotate(-2deg); }

.project-nav-overview:hover .project-nav-home-label,
.project-nav-overview:focus-within .project-nav-home-label,
.project-nav-home:hover .project-nav-home-label,
.project-nav-home:focus-visible .project-nav-home-label {
  color: rgba(248,247,243,.86);
  transform: translateY(2px);
}

.project-orbit-link {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72) rotate(var(--r, 0deg));
  transform-origin: center;
  transition:
    transform .46s var(--ease),
    opacity .28s ease,
    visibility 0s linear .46s;
  z-index: 2;
}

.project-nav-overview:hover .project-orbit-link,
.project-nav-overview:focus-within .project-orbit-link {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: calc(var(--i, 0) * .02s);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1) rotate(var(--r, 0deg));
}

.project-orbit-label {
  font-size: 9px;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(248,247,243,.58);
  white-space: nowrap;
  transform: translateY(6px);
  transition: transform .38s var(--ease), color .3s ease, opacity .3s ease;
}

.project-nav-overview:hover .project-orbit-label,
.project-nav-overview:focus-within .project-orbit-label {
  transform: translateY(0);
}

.project-orbit-card {
  width: 40px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
  transition: transform .38s var(--ease), border-color .3s ease, background-color .3s ease, box-shadow .38s var(--ease);
}

.project-orbit-link:hover .project-orbit-label,
.project-orbit-link:focus-visible .project-orbit-label,
.project-orbit-link--current .project-orbit-label {
  color: rgba(248,247,243,.92);
}

.project-orbit-link:hover .project-orbit-card,
.project-orbit-link:focus-visible .project-orbit-card,
.project-orbit-link--current .project-orbit-card {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 36px rgba(0,0,0,.24);
  transform: translateY(-3px);
}

.project-orbit-link--current .project-orbit-card {
  background: rgba(255,255,255,.11);
}

.project-orbit-link--overnight { --x: -100px; --y: -78px; --r: -11deg; --i: 0; }
.project-orbit-link--vibiota  { --x: 0px;    --y: -112px; --r: -1deg;  --i: 1; }
.project-orbit-link--vitesse  { --x: 100px;  --y: -78px; --r: 9deg;   --i: 2; }
.project-orbit-link--ruwens   { --x: 122px;  --y: 8px;   --r: 12deg;  --i: 3; }
.project-orbit-link--lettering{ --x: 102px;  --y: 92px;  --r: 7deg;   --i: 4; }
.project-orbit-link--spatial  { --x: 0px;    --y: 120px; --r: 0deg;   --i: 5; }
.project-orbit-link--ai       { --x: -100px; --y: 92px;  --r: -8deg;  --i: 6; }

@media (max-width: 1400px) {
  .project-nav-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) minmax(0, 1fr);
  }

  .project-nav-title {
    font-size: clamp(56px, 5.4vw, 94px);
  }

  .project-nav-overview {
    width: min(100%, 330px);
    height: 278px;
  }

  .project-next .project-nav-home {
    width: 144px;
  }

  .project-nav-icon {
    width: 96px;
    height: 96px;
  }

  .project-orbit-card {
    width: 36px;
    height: 48px;
  }

  .project-orbit-link--overnight { --x: -90px; --y: -72px; }
  .project-orbit-link--vibiota  { --x: 0px;   --y: -102px; }
  .project-orbit-link--vitesse  { --x: 90px;  --y: -72px; }
  .project-orbit-link--ruwens   { --x: 108px; --y: 8px; }
  .project-orbit-link--lettering{ --x: 92px;  --y: 84px; }
  .project-orbit-link--spatial  { --x: 0px;   --y: 108px; }
  .project-orbit-link--ai       { --x: -90px; --y: 84px; }
}

@media (max-width: 860px) {
  .project-next {
    min-height: auto;
  }

  .project-nav-grid {
    grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
    gap: 18px;
  }

  .project-next .project-nav-link {
    width: 100%;
    min-height: 0;
    padding: 0;
  }

  .project-nav-kicker {
    font-size: 8px;
  }

  .project-nav-title {
    max-width: 8.5ch;
    font-size: clamp(30px, 7vw, 46px);
  }

  .project-nav-overview {
    width: 96px;
    height: auto;
  }

  .project-next .project-nav-home {
    width: 96px;
    gap: 10px;
  }

  .project-nav-icon {
    width: 64px;
    height: 64px;
  }

  .project-nav-icon::before {
    inset: 8px;
    border-radius: 16px;
  }

  .project-nav-icon i {
    width: 17px;
    height: 22px;
    border-radius: 5px;
  }

  .project-nav-icon i:nth-child(1) { transform: translate(18px, 17px) rotate(-8deg); }
  .project-nav-icon i:nth-child(2) { transform: translate(25px, 15px) rotate(6deg); }
  .project-nav-icon i:nth-child(3) { transform: translate(17px, 24px) rotate(-2deg); }
  .project-nav-icon i:nth-child(4) { transform: translate(24px, 22px) rotate(9deg); }

  .project-nav-overview:hover .project-nav-icon i:nth-child(1),
  .project-nav-overview:focus-within .project-nav-icon i:nth-child(1),
  .project-nav-home:hover .project-nav-icon i:nth-child(1),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(10px, 10px) rotate(-2deg); }
  .project-nav-overview:hover .project-nav-icon i:nth-child(2),
  .project-nav-overview:focus-within .project-nav-icon i:nth-child(2),
  .project-nav-home:hover .project-nav-icon i:nth-child(2),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(35px, 10px) rotate(2deg); }
  .project-nav-overview:hover .project-nav-icon i:nth-child(3),
  .project-nav-overview:focus-within .project-nav-icon i:nth-child(3),
  .project-nav-home:hover .project-nav-icon i:nth-child(3),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(10px, 31px) rotate(2deg); }
  .project-nav-overview:hover .project-nav-icon i:nth-child(4),
  .project-nav-overview:focus-within .project-nav-icon i:nth-child(4),
  .project-nav-home:hover .project-nav-icon i:nth-child(4),
  .project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(35px, 31px) rotate(-2deg); }

  .project-nav-home-label {
    font-size: 6px;
  }

  .project-orbit-link {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-nav-overview .project-nav-icon::before,
  .project-nav-overview .project-nav-icon i,
  .project-nav-overview .project-nav-home-label,
  .project-orbit-link,
  .project-orbit-label,
  .project-orbit-card {
    transition: none;
  }
}


/* V33 / Finaler Projektnavigations-Fix -------------------------------- */
/* Alte allgemeine Regeln für .project-next a waren spezifischer und
   haben Titelgröße sowie linke Ausrichtung überschrieben. */
.project-next .project-nav-link.project-nav-link--prev {
  justify-self: stretch !important;
  align-items: flex-start !important;
  text-align: left !important;
  padding-left: 0 !important;
  padding-right: clamp(18px, 2.6vw, 44px) !important;
}

.project-next .project-nav-link.project-nav-link--next {
  justify-self: stretch !important;
  align-items: flex-end !important;
  text-align: right !important;
  padding-left: clamp(18px, 2.6vw, 44px) !important;
  padding-right: 0 !important;
}

.project-next .project-nav-link .project-nav-kicker {
  font-size: clamp(9px, .62vw, 11px) !important;
  line-height: 1.3 !important;
  padding-bottom: 0 !important;
}

.project-next .project-nav-link .project-nav-title,
.project-next .project-nav-link span:last-child {
  display: block !important;
  font-size: clamp(42px, 3.35vw, 68px) !important;
  line-height: .92 !important;
  letter-spacing: -.045em !important;
  padding-bottom: 0 !important;
  text-transform: none !important;
}

.project-next .project-nav-link--prev .project-nav-title {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

.project-next .project-nav-link--next .project-nav-title {
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: right !important;
}

.project-nav-overview {
  transform: translateY(-12px);
}

/* Ruhigerer, gleichmäßigerer Orbit: mehr Abstand vom Footer,
   klarere Ellipse und gleichmäßige Verteilung. */
.project-orbit-link--overnight { --x: -96px; --y: -70px; --r: -10deg; }
.project-orbit-link--vibiota  { --x: 0px;   --y: -100px; --r: -1deg; }
.project-orbit-link--vitesse  { --x: 96px;  --y: -70px; --r: 9deg; }
.project-orbit-link--ruwens   { --x: 118px; --y: 4px;   --r: 11deg; }
.project-orbit-link--lettering{ --x: 88px;  --y: 76px;  --r: 7deg; }
.project-orbit-link--spatial  { --x: 0px;   --y: 100px; --r: 0deg; }
.project-orbit-link--ai       { --x: -88px; --y: 76px;  --r: -7deg; }

@media (max-width: 1400px) {
  .project-next .project-nav-link .project-nav-title,
  .project-next .project-nav-link span:last-child {
    font-size: clamp(38px, 3.8vw, 58px) !important;
  }

  .project-orbit-link--overnight { --x: -86px; --y: -64px; }
  .project-orbit-link--vibiota  { --x: 0px;   --y: -92px; }
  .project-orbit-link--vitesse  { --x: 86px;  --y: -64px; }
  .project-orbit-link--ruwens   { --x: 104px; --y: 4px; }
  .project-orbit-link--lettering{ --x: 80px;  --y: 70px; }
  .project-orbit-link--spatial  { --x: 0px;   --y: 92px; }
  .project-orbit-link--ai       { --x: -80px; --y: 70px; }
}

@media (max-width: 860px) {
  .project-nav-overview {
    transform: none;
  }

  .project-next .project-nav-link .project-nav-title,
  .project-next .project-nav-link span:last-child {
    font-size: clamp(27px, 7vw, 42px) !important;
  }

  .project-next .project-nav-link .project-nav-kicker {
    font-size: 7px !important;
  }
}


/* V34 project navigation refinements */
.project-next .project-nav-grid {
  width: min(100%, calc(var(--max) - clamp(56px, 6vw, 120px)));
  gap: clamp(26px, 4vw, 72px);
}

.project-next .project-nav-link--prev {
  justify-self: stretch;
  align-items: flex-start;
  text-align: left;
}

.project-next .project-nav-link--next {
  justify-self: stretch;
  align-items: flex-end;
  text-align: right;
}

.project-next .project-nav-overview {
  width: 156px;
  height: 156px;
}

.project-next .project-orbit-link {
  display: none !important;
}

@media (max-width: 1400px) {
  .project-next .project-nav-grid {
    width: min(100%, calc(var(--max) - clamp(40px, 5vw, 90px)));
  }
}

@media (max-width: 900px) {
  .project-next .project-nav-grid {
    width: min(100%, var(--max));
  }

  .project-next .project-nav-overview {
    width: 136px;
    height: 144px;
  }
}

/* V35 / project navigation rebuilt cleanly ---------------------------- */
.project-next .project-nav-grid {
  width: min(100%, var(--max)) !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  column-gap: clamp(40px, 5vw, 96px) !important;
  row-gap: 0 !important;
  align-items: center !important;
}

.project-next .project-nav-link {
  width: 100% !important;
  min-height: clamp(180px, 20vw, 230px) !important;
  padding: 0 !important;
  gap: clamp(16px, 1.9vw, 26px) !important;
  justify-content: center !important;
}

.project-next .project-nav-link.project-nav-link--prev {
  justify-self: start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

.project-next .project-nav-link.project-nav-link--next {
  justify-self: end !important;
  align-items: flex-end !important;
  text-align: right !important;
}

.project-next .project-nav-link .project-nav-kicker {
  font-size: clamp(9px, .62vw, 11px) !important;
  line-height: 1.25 !important;
  letter-spacing: .17em !important;
  color: rgba(248,247,243,.62) !important;
}

.project-next .project-nav-link .project-nav-title,
.project-next .project-nav-link span:last-child {
  display: block !important;
  font-size: clamp(52px, 4.15vw, 84px) !important;
  line-height: .9 !important;
  letter-spacing: -.05em !important;
  text-transform: none !important;
  max-width: 8.8ch !important;
}

.project-next .project-nav-link--prev .project-nav-title {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

.project-next .project-nav-link--next .project-nav-title {
  margin-left: auto !important;
  margin-right: 0 !important;
  text-align: right !important;
}

.project-next .project-nav-link::after {
  width: 62px !important;
}

.project-next .project-nav-link:hover::after,
.project-next .project-nav-link:focus-visible::after {
  width: 92px !important;
}

.project-next .project-nav-overview {
  width: 172px !important;
  height: 176px !important;
  margin: 0 auto !important;
  transform: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.project-next .project-nav-home {
  width: 172px !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: center !important;
}

.project-next .project-nav-icon {
  width: 112px !important;
  height: 112px !important;
  margin: 0 auto !important;
}

.project-next .project-nav-icon::before {
  inset: 10px !important;
  border-radius: 24px !important;
  border-color: rgba(255,255,255,.18) !important;
}

.project-next .project-nav-icon i {
  width: 28px !important;
  height: 36px !important;
  border-radius: 8px !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) rotate(var(--rot)) !important;
}

.project-next .project-nav-icon i:nth-child(1) { --tx: -8px; --ty: -8px; --rot: -8deg; }
.project-next .project-nav-icon i:nth-child(2) { --tx: 4px; --ty: -11px; --rot: 6deg; }
.project-next .project-nav-icon i:nth-child(3) { --tx: -10px; --ty: 3px; --rot: -2deg; }
.project-next .project-nav-icon i:nth-child(4) { --tx: 2px; --ty: 0px; --rot: 9deg; }

.project-next .project-nav-home:hover .project-nav-icon i:nth-child(1),
.project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(-50%, -50%) translate(-18px, -18px) rotate(-2deg) !important; }
.project-next .project-nav-home:hover .project-nav-icon i:nth-child(2),
.project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(-50%, -50%) translate(18px, -18px) rotate(2deg) !important; }
.project-next .project-nav-home:hover .project-nav-icon i:nth-child(3),
.project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(-50%, -50%) translate(-18px, 18px) rotate(2deg) !important; }
.project-next .project-nav-home:hover .project-nav-icon i:nth-child(4),
.project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(-50%, -50%) translate(18px, 18px) rotate(-2deg) !important; }

.project-next .project-nav-home-label {
  font-size: 8px !important;
  letter-spacing: .17em !important;
}

.project-next .project-orbit-link {
  display: none !important;
}

.project-next .project-nav-meta {
  width: min(100%, var(--max)) !important;
  margin: 0 auto !important;
}

@media (max-width: 1200px) {
  .project-next .project-nav-grid {
    column-gap: clamp(28px, 4vw, 56px) !important;
  }

  .project-next .project-nav-link .project-nav-title,
  .project-next .project-nav-link span:last-child {
    font-size: clamp(42px, 4.8vw, 62px) !important;
  }
}

@media (max-width: 900px) {
  .project-next .project-nav-grid {
    width: min(100%, var(--max)) !important;
    grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr) !important;
    column-gap: 18px !important;
  }

  .project-next .project-nav-link {
    min-height: 0 !important;
  }

  .project-next .project-nav-link .project-nav-kicker {
    font-size: 7px !important;
  }

  .project-next .project-nav-link .project-nav-title,
  .project-next .project-nav-link span:last-child {
    font-size: clamp(28px, 7vw, 42px) !important;
    max-width: 8ch !important;
  }

  .project-next .project-nav-overview,
  .project-next .project-nav-home {
    width: 112px !important;
    height: auto !important;
  }

  .project-next .project-nav-icon {
    width: 70px !important;
    height: 70px !important;
  }

  .project-next .project-nav-icon::before {
    inset: 8px !important;
    border-radius: 17px !important;
  }

  .project-next .project-nav-icon i {
    width: 18px !important;
    height: 24px !important;
    border-radius: 6px !important;
  }

  .project-next .project-nav-icon i:nth-child(1) { --tx: -5px; --ty: -5px; --rot: -8deg; }
  .project-next .project-nav-icon i:nth-child(2) { --tx: 3px; --ty: -7px; --rot: 6deg; }
  .project-next .project-nav-icon i:nth-child(3) { --tx: -6px; --ty: 2px; --rot: -2deg; }
  .project-next .project-nav-icon i:nth-child(4) { --tx: 1px; --ty: 0px; --rot: 9deg; }

  .project-next .project-nav-home:hover .project-nav-icon i:nth-child(1),
  .project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(1) { transform: translate(-50%, -50%) translate(-12px, -12px) rotate(-2deg) !important; }
  .project-next .project-nav-home:hover .project-nav-icon i:nth-child(2),
  .project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(2) { transform: translate(-50%, -50%) translate(12px, -12px) rotate(2deg) !important; }
  .project-next .project-nav-home:hover .project-nav-icon i:nth-child(3),
  .project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(3) { transform: translate(-50%, -50%) translate(-12px, 12px) rotate(2deg) !important; }
  .project-next .project-nav-home:hover .project-nav-icon i:nth-child(4),
  .project-next .project-nav-home:focus-visible .project-nav-icon i:nth-child(4) { transform: translate(-50%, -50%) translate(12px, 12px) rotate(-2deg) !important; }
}



/* Verhindert Emoji-Darstellung des Pfeils auf iOS */
.more-work-description span i {
  display: inline-block;
  font-size: 0;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.more-work-description span i::before {
  content: "\2197\FE0E"; /* ↗ plus Text-Variation-Selector */
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}



/* =========================================================
   MOBILE FIXES · JULI 2026
   ========================================================= */

@media (max-width: 767px) {

  /* 1. Overnight-Headline an verfügbare Breite anpassen */
  .overnight-page .project-hero h1 {
    max-width: 100%;
    overflow: hidden;
  }

  @media (max-width: 767px) {

  .overnight-page .project-hero h1 {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .overnight-page .project-hero h1 > span:first-child {
    display: block;
    max-width: 100%;
    font-size: min(17vw, 7.5rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  .overnight-page .project-hero h1 > span.serif {
    display: block;
    font-size: min(11.5vw, 4.8rem);
    line-height: 1.05;
    margin-top: -0.06em;
    padding-bottom: 0.16em;
    white-space: nowrap;
  }
}
  
  


  /* 2. Caption eindeutig dem oberen Spatial-Bild zuordnen */
  .spatial-page figure figcaption {
    margin-top: 0.65rem;
    margin-bottom: 2.75rem;
  }


  /* 3. Projektkarten konsequent alternierend darstellen */
  .project-nav-overview
  .project-orbit-link:nth-child(odd of .project-orbit-link) {
    background-color: #f0eee8;
    color: #11110f;
  }

  .project-nav-overview
  .project-orbit-link:nth-child(even of .project-orbit-link) {
    background-color: #11110f;
    color: #f8f7f3;
  }

  .project-nav-overview
  .project-orbit-link:nth-child(odd of .project-orbit-link)
  .project-orbit-card {
    background-color: #f0eee8;
    color: #11110f;
  }

  .project-nav-overview
  .project-orbit-link:nth-child(even of .project-orbit-link)
  .project-orbit-card {
    background-color: #11110f;
    color: #f8f7f3;
  }


  /* 4 und 5. Rechtliche Seitentitel passend verkleinern */
  .datenschutz-page h1,
  .impressum-page h1 {
    max-width: 100%;
    margin-right: 0;
    line-height: 0.92;
    letter-spacing: -0.045em;
    white-space: nowrap;
    overflow: visible;
  }

  .datenschutz-page h1 {
    font-size: min(11.7vw, 4.6rem);
  }

  .impressum-page h1 {
    font-size: min(12.8vw, 5rem);
  }
}



/* =========================================================
   MOBILE FIXES · PROJEKTNAVIGATION UND LEGAL FOOTER
   ========================================================= */

@media (max-width: 700px) {

  /* ---------------------------------------------
     1. Projektnavigation sicher im Viewport halten
     --------------------------------------------- */

  .project-next {
    width: 100%;
    overflow: hidden;
  }

  .project-next .project-nav-grid {
    width: 100% !important;
    max-width: 100% !important;

    /* Mehr Platz für die beiden Projekttitel,
       weniger Platz für das mittlere Übersichtsmodul */
    grid-template-columns:
      minmax(0, 1fr)
      82px
      minmax(0, 1fr) !important;

    column-gap: 8px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .project-next .project-nav-link {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .project-next .project-nav-link--prev {
    justify-self: stretch !important;
    align-items: flex-start !important;
  }

  .project-next .project-nav-link--next {
    justify-self: stretch !important;
    align-items: flex-end !important;
  }

  .project-next .project-nav-link .project-nav-title,
  .project-next .project-nav-link span:last-child {
    width: 100% !important;
    max-width: 100% !important;

    font-size: clamp(23px, 6.2vw, 31px) !important;
    line-height: 0.92 !important;

    white-space: normal !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .project-next .project-nav-link--prev .project-nav-title {
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .project-next .project-nav-link--next .project-nav-title {
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: right !important;
  }

  .project-next .project-nav-overview,
  .project-next .project-nav-home {
    width: 82px !important;
    max-width: 82px !important;
  }

  .project-next .project-nav-icon {
    width: 62px !important;
    height: 62px !important;
  }


  /* ---------------------------------------------
     2. Footer auf Impressum und Datenschutz ordnen
     --------------------------------------------- */

  .legal-footer {
    display: grid;
    grid-template-columns:
      max-content
      max-content
      max-content;

    justify-content: space-between;
    align-items: center;

    gap: 18px 12px;
    width: 100%;
    padding-top: 24px;
  }

  .legal-footer a {
    white-space: nowrap;
  }

  .legal-footer p {
    grid-column: 1 / -1;
    margin: 16px 0 0;
    text-align: left;
  }
}

/* =========================================================
   NIEDRIGE DESKTOPFENSTER
   Hero darf höher als der Viewport werden und normal scrollen
   ========================================================= */

@media (min-width: 1001px) and (max-height: 950px) {
  
  .home-hero {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .home-hero .hero-sticky {
    position: relative !important;
    top: auto !important;

    height: auto !important;
    min-height: 720px !important;

    display: grid !important;
    grid-template-columns:
      minmax(0, 1.05fr)
      minmax(340px, 0.95fr) !important;

    grid-template-rows:
      auto
      auto
      auto
      auto !important;

    align-items: start !important;
    column-gap: clamp(32px, 5vw, 90px) !important;
    row-gap: 24px !important;

    padding-top: 34px !important;
    padding-bottom: 48px !important;
  }


  /* obere Metadatenzeile */

  .home-hero .hero-meta {
    position: relative !important;
    inset: auto !important;

    grid-column: 1 / -1 !important;
    grid-row: 1 !important;

    margin: 0 0 16px !important;
  }


  /* Name */

  .home-hero .hero-title {
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    grid-column: 1 !important;
    grid-row: 2 !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;

    font-size: clamp(74px, 9.2vw, 150px) !important;
    line-height: 0.74 !important;
    letter-spacing: -0.055em !important;
  }


  /* Claim nicht mehr über dem Namen positionieren */

  .home-hero .hero-tagline-block {
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    grid-column: 1 !important;
    grid-row: 3 !important;

    width: 100% !important;
    max-width: 680px !important;

    margin: 12px 0 0 !important;
  }

  .home-hero .hero-tagline {
    margin: 0 !important;

    font-size: clamp(34px, 3.5vw, 58px) !important;
    line-height: 0.92 !important;
  }

  .home-hero .hero-disciplines {
    margin-top: 12px !important;
  }


  /* Profilbild rechts */

  .home-hero .hero-photo {
    position: relative !important;
    inset: auto !important;
    transform: none !important;

    grid-column: 2 !important;
    grid-row: 2 / 4 !important;

    align-self: end !important;

    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;

    margin: 0 !important;
  }

  .home-hero .hero-photo img {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px !important;
    object-fit: cover !important;
  }


  /* unterer Beschreibungstext bleibt sichtbar */

  .home-hero .hero-caption {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    display: block !important;

    grid-column: 1 !important;
    grid-row: 4 !important;

    width: 100% !important;
    max-width: 430px !important;

    margin: 8px 0 0 !important;

    font-size: 16px !important;
    line-height: 1.38 !important;
  }


  /* Kreis am Bild kleiner halten */

  .home-hero .roundel {
    width: 90px !important;
    height: 90px !important;
  }
}