:root {
  --bg: #eeefec;
  --paper: #f5f6f3;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --line: rgba(255, 77, 0, 0.16);
  --orange: #ff4d00;
  --orange-glow: #ff4d00;
  --max-width: 1680px;
  --gutter: clamp(20px, 3vw, 44px);
  --section-space: clamp(90px, 14vw, 220px);
  --contact-frame-gap: clamp(24px, 3vw, 44px);
  --contact-top-gap: clamp(42px, 5vw, 72px);
  --contact-bottom-gap: clamp(24px, 3vw, 44px);
  --work-entry-gap: clamp(28px, 5vh, 72px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --hero-h: 200vh;
  --work-h: 136vh;
  --about-h: 200vh;
  --services-h: 182vh;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  mix-blend-mode: normal;
  color: var(--text);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  transition:
    opacity 0.52s var(--ease),
    transform 0.52s var(--ease);
}

.site-header.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  width: 100%;
}

.brand,
.site-nav a {
  pointer-events: auto;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  font-weight: 700;
  position: relative;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  position: relative;
  opacity: 0.88;
  transition:
    opacity 0.3s ease,
    font-weight 0.2s ease;
}

.footer__inner a {
  position: relative;
}

.brand::after,
.site-nav a::after,
.footer__inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25em;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s var(--ease);
}

.brand:hover,
.site-nav a:hover,
.footer__inner a:hover {
  opacity: 1;
  font-weight: 700;
}

.brand:hover::after,
.site-nav a:hover::after,
.footer__inner a:hover::after {
  transform: scaleX(1);
}

.hero-shell {
  height: var(--hero-h);
  position: relative;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: clip;
  background: #000;
}

.hero-image {
  position: absolute;
  inset: 0;
  transform: scale(1.03);
  transform-origin: center center;
  will-change: transform, opacity;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.07)),
    linear-gradient(to right, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.01) 42%, rgba(0, 0, 0, 0.05));
}

.hero-copy {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: clamp(32px, 6vh, 60px);
  width: min(760px, calc(100vw - 40px));
  color: white;
  z-index: 3;
  opacity: 0;
  transform: translate3d(0, 80px, 0);
  will-change: transform, opacity;
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

.hero-title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 8.5ch;
}

.container {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section {
  position: relative;
}

.split-intro {
  min-height: var(--work-h);
  padding-top: var(--work-entry-gap);
  overflow: clip;
}

.split-intro__pin {
  position: sticky;
  top: var(--contact-frame-gap);
  height: calc(100vh - (var(--contact-frame-gap) * 2));
}

.split-intro__stage {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(18px, 2vw, 40px);
  align-items: stretch;
}

.split-intro__text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding:
    clamp(72px, 10vh, 132px)
    clamp(18px, 2vw, 30px)
    clamp(54px, 8vh, 104px)
    clamp(34px, 4vw, 72px);
}

.split-intro__text {
  width: min(25vw, 340px);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.4vh, 34px);
}

.split-intro__letter {
  display: block;
  margin: 0;
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(82px, 11.9vw, 184px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--orange);
  transform-origin: center top;
  will-change: transform, opacity, filter;
}

.has-js .split-intro__letter {
  opacity: 0.14;
  transform: translate3d(0, -72px, 0) scale(0.92);
  filter: blur(6px);
}

.split-intro__visual {
  --work-visual-edge: clamp(14px, 1.8vw, 20px);
  position: relative;
  align-self: center;
  height: auto;
  max-height: 100%;
  width: auto;
  min-width: 0;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vh, 20px);
  padding: 0 var(--work-visual-edge) var(--work-visual-edge) 0;
  box-sizing: border-box;
  overflow: visible;
  background: var(--bg);
}

.split-intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  z-index: 5;
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: calc(100% - var(--work-visual-edge));
  height: auto;
  display: flex;
  justify-content: center;
  padding: 0;
  background: var(--bg);
  overflow: visible;
}

.image-layer {
  position: relative;
  inset: auto;
  display: flex;
  justify-content: center;
  padding: 0;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.image-layer img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - (var(--contact-frame-gap) * 2) - 72px);
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
}

.image-layer.active {
  opacity: 1;
  visibility: visible;
}

.work-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, var(--work-media-width, calc(100% - var(--work-visual-edge))));
  max-width: calc(100% - var(--work-visual-edge));
  padding-top: 2px;
}

.work-nav__button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.work-nav__button:hover,
.work-nav__button:focus-visible {
  opacity: 0.72;
  transform: translate3d(0, -1px, 0);
}

