:root {
  --void: #070706;
  --ink: #0e0d0c;
  --charcoal: #161412;
  --mineral: #efeae1;
  --burgundy: #8a2a38;
  --amber: #c8893a;
  --muted: #9a9286;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  background: var(--void);
  color: var(--mineral);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[data-lang="de"] [data-copy="en"],
html[data-lang="en"] [data-copy="de"] {
  display: none !important;
}

body.is-cursor-fine,
body.is-cursor-fine a,
body.is-cursor-fine button {
  cursor: none;
}

::selection {
  background: var(--burgundy);
  color: var(--mineral);
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a,
input,
textarea {
  font-family: inherit;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--mineral);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2000;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor.is-on {
  opacity: 1;
}

.cursor.is-expand {
  width: 48px;
  height: 48px;
  transition: width 0.28s var(--ease-out), height 0.28s var(--ease-out);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--void);
  display: grid;
  place-items: center;
  clip-path: inset(0% 0% 0% 0%);
  pointer-events: none;
}

.loader__beam {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: center;
  background: linear-gradient(180deg, transparent, var(--mineral) 18%, var(--amber) 50%, var(--mineral) 82%, transparent);
}

.loader__line,
.loader__brand {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  opacity: 0;
}

.loader__line {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 22em;
}

.loader__brand {
  position: absolute;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.85;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  color: var(--mineral);
}

.nav[data-theme="paper"] {
  color: var(--ink);
}

.nav a,
.nav button {
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
}

.logo {
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  justify-self: start;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang {
  display: flex;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.lang button[aria-pressed="true"] {
  color: var(--amber);
}

.sound-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sound-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  width: 14px;
}

.sound-bars i {
  display: block;
  width: 2px;
  height: 100%;
  background: currentColor;
  transform-origin: bottom center;
  transform: scaleY(0.28);
}

.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(1) {
  animation: soundPulse 0.72s ease-in-out infinite;
}
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(2) {
  animation: soundPulse 0.72s ease-in-out 0.12s infinite;
}
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(3) {
  animation: soundPulse 0.72s ease-in-out 0.22s infinite;
}
.sound-toggle[aria-pressed="true"] .sound-bars i:nth-child(4) {
  animation: soundPulse 0.72s ease-in-out 0.08s infinite;
}

@keyframes soundPulse {
  0%,
  100% {
    transform: scaleY(0.28);
  }
  50% {
    transform: scaleY(1);
  }
}

.nav__cta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--void);
}

.hero__stills,
.hero__video,
.hero__beam,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__stills {
  z-index: 0;
}

.hero__stills img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.6s var(--ease-out);
}

.hero__stills img.is-on {
  opacity: 1;
}

.hero.has-video .hero__stills {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

.hero__video {
  z-index: 1;
  object-fit: cover;
  opacity: 0;
}

.hero.has-video .hero__video {
  opacity: 1;
}

.hero__beam {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(239, 234, 225, 0.18) 18%, rgba(200, 137, 58, 0.28) 50%, rgba(239, 234, 225, 0.12) 82%, transparent 100%);
  width: 3px;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: screen;
}

.hero__wash {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.35) 0%, transparent 28%, transparent 48%, rgba(7, 7, 6, 0.88) 100%),
    radial-gradient(90% 70% at 50% 40%, transparent 32%, rgba(7, 7, 6, 0.45) 100%);
}

.hero__wordmark {
  position: absolute;
  left: -1vw;
  bottom: -0.28em;
  z-index: 2;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.75;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
}

.hero__copy {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 28px 15vh;
  max-width: min(78vw, calc(100% - 36px));
}

