:root {
  color-scheme: dark;
  --ink: #121311;
  --ink-soft: #1a1b18;
  --milk: #eee9df;
  --paper: #ded5c5;
  --paper-deep: #cfc3b1;
  --muted: #a49f94;
  --muted-dark: #625e56;
  --gold: #b89a64;
  --line: rgba(238, 233, 223, 0.18);
  --line-dark: rgba(18, 19, 17, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--milk);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, transparent 0, rgba(255, 255, 255, 0.7) 0.45px, transparent 0.8px, transparent 3px),
    repeating-radial-gradient(circle at 73% 62%, transparent 0, rgba(0, 0, 0, 0.8) 0.45px, transparent 0.9px, transparent 4px);
  background-size: 7px 7px, 11px 11px;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

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

a,
button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--milk);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark__mark {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--ink), inset 0 0 0 3px currentColor;
}

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.header-contact,
.text-link {
  position: relative;
}

.site-nav a::after,
.header-contact::after,
.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.site-nav a:hover::after,
.header-contact:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(25rem, 0.78fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 7rem);
  min-height: 100svh;
  padding: clamp(7rem, 12vh, 10rem) var(--page-pad) clamp(4rem, 8vh, 7rem);
  background:
    radial-gradient(ellipse at 74% 40%, rgba(184, 154, 100, 0.08), transparent 42%),
    linear-gradient(108deg, #121311 0%, #111210 62%, #171713 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: var(--page-pad);
  bottom: 0;
  left: var(--page-pad);
  height: 1px;
  background: var(--line);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 56rem;
}

.eyebrow {
  margin: 0 0 clamp(1.5rem, 3vw, 3rem);
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #755f3d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.hero h1 {
  margin-bottom: clamp(2rem, 4vw, 3.75rem);
  font-size: clamp(3.25rem, 5.7vw, 7.1rem);
  line-height: 0.94;
  letter-spacing: -0.054em;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero h1 span:nth-child(2) {
  color: #d3cbbb;
  font-style: italic;
}

.hero__lead {
  margin-bottom: 2.2rem;
  color: #c7c1b6;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.45vw, 1.4rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.3rem;
  color: var(--milk);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1rem;
}

.hero__visual {
  width: min(100%, 39rem);
  justify-self: end;
}

.hero__index {
  position: absolute;
  right: var(--page-pad);
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__index span {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
}

.compare {
  --split: 50%;
  margin: 0;
}

.compare__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #25251f;
  isolation: isolate;
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.3);
}

.compare__image {
  position: absolute;
  inset: -2% 0;
  width: 100%;
  height: 104%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--image-shift, 0px), 0) scale(1.025);
  transition: transform 1.2s var(--ease), filter 500ms ease;
  will-change: transform;
}

.compare__image--after {
  filter: grayscale(1) contrast(1.04);
}

.compare__before {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  transition: clip-path 90ms linear;
}

.compare__image--before {
  filter: grayscale(1) sepia(0.22) contrast(0.72) brightness(0.84) blur(0.25px);
}

.photo-damage {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.68;
  background:
    linear-gradient(102deg, transparent 0 29%, rgba(244, 233, 203, 0.18) 29.1% 29.35%, transparent 29.55% 100%),
    linear-gradient(78deg, transparent 0 68%, rgba(15, 12, 8, 0.28) 68.1% 68.35%, rgba(246, 232, 197, 0.15) 68.5% 68.68%, transparent 68.9% 100%),
    radial-gradient(circle at 19% 27%, rgba(255, 246, 221, 0.24) 0 0.12%, transparent 0.35%),
    radial-gradient(circle at 74% 72%, rgba(13, 11, 8, 0.3) 0 0.18%, transparent 0.42%),
    radial-gradient(ellipse at 45% 45%, transparent 32%, rgba(72, 56, 38, 0.19) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.photo-damage::before,
.photo-damage::after {
  content: "";
  position: absolute;
  background: rgba(250, 241, 214, 0.3);
  filter: blur(0.35px);
  transform-origin: center;
}

.photo-damage::before {
  top: 14%;
  left: 17%;
  width: 1px;
  height: 49%;
  transform: rotate(17deg);
  box-shadow: 8.3rem 2rem 0 rgba(250, 241, 214, 0.18), 13rem 10rem 0 rgba(20, 16, 11, 0.22);
}

.photo-damage::after {
  right: 8%;
  bottom: 13%;
  width: 42%;
  height: 1px;
  transform: rotate(-8deg);
  box-shadow: -7rem -11rem 0 rgba(250, 241, 214, 0.14);
}

.photo-damage--strong {
  opacity: 0.82;
}

.photo-damage--fold {
  opacity: 0.74;
  background:
    linear-gradient(88deg, transparent 0 49.5%, rgba(240, 228, 196, 0.34) 49.7% 50%, rgba(24, 19, 12, 0.34) 50.2% 50.45%, transparent 50.7% 100%),
    radial-gradient(circle at 22% 19%, rgba(23, 18, 12, 0.35) 0 0.2%, transparent 0.52%),
    radial-gradient(ellipse at 45% 45%, transparent 25%, rgba(80, 61, 38, 0.22) 100%);
}

.photo-damage--faded {
  opacity: 0.86;
  background:
    linear-gradient(113deg, rgba(231, 210, 166, 0.22), transparent 36%, rgba(44, 34, 21, 0.2)),
    radial-gradient(circle at 72% 23%, rgba(255, 247, 224, 0.3) 0 0.18%, transparent 0.52%),
    radial-gradient(circle at 31% 78%, rgba(20, 16, 11, 0.35) 0 0.16%, transparent 0.45%);
}

.compare__label {
  position: absolute;
  top: 1rem;
  z-index: 5;
  padding: 0.45rem 0.6rem;
  color: #fff;
  background: rgba(12, 12, 10, 0.52);
  backdrop-filter: blur(5px);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare__label--before {
  left: 1rem;
}

.compare__label--after {
  right: 1rem;
}

.compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 6;
  width: 1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 90ms linear;
}

.compare__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(15, 15, 13, 0.62);
  box-shadow: 0 0.5rem 1.6rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
}

.compare__divider span::before,
.compare__divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.compare__divider span::before {
  left: 0.68rem;
  transform: translateY(-50%) rotate(-45deg);
}

.compare__divider span::after {
  right: 0.68rem;
  transform: translateY(-50%) rotate(135deg);
}

.compare__range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
  touch-action: pan-y;
}

