:root {
  --ink: #070808;
  --ink-soft: #101212;
  --surface: #151717;
  --paper: #f0f0ec;
  --muted: #969b98;
  --line: rgba(240, 240, 236, 0.16);
  --line-strong: rgba(240, 240, 236, 0.34);
  --container: min(92vw, 1540px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
::selection { background: var(--paper); color: var(--ink); }
img { display: block; width: 100%; height: auto; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
:where(a, button, input):focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding-block: clamp(7rem, 12vw, 12rem); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 2px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  animation: navbarIn .7s .08s var(--ease) both;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 8, 8, .91);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.nav-shell {
  height: 6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.brand { min-height: 1.5rem; display: inline-flex; width: max-content; align-items: center; gap: 1.1rem; transition: opacity .25s ease; }
.brand:hover { opacity: .72; }
.brand__name { font-size: 1.4rem; font-weight: 650; letter-spacing: .16em; line-height: 1; }
.brand__descriptor {
  max-width: 5rem;
  padding-left: 1.1rem;
  border-left: 1px solid var(--line-strong);
  color: #b8bcba;
  font-size: .6rem;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: clamp(1.6rem, 3vw, 3.4rem); }
.desktop-nav a {
  position: relative;
  min-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  color: #c9ccca;
  font-size: .78rem;
  letter-spacing: .08em;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -.55rem;
  height: 1px;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.button {
  min-height: 3.4rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: .9rem 1.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--paper);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}
.button:hover, .button:focus-visible { border-color: var(--paper); transform: translateY(-2px); }
.button--nav { justify-self: end; min-height: 2.85rem; padding-inline: 1.35rem; }
.button--light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.button--light:hover, .button--light:focus-visible { background: transparent; color: var(--paper); }

.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: max(44rem, 100svh);
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}
.hero__media, .hero__shade, .hero__grid { position: absolute; inset: 0; }
.hero__media { z-index: -3; transform: scale(1.02); animation: heroIn 1.15s var(--ease) both; }
.hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.13);
  will-change: transform;
}
.hero__shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(4,5,5,.86) 0%, rgba(4,5,5,.56) 35%, rgba(4,5,5,.08) 66%, rgba(4,5,5,.12) 100%);
}
.hero__grid {
  z-index: -1;
  width: var(--container);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  border-inline: 1px solid rgba(255,255,255,.08);
}
.hero__content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding-top: clamp(8.5rem, 15vh, 11rem);
  padding-bottom: clamp(6.5rem, 9vh, 8rem);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: 1.5rem;
}
.eyebrow {
  margin: 0;
  color: #b8bcba;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero__eyebrow {
  grid-column: 1 / 6;
  grid-row: 1;
  font-size: .75rem;
  letter-spacing: .24em;
  animation: textIn .72s .18s var(--ease) both;
}
.hero h1 {
  grid-column: 1 / 11;
  grid-row: 2;
  align-self: center;
  max-width: none;
  margin: 2rem 0;
  font-size: clamp(5rem, 9.5vw, 10.5rem);
  font-weight: 380;
  line-height: .82;
  letter-spacing: -.075em;
}
.hero h1 span { display: block; width: max-content; max-width: 100%; overflow: hidden; animation: textIn .78s var(--ease) both; }
.hero h1 span:nth-child(1) { animation-delay: .26s; }
.hero h1 span:nth-child(2) {
  margin-top: .2em;
  margin-left: clamp(4rem, 9vw, 11rem);
  font-size: .7em;
  letter-spacing: -.055em;
  white-space: nowrap;
  animation-delay: .34s;
}
.hero__bottom {
  grid-column: 1 / 6;
  grid-row: 3;
  width: auto;
  margin: 0;
  animation: textIn .72s .46s var(--ease) both;
}
.hero__bottom > p { max-width: 28rem; margin: 0 0 2rem; color: #d1d3d1; font-size: clamp(1rem, 1.15vw, 1.15rem); line-height: 1.55; }
.button-row { display: flex; align-items: center; gap: 2rem; }
.text-link {
  min-height: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.text-link span { font-size: 1.1rem; transition: transform .28s var(--ease); }
.text-link:hover span, .text-link:focus-visible span { transform: translate(.25rem, .25rem); }
.hero__index { display: none; }
.hero__scroll { position: absolute; left: max(4vw, calc((100vw - 1540px) / 2)); bottom: 2.8rem; min-height: 1.5rem; display: flex; align-items: center; gap: 1rem; color: #a4a9a6; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; }
.hero__scroll i { width: 4rem; height: 1px; background: var(--line-strong); overflow: hidden; }
.hero__scroll i::after { content: ""; display: block; width: 45%; height: 100%; background: var(--paper); animation: scrollLine 1.8s ease-in-out infinite; }

.section-label { display: flex; align-items: center; gap: 1.3rem; margin-bottom: clamp(3.5rem, 6vw, 6rem); }
.section-label span { color: var(--muted); font-size: .65rem; letter-spacing: .18em; }
.section-label p { margin: 0; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.section-label::after { content: ""; width: 4rem; height: 1px; background: var(--line-strong); }

.intro { background: var(--paper); color: var(--ink); }
.intro .section-label span { color: #666b68; }
.intro .section-label::after { background: rgba(7,8,8,.3); }
.intro__layout { display: grid; grid-template-columns: minmax(0, 2.3fr) minmax(18rem, .7fr); align-items: end; gap: 8vw; }
.display-copy { margin: 0; font-size: clamp(3rem, 6.4vw, 7rem); font-weight: 430; line-height: .98; letter-spacing: -.055em; }
.display-copy em { color: #7b817e; font-family: Georgia, serif; font-weight: 400; }
.intro__aside { padding-bottom: .55rem; }
.intro__aside p { margin: 0; font-size: 1rem; line-height: 1.7; }
.intro__aside p + p { margin-top: 1.5rem; color: #686e6b; }

.services {
  background: #0b0d0d;
  overflow: clip;
}
.section-heading { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 3vw; align-items: end; margin-bottom: 5rem; }
.section-heading .section-label { margin: 0; align-self: start; }
.section-heading h2 { margin: 0; font-size: clamp(3.6rem, 7vw, 7.5rem); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.section-heading > p { margin: 0; max-width: 23rem; color: var(--muted); }
.services__layout {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 10rem);
}
.services .section-heading {
  position: sticky;
  top: 8.5rem;
  display: block;
  margin: 0;
}
.services .section-heading .section-label {
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.services .section-heading h2 {
  font-size: clamp(5.5rem, 9vw, 10rem);
  font-weight: 380;
  line-height: .78;
  letter-spacing: -.075em;
}
.services .section-heading > p {
  max-width: 20rem;
  margin-top: 3.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.service-list {
  border-top: 1px solid var(--line-strong);
}
.service {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr) auto;
  align-items: start;
  column-gap: clamp(1.2rem, 2.5vw, 2.5rem);
  min-height: 0;
  padding: clamp(2rem, 3.5vw, 3.2rem) 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .45s var(--ease);
}
.service::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--ease);
}
.service__number {
  padding-top: .45rem;
  color: #7d827f;
  font-size: .7rem;
  letter-spacing: .18em;
  transition: color .35s var(--ease);
}
.service h3 {
  margin: 0;
  color: #b7bcba;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 380;
  line-height: 1.02;
  letter-spacing: -.045em;
  transition: color .35s var(--ease), transform .4s var(--ease);
}
.service p {
  grid-column: 2 / 3;
  max-width: 34rem;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(.75rem);
  transition: max-height .42s var(--ease), margin .42s var(--ease), opacity .3s ease, transform .42s var(--ease);
}
.service__mark {
  padding-top: .08rem;
  color: #777d7a;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1;
  transition: color .35s var(--ease), transform .4s var(--ease);
}
.service:hover { border-color: transparent; }
.service:hover::after { transform: scaleX(1); transform-origin: left; }
.service:hover .service__number { color: var(--paper); }
.service:hover h3 { color: var(--paper); transform: translateX(.65rem); }
.service:hover p {
  max-height: 6rem;
  margin-top: 1.25rem;
  opacity: 1;
  transform: translateY(0);
}
.service:hover .service__mark { color: var(--paper); transform: translate(.2rem, -.2rem); }
.service-list:not(:hover) .service:first-child h3 { color: var(--paper); }
.service-list:not(:hover) .service:first-child p {
  max-height: 6rem;
  margin-top: 1.25rem;
  opacity: 1;
  transform: translateY(0);
}
.service-list:not(:hover) .service:first-child .service__number,
.service-list:not(:hover) .service:first-child .service__mark { color: var(--paper); }

.works { padding-bottom: 0; background: var(--ink); }
.section-heading--split h2 { grid-column: 2; }
.section-heading--split > p { grid-column: 3; }
.showcase { margin-top: 5rem; }
.work {
  --media-x: 0px;
  --media-y: 0px;
  --media-scale: 1;
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0d0f0f;
  cursor: crosshair;
}
.work img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.65) contrast(1.04);
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(var(--media-scale));
  transition: transform .68s var(--ease), filter .4s ease;
  will-change: transform;
}
.work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,5,.8), transparent 45%); opacity: .8; transition: opacity .35s ease; }
.work figcaption {
  position: absolute;
  z-index: 2;
  inset: auto clamp(1.5rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  transition: transform .4s var(--ease);
}
.work figcaption span { display: block; margin-bottom: .55rem; color: #c0c4c1; font-size: .62rem; letter-spacing: .17em; text-transform: uppercase; }
.work figcaption h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 400; letter-spacing: -.035em; }
.work .work__index { margin: 0; white-space: nowrap; }
.work:hover, .work:focus-visible { --media-scale: 1.025; }
.work:hover img, .work:focus-visible img { filter: saturate(.9) contrast(1.08); }
.work:hover::after, .work:focus-visible::after { opacity: 1; }
.work:hover figcaption, .work:focus-visible figcaption { transform: translateY(-.25rem); }
.work--lead { height: min(75vw, 56rem); }
.work--lead img { object-position: center 55%; }
.showcase__pair { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 1.2rem; padding-top: 1.2rem; }
.work--portrait { height: clamp(31rem, 55vw, 52rem); }
.work--portrait img { object-position: 46% center; }
.work--landscape { height: clamp(25rem, 38vw, 37rem); margin-top: 8rem; }

.about { background: var(--paper); color: var(--ink); }
.about .section-label span { color: #666b68; }
.about .section-label::after { background: rgba(7,8,8,.3); }
.about__layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8vw; }
.about h2 { margin: 0; font-size: clamp(6rem, 16vw, 16rem); font-weight: 550; line-height: .72; letter-spacing: -.08em; }
.about__lead { max-width: 43rem; margin: 3.4rem 0 0; font-size: clamp(1.5rem, 2.5vw, 2.6rem); line-height: 1.18; letter-spacing: -.03em; }
.about__copy { padding-top: 1rem; }
.about__copy p { margin: 0; font-size: 1rem; line-height: 1.75; }
.about__copy p + p { margin-top: 1.5rem; color: #686e6b; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 8rem; border-block: 1px solid rgba(7,8,8,.19); }
.metric { min-height: 12rem; padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(7,8,8,.19); }
.metric:last-child { border-right: 0; }
.metric strong { font-size: clamp(2.2rem, 3.4vw, 4rem); font-weight: 420; letter-spacing: -.055em; }
.metric span { color: #686e6b; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.concept-note { margin: 1.4rem 0 0; color: #666b68; font-size: .7rem; }

.process { background: var(--ink-soft); }
.section-heading--compact { grid-template-columns: 1fr 3fr; margin-bottom: 6rem; }
.section-heading--compact h2 { grid-column: 2; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { min-height: 18rem; padding: 2.2rem 2rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); transition: background .32s var(--ease); }
.process-list li:last-child { border-right: 0; }
.process-list li:hover { background: rgba(255,255,255,.035); }
.process-list span { color: var(--muted); font-size: .65rem; letter-spacing: .17em; }
.process-list h3 { margin: auto 0 1rem; font-size: 1.25rem; font-weight: 450; transition: transform .32s var(--ease); }
.process-list li:hover h3 { transform: translateY(-.3rem); }
.process-list p { min-height: 4.5rem; margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.65; }

.cta { position: relative; min-height: min(58rem, 88svh); display: grid; place-items: center; isolation: isolate; overflow: hidden; }
.cta__media, .cta__overlay { position: absolute; inset: 0; }
.cta__media { z-index: -2; }
.cta__media img { height: 100%; object-fit: cover; object-position: center 55%; transform: scale(1.015); transition: transform .8s var(--ease); will-change: transform; }
.cta:hover .cta__media img { transform: scale(1.035); }
.cta__overlay { z-index: -1; background: rgba(2,3,3,.65); }
.cta__content { text-align: center; }
.cta h2 { margin: 1.8rem auto 3rem; font-size: clamp(3.5rem, 7.4vw, 8rem); font-weight: 400; line-height: .92; letter-spacing: -.06em; }

.contacts { background: var(--ink); }
.contacts__header { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.contacts h2 { margin: 0; font-size: clamp(4.6rem, 11vw, 11rem); font-weight: 400; line-height: .82; letter-spacing: -.07em; }
.round-action { width: clamp(8.5rem, 13vw, 13rem); aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between; padding: 1.6rem; border: 1px solid var(--line-strong); border-radius: 50%; background: transparent; color: var(--paper); text-align: left; cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease); }
.round-action span { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.round-action i { align-self: flex-end; font-size: 1.5rem; font-style: normal; }
.round-action:hover, .round-action:focus-visible { background: var(--paper); color: var(--ink); transform: translateY(-.2rem) rotate(-3deg); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 8rem; border-top: 1px solid var(--line); font-style: normal; }
.contact-item { min-height: 10.5rem; padding: 2rem 1.5rem 0 0; border-right: 1px solid var(--line); }
.contact-item + .contact-item { padding-left: 1.5rem; }
.contact-item:last-child { border-right: 0; }
.contact-item > span { display: block; margin-bottom: 2.3rem; color: var(--muted); font-size: .65rem; letter-spacing: .17em; text-transform: uppercase; }
.contact-item a, .contact-item p, .contact-item button { margin: 0; padding: 0; border: 0; background: none; color: var(--paper); font-size: 1rem; font-style: normal; text-align: left; cursor: pointer; }
.contact-item a, .contact-item button { min-height: 1.5rem; display: inline-flex; align-items: center; }
.contact-item a, .contact-item button { border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.contact-item a:hover, .contact-item a:focus-visible, .contact-item button:hover, .contact-item button:focus-visible { border-color: var(--paper); }
.contact-item small { display: block; margin-top: .5rem; color: #858a87; font-size: .65rem; }

.site-footer { padding: 2rem 0; background: var(--paper); color: var(--ink); }
.footer__top { min-height: 13rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(7,8,8,.2); }
.footer-brand { font-size: clamp(4rem, 13vw, 13rem); font-weight: 600; line-height: .8; letter-spacing: -.075em; }
.footer__top p { max-width: 8rem; font-size: .65rem; line-height: 1.5; letter-spacing: .16em; text-align: right; text-transform: uppercase; }
.footer__bottom { padding-top: 2rem; display: grid; grid-template-columns: 1fr 1fr auto; color: #666b68; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.footer__bottom p { margin: 0; }
.site-footer a { transition: opacity .25s ease; }
.site-footer a:hover { opacity: .62; }
.footer__bottom a { min-height: 1.5rem; display: inline-flex; align-items: center; justify-content: flex-end; color: var(--ink); }

.booking-dialog {
  width: min(42rem, calc(100vw - 2rem));
  max-height: calc(100svh - 2rem);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--ink-soft);
  color: var(--paper);
  overflow: auto;
}
.booking-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.booking-dialog[open] { animation: dialogIn .45s var(--ease) both; }
.dialog__inner { position: relative; padding: clamp(2rem, 6vw, 4.5rem); }
.dialog__close { position: absolute; top: 1.4rem; right: 1.4rem; width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); background: transparent; color: var(--paper); font-size: 1.8rem; font-weight: 200; line-height: 1; cursor: pointer; transition: background .3s ease, color .3s ease; }
.dialog__close:hover, .dialog__close:focus-visible { background: var(--paper); color: var(--ink); }
.booking-dialog h2 { margin: 1.6rem 0; font-size: clamp(3rem, 7vw, 5rem); font-weight: 400; line-height: .88; letter-spacing: -.055em; }
.dialog__intro { max-width: 30rem; margin: 0 0 2.5rem; color: var(--muted); }
.booking-dialog form { display: grid; gap: 1.3rem; }
.booking-dialog label > span:first-child { display: block; margin-bottom: .45rem; color: var(--muted); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.booking-dialog input { width: 100%; padding: .9rem 0; border: 0; border-bottom: 1px solid var(--line-strong); border-radius: 0; background: transparent; color: var(--paper); }
.booking-dialog input:focus { border-color: var(--paper); }
.booking-dialog input::placeholder { color: #5f6461; }
.booking-dialog .phone-control { display: flex; align-items: center; gap: .65rem; border-bottom: 1px solid var(--line-strong); transition: border-color .25s ease; }
.booking-dialog .phone-control:focus-within { border-color: var(--paper); }
.booking-dialog .phone-prefix { flex: 0 0 auto; color: var(--paper); font-size: 1rem; letter-spacing: 0; line-height: 1; }
.booking-dialog .phone-control input { min-width: 0; border-bottom: 0; }
.booking-dialog form .button { margin-top: 1rem; }
.booking-dialog form small { color: #858a87; font-size: .65rem; text-align: center; }
.booking-dialog form .field-hint { display: block; margin-top: .45rem; color: #858a87; text-align: left; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 2rem; width: min(28rem, calc(100vw - 2rem)); padding: 1rem 1.2rem; border: 1px solid var(--line-strong); background: var(--paper); color: var(--ink); font-size: .78rem; text-align: center; transform: translate(-50%, calc(100% + 4rem)); opacity: 0; transition: transform .45s var(--ease), opacity .45s ease; }
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

.js .reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity .68s var(--ease), transform .68s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .work.reveal:not(.is-visible) { --media-scale: 1.045; }

@keyframes heroIn { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.02); } }
@keyframes textIn { from { opacity: 0; transform: translateY(2.2rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0% { transform: translateX(-120%); } 60%, 100% { transform: translateX(240%); } }
@keyframes dialogIn { from { opacity: 0; transform: translateY(1.5rem) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes dialogMobileIn { from { opacity: 0; transform: translate3d(0, .75rem, 0); } to { opacity: 1; transform: none; } }
@keyframes navbarIn { from { opacity: 0; transform: translateY(-1rem); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1100px) {
  .desktop-nav { gap: 1.5rem; }
  .intro__layout { grid-template-columns: 1.7fr .8fr; gap: 5vw; }
  .section-heading { grid-template-columns: .65fr 1.7fr 1fr; }
  .services__layout { gap: 4rem; }
  .service { grid-template-columns: 2.4rem minmax(0, 1fr) auto; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid rgba(7,8,8,.19); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-item:nth-child(2) { border-right: 0; }
  .contact-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 800px) {
  :root { --container: calc(100vw - 2.5rem); }
  html.dialog-open { scroll-behavior: auto; }
  body.dialog-open { overflow: hidden; overscroll-behavior: none; }
  .section { padding-block: 6.5rem; }
  .site-header { animation: none; }
  .site-header.is-scrolled { background: rgba(7, 8, 8, .97); backdrop-filter: none; }
  .nav-shell { position: relative; z-index: 1; height: 5rem; grid-template-columns: 1fr auto; animation: navbarIn .7s .08s var(--ease) both; }
  .desktop-nav, .button--nav { display: none; }
  .brand__descriptor { display: none; }
  .brand { min-height: 2.75rem; }
  .menu-toggle { position: relative; z-index: 2; display: grid; gap: .42rem; width: 3rem; height: 3rem; place-content: center; padding: 0; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 1.3rem; height: 1px; background: var(--paper); transition: transform .35s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.24rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.24rem) rotate(-45deg); }
  .mobile-menu { position: fixed; inset: 0; min-height: 100dvh; display: flex; flex-direction: column; justify-content: center; overflow-y: auto; overscroll-behavior: contain; padding: 7rem 1.25rem max(2rem, env(safe-area-inset-bottom)); background: var(--ink); visibility: hidden; opacity: 0; transform: translateY(-1rem); transition: visibility .4s, opacity .4s ease, transform .4s var(--ease); }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-menu nav { border-top: 1px solid var(--line); }
  .mobile-menu nav a { min-height: 3.5rem; display: flex; align-items: center; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: clamp(2.2rem, 11vw, 4rem); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
  .mobile-menu nav a span { width: 2rem; color: var(--muted); font-size: .6rem; letter-spacing: .16em; }
  .mobile-menu .button { margin-top: 2rem; }
  .mobile-menu p { margin: auto 0 0; color: var(--muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
  .hero { min-height: 47rem; }
  .hero__media img { object-position: 61% center; transform: scale(1.12); }
  .hero__shade { background: linear-gradient(90deg, rgba(4,5,5,.85), rgba(4,5,5,.1)), linear-gradient(0deg, rgba(4,5,5,.9) 0%, transparent 65%); }
  .hero__grid { background: none; }
  .hero__content {
    padding-top: 10rem;
    padding-bottom: 7rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero h1 { margin: 1.5rem 0 auto; font-size: clamp(3.7rem, 15vw, 6.8rem); }
  .hero h1 span { width: auto; }
  .hero h1 span:nth-child(2) {
    margin-top: 0;
    margin-left: 0;
    font-size: 1em;
    letter-spacing: -.065em;
    white-space: normal;
  }
  .hero__bottom { width: 100%; margin-top: 3rem; }
  .hero__bottom > p { max-width: 25rem; }
  .text-link, .hero__scroll { min-height: 2.75rem; }
  .text-link span { display: none; }
  .hero__index { display: none; }
  .hero__scroll { left: 1.25rem; bottom: 2rem; }
  .intro__layout, .about__layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .intro__aside { max-width: 32rem; }
  .section-heading, .section-heading--compact { grid-template-columns: 1fr; align-items: start; gap: 2rem; }
  .section-heading .section-label { margin-bottom: 2rem; }
  .section-heading h2, .section-heading--split h2, .section-heading--compact h2, .section-heading--split > p { grid-column: 1; }
  .section-heading > p { max-width: 30rem; }
  .services__layout { grid-template-columns: 1fr; gap: 4.5rem; }
  .services .section-heading {
    position: static;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
  }
  .services .section-heading .section-label { grid-column: 1 / -1; margin-bottom: 2.5rem; }
  .services .section-heading h2 { grid-column: 1; }
  .services .section-heading > p { grid-column: 2; align-self: end; margin: 0; }
  .service-list { width: 93%; margin-left: 7%; }
  .service { grid-template-columns: 2rem minmax(0, 1fr); gap: 1rem; padding-block: 2.2rem; }
  .service p {
    grid-column: 2 / -1;
    max-height: none;
    margin-top: 1rem;
    padding-right: 3rem;
    opacity: 1;
    transform: none;
  }
  .service__mark { display: none; }
  .service:hover h3 { transform: translateX(.35rem); }
  .showcase { margin-top: 3rem; }
  .work--lead { height: 40rem; }
  .work--lead img { object-position: 57% center; }
  .showcase__pair { grid-template-columns: 1fr; }
  .work--portrait, .work--landscape { height: 34rem; margin-top: 0; }
  .about__copy { max-width: 36rem; }
  .about h2 { font-size: clamp(5.5rem, 25vw, 10rem); }
  .metrics { margin-top: 5rem; }
  .contacts__header { align-items: center; }
  .round-action { padding: 1.35rem; }
  .contact-grid { margin-top: 5rem; }
  .contact-item a, .contact-item button { min-height: 2.75rem; display: inline-flex; align-items: center; }
  .footer__bottom a { min-height: 2.75rem; display: inline-flex; align-items: center; justify-content: flex-end; }
  .hero__media img, .work img, .cta__media img { will-change: auto; }
  .js .reveal { transform: translate3d(0, 1rem, 0); transition-duration: .56s; }
  .booking-dialog {
    max-height: calc(100dvh - 1rem);
    overscroll-behavior: contain;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
  }
  .booking-dialog::backdrop { background: rgba(0,0,0,.86); backdrop-filter: none; }
  .booking-dialog[open] { animation: dialogMobileIn .28s var(--ease) both; }
  .booking-dialog input { scroll-margin-block: 4.5rem 2rem; }
  .booking-dialog input:focus,
  .booking-dialog input:focus-visible { outline: none; box-shadow: none; }
}

@media (max-width: 560px) {
  :root { --container: calc(100vw - 2rem); }
  .section { padding-block: 5.75rem; }
  .hero { min-height: max(47rem, 100svh); }
  .hero__content { padding-top: 8rem; }
  .hero h1 { font-size: clamp(2.85rem, 14.2vw, 5.4rem); }
  .hero__bottom > p { font-size: .95rem; }
  .button-row { align-items: stretch; flex-direction: column; gap: 1.5rem; }
  .button-row .text-link { justify-content: space-between; }
  .section-label { margin-bottom: 3rem; }
  .display-copy { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .services .section-heading { display: block; }
  .services .section-heading .section-label { margin-bottom: 3rem; }
  .services .section-heading h2 { font-size: clamp(4.8rem, 25vw, 7rem); }
  .services .section-heading > p { margin-top: 2.5rem; }
  .service-list { width: 100%; margin-left: 0; }
  .service { grid-template-columns: 1.7rem 1fr; }
  .service h3 { font-size: clamp(1.55rem, 7vw, 2rem); }
  .service p { padding-right: 1.5rem; font-size: .875rem; }
  .work--lead { height: 32rem; }
  .work--portrait, .work--landscape { height: 28rem; }
  .work figcaption { flex-direction: column; align-items: start; gap: 1rem; }
  .metrics { grid-template-columns: 1fr; }
  .metric { min-height: 9rem; padding: 2rem 0; border-right: 0; border-bottom: 1px solid rgba(7,8,8,.19); }
  .metric:last-child { border-bottom: 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { min-height: 0; padding: 1.8rem 0 2rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .process-list h3 { margin: 2.5rem 0 .75rem; }
  .process-list p { max-width: 23rem; min-height: 0; }
  .cta { min-height: 44rem; }
  .cta__media img { object-position: 43% center; }
  .cta h2 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .contacts__header { align-items: start; flex-direction: column; }
  .round-action { align-self: flex-end; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-item, .contact-item + .contact-item { min-height: 9rem; padding: 1.7rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-item:last-child { border-bottom: 0; }
  .contact-item > span { margin-bottom: 1.3rem; }
  .footer__top { min-height: 10rem; align-items: flex-start; flex-direction: column; justify-content: center; gap: 2rem; }
  .footer-brand { font-size: 22vw; }
  .footer__top p { text-align: left; }
  .footer__bottom { grid-template-columns: 1fr auto; gap: 1rem; }
  .footer__bottom p:nth-child(2) { grid-row: 2; }
  .footer__bottom a { grid-column: 2; grid-row: 1 / span 2; }
}

@media (hover: none) {
  .service p {
    max-height: none;
    margin-top: 1rem;
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero__media img { transform: scale(1.13); }
  .js .reveal { opacity: 1; transform: none; }
}