.hero__kicker,
.kicker {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5.85rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.hero-line > span {
  display: block;
  transform: translateY(110%);
  white-space: nowrap;
}

.hero__lede {
  margin: 22px 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(239, 234, 225, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.btn--solid {
  background: var(--mineral);
  color: var(--ink);
}

.btn--ghost {
  border-color: rgba(239, 234, 225, 0.35);
  color: var(--mineral);
}

.hero__aside {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 4;
  transform: translateY(-40%);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

.portal-pin,
.pin-spacer:has(.portal) {
  position: relative;
  z-index: 3;
}

.portal {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--void);
  display: grid;
  place-items: center;
}

.portal__corner {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: clamp(2.8rem, 10vw, 9.5rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.75;
  pointer-events: none;
  mix-blend-mode: difference;
}

.portal__left {
  left: 6vw;
  transform: translateY(-50%);
}

.portal__right {
  right: 6vw;
  transform: translateY(-50%);
}

.portal__frame {
  position: relative;
  width: 12vw;
  height: 16vw;
  overflow: hidden;
  z-index: 1;
}

.portal__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-fold-pin,
.pin-spacer:has(.intro-fold) {
  position: relative;
  z-index: 4;
}

.intro-fold {
  height: 100svh;
  background: var(--mineral);
  color: var(--ink);
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
}

.intro-fold__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 6vw;
  align-items: end;
  padding: 18vh 7vw 10vh;
}

.intro-fold__kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 22px;
}

.intro-fold__title {
  margin: 0;
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.8rem, 6.4vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
}

.intro-fold__body {
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #2a2723;
}

.intro-fold__body p + p {
  margin-top: 0.85em;
}

.intro-fold__ask {
  margin-top: 1.4em;
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.transition,
.principle {
  background: var(--void);
  padding: 8vh 6vw;
  text-align: center;
}

.transition p,
.principle p {
  margin: 0 auto;
  max-width: 68rem;
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.transition p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45em 1.5em;
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
}

.transition p span {
  white-space: nowrap;
}

.projects {
  position: relative;
  z-index: 4;
  background: var(--void);
}

.project {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  transform-origin: center top;
}

.project__media,
.project__veil {
  position: absolute;
  inset: 0;
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project__veil {
  background: linear-gradient(180deg, rgba(7, 7, 6, 0.12), rgba(7, 7, 6, 0.78));
}

.project__copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 36px 48px;
}

.project__index {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.project__title {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.project__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 16px;
  max-width: 920px;
}

.project__lede {
  margin: 0;
  max-width: 28rem;
  color: rgba(239, 234, 225, 0.82);
  line-height: 1.45;
}

.project__tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.case,
.make,
.approach,
.vanish,
.built,
.stance,
.measures {
  position: relative;
  z-index: 5;
}

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--mineral);
  color: var(--ink);
}

.case--invert {
  background: var(--charcoal);
  color: var(--mineral);
}

.case__copy,
.case__media {
  min-height: 100%;
}

.case__copy {
  padding: 10vh 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case h2,
.make h2,
.vanish h2,
.built h2,
.stance h2,
.contact__title {
  margin: 0 0 22px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.04;
  max-width: 18em;
}

.prose {
  max-width: 36rem;
  line-height: 1.55;
}

.prose p + p {
  margin-top: 1em;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  margin: 36px 0 0;
}

.facts dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.case--invert .facts dt {
  color: var(--amber);
}

.facts dd {
  margin: 6px 0 0;
  font-size: 1.05rem;
}

.case__media img {
  width: 100%;
  height: 100%;
  min-height: 72vh;
  object-fit: cover;
}

.statement {
  background: var(--void);
  padding: 12vh 6vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
  gap: 6vw;
  align-items: end;
}

.statement h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.statement p {
  margin: 0;
  max-width: 28rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.5;
}

.make {
  background: var(--mineral);
  color: var(--ink);
  padding: 12vh 6vw 10vh;
}

.make__head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4vw;
  align-items: end;
  max-width: none;
  margin-bottom: 6vh;
}

.make__head h2 {
  margin: 0;
  max-width: 12em;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.make__head .kicker {
  margin-bottom: 0;
}

.make__lead,
.make__split,
.make__lab {
  display: grid;
  gap: 4vw;
  align-items: center;
  margin-bottom: 5vh;
}

.make__lead {
  grid-template-columns: 0.9fr 1.1fr;
}

.make__split,
.make__lab {
  grid-template-columns: 1.1fr 0.9fr;
}

.make h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.make img {
  width: 100%;
  height: min(56vh, 480px);
  object-fit: cover;
}

.make__sonic {
  margin: 0 0 6vh;
  padding: 6vh 6vw;
  background: var(--ink);
  color: var(--mineral);
}

.make__sonic h3 {
  color: var(--amber);
}

.approach {
  background: var(--void);
  padding: 12vh 6vw 8vh;
  display: block;
}

.approach__head {
  margin: 0 0 7vh;
  max-width: none;
  position: static;
}

.approach__head h2 {
  margin: 0;
  max-width: 20em;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.approach__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6vw;
  border-top: 1px solid rgba(239, 234, 225, 0.12);
}

.approach__list li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.85rem 1.1rem;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(239, 234, 225, 0.12);
}

.approach__list li > div {
  display: block;
}

.approach p {
  margin: 0;
  max-width: none;
  color: rgba(239, 234, 225, 0.78);
  line-height: 1.5;
}

.approach__list span {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
  padding-top: 6px;
}

.approach h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  padding-top: 2px;
}

.vanish,
.built {
  background: var(--mineral);
  color: var(--ink);
  padding: 14vh 6vw;
}

.vanish h2,
.built h2 {
  max-width: 12em;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.vanish__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
  margin-top: 48px;
}

.vanish__grid p {
  margin: 0;
  line-height: 1.5;
}

.built {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.built h2 {
  max-width: 12em;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.built ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.built li {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  padding: 14px 0;
  border-bottom: 1px solid rgba(14, 13, 12, 0.12);
}

.stance {
  background: var(--void);
  padding: 14vh 6vw 12vh;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 8vw;
}

.stance blockquote {
  grid-column: 1 / -1;
  margin: 0 0 7vh;
  max-width: none;
}

.stance blockquote p {
  margin: 0;
  max-width: 28em;
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.stance cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}

.stance__body p {
  max-width: 34rem;
  line-height: 1.55;
  color: rgba(239, 234, 225, 0.8);
}

.stance__media img {
  width: 100%;
  height: min(56vh, 460px);
  object-fit: cover;
}

.measures {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 8vh 6vw;
}

.measures strong {
  display: block;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  font-weight: 500;
  color: var(--amber);
  letter-spacing: -0.055em;
}

.measures h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
  font-weight: 500;
}

.measures p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.contact {
  background: var(--void);
  padding: 14vh 6vw 12vh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 7vw;
  align-items: start;
}

.contact__title {
  max-width: none;
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.contact__lede {
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(239, 234, 225, 0.78);
}

.contact form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 0;
}

.contact .full,
.contact button {
  grid-column: 1 / -1;
}

.contact label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact input,
.contact textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(239, 234, 225, 0.22);
  color: var(--mineral);
  padding: 10px 0;
  font-size: 1rem;
}

.contact textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  min-height: 1.5em;
  margin-top: 18px;
  color: var(--amber);
  line-height: 1.5;
}