.compare__viewport:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.compare figcaption {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-light,
.section-paper {
  color: var(--ink);
}

.section-light {
  background: var(--milk);
}

.section-paper {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(145deg, var(--paper) 0%, #d9cfbd 100%);
}

.section-dark {
  color: var(--milk);
  background: var(--ink);
}

.interlude {
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(20rem, 1fr);
  align-items: start;
  min-height: 90svh;
  padding: clamp(7rem, 14vw, 15rem) var(--page-pad);
}

.interlude__number {
  color: rgba(18, 19, 17, 0.18);
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.7;
}

.interlude__text {
  max-width: 63rem;
}

.interlude h2,
.section-heading h2,
.gallery h2,
.process h2,
.contact h2 {
  letter-spacing: -0.048em;
}

.interlude h2 {
  margin-bottom: clamp(2rem, 5vw, 5rem);
  font-size: clamp(3.5rem, 7.4vw, 8.5rem);
  line-height: 0.94;
}

.interlude__text > p:last-child {
  max-width: 37rem;
  margin: 0 0 0 auto;
  color: #46433d;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.55;
}

.services {
  padding: clamp(7rem, 12vw, 13rem) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  align-items: end;
  margin-bottom: clamp(4rem, 9vw, 9rem);
}

.section-heading .eyebrow {
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.88;
}

.service-list {
  max-width: 90rem;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 0.22fr 0.8fr 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: clamp(1.8rem, 3vw, 3rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-item__number {
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.service-item h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.7rem);
  line-height: 1.05;
}

.service-item p {
  max-width: 31rem;
  margin: 0;
  color: #aaa59b;
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
}

.gallery {
  padding: clamp(7rem, 12vw, 13rem) var(--page-pad);
}

.gallery__header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  margin-bottom: clamp(5rem, 11vw, 11rem);
}

.gallery__header h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  line-height: 0.9;
}

.gallery__header > p {
  max-width: 30rem;
  margin: 0 0 0.8rem;
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.7;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: clamp(6rem, 12vw, 13rem);
}

.gallery-item {
  grid-column: 1 / span 6;
}

.gallery-item--wide {
  grid-column: 6 / -1;
}

.gallery-item--wide .compare__viewport {
  aspect-ratio: 4 / 3;
}

.gallery-item--offset {
  grid-column: 3 / span 6;
}

.gallery .compare__viewport {
  box-shadow: 0 2rem 5rem rgba(64, 50, 29, 0.18);
}

.gallery .compare figcaption {
  color: #625d54;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.35fr 0.12fr 1fr;
  grid-template-areas:
    "label line title"
    ". . closing";
  gap: 2rem;
  align-content: center;
  min-height: 100svh;
  padding: clamp(7rem, 12vw, 13rem) var(--page-pad);
}

.manifesto__label {
  grid-area: label;
  align-self: start;
  margin-top: 1.4rem;
}

.manifesto__line {
  grid-area: line;
  width: 100%;
  height: 1px;
  margin-top: 1.7rem;
  background: var(--line-dark);
}

.manifesto h2 {
  grid-area: title;
  max-width: 70rem;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 7rem);
  line-height: 1.02;
  letter-spacing: -0.044em;
}

.manifesto__closing {
  grid-area: closing;
  max-width: 48rem;
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  color: #4a463f;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  font-style: italic;
  line-height: 1.45;
}

.process {
  padding: clamp(7rem, 12vw, 13rem) var(--page-pad);
}