.work-nav__status {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.break-section {
  height: clamp(96px, 16vh, 160px);
  min-height: 96px;
  position: relative;
  overflow: hidden;
}

.break-section::before,
.break-section::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 60vw;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 77, 0, 0), rgba(255, 77, 0, 0.22), rgba(255, 77, 0, 0));
  transform: translate3d(-8vw, 0, 0);
  opacity: 0.56;
}

.break-section::after {
  left: auto;
  right: 0;
  width: 42vw;
  bottom: 34%;
  opacity: 0.22;
  transform: translate3d(4vw, 0, 0);
}

.about {
  min-height: var(--about-h);
  overflow: clip;
  padding: 0;
}

.about__pin {
  position: sticky;
  top: var(--contact-frame-gap);
  height: calc(100vh - (var(--contact-frame-gap) * 2));
}

.about__stage {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(18px, 2vw, 40px);
  align-items: stretch;
}

.about__text-wrap {
  display: flex;
  align-items: center;
  min-width: 0;
  padding:
    clamp(90px, 10vh, 132px)
    clamp(42px, 5vw, 96px)
    clamp(68px, 8vh, 104px)
    clamp(42px, 6vw, 108px);
}

.about__text {
  width: min(36vw, 520px);
  position: relative;
  z-index: 2;
}

.about__eyebrow {
  margin: 0 0 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.about__lead {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.8vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 500;
  max-width: none;
  white-space: nowrap;
  color: var(--orange);
}

.about__copy-frame {
  position: relative;
  max-width: 46ch;
  overflow: hidden;
}

.about__blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
  will-change: transform;
}

.about__paragraph {
  flex: 0 0 auto;
  margin: 0;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.42;
  text-align: justify;
  text-wrap: pretty;
}

.has-js .about__paragraph {
  opacity: 1;
  transform: none;
}

.about__visual {
  --about-visual-edge: clamp(14px, 1.8vw, 20px);
  position: relative;
  align-self: center;
  height: auto;
  max-height: 100%;
  width: auto;
  min-width: 0;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--about-visual-edge) var(--about-visual-edge) 0;
  box-sizing: border-box;
  overflow: visible;
  background: var(--bg);
}

.about__portrait {
  position: relative;
  width: 100%;
  max-width: calc(100% - var(--about-visual-edge));
  margin: 0;
  display: flex;
  justify-content: center;
  overflow: visible;
  background: var(--bg);
}

.about__portrait img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - (var(--contact-frame-gap) * 2) - 72px);
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  transform: none;
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: none;
  z-index: 3;
}

.services {
  min-height: var(--services-h);
  padding: 0;
  overflow: clip;
}

.services__pin {
  position: sticky;
  top: 0;
  height: 100vh;
}

.services__stage {
  min-height: 100%;
}

.services__inner {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(8px, 1.3vh, 18px);
  height: 100vh;
  padding:
    clamp(92px, 11vh, 138px)
    clamp(34px, 4vw, 72px)
    clamp(68px, 8vh, 110px)
    clamp(34px, 4vw, 72px);
}

