@font-face {
  font-family: "Manrope PS";
  src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope PS";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF;
}

@font-face {
  font-family: "Prata PS";
  src: url("../fonts/prata-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata PS";
  src: url("../fonts/prata-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF;
}

:root {
  --ink: #171916;
  --ink-soft: #343731;
  --forest: #113832;
  --forest-deep: #0a2925;
  --signal: #e8ea36;
  --paper: #f1eee6;
  --paper-deep: #e4dfd4;
  --white: #fffdf8;
  --muted: #74756e;
  --line: rgba(23, 25, 22, .17);
  --line-light: rgba(255, 253, 248, .22);
  --shadow: 0 32px 90px rgba(18, 24, 20, .18);
  --container: min(1360px, calc(100vw - 64px));
  --header-height: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope PS", Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--signal); }

.skip-link {
  position: fixed;
  z-index: 300;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 11px 15px;
  color: var(--ink);
  background: var(--signal);
  font-weight: 700;
}
.skip-link:focus { transform: none; }

.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; margin: -1px; padding: 0; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }
.section { padding: 136px 0; }
.section--tight { padding: 84px 0; }
.section--white { background: var(--white); }
.section--dark { color: var(--white); background: var(--ink); }
.section--forest { color: var(--white); background: var(--forest); }
.section--acid { color: var(--ink); background: var(--paper-deep); }

.ambient-section { position: relative; isolation: isolate; overflow: hidden; }
.ambient-section > .container { position: relative; z-index: 1; }
.ambient-section::before, .ambient-section::after { content: ""; position: absolute; pointer-events: none; }
.ambient-section::before {
  z-index: -2;
  inset: -26%;
  animation: ambient-drift 20s ease-in-out infinite alternate;
}
.ambient-section::after {
  z-index: -1;
  inset: 0;
  opacity: .2;
  background-image: repeating-linear-gradient(118deg, transparent 0 118px, currentColor 119px 120px, transparent 121px 242px);
  mask-image: radial-gradient(ellipse at 54% 50%, #000 0 42%, transparent 78%);
}
.ambient-section--light {
  color: var(--ink);
  background: linear-gradient(145deg, #f8f5ee 0%, #eee9de 52%, #f4f1e9 100%);
}
.ambient-section--light::before {
  background:
    radial-gradient(ellipse at 18% 24%, rgba(255,255,255,.92) 0 16%, transparent 43%),
    radial-gradient(ellipse at 78% 74%, rgba(178,203,189,.27) 0 12%, transparent 40%),
    conic-gradient(from 32deg at 52% 48%, transparent 0 18%, rgba(231,234,54,.09) 25%, transparent 34% 62%, rgba(255,255,255,.72) 72%, transparent 83%);
}
.ambient-section--light::after, .ambient-section--light-soft::after { color: rgba(17,56,50,.22); }
.ambient-section--light-soft { background: linear-gradient(130deg, #fffdf8, #ece8de 58%, #f7f4ed); }
.ambient-section--light-soft::before {
  background:
    radial-gradient(ellipse at 14% 72%, rgba(219,229,219,.45), transparent 42%),
    radial-gradient(ellipse at 82% 20%, rgba(255,255,255,.95), transparent 38%),
    conic-gradient(from 210deg at 58% 52%, transparent, rgba(232,234,54,.07), transparent 32%);
}
.ambient-section--dark { background: linear-gradient(145deg, #111511, #171916 55%, #0e1714); }
.ambient-section--forest { background: linear-gradient(145deg, #0a2b27, #113832 58%, #081e1c); }
.ambient-section--dark::before, .ambient-section--forest::before {
  background:
    radial-gradient(ellipse at 16% 28%, rgba(232,234,54,.09), transparent 32%),
    radial-gradient(ellipse at 78% 72%, rgba(65,130,112,.24), transparent 40%),
    conic-gradient(from 210deg at 58% 44%, transparent 0 22%, rgba(255,255,255,.055) 30%, transparent 39% 66%, rgba(232,234,54,.04) 75%, transparent 84%);
}
.ambient-section--dark::after, .ambient-section--forest::after { color: rgba(255,255,255,.15); opacity: .12; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }
.hero .eyebrow, .section--dark .eyebrow, .section--forest .eyebrow { color: var(--signal); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: "Prata PS", Prata, Georgia, serif;
  font-weight: 400;
}
h1 {
  max-width: 1080px;
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 6.3vw, 7rem);
  letter-spacing: -.045em;
  line-height: .98;
}
h2 {
  margin-bottom: 28px;
  font-size: clamp(2.55rem, 4.8vw, 5.35rem);
  letter-spacing: -.04em;
  line-height: 1.03;
}
h3 {
  margin-bottom: 15px;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -.025em;
  line-height: 1.18;
}
.display-italic, .display-serif { color: inherit; font-family: inherit; font-style: normal; font-weight: inherit; }
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}
.section--dark .lead, .section--forest .lead, .hero .lead { color: rgba(255, 253, 248, .73); }
.small { font-size: 14px; }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(248, 245, 238, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(16, 24, 20, .10); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img { width: 112px; height: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.main-nav a {
  position: relative;
  color: rgba(23, 25, 22, .78);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--forest);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-phone { flex: 0 0 auto; font-size: 13px; font-weight: 750; text-decoration: none; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle svg { width: 21px; height: 21px; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 0;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .035em;
  text-decoration: none;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}
.button:hover { transform: translateY(-2px); color: var(--ink); background: var(--signal); border-color: var(--signal); }
.button--outline { color: var(--white); background: transparent; border-color: rgba(255, 255, 255, .5); }
.button--outline:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button--ink { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button--ink:hover { color: var(--ink); background: var(--signal); border-color: var(--signal); }

.hero {
  position: relative;
  min-height: min(850px, calc(100svh - var(--header-height)));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  touch-action: pan-y;
  user-select: none;
}
.hero-media, .hero-media img, .hero::after { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 49%; pointer-events: none; -webkit-user-drag: none; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity 1.15s ease, visibility 1.15s, transform 7s cubic-bezier(.2,.6,.25,1); }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide img { transform: scale(1.035); transition: transform 8s cubic-bezier(.18,.65,.25,1); }
.hero-slide.is-active img { transform: scale(1); }
.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 14, 12, .88) 0%, rgba(11, 14, 12, .62) 44%, rgba(11, 14, 12, .12) 78%),
    linear-gradient(0deg, rgba(11, 14, 12, .76) 0%, transparent 42%);
}
.hero-stage {
  position: relative;
  z-index: 2;
  min-height: min(850px, calc(100svh - var(--header-height)));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 132px 0 56px;
}
.hero-copy { max-width: 900px; }
.hero-copy > * { animation: hero-copy-in .85s both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-copy h1 { margin-bottom: 32px; font-size: clamp(3.35rem, 6.6vw, 7.2rem); }
.hero-copy .lead { max-width: 650px; font-size: clamp(1.05rem, 1.45vw, 1.26rem); }
.hero .button { color: var(--ink); background: var(--white); border-color: var(--white); }
.hero .button:hover { background: var(--signal); border-color: var(--signal); }
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 76px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.34);
}
.hero-cities { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.hero-signature { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; text-align: right; }
.hero-signature strong { display: block; color: var(--white); font-family: "Prata PS", Prata, serif; font-size: 30px; font-weight: 400; line-height: 1; }
.hero-foot__right { display: flex; align-items: flex-end; gap: 25px; }
.hero-slider__controls { display: inline-flex; align-items: center; gap: 10px; }
.hero-slider__arrow { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(12,15,13,.22); border: 1px solid rgba(255,255,255,.38); border-radius: 50%; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.hero-slider__arrow:hover { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.hero-slider__dots { display: flex; align-items: center; gap: 7px; }
.hero-slider__dots button { width: 22px; height: 4px; padding: 0; overflow: hidden; background: rgba(255,255,255,.34); border: 0; cursor: pointer; transition: width .35s ease, background .35s ease; }
.hero-slider__dots button.is-active { width: 42px; background: var(--signal); }

.facts-strip { position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(135deg, #f7f4ed, #e9e4da); border-bottom: 1px solid var(--line); }
.facts { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); }
.fact { min-height: 172px; padding: 38px 42px; border-left: 1px solid var(--line); }
.fact:last-child { border-right: 1px solid var(--line); }
.fact strong { display: flex; align-items: baseline; font-family: "Prata PS", Prata, serif; font-size: clamp(2.5rem, 4vw, 4.2rem); font-weight: 400; line-height: 1; }
.fact strong span { color: inherit; font: inherit; }
.fact strong em { font-style: normal; }
.fact > span { display: block; max-width: 250px; margin-top: 12px; color: var(--muted); font-size: 13px; }
.facts-infographic__art { position: absolute; z-index: 1; inset: 0; opacity: .28; pointer-events: none; }
.facts-infographic__art svg { width: 100%; height: 100%; overflow: visible; }
.facts-infographic__guide, .facts-infographic__signal { fill: none; vector-effect: non-scaling-stroke; }
.facts-infographic__guide { stroke: rgba(17,56,50,.18); stroke-width: 1; }
.facts-infographic__signal { stroke: var(--signal); stroke-width: 2; stroke-dasharray: 1550; stroke-dashoffset: 1550; }
.facts-infographic__art circle { fill: var(--forest); opacity: 0; transform-box: fill-box; transform-origin: center; }
.facts-infographic.is-active .facts-infographic__signal { animation: infographic-draw 1.8s cubic-bezier(.2,.7,.2,1) forwards; }
.facts-infographic.is-active .facts-infographic__art circle { animation: infographic-point .5s ease forwards 1.15s; }

.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); align-items: end; gap: 88px; margin-bottom: 72px; }
.section-heading > *, .split > * { min-width: 0; }
.section-heading h2 { max-width: 880px; margin-bottom: 0; }
.section-heading .lead { justify-self: end; margin-bottom: 4px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.service-card { min-width: 0; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.service-card__media { aspect-ratio: 4 / 3; }
.service-card__body { min-height: 286px; padding: 30px 40px 38px 0; }
.service-card + .service-card .service-card__body { padding-left: 40px; }
.service-card__number { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .2em; }
.service-card__line { width: 44px; height: 1px; margin: 34px 0 27px; background: var(--forest); }
.service-card__line::before, .service-card__line::after { display: none; }
.service-card p { max-width: 330px; color: var(--muted); }

.hover-video-media { position: relative; overflow: hidden; contain: paint; background: #d8d3c7; }
.hover-video-media > img,
.hover-video-media > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hover-video-media > img { transform: scale(1.012); transition: transform .85s cubic-bezier(.18,.76,.25,1), filter .85s ease; }
.hover-video-media > video { z-index: 1; opacity: 0; background: #080a09; backface-visibility: hidden; transform: translateZ(0); transition: opacity 120ms linear; }
.hover-video-media.is-active > video { opacity: 1; }
.motion-card:hover .hover-video-media > img,
.motion-card:focus-within .hover-video-media > img { transform: scale(1.045); filter: saturate(1.04); }

.concept-media { position: relative; aspect-ratio: 2 / 1; margin: 68px 0 0; overflow: hidden; background: var(--paper-deep); box-shadow: var(--shadow); }
.concept-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 1.35s cubic-bezier(.2,.68,.25,1); }
.concept-media.is-visible img { transform: scale(1); }
.concept-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(10,17,14,.62)); pointer-events: none; }
.concept-media figcaption { position: absolute; z-index: 2; right: 26px; bottom: 22px; left: 26px; margin: 0; color: rgba(255,255,255,.82); font-size: 10px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.concept-media--dark { border: 1px solid rgba(255,255,255,.16); box-shadow: 0 34px 100px rgba(0,0,0,.28); }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.work-card {
  position: relative;
  min-height: 390px;
  grid-column: span 4;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: #292b27;
  border: 0;
  text-align: left;
  cursor: zoom-in;
}
.work-card--wide { min-height: 610px; grid-column: span 8; }
.work-card--full { min-height: 620px; grid-column: span 12; }
.work-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.18,.76,.25,1); }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(8,10,9,.78)); }
.work-card:hover img { transform: scale(1.025); }
.work-card__copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 28px 30px; }
.work-card__copy span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.66); font-size: 10px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.work-card__copy strong { display: block; max-width: 580px; font-family: "Prata PS", Prata, serif; font-size: clamp(1.28rem, 2.2vw, 2rem); font-weight: 400; line-height: 1.25; }
.work-card__zoom { position: absolute; z-index: 3; top: 20px; right: 20px; width: 45px; height: 45px; display: grid; place-items: center; color: var(--white); background: rgba(15,17,14,.45); border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 22px; backdrop-filter: blur(8px); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); }
.step { min-width: 0; border-right: 1px solid var(--line-light); }
.step:last-child { border-right: 0; }
.step__media { aspect-ratio: 4 / 3; background: #101f1b; }
.step__body { min-height: 270px; padding: 28px 34px 34px 0; }
.step + .step .step__body { padding-left: 34px; }
.step__number { display: block; margin-bottom: 54px; color: var(--signal); font-family: "Prata PS", Prata, serif; font-size: 42px; line-height: 1; }
.step h3 { font-size: 1.35rem; }
.step p { max-width: 250px; color: rgba(255,255,255,.63); font-size: 14px; }

.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 92px; align-items: center; }
.media-frame { position: relative; }
.media-frame::before { display: none; }
.media-frame img { width: 100%; min-height: 540px; object-fit: cover; }
.caption { margin: 13px 0 0; color: var(--muted); font-size: 12px; }
.design-showcase { position: relative; min-height: 690px; overflow: hidden; color: var(--white); background: var(--ink); }
.design-showcase > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.design-showcase::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,15,13,.84), rgba(13,15,13,.24) 72%); }
.design-showcase__copy { position: relative; z-index: 2; max-width: 800px; padding: 130px 0; }
.design-showcase__copy .lead { color: rgba(255,255,255,.73); }
.design-showcase__copy .button { color: var(--ink); background: var(--white); border-color: var(--white); }

.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.article-card { min-height: 275px; display: grid; grid-template-columns: 42% 1fr; color: inherit; background: var(--white); border: 1px solid transparent; text-decoration: none; transition: border-color .25s ease, transform .25s ease; }
.article-card:hover { transform: translateY(-3px); border-color: var(--line); }
.article-card__image { min-height: 100%; overflow: hidden; }
.article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.article-card:hover img { transform: scale(1.025); }
.article-card__body { align-self: center; padding: 30px; }
.article-card__body > span { color: var(--forest); font-size: 9px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.article-card__body h3 { margin-top: 16px; font-family: "Prata PS", Prata, serif; font-size: 1.45rem; font-weight: 400; }

.contact-band { display: grid; grid-template-columns: 1.18fr .82fr; min-height: 630px; }
.contact-band__copy { padding: 108px max(48px, calc((100vw - 1360px)/2)); padding-right: 76px; color: var(--white); background: var(--ink); }
.contact-band__copy h2 { max-width: 780px; }
.contact-band__aside { padding: 108px 70px; color: var(--ink); background: var(--paper-deep); }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { padding: 27px 0; border-bottom: 1px solid var(--line); }
.contact-list small { display: block; margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.contact-list a { font-family: "Prata PS", Prata, serif; font-size: clamp(1.12rem, 1.7vw, 1.45rem); text-decoration-thickness: 1px; text-underline-offset: 6px; }

.page-hero { padding: 116px 0 104px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1120px; font-size: clamp(3rem, 6vw, 6.4rem); }
.page-hero .lead { max-width: 790px; }
.page-hero .eyebrow { color: var(--forest); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 70px; color: var(--muted); font-size: 11px; letter-spacing: .04em; }
.breadcrumb a { color: inherit; text-underline-offset: 4px; }

.archive-list { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; counter-reset: archive; list-style: none; border-top: 1px solid var(--line); }
.archive-list li { position: relative; min-height: 146px; padding: 31px 26px 27px 62px; counter-increment: archive; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.archive-list li:nth-child(3n+1) { border-left: 1px solid var(--line); }
.archive-list li::before { content: counter(archive, decimal-leading-zero); position: absolute; top: 33px; left: 20px; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.archive-list strong { display: block; font-size: .97rem; line-height: 1.45; }
.archive-list a { display: inline-block; margin-top: 13px; color: var(--forest); font-size: 12px; text-underline-offset: 4px; }

.project-name-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-name-grid li { min-height: 150px; padding: 30px; background: transparent; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: "Prata PS", Prata, serif; font-size: 1.14rem; line-height: 1.4; }
.project-name-grid small { display: block; margin-bottom: 18px; color: var(--muted); font-family: "Manrope PS", Manrope, sans-serif; font-size: 9px; letter-spacing: .18em; }

.map-frame { overflow: hidden; min-height: 540px; background: var(--paper-deep); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 580px; border: 0; filter: grayscale(.2) saturate(.75); }

.article-layout { display: grid; grid-template-columns: minmax(0, 790px) 330px; justify-content: space-between; gap: 92px; }
.article-layout > * { min-width: 0; }
.article-body { min-width: 0; font-size: 17px; }
.article-body h2 { margin: 64px 0 24px; font-size: clamp(2.2rem, 3.5vw, 3.65rem); }
.article-body h3 { margin: 44px 0 15px; }
.article-body p, .article-body li { color: #44473f; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li + li { margin-top: 12px; }
.article-body .notice { margin: 38px 0; padding: 27px 30px; background: var(--paper-deep); border-left: 2px solid var(--forest); }
.article-body table { width: 100%; margin: 34px 0; border-collapse: collapse; }
.article-body th, .article-body td { padding: 17px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.article-body th { background: var(--paper-deep); }
.article-aside { align-self: start; position: sticky; top: 110px; padding: 24px; color: var(--white); background: var(--forest); }
.article-aside img { width: 100%; aspect-ratio: 1; margin-bottom: 25px; object-fit: cover; }
.article-aside h3 { font-family: "Prata PS", Prata, serif; font-size: 1.4rem; font-weight: 400; }
.article-aside p { color: rgba(255,255,255,.66); font-size: 13px; }
.article-aside__label { margin: 0 0 12px; color: var(--signal) !important; font-size: 8px !important; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.article-aside .button { color: var(--ink); background: var(--white); border-color: var(--white); }
.article-related { margin-top: 96px; padding-top: 42px; border-top: 1px solid var(--line); }
.article-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-article { position: relative; min-height: 190px; display: flex; flex-direction: column; padding: 28px 58px 30px 28px; color: inherit; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; transition: color .25s ease, background .25s ease; }
.related-article span { color: var(--forest); font-size: 8px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.related-article strong { margin-top: auto; font-family: "Prata PS", Prata, serif; font-size: 1.18rem; font-weight: 400; line-height: 1.35; }
.related-article i { position: absolute; right: 24px; bottom: 25px; color: var(--forest); font-style: normal; font-size: 19px; }
.related-article:hover { color: var(--white); background: var(--forest); }
.related-article:hover span, .related-article:hover i { color: var(--signal); }

.legal-note { max-width: 920px; padding: 31px 34px; background: var(--paper-deep); border-left: 2px solid var(--forest); }
.legal-note strong { display: block; margin-bottom: 11px; font-size: 1.08rem; }

.site-footer { color: rgba(255,255,255,.67); background: #101310; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 72px; padding: 82px 0; }
.footer-brand img { width: 146px; height: auto; margin-bottom: 28px; padding: 9px; background: var(--white); }
.footer-brand p { max-width: 420px; }
.footer-title { margin-bottom: 20px; color: var(--white); font-size: 9px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: 11px; }
.footer-links a { text-decoration-color: rgba(255,255,255,.2); text-underline-offset: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 25px 0 29px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }

.mobile-dock { display: none; }

.lightbox { width: min(1080px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 0; color: var(--white); background: #0f110f; border: 0; box-shadow: 0 34px 110px rgba(0,0,0,.52); }
.lightbox::backdrop { background: rgba(7,9,7,.86); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100dvh - 145px); object-fit: contain; background: #0a0c0a; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; }
.lightbox__caption { margin: 0; font-size: 13px; }
.lightbox__close { width: 42px; height: 42px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 21px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .75s ease var(--reveal-delay, 0s), transform .75s ease var(--reveal-delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .step:nth-child(2), .fact:nth-child(2) { --reveal-delay: .09s; }
.service-card:nth-child(3), .step:nth-child(3), .fact:nth-child(3) { --reveal-delay: .18s; }
.step:nth-child(4) { --reveal-delay: .27s; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

@keyframes ambient-drift { from { transform: translate3d(-2%, -1%, 0) rotate(-1deg) scale(1); } to { transform: translate3d(3%, 2%, 0) rotate(2deg) scale(1.035); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes infographic-draw { to { stroke-dashoffset: 0; } }
@keyframes infographic-point { from { opacity: 0; transform: scale(.35); } to { opacity: .9; transform: scale(1); } }

@media (max-width: 1060px) {
  :root { --container: min(100% - 40px, 900px); }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: none; padding: 24px 20px 40px; background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 30px 55px rgba(0,0,0,.15); }
  .main-nav.is-open { display: block; }
  .main-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 16px 8px; font-family: "Prata PS", Prata, serif; font-size: 22px; font-weight: 400; }
  .main-nav a::after { bottom: 7px; }
  .header-phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .section { padding: 108px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading .lead { justify-self: start; }
  .work-card, .work-card--wide { min-height: 500px; grid-column: span 6; }
  .work-card--full { grid-column: span 12; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .step:nth-child(3) .step__body { padding-left: 0; }
  .split { gap: 48px; }
  .article-grid { grid-template-columns: 1fr; }
  .archive-list, .project-name-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-list li:nth-child(3n+1) { border-left: 0; }
  .archive-list li:nth-child(2n+1) { border-left: 1px solid var(--line); }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; display: grid; grid-template-columns: 230px 1fr; gap: 30px; }
  .article-aside img { margin-bottom: 0; }
  .article-related__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --container: calc(100vw - 28px); --header-height: 72px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); font-size: 15px; }
  .header-inner { min-height: var(--header-height); }
  .brand img { width: 94px; }
  .menu-toggle { width: 42px; height: 42px; }
  .section { padding: 82px 0; }
  .section--tight { padding: 58px 0; }
  .eyebrow { margin-bottom: 22px; font-size: 9px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); line-height: 1.03; }
  h2 { font-size: clamp(2.25rem, 11vw, 3.45rem); line-height: 1.06; }
  .lead { font-size: 1rem; }
  .button-row { flex-direction: column; margin-top: 28px; }
  .button { width: 100%; min-height: 56px; }

  .hero, .hero-stage { min-height: calc(100svh - var(--header-height)); }
  .hero-media img { object-position: 58% center; }
  .hero::after { background: linear-gradient(0deg, rgba(10,12,10,.94) 0%, rgba(10,12,10,.65) 64%, rgba(10,12,10,.15) 100%); }
  .hero-stage { padding: 92px 0 calc(100px + env(safe-area-inset-bottom)); }
  .hero-copy h1 { margin-bottom: 23px; font-size: clamp(2.7rem, 13.5vw, 4rem); }
  .hero-copy .lead { font-size: .98rem; }
  .hero .button-row { display: none; }
  .hero-foot { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 40px; padding-top: 18px; }
  .hero-cities { line-height: 1.65; }
  .hero-signature { display: none; }
  .hero-foot__right { width: 100%; justify-content: flex-end; }
  .hero-slider__controls { width: 100%; justify-content: space-between; }
  .hero-slider__dots { margin-inline: auto; }

  .facts { grid-template-columns: 1fr; }
  .fact { min-height: 0; display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 18px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); border-left: 0; }
  .fact:last-child { border-right: 0; border-bottom: 0; }
  .fact strong { font-size: 2.45rem; }
  .fact > span { margin-top: 0; }
  .facts-infographic__art { inset: 20px auto 20px 42px; width: 1px; opacity: .5; background: linear-gradient(180deg, transparent, var(--signal) 18% 82%, transparent); transform: scaleY(0); transform-origin: top; }
  .facts-infographic.is-active .facts-infographic__art { transform: scaleY(1); transition: transform 1.4s cubic-bezier(.2,.7,.2,1); }
  .facts-infographic__art svg { display: none; }

  .section-heading { margin-bottom: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card + .service-card { min-height: 0; padding: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card__media { aspect-ratio: 16 / 11; }
  .service-card__body, .service-card + .service-card .service-card__body { min-height: 0; padding: 24px 0 36px; }
  .service-card__line { margin: 26px 0 24px; }
  .concept-media { aspect-ratio: 4 / 5; margin-top: 42px; }
  .concept-media img { object-position: 56% center; }
  .concept-media--dark img { object-position: 52% center; }
  .concept-media figcaption { right: 18px; bottom: 17px; left: 18px; font-size: 8px; }

  .work-grid { display: block; }
  .work-card, .work-card--wide, .work-card--full { width: 100%; min-height: 0; aspect-ratio: 4 / 5; margin-bottom: 12px; }
  .work-card--full { aspect-ratio: 1 / 1.08; }
  .work-card__copy { padding: 22px; }
  .work-card__copy strong { font-size: 1.28rem; }
  .work-card__zoom { top: 14px; right: 14px; width: 40px; height: 40px; }

  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { min-height: 0; padding: 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .step:nth-child(n+3) { border-top: 0; }
  .step:last-child { border-bottom: 0; }
  .step__media { aspect-ratio: 16 / 11; }
  .step__body, .step + .step .step__body, .step:nth-child(3) .step__body { min-height: 0; padding: 24px 0 36px; }
  .step__number { margin-bottom: 34px; font-size: 34px; }

  .split { grid-template-columns: 1fr; gap: 42px; }
  .media-frame img { min-height: 0; aspect-ratio: 4 / 3; }
  .design-showcase { min-height: 680px; }
  .design-showcase > img { object-position: 61% center; }
  .design-showcase::after { background: linear-gradient(0deg, rgba(12,14,12,.9), rgba(12,14,12,.2)); }
  .design-showcase__copy { padding: 300px 0 70px; }

  .article-card { min-height: 0; grid-template-columns: 1fr; }
  .article-card__image { aspect-ratio: 1.35; }
  .article-card__body { padding: 25px 22px 28px; }

  .contact-band { grid-template-columns: 1fr; min-height: 0; }
  .contact-band__copy, .contact-band__aside { padding: 76px 20px; }
  .contact-list a { font-size: 1.08rem; }

  .page-hero { padding: 70px 0 66px; }
  .page-hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .breadcrumb { margin-bottom: 43px; }
  .archive-list, .project-name-grid { grid-template-columns: 1fr; }
  .archive-list li, .archive-list li:nth-child(2n+1), .archive-list li:nth-child(3n+1) { min-height: 0; padding: 25px 20px 25px 54px; border-left: 1px solid var(--line); }
  .archive-list li::before { top: 27px; left: 17px; }
  .project-name-grid li { min-height: 0; padding: 25px; }
  .map-frame, .map-frame iframe { min-height: 440px; height: 440px; }
  .article-body { font-size: 16px; }
  .article-body table { display: block; overflow-x: auto; }
  .article-aside { grid-template-columns: 1fr; }
  .article-related { margin-top: 68px; }
  .related-article { min-height: 150px; }

  .footer-grid { grid-template-columns: 1fr; gap: 42px; padding: 64px 0; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-dock { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); background: rgba(16,19,16,.96); border-top: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(14px); }
  .mobile-dock a { min-height: 52px; display: grid; place-items: center; color: var(--white); font-size: 12px; font-weight: 750; text-decoration: none; }
  .mobile-dock a:first-child { color: var(--ink); background: var(--signal); }
}

@media (max-width: 370px) {
  :root { --container: calc(100vw - 24px); }
  .hero-copy h1 { font-size: 2.35rem; }
  .hero-stage { padding-top: 72px; }
  .hero-cities { font-size: 9px; }
}

@media (max-width: 370px) and (max-height: 650px) {
  .hero-stage { min-height: calc(100svh - var(--header-height)); padding-top: 38px; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .hero .eyebrow { margin-bottom: 13px; }
  .hero-copy h1 { margin-bottom: 14px; }
  .hero-copy .lead { font-size: .86rem; line-height: 1.45; }
  .hero-foot { margin-top: 18px; padding-top: 10px; }
  .hero-cities { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-slide { opacity: 0; visibility: hidden; transform: none; }
  .hero-slide.is-active { opacity: 1; visibility: visible; }
  .facts-infographic__signal { stroke-dashoffset: 0; }
  .facts-infographic__art circle { opacity: .9; }
}

/* Catalog, case pages and editorial sliders */
.work-card { text-decoration: none; }
.work-card__arrow { font-size: 18px; }
.button--outline-dark { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.button--outline-dark:hover { color: var(--white); background: var(--forest); border-color: var(--forest); }
.catalog-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.interior-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
  box-shadow: var(--shadow);
  touch-action: pan-y;
}
.interior-slider__track, .interior-slider__slide { position: absolute; inset: 0; margin: 0; }
.interior-slider__slide { opacity: 0; visibility: hidden; transform: scale(1.035); transition: opacity .75s ease, visibility .75s ease, transform 1.1s cubic-bezier(.2,.75,.2,1); }
.interior-slider__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.interior-slider__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(7,22,20,.58)); }
.interior-slider__slide img { width: 100%; height: 100%; object-fit: cover; }
.interior-slider__controls { position: absolute; z-index: 3; right: 22px; bottom: 20px; left: 22px; display: flex; align-items: center; justify-content: space-between; }
.interior-slider__controls > button { width: 46px; height: 46px; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(10,30,27,.55); border: 1px solid rgba(255,255,255,.44); border-radius: 50%; cursor: pointer; backdrop-filter: blur(10px); }
.interior-slider__dots { display: flex; gap: 8px; padding: 10px 13px; background: rgba(10,30,27,.48); border-radius: 999px; backdrop-filter: blur(10px); }
.interior-slider__dots button { width: 20px; height: 3px; padding: 0; background: rgba(255,255,255,.35); border: 0; cursor: pointer; transition: width .25s ease, background .25s ease; }
.interior-slider__dots button.is-active { width: 38px; background: var(--signal); }

.object-catalog, .design-catalog { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 1px; list-style: none; background: var(--line); }
.catalog-card, .design-card { min-width: 0; background: var(--white); }
.catalog-card__main, .design-card > a { display: block; height: 100%; text-decoration: none; }
.catalog-card__image, .design-card__image { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: var(--paper-deep); }
.catalog-card__image::after, .design-card__image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); pointer-events: none; }
.catalog-card__image img, .design-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .5s ease; }
.catalog-card:hover img, .design-card:hover img { transform: scale(1.035); filter: saturate(1.05); }
.catalog-card__body, .design-card__body { min-height: 190px; display: flex; flex-direction: column; padding: 26px 28px 24px; }
.catalog-card__body small, .design-card__body small { margin-bottom: 22px; color: var(--muted); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.catalog-card__body strong, .design-card__body strong { font-family: "Prata PS", Prata, serif; font-size: 1.2rem; font-weight: 400; line-height: 1.42; }
.catalog-card__body > span:last-child, .design-card__body > span:last-child { margin-top: auto; padding-top: 24px; color: var(--forest); font-size: 12px; font-weight: 750; }
.catalog-card__map { display: block; padding: 14px 28px 18px; color: var(--muted); border-top: 1px solid var(--line); font-size: 11px; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.case-hero { position: relative; overflow: hidden; padding: 88px 0 0; color: var(--white); background: var(--forest-deep); }
.case-hero::before { content: ""; position: absolute; inset: 0; opacity: .46; background: radial-gradient(circle at 82% 12%, rgba(62,131,113,.42), transparent 34%), repeating-linear-gradient(118deg, transparent 0 185px, rgba(255,255,255,.035) 186px 188px); pointer-events: none; }
.case-hero > .container { position: relative; }
.case-hero .breadcrumb, .case-hero .breadcrumb a { color: rgba(255,255,255,.66); }
.case-hero h1 { max-width: 1180px; margin: 0; color: var(--white); font-size: clamp(3.1rem, 7vw, 7.6rem); line-height: .98; overflow-wrap: anywhere; }
.case-hero .lead { max-width: 850px; margin: 34px 0 72px; color: rgba(255,255,255,.72); }
.case-hero__media { position: relative; width: var(--container); aspect-ratio: 16 / 9; overflow: hidden; background: #0b211e; }
.case-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.case-hero__media > p { position: absolute; right: 20px; bottom: 18px; margin: 0; padding: 8px 12px; color: var(--white); background: rgba(8,28,25,.68); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(10px); }
.case-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; margin-bottom: 52px; }
.case-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.case-gallery__item { position: relative; aspect-ratio: 1; overflow: hidden; padding: 0; background: var(--paper-deep); border: 0; cursor: zoom-in; }
.case-gallery__item:first-child:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
.case-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.case-gallery__item:hover img { transform: scale(1.025); }
.case-gallery__item span { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 8px 10px; color: var(--white); background: rgba(9,29,26,.68); font-size: 9px; letter-spacing: .08em; text-align: left; text-transform: uppercase; backdrop-filter: blur(8px); }
.related-cases { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line-light); }
.related-case { position: relative; min-width: 0; display: flex; flex-direction: column; padding-bottom: 24px; color: var(--white); background: var(--forest-deep); text-decoration: none; }
.related-case img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.related-case span { margin: 20px 24px 8px; color: var(--signal); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.related-case strong { margin: 0 54px 0 24px; font-family: "Prata PS", Prata, serif; font-size: 1.14rem; font-weight: 400; line-height: 1.4; }
.related-case i { position: absolute; right: 24px; bottom: 23px; color: var(--signal); font-style: normal; }
.design-detail-hero h1 { max-width: 1050px; }

@media (max-width: 980px) {
  .object-catalog, .design-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-hero h1 { font-size: clamp(2.8rem, 8.6vw, 5.6rem); }
  .case-gallery, .related-cases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-gallery__item:first-child:last-child { grid-column: 1 / -1; }
  .related-case:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .catalog-actions { flex-direction: column; }
  .catalog-actions .button { width: 100%; }
  .interior-slider__controls { right: 14px; bottom: 14px; left: 14px; }
  .interior-slider__controls > button { width: 42px; height: 42px; }
  .interior-slider__dots { gap: 6px; }
  .interior-slider__dots button { width: 13px; }
  .interior-slider__dots button.is-active { width: 25px; }
  .object-catalog, .design-catalog, .case-gallery, .related-cases { grid-template-columns: 1fr; }
  .catalog-card__body, .design-card__body { min-height: 155px; padding: 22px 20px; }
  .catalog-card__map { padding-inline: 20px; }
  .case-hero { padding-top: 58px; }
  .case-hero h1 { font-size: clamp(2.35rem, 11.5vw, 3.8rem); }
  .case-hero .lead { margin: 26px 0 46px; }
  .case-hero__media { width: 100%; aspect-ratio: 4 / 5; }
  .case-hero__media > p { right: 10px; bottom: 10px; left: 10px; }
  .case-intro { grid-template-columns: 1fr; gap: 18px; }
  .case-gallery__item, .case-gallery__item:first-child:last-child { grid-column: auto; aspect-ratio: 1; }
  .related-case:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .interior-slider__slide { opacity: 0; visibility: hidden; transform: none; }
  .interior-slider__slide.is-active { opacity: 1; visibility: visible; }
}