.process__heading {
  grid-template-columns: 0.45fr 1.55fr;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 19rem;
  padding: 1.5rem clamp(1.25rem, 2.5vw, 2.5rem) 2rem;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: clamp(5rem, 9vw, 9rem);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.process-list p {
  max-width: 17rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  min-height: 92svh;
  padding: clamp(7rem, 12vw, 13rem) var(--page-pad);
}

.contact__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact__edition {
  color: var(--muted-dark);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.contact__main {
  max-width: 70rem;
}

.contact h2 {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  font-size: clamp(4.5rem, 10vw, 11.5rem);
  line-height: 0.78;
}

.contact__main > p:not(.contact-note) {
  max-width: 37rem;
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  color: #4d4942;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.5;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 41rem);
  padding: 1.45rem 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
  transition: padding 400ms var(--ease), color 300ms ease, background 300ms ease;
}

.contact-button:hover {
  padding-right: 1.2rem;
  padding-left: 1.2rem;
  color: var(--paper);
  background: var(--ink);
}

.contact-button span:last-child {
  font-size: 1.15rem;
}

.contact-note {
  max-width: 40rem;
  margin-top: 1.2rem;
  color: var(--muted-dark);
  font-size: 0.78rem;
  line-height: 1.6;
}

.contact-note[hidden] {
  display: none;
}

.contact-note--static {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  padding: 2rem var(--page-pad);
  color: #8e8a81;
  background: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 0.63rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.wordmark--footer {
  color: var(--milk);
}

.js .reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.72fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.9vw, 5.3rem);
  }

  .service-item {
    grid-template-columns: 0.16fr 0.95fr 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list li {
    min-height: 16rem;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .process-list span {
    margin-bottom: 5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 5rem;
    padding-top: 9rem;
  }

  .hero__copy {
    max-width: 48rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 10.5vw, 6rem);
  }

  .hero__visual {
    width: min(82vw, 38rem);
    justify-self: center;
  }

  .interlude {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .interlude__number {
    font-size: 6rem;
  }

  .section-heading,
  .process__heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery__header {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    display: block;
  }

  .gallery-item {
    width: min(82vw, 42rem);
    margin-bottom: 7rem;
  }

  .gallery-item--wide {
    width: 100%;
    margin-left: auto;
  }

  .gallery-item--offset {
    margin-right: auto;
    margin-left: auto;
  }

  .manifesto {
    grid-template-columns: 0.35fr 1fr;
    grid-template-areas:
      "label line"
      "title title"
      "closing closing";
    gap: 2rem;
  }

  .manifesto h2 {
    margin-top: 2rem;
  }

  .manifesto__closing {
    margin-left: 25%;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .contact__side {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 1.25rem;
  }

  .site-header {
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
  }

  .header-contact {
    font-size: 0;
  }

  .header-contact::before {
    content: "Связаться";
    font-size: 0.65rem;
  }

  .hero {
    gap: 4rem;
    min-height: auto;
    padding-top: 7.5rem;
    padding-bottom: 5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 11vw, 3.4rem);
    line-height: 0.96;
    text-wrap: normal;
  }

  .hero h1 span {
    display: block;
  }

  .hero__lead br {
    display: none;
  }

  .text-link {
    max-width: 16rem;
    line-height: 1.55;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__index {
    display: none;
  }

  .compare__divider span {
    width: 2.5rem;
    height: 2.5rem;
  }

  .compare figcaption {
    display: grid;
    gap: 0.35rem;
  }

  .interlude {
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .interlude h2,
  .section-heading h2,
  .gallery__header h2 {
    font-size: clamp(3.4rem, 16vw, 5.3rem);
  }

  .interlude__text > p:last-child {
    margin-left: 0;
  }

  .services,
  .gallery,
  .process,
  .contact {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .service-item {
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
  }

  .service-item p {
    grid-column: 2;
  }

  .gallery__header {
    margin-bottom: 5rem;
  }

  .gallery-item,
  .gallery-item--wide,
  .gallery-item--offset {
    width: 100%;
    margin-bottom: 5rem;
  }

  .manifesto {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "line"
      "title"
      "closing";
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .manifesto__line {
    width: 4rem;
    margin: 0;
  }

  .manifesto h2 {
    margin-top: 2rem;
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .manifesto__closing {
    margin-top: 3rem;
    margin-left: 0;
  }

  .manifesto__closing br {
    display: none;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(3),
  .process-list li:last-child {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 1.75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list span {
    margin: 0;
  }

  .contact {
    min-height: auto;
  }

  .contact h2 {
    font-size: clamp(4.1rem, 19vw, 6.4rem);
    line-height: 0.82;
  }

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

  .site-footer > p:first-of-type {
    display: none;
  }
}

@media (max-width: 390px) {
  .wordmark {
    letter-spacing: 0.1em;
  }

  .hero h1 {
    font-size: 2.68rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .contact h2 {
    font-size: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .compare__image {
    transform: scale(1.01);
  }
}

@media (forced-colors: active) {
  .compare__divider {
    background: CanvasText;
  }

  .compare__divider span,
  .compare__label {
    border: 1px solid CanvasText;
    background: Canvas;
    color: CanvasText;
  }
}