.form-note a {
  color: inherit;
}

.site-footer {
  background: var(--mineral);
  color: var(--ink);
  padding: 36px 7vw;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  font-size: 13px;
  line-height: 1.7;
}

.site-footer strong {
  display: block;
  font-family: "Cormorant Garamond", ui-serif, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.site-footer nav,
.site-footer div {
  display: flex;
  flex-direction: column;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.magnetic {
  display: inline-block;
  will-change: transform;
}

@media (max-width: 980px) {
  .nav {
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .nav__links {
    gap: 10px;
    font-size: 10px;
    justify-content: center;
  }

  .sound-toggle span:not(.sound-bars) {
    display: none;
  }

  .hero__copy {
    max-width: none;
    padding: 0 16px 12vh;
  }

  .hero__aside {
    display: none;
  }

  .hero__wordmark {
    font-size: 22vw;
    left: -4vw;
  }

  .hero__title {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .hero-line > span {
    white-space: normal;
  }

  .intro-fold__inner,
  .case,
  .make__head,
  .make__lead,
  .make__split,
  .make__lab,
  .approach,
  .vanish__grid,
  .statement,
  .built,
  .stance,
  .measures,
  .site-footer,
  .contact {
    grid-template-columns: 1fr;
  }

  .approach__head h2,
  .make__head h2,
  .contact__title,
  .statement h2 {
    max-width: none;
  }

  .contact form {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .approach__list {
    grid-template-columns: 1fr;
  }

  .approach__list li {
    grid-template-columns: 2.4rem 1fr;
  }

  .approach__list li > div {
    display: block;
  }

  .approach h3 {
    margin-bottom: 8px;
  }

  .approach__list li p {
    grid-column: 2;
  }

  .intro-fold__inner {
    padding: 22vh 6vw 8vh;
    align-items: start;
  }

  .case__media img,
  .make img,
  .stance__media img {
    min-height: 48vh;
    height: 48vh;
  }

  .built ul {
    columns: 1;
  }

  .project__row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pixelengel-offer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(52px, 8vw, 140px);
  overflow: hidden;
  padding: clamp(76px, 9vw, 150px) 7vw 40px;
  color: #f7f3ec;
  background:
    radial-gradient(circle at 78% 18%, rgba(138, 42, 56, 0.35), transparent 34%),
    linear-gradient(135deg, #0b0a0a 0%, #171212 58%, #0b0a0a 100%);
  border-top: 1px solid rgba(200, 137, 58, 0.38);
}

.pixelengel-offer::before {
  position: absolute;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  top: -34%;
  right: -8%;
  border: 1px solid rgba(239, 234, 225, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pixelengel-offer__intro,
.pixelengel-offer__details,
.pixelengel-offer__disclosure {
  position: relative;
  z-index: 1;
}

.pixelengel-offer__brand {
  display: inline-block;
  width: clamp(148px, 14vw, 210px);
  margin-bottom: clamp(54px, 7vw, 94px);
}

.pixelengel-offer__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.pixelengel-offer__eyebrow {
  margin: 0 0 22px;
  color: #d7a664;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pixelengel-offer h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Instrument Serif", ui-serif, Georgia, serif;
  font-size: clamp(3.2rem, 6.3vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

.pixelengel-offer__copy {
  max-width: 680px;
  margin: clamp(32px, 4vw, 58px) 0 0;
  color: rgba(247, 243, 236, 0.67);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.65;
}

.pixelengel-offer__details {
  align-self: end;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(247, 243, 236, 0.14);
  background: rgba(247, 243, 236, 0.045);
  backdrop-filter: blur(18px);
}

.pixelengel-offer__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.14);
}

.pixelengel-offer__meta p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pixelengel-offer__details ul {
  display: grid;
  gap: 0;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.pixelengel-offer__details li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.1);
  color: rgba(247, 243, 236, 0.75);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pixelengel-offer__details li::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c8893a;
  content: "";
}

.pixelengel-offer__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.pixelengel-offer__cta,
.pixelengel-offer__link {
  color: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.pixelengel-offer__cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #0b0a0a;
  background: #f7f3ec;
  border-radius: 999px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.pixelengel-offer__cta:hover {
  color: #fff;
  background: #8a2a38;
  transform: translateY(-2px);
}

.pixelengel-offer__link {
  padding-block: 10px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.42);
}

.pixelengel-offer__disclosure {
  grid-column: 1 / -1;
  margin: clamp(62px, 8vw, 110px) 0 0;
  padding-top: 24px;
  color: rgba(247, 243, 236, 0.4);
  border-top: 1px solid rgba(247, 243, 236, 0.1);
  font-size: 0.67rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .pixelengel-offer {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-inline: 6vw;
  }

  .pixelengel-offer__brand {
    margin-bottom: 56px;
  }

  .pixelengel-offer__details {
    padding: 28px;
  }

  .pixelengel-offer__disclosure {
    grid-column: auto;
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .nav {
    height: 60px;
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .nav__links,
  .sound-toggle,
  .nav__cta {
    display: none;
  }

  .nav__right {
    gap: 0;
  }

  .lang {
    gap: 12px;
  }

  .pixelengel-offer {
    padding: 68px 20px 32px;
  }

  .pixelengel-offer h2 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .pixelengel-offer__details {
    padding: 24px 20px;
  }

  .pixelengel-offer__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pixelengel-offer__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pixelengel-offer__cta,
  .pixelengel-offer__link {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video,
  .hero-line > span,
  .intro-fold,
  [data-reveal] {
    transform: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .cursor {
    display: none !important;
  }

  body.is-cursor-fine {
    cursor: auto;
  }
}