.services__label {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(22px, 3vh, 36px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.service-word {
  position: relative;
  margin: 0;
  font-size: clamp(56px, 9.8vw, 168px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(17, 17, 17, 0.92);
  transform-origin: left center;
  will-change: transform, color;
  transition: color 0.28s var(--ease);
}

.service-word.is-active {
  color: var(--orange);
}

.service-word:nth-child(2) { margin-left: 0; }
.service-word:nth-child(3) { margin-left: clamp(42px, 6vw, 96px); }
.service-word:nth-child(4) { margin-left: clamp(10px, 1.8vw, 30px); }
.service-word:nth-child(5) { margin-left: clamp(78px, 10vw, 164px); }
.service-word:nth-child(6) { margin-left: clamp(26px, 4vw, 62px); }

.contact-preline {
  height: 1px;
  background: var(--line);
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.contact {
  min-height: 178vh;
  padding: 0 0 clamp(8px, 1vw, 14px);
}

.contact__wrap {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  position: sticky;
  top: var(--contact-top-gap);
  height: calc(100vh - var(--contact-top-gap) - var(--contact-bottom-gap));
  display: grid;
  place-items: center;
}

.contact-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  height: 100%;
  background: var(--orange);
  padding: clamp(24px, 4vw, 40px);
  transform-origin: bottom center;
  transform: perspective(1400px) rotateX(14deg) translateY(14vh);
  opacity: 0.08;
  transition:
    box-shadow 0.25s ease;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  isolation: isolate;
}

.contact-card__title {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(108px, 22vw, 360px);
  line-height: 0.78;
  letter-spacing: -0.09em;
  font-weight: 700;
  color: #111;
  isolation: isolate;
  transform-origin: center center;
  transition:
    transform 0.11s ease-out,
    text-shadow 0.11s ease-out;
}

.contact-card__title::before {
  content: attr(data-echo);
  position: absolute;
  inset: 0;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(17, 17, 17, 0.98);
  opacity: 0;
  transform: translate3d(0.08em, 0.06em, 0) rotate(-2.5deg);
  transition:
    opacity 0.09s linear,
    transform 0.11s ease-out;
  pointer-events: none;
}

.contact-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(40px, 4.4vw, 68px);
  width: 100%;
}

.contact-card__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #111;
}

.contact-card__email {
  color: inherit;
}

.contact-card__separator {
  color: rgba(17, 17, 17, 0.58);
}

.contact-card__phone {
  color: rgba(17, 17, 17, 0.82);
}

.contact-card__title:hover {
  transform: translate3d(-0.02em, -0.01em, 0) rotate(-1.3deg);
  text-shadow: 0.07em 0.07em 0 rgba(248, 246, 241, 0.82);
}

.contact-card__title:hover::before {
  opacity: 1;
  transform: translate3d(0.055em, 0.05em, 0) rotate(-1.8deg);
}


.footer {
  padding: 0;
}

.footer--floating {
  position: relative;
  width: 100%;
  margin-top: var(--contact-frame-gap);
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  transition:
    opacity 0.52s var(--ease),
    transform 0.52s var(--ease);
}

.footer--floating.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.footer__inner {
  width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 16px;
  font-size: 12px;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.legal-main {
  min-height: 100vh;
  padding: clamp(120px, 16vh, 180px) 0 48px;
}

.legal-shell {
  width: min(980px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.legal-title {
  margin: 0 0 40px;
  font-size: clamp(42px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 500;
}

.legal-note {
  max-width: 62ch;
  margin: 0 0 44px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--muted);
}

.legal-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.legal-section p {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
}

.legal-section + .legal-section {
  margin-top: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2em;
  max-width: 60ch;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.6;
}

.legal-section li + li {
  margin-top: 10px;
}

.legal-page {
  background: var(--orange);
  color: var(--text);
}

.legal-page .site-header {
  mix-blend-mode: normal;
  color: var(--text);
  pointer-events: auto;
  opacity: 1;
  transform: none;
}

.legal-page .brand::after,
.legal-page .site-nav a::after,
.legal-page .footer__inner a::after {
  background: var(--orange);
  box-shadow: 0 1px 0 rgba(245, 243, 238, 0.9);
}

.legal-page .legal-main {
  padding: clamp(128px, 17vh, 188px) 0 28px;
}

.legal-page .legal-shell {
  width: min(1120px, calc(100% - (var(--gutter) * 2)));
}

.legal-page .legal-kicker,
.legal-page .legal-note,
.legal-page .footer__inner {
  color: rgba(17, 17, 17, 0.76);
}

.legal-page .legal-section {
  border-top-color: rgba(17, 17, 17, 0.16);
}

.legal-page .legal-title {
  max-width: 10ch;
}

.legal-page .legal-callout {
  margin: 0 0 44px;
  padding: 20px 22px;
  max-width: 72ch;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.legal-page .legal-callout p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
}

.legal-page .legal-meta {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.62);
}

.legal-page .legal-inline-note {
  color: rgba(17, 17, 17, 0.66);
}

@media (max-width: 1100px) {
  .split-intro__stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .split-intro {
    min-height: auto;
    padding: var(--section-space) 0;
  }

  .split-intro__pin {
    position: relative;
    top: auto;
    height: auto;
  }

  .split-intro__text-wrap {
    padding: 0 clamp(28px, 5vw, 56px);
    justify-content: center;
  }

  .split-intro__visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none !important;
    width: min(100%, 760px);
    max-width: none;
    height: auto;
    max-height: none;
    margin: 0 auto;
    padding: 0 var(--work-visual-edge) var(--work-visual-edge);
  }

  .split-intro__text {
    width: 100%;
    max-width: 260px;
  }

  .split-intro__letter {
    font-size: clamp(94px, 18vw, 200px);
  }

  .about {
    min-height: auto;
    padding: var(--section-space) 0;
  }

  .about__pin {
    position: relative;
    top: auto;
    height: auto;
  }

  .about__stage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .about__text-wrap {
    padding: 0 clamp(28px, 5vw, 56px);
  }

  .about__copy-frame {
    max-width: 34ch;
    overflow: visible;
    height: auto !important;
  }

  .about__blocks {
    gap: 22px;
    transform: none !important;
  }

  .about__visual {
    width: 100%;
    height: auto;
    max-height: none;
    padding: 0 var(--about-visual-edge) var(--about-visual-edge);
  }

  .about__portrait {
    transform: none !important;
  }

  .services {
    min-height: auto;
    padding: var(--section-space) 0;
  }

  .services__pin {
    position: relative;
    top: auto;
    height: auto;
  }

  .services__stage {
    min-height: auto;
  }

  .services__inner {
    min-height: 100vh;
    padding:
      0
      clamp(28px, 5vw, 56px)
      0
      clamp(28px, 5vw, 56px);
    gap: 14px;
  }

  .service-word {
    position: relative;
    display: block;
    margin-bottom: 0;
  }

  .service-word:nth-child(2) { margin-left: 0; }
  .service-word:nth-child(3) { margin-left: 56px; }
  .service-word:nth-child(4) { margin-left: 12px; }
  .service-word:nth-child(5) { margin-left: 88px; }
  .service-word:nth-child(6) { margin-left: 26px; }
}

@media (max-width: 900px) {
  .services__inner {
    gap: 10px;
  }

  .service-word:nth-child(2) { margin-left: 0; }
  .service-word:nth-child(3) { margin-left: 34px; }
  .service-word:nth-child(4) { margin-left: 8px; }
  .service-word:nth-child(5) { margin-left: 56px; }
  .service-word:nth-child(6) { margin-left: 18px; }
}

@media (max-width: 768px) {
  :root {
    --hero-h: 175vh;
    --work-h: auto;
    --about-h: auto;
    --services-h: auto;
  }

  .site-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header__inner {
    padding: 14px 18px;
    align-items: flex-start;
    gap: 10px 18px;
    flex-wrap: wrap;
  }

  .brand,
  .site-nav a {
    font-size: 11px;
  }

  .hero-copy {
    left: 18px;
    right: 18px;
    width: auto;
    bottom: 24px;
  }

  .hero-title {
    max-width: 7.8ch;
    font-size: clamp(34px, 12vw, 58px);
    line-height: 0.92;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .split-intro {
    padding-top: 0;
  }

  .split-intro__stage {
    gap: 26px;
  }

  .split-intro__visual {
    order: 0;
    width: min(calc(100vw - 36px), 620px);
    margin: 0 auto;
    max-height: none;
    padding: 0 0 var(--work-visual-edge);
  }

  .image-stack {
    padding: 0;
  }

  .split-intro__text-wrap {
    padding: 0 22px;
  }

  .split-intro__text {
    padding: 0;
    max-width: 220px;
  }

  .split-intro__letter {
    font-size: clamp(74px, 24vw, 150px);
    line-height: 0.8;
  }

  .image-layer img {
    max-height: 68vh;
  }

  .work-nav {
    padding: 0;
  }

  .about__text-wrap {
    padding: 0 22px;
  }

  .about__visual {
    width: min(calc(100vw - 44px), 520px);
    margin: 0 auto;
    max-height: none;
    padding: 0 0 var(--about-visual-edge);
  }

  .about__blocks {
    gap: 20px;
  }

  .break-section {
    height: clamp(76px, 14vh, 112px);
    min-height: 76px;
  }

  .services__inner {
    min-height: auto;
    padding: 0 22px 8px;
    gap: 8px;
  }

  .services__label {
    margin-bottom: 28px;
  }

  .service-word {
    font-size: clamp(42px, 12vw, 72px);
    line-height: 0.9;
  }

  .service-word:nth-child(2) { margin-left: 0; }
  .service-word:nth-child(3) { margin-left: 20px; }
  .service-word:nth-child(4) { margin-left: 4px; }
  .service-word:nth-child(5) { margin-left: 32px; }
  .service-word:nth-child(6) { margin-left: 12px; }

  .contact {
    min-height: auto;
    padding: clamp(24px, 3vw, 36px) 0 18px;
  }

  .contact__wrap {
    position: relative;
    top: auto;
    height: auto;
    display: block;
  }

  .contact-card {
    min-height: 68vh;
    height: auto;
    padding: 22px 18px;
    transform: perspective(1400px) rotateX(0deg) translateY(0) !important;
    opacity: 1 !important;
  }

  .contact-card__title {
    font-size: clamp(70px, 21vw, 120px);
  }

  .contact-card__content {
    gap: 10px;
  }

  .footer--floating {
    position: static;
    width: auto;
    margin-top: clamp(18px, 5vw, 28px);
    z-index: auto;
    mix-blend-mode: normal;
    color: inherit;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links {
    justify-content: flex-start;
  }
}
