@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --ink: #1b1b18;
  --paper: #f2efe8;
  --paper-deep: #e8e3da;
  --night: #171713;
  --night-soft: #24231e;
  --metal: #9a8060;
  --metal-light: #c5b292;
  --white: #f8f6f0;
  --muted: #706e66;
  --line: rgba(27, 27, 24, 0.18);
  --line-light: rgba(248, 246, 240, 0.2);
  --display: 'Google Sans', 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  --shell: min(100% - 64px, 1440px);
  --section-space: clamp(104px, 11vw, 176px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --surface-page: var(--paper);
  --surface-subtle: var(--paper-deep);
  --surface-dark: var(--night);
  --surface-dark-raised: var(--night-soft);
  --text-primary: var(--ink);
  --text-on-dark: var(--white);
  --text-muted: #66645d;
  --accent-metal: var(--metal);
  --accent-metal-light: var(--metal-light);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--sans);
}

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

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

button,
input,
textarea {
  color: inherit;
}

button,
summary,
a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(154, 128, 96, 0.2);
}

:focus-visible {
  outline: 2px solid var(--metal);
  outline-offset: 4px;
}

::selection {
  background: var(--metal);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--paper {
  background: var(--paper-deep);
}

.section--night {
  background: var(--night);
  color: var(--white);
}

.section-index,
.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section--night .section-index,
.section--night .eyebrow {
  color: rgba(248, 246, 240, 0.58);
}

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

h1,
h2,
h3 {
  font-weight: 400;
  min-width: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 1.06;
}

section[id] {
  scroll-margin-top: 104px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(248, 246, 240, 0.2);
  background: rgba(23, 23, 19, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 0;
}

.brand__logo {
  display: block;
  width: clamp(180px, 15vw, 230px);
  height: auto;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 54px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.site-menu a {
  position: relative;
}

.site-menu a:not(.site-menu__cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu__cta {
  padding: 12px 17px;
  border: 1px solid rgba(248, 246, 240, 0.45);
  transition: background 220ms ease, color 220ms ease;
}

.site-menu__cta:hover {
  background: var(--white);
  color: var(--ink);
}

.site-menu__phone,
.site-footer__contacts > a[href^='tel:'] {
  font-feature-settings: 'tnum' 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.site-menu__max {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(940px, 100svh);
  align-items: flex-end;
  overflow: hidden;
  background: #383934;
  color: var(--white);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  animation: hero-reveal 1.4s var(--ease) both;
}

.hero__media picture {
  display: contents;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.32) 0%, rgba(10, 10, 8, 0.04) 32%, rgba(10, 10, 8, 0.78) 100%),
    linear-gradient(90deg, rgba(10, 10, 8, 0.58) 0%, rgba(10, 10, 8, 0.04) 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 150px;
  padding-bottom: clamp(64px, 7vw, 104px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: 34px;
}

.hero__eyebrow {
  grid-column: 1 / 6;
  color: rgba(248, 246, 240, 0.72);
}

.hero h1 {
  max-width: 1180px;
  margin-bottom: 0;
  grid-column: 1 / 12;
  font-size: clamp(54px, 7vw, 110px);
  line-height: 0.99;
  text-wrap: balance;
}

.hero__footer {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.hero__lead {
  max-width: 540px;
  margin-bottom: 0;
  grid-column: 1 / 6;
  color: rgba(248, 246, 240, 0.8);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  grid-column: 8 / 13;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: center;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.text-link span {
  font-size: 16px;
  transition: transform 240ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.text-link--light {
  color: var(--white);
}

.concept-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  background: rgba(23, 23, 19, 0.84);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.concept-label--hero {
  top: auto;
  bottom: 22px;
  left: auto;
  right: 32px;
  z-index: 3;
  background: transparent;
  color: rgba(248, 246, 240, 0.62);
}

.intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: 80px;
}

.intro > .section-index {
  grid-column: 1 / 3;
}

.intro__statement {
  grid-column: 4 / 13;
}

.intro__statement h2 {
  max-width: 1040px;
}

.intro__statement > p {
  max-width: 620px;
  margin: 48px 0 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.intro__facts {
  display: grid;
  margin: 0;
  grid-column: 4 / 13;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.intro__facts div {
  padding: 24px 24px 0 0;
}

.intro__facts dt {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro__facts dd {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.35;
}

.section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin-bottom: clamp(70px, 8vw, 116px);
}

.section-heading > .section-index {
  grid-column: 1 / 3;
}

.section-heading > div {
  grid-column: 4 / 13;
}

.section-heading > div > p {
  max-width: 560px;
  margin: 34px 0 0 auto;
  color: var(--muted);
}

.section-heading--compact {
  margin-bottom: clamp(48px, 5vw, 72px);
}

.section-heading--light > div > p {
  color: rgba(248, 246, 240, 0.58);
}

.projects .section-heading {
  margin-bottom: clamp(48px, 6vw, 80px);
}

#projects-title {
  max-width: 1050px;
  font-size: clamp(38px, 4.5vw, 68px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(24px, 2.5vw, 40px);
}

.project-card,
.project-card--feature,
.project-card--offset {
  min-width: 0;
  grid-column: auto;
}

.project-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--night-soft);
}

.project-card__media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  aspect-ratio: auto;
  object-fit: contain;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.project-card--feature .project-card__media img {
  aspect-ratio: auto;
}

.project-card__media:hover img {
  filter: saturate(0.95) contrast(1);
  transform: scale(1.025);
}

.project-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
}

.project-card__meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.1vw, 36px);
  letter-spacing: -0.025em;
}

.project-card__number,
.project-card__meta > p {
  color: rgba(248, 246, 240, 0.55);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-card__number {
  margin-bottom: 8px;
}

.project-card__meta > p {
  margin: 5px 0 0;
  text-align: left;
}

.gallery-heading {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.gallery-controls {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px 32px;
}

.gallery-control-group {
  grid-column: span 6;
}

.gallery-control-group--material {
  grid-column: span 6;
}

.gallery-control-group > p {
  margin-bottom: 12px;
  color: rgba(248, 246, 240, 0.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-filter-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.gallery-filter-row--purpose {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-filter-row button {
  min-height: 58px;
  padding: 10px 12px;
  border: 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: rgba(248, 246, 240, 0.64);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  transition: background 180ms ease, color 180ms ease;
}

.gallery-filter-row button:hover,
.gallery-filter-row button[aria-pressed='true'] {
  background: var(--white);
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 32px);
}

.gallery-card {
  min-width: 0;
  grid-column: span 4;
}

.gallery-card--featured {
  grid-column: span 8;
}

.gallery-card[hidden] {
  display: none !important;
}

.gallery-card__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.gallery-card__media {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  place-items: center;
  background: var(--night-soft);
}

.gallery-card__media picture {
  display: contents;
}

.gallery-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.88) contrast(1.02);
  transition: transform 700ms var(--ease), filter 300ms ease;
}

.gallery-card__open:hover .gallery-card__image {
  filter: saturate(1) contrast(1);
  transform: scale(1.018);
}

.gallery-card__meta {
  display: grid;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  gap: 6px;
}

.gallery-card__meta strong {
  font-family: var(--display);
  font-size: clamp(19px, 1.65vw, 27px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gallery-card__meta > span:not(.gallery-card__material),
.gallery-card__material {
  color: rgba(248, 246, 240, 0.5);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-card__material {
  color: var(--metal-light);
}

.gallery-cta {
  display: grid;
  margin-top: clamp(54px, 6vw, 84px);
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 28px;
}

.gallery-cta p {
  max-width: 680px;
  margin-bottom: 0;
  grid-column: 1 / 8;
  color: rgba(248, 246, 240, 0.66);
}

.gallery-cta .button {
  grid-column: 9 / 13;
}

.seo-links {
  display: flex;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
  gap: 12px 28px;
}

.seo-links a {
  padding-block: 7px;
  border-bottom: 1px solid rgba(248, 246, 240, 0.45);
  color: rgba(248, 246, 240, 0.72);
  font-size: 11px;
}

.gallery-dialog {
  width: min(1180px, calc(100% - 48px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid var(--line-light);
  background: var(--night);
  color: var(--white);
  overflow: auto;
}

.gallery-dialog::backdrop {
  background: rgba(10, 10, 8, 0.82);
  backdrop-filter: blur(4px);
}

.gallery-dialog__close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-light);
  background: rgba(23, 23, 19, 0.8);
  color: var(--white);
  cursor: pointer;
  font-size: 27px;
  line-height: 1;
}

.gallery-dialog__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.8fr);
}

.gallery-dialog__media {
  display: grid;
  min-height: min(72vh, 760px);
  place-items: center;
  background: var(--night-soft);
}

.gallery-dialog__media img {
  width: 100%;
  height: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
}

.gallery-dialog__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 70px) clamp(26px, 4vw, 52px);
}

.gallery-dialog__copy h3 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(32px, 3vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.gallery-dialog__copy > p:not(.eyebrow) {
  color: rgba(248, 246, 240, 0.62);
}

.gallery-dialog__copy .button {
  margin-top: 20px;
}

.scenario-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
}

.scenario-tabs {
  grid-column: 1 / 7;
  border-top: 1px solid var(--line);
}

.scenario-tabs button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: clamp(15px, 1.3vw, 19px);
  text-align: left;
  transition: color 180ms ease, padding 260ms var(--ease);
}

.scenario-tabs button span {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.scenario-tabs button:hover,
.scenario-tabs button[aria-selected='true'] {
  padding-left: 18px;
  color: var(--ink);
}

.scenario-panel {
  min-height: 490px;
  padding: clamp(34px, 4vw, 64px);
  grid-column: 8 / 13;
  background: var(--ink);
  color: var(--white);
}

.scenario-panel h3 {
  max-width: 520px;
  margin: 42px 0 26px;
  font-family: var(--display);
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.scenario-panel > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(248, 246, 240, 0.64);
}

.scenario-panel__deliverable {
  display: grid;
  margin: 48px 0 32px;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.scenario-panel__deliverable span {
  color: rgba(248, 246, 240, 0.5);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-panel__deliverable strong {
  font-size: 13px;
  font-weight: 500;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 1.5fr 4.5fr 3fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-list__number,
.process-list__result {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 32px);
}

.process-list div p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.process-list__result {
  padding-top: 7px;
  text-align: right;
}

.materials-heading {
  display: grid;
  margin-bottom: clamp(54px, 7vw, 94px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 24px;
}

.materials-heading .section-index {
  grid-column: 1 / 3;
}

.materials-heading h2 {
  grid-column: 3 / 13;
  font-size: clamp(42px, 4vw, 58px);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.materials-heading > p:last-child {
  max-width: 520px;
  margin: 18px 0 0;
  grid-column: 3 / 9;
  color: var(--muted);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.material-card {
  position: relative;
  display: grid;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background: var(--paper-deep);
  grid-template-columns: 54% 46%;
}

.material-card > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  grid-row: 1 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: filter 300ms ease, transform 700ms var(--ease);
}

.material-card:hover > img {
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.015);
}

.material-card > span {
  padding: 28px 28px 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.material-card > div {
  padding: 28px;
  align-self: end;
}

.material-card h3 {
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: clamp(28px, 2.35vw, 40px);
  letter-spacing: -0.025em;
  overflow-wrap: normal;
}

.material-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.material-card--dark {
  background: var(--night-soft);
  color: var(--white);
}

.material-card--dark > span,
.material-card--dark p {
  color: rgba(248, 246, 240, 0.68);
}

@media (min-width: 769px) and (max-width: 1200px) {
  .material-card {
    grid-template-columns: 46% 54%;
  }

  .material-card > span {
    padding-right: 22px;
    padding-left: 22px;
  }

  .material-card > div {
    padding: 22px;
  }

  .material-card h3 {
    font-size: 26px;
  }
}

.cost__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.cost__title {
  grid-column: 1 / 7;
}

.cost__title h2 {
  max-width: 760px;
  margin: 42px 0 34px;
}

.cost__title > p:not(.section-index) {
  max-width: 550px;
  margin-bottom: 42px;
  color: rgba(248, 246, 240, 0.62);
}

.cost-factors {
  padding-top: 4px;
  grid-column: 8 / 13;
}

.cost-factors > .eyebrow {
  margin-bottom: 32px;
}

.cost-factors ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.cost-factors li {
  display: grid;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 54px 1fr;
  color: rgba(248, 246, 240, 0.84);
}

.cost-factors li span {
  color: rgba(248, 246, 240, 0.38);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.responsibility__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
}

.responsibility__principles {
  display: grid;
  align-self: stretch;
  grid-column: 1 / 5;
  align-content: center;
  color: var(--muted);
}

.responsibility__principles span {
  display: flex;
  min-height: 88px;
  padding: 22px 0;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.responsibility__principles span:last-child {
  border-bottom: 1px solid var(--line);
}

.responsibility__copy {
  padding: 24px 0 0 clamp(32px, 5vw, 80px);
  grid-column: 5 / 13;
}

.responsibility__copy h2 {
  margin: 42px 0 52px;
}

.responsibility__lead {
  max-width: 760px;
  margin: 0 0 36px;
  padding-left: 30px;
  border-left: 1px solid var(--metal);
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.responsibility__copy > p:not(.section-index):not(.responsibility__lead) {
  max-width: 600px;
  margin-left: 31px;
  color: var(--muted);
}


.faq__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.faq__grid > div:first-child {
  grid-column: 1 / 6;
}

.faq__grid h2 {
  margin-top: 40px;
}

.faq-list {
  grid-column: 7 / 13;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 86px;
  align-items: center;
  cursor: pointer;
  grid-template-columns: 1fr 34px;
  gap: 20px;
  list-style: none;
  font-family: var(--display);
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 15px;
  transition: transform 260ms var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -4px 50px 30px 0;
  color: var(--muted);
}

.brief {
  background: var(--metal-light);
}

.brief__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.brief__heading {
  grid-column: 1 / 7;
}

.brief__heading h2 {
  margin: 42px 0 32px;
  font-size: clamp(42px, 5vw, 74px);
}

.brief__heading > p:not(.section-index) {
  max-width: 540px;
  color: rgba(27, 27, 24, 0.68);
}

.brief-form {
  display: grid;
  grid-column: 8 / 13;
  gap: 26px;
}

.brief-form label {
  display: grid;
  gap: 9px;
}

.brief-form label > span:first-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brief-form input,
.brief-form textarea {
  width: 100%;
  padding: 12px 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(27, 27, 24, 0.42);
  border-radius: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1.5;
  outline: 0;
  resize: vertical;
}

.brief-form input:focus,
.brief-form textarea:focus {
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(27, 27, 24, 0.42);
}

.file-field input {
  display: none;
}

.file-field__button {
  padding: 14px 0;
  border-bottom: 1px solid rgba(27, 27, 24, 0.42);
  color: rgba(27, 27, 24, 0.52);
  font-size: 14px;
}

.brief-form .consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.brief-form .consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid rgba(27, 27, 24, 0.42);
  accent-color: var(--ink);
}

.brief-form .consent-field > span:first-of-type {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.brief-form .consent-field a {
  border-bottom: 1px solid currentColor;
}

.brief-form .button {
  width: 100%;
  margin-top: 8px;
}

.form-note,
.form-status {
  margin: -10px 0 0;
  color: rgba(27, 27, 24, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.form-status--success {
  color: #315d3a;
}

.form-status--error,
.field-error {
  color: #7b2f2b;
}

.field-error {
  min-height: 1.2em;
  margin-top: 8px;
  font-size: 12px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.brief-form .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-note a {
  border-bottom: 1px solid currentColor;
}

.form-status:not(:empty) {
  margin-top: 0;
  padding: 14px;
  border: 1px solid rgba(27, 27, 24, 0.35);
  color: var(--ink);
  font-size: 12px;
}

.site-footer {
  padding: 52px 0;
  background: var(--night);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.brand--footer {
  grid-column: 1 / 4;
}

.site-footer__grid > p {
  grid-column: 4 / 7;
  color: rgba(248, 246, 240, 0.58);
  font-size: 12px;
}

.site-footer nav {
  display: grid;
  grid-column: 8 / 10;
  gap: 9px;
  font-size: 12px;
}

.site-footer__details {
  display: grid;
  grid-column: 10 / 13;
  gap: 24px;
}

.site-footer__contacts {
  display: grid;
  gap: 7px;
  margin: 0;
  color: rgba(248, 246, 240, 0.58);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
  text-align: left;
}

.site-footer__contacts a {
  width: fit-content;
  color: rgba(248, 246, 240, 0.9);
}

.site-footer__contacts a:hover,
.site-footer__contacts a:focus-visible {
  color: var(--white);
}

.site-footer__messengers {
  display: grid;
  gap: 5px;
  margin: 6px 0;
}

.site-footer__requisites-link {
  width: fit-content;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 246, 240, 0.16);
  color: rgba(248, 246, 240, 0.82);
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: rgba(248, 246, 240, 0.28);
  text-underline-offset: 6px;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-header > a:last-child {
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.legal-content {
  width: min(100% - 40px, 840px);
  margin-inline: auto;
  padding-block: 88px 120px;
}

.legal-content h1 {
  margin: 28px 0 56px;
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-content p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 17px;
}

.legal-content a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.seo-page {
  background: var(--paper);
}

.seo-page__hero {
  padding: 150px 0 88px;
  background: var(--night);
  color: var(--white);
}

.breadcrumbs {
  display: flex;
  max-width: 100%;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(248, 246, 240, 0.62);
  font-size: 12px;
}

.breadcrumbs a {
  color: inherit;
  border-bottom: 1px solid rgba(248, 246, 240, 0.36);
}

.breadcrumbs [aria-current="page"] {
  color: var(--white);
}

.seo-page__hero h1 {
  max-width: 1120px;
  margin: 30px 0 34px;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 98px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.seo-page__hero > .shell > p:not(.section-index) {
  max-width: 680px;
  color: rgba(248, 246, 240, 0.72);
  font-size: 18px;
}

.seo-page__back {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.seo-page__content {
  display: grid;
  padding-block: 96px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 48px 28px;
}

.seo-page__content > div:first-child {
  grid-column: 1 / 7;
}

.seo-page__content > aside {
  grid-column: 8 / 13;
}

.seo-page__content h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4vw, 62px);
}

.seo-page__content p,
.seo-page__content li {
  color: var(--muted);
}

.seo-page__content ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.seo-page__content li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.seo-page__section {
  display: grid;
  padding-block: 72px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.seo-page__section > div {
  grid-column: 1 / 8;
}

.seo-page__section > ul,
.seo-page__section > .seo-page__related {
  grid-column: 9 / 13;
}

.seo-page__section h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4vw, 56px);
}

.seo-page__section p {
  max-width: 68ch;
  color: var(--muted);
}

.seo-page__section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.seo-page__related,
.material-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.seo-page__related.shell {
  padding-block: 72px;
  border-top: 1px solid var(--line);
}

.seo-page__related a,
.material-links a {
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
}

.seo-page__related a:focus-visible,
.material-links a:focus-visible,
.breadcrumbs a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.material-links {
  margin-top: 28px;
}

.seo-page__faq {
  display: grid;
  padding-block: 72px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
}

.seo-page__faq > h2 {
  margin: 0;
  grid-column: 1 / 5;
  font-size: clamp(32px, 4vw, 56px);
}

.seo-page__faq > div {
  grid-column: 6 / 13;
}

.seo-page__faq article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.seo-page__faq h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.seo-page__faq p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
}

.seo-page__gallery {
  display: grid;
  padding-bottom: 96px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.seo-page__gallery figure {
  margin: 0;
}

.seo-page__gallery img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.seo-page__gallery figcaption {
  padding-top: 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-page__cta {
  padding: 72px 0;
  background: var(--metal-light);
}

.seo-page__cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.seo-page__cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
}

.article-page__hero {
  padding: 8.5rem 0 3.5rem;
  background: var(--paper);
}

.article-page__hero .breadcrumbs {
  margin-bottom: 3rem;
  color: var(--muted);
}

.article-page__hero .breadcrumbs [aria-current="page"] {
  color: var(--ink);
}

.article-page__hero h1 {
  max-width: 17ch;
  margin: 1.25rem 0;
  font-family: var(--display);
  font-size: clamp(2.75rem, 6vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.article-page__lead {
  max-width: 46rem;
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.55;
}

.article-page__body {
  width: min(calc(100% - 2rem), 78rem);
  max-width: 78rem;
  margin: 0 auto;
  padding: 4rem 0 7rem;
}

.article-page__prose {
  max-width: 48rem;
  margin: 0 auto;
}

.article-page__prose h2 {
  margin: 4.5rem 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.article-page__prose h3 {
  margin: 2.5rem 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.article-page__prose p,
.article-page__prose li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-page__prose a:not(.article-page__actions a) {
  border-bottom: 1px solid currentColor;
}

.article-page__figure {
  width: min(calc(100vw - 2rem), 78rem);
  margin: 3rem 0 3rem 50%;
  transform: translateX(-50%);
}

.article-page__figure--hero {
  margin-top: 0;
}

.article-page__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 52rem;
  object-fit: cover;
}

.article-page__figure figcaption {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.article-page__actions a {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid currentColor;
}

@media (max-width: 768px) {
  .seo-page__section,
  .seo-page__faq,
  .seo-page__content,
  .seo-page__gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-page__section > div,
  .seo-page__section > ul,
  .seo-page__section > .seo-page__related,
  .seo-page__faq > h2,
  .seo-page__faq > div,
  .seo-page__content > div:first-child,
  .seo-page__content > aside {
    grid-column: 1;
  }

  .seo-page__gallery figure {
    grid-column: 1;
  }

  .seo-page__cta .shell {
    align-items: stretch;
    flex-direction: column;
  }

  .article-page__hero {
    padding-top: 6.5rem;
  }

  .article-page__body {
    padding-bottom: 5rem;
  }

  .article-page__actions {
    grid-template-columns: 1fr;
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 48px, 960px);
  }

  .site-header {
    grid-template-columns: auto 1fr;
    gap: 24px;
  }

  .brand__logo {
    width: 180px;
  }

  .site-menu {
    gap: 18px;
  }

  .hero h1 {
    grid-column: 1 / 13;
  }

  .hero__lead {
    grid-column: 1 / 7;
  }

  .button-row {
    grid-column: 7 / 13;
  }

  .intro__statement,
  .intro__facts,
  .section-heading > div {
    grid-column: 3 / 13;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card,
  .project-card--feature,
  .project-card--offset {
    grid-column: auto;
  }

  .gallery-control-group,
  .gallery-control-group--material {
    grid-column: 1 / 13;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card,
  .gallery-card--featured {
    grid-column: span 1;
  }

  .scenario-tabs {
    grid-column: 1 / 6;
  }

  .scenario-panel {
    grid-column: 6 / 13;
  }

  .cost__title {
    grid-column: 1 / 8;
  }

  .cost-factors {
    grid-column: 8 / 13;
  }

  .responsibility__principles {
    grid-column: 1 / 5;
  }

  .responsibility__copy {
    grid-column: 5 / 13;
  }
}

@media (max-width: 768px) {
  :root {
    --shell: min(100% - 36px, 720px);
    --section-space: 92px;
  }

  .site-header {
    position: fixed;
    display: flex;
    padding: 18px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 22;
    align-items: center;
    padding: 10px 0 10px 14px;
    gap: 12px;
    color: var(--white);
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: '';
    transition: transform 220ms ease;
  }

  .menu-toggle__lines::before {
    transform: translateY(-6px);
  }

  .menu-toggle[aria-expanded='true'] .menu-toggle__lines {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] .menu-toggle__lines::before {
    transform: rotate(-90deg);
  }

  .site-menu {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    height: 100dvh;
    min-height: 100vh;
    padding: 110px 28px 36px;
    overflow-y: auto;
    background: var(--night);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 320ms var(--ease);
  }

  .site-menu[data-open='true'] {
    z-index: 20;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: 30px;
    letter-spacing: -0.02em;
  }

  .site-menu .site-menu__max {
    font-size: 30px;
    letter-spacing: -0.02em;
  }

  .site-menu__cta {
    margin-top: 24px;
    border: 1px solid var(--line-light) !important;
    font-family: var(--sans) !important;
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
    text-align: center;
  }

  .hero {
    min-height: 860px;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__content {
    padding-top: 130px;
    padding-bottom: 48px;
  }

  .hero__eyebrow,
  .hero h1,
  .hero__lead,
  .button-row {
    grid-column: 1 / 13;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 74px);
  }

  .hero__footer {
    gap: 28px;
  }

  .button-row {
    justify-content: flex-start;
  }

  .concept-label--hero {
    display: none;
  }

  .intro > .section-index,
  .intro__statement,
  .intro__facts,
  .section-heading > .section-index,
  .section-heading > div {
    grid-column: 1 / 13;
  }

  .intro,
  .section-heading {
    row-gap: 34px;
  }

  .intro__statement > p,
  .section-heading > div > p {
    margin: 30px 0 0;
  }

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

  .intro__facts div {
    display: grid;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
  }

  .intro__facts dt {
    margin: 6px 0 0;
  }

  .project-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .project-card,
  .project-card--feature,
  .project-card--offset {
    grid-column: auto;
  }

  .project-card--feature .project-card__media img {
    aspect-ratio: auto;
  }

  .gallery-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-control-group,
  .gallery-control-group--material {
    grid-column: 1;
  }

  .gallery-filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-filter-row--purpose button:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .gallery-card,
  .gallery-card--featured {
    grid-column: 1;
  }

  .gallery-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-cta p,
  .gallery-cta .button {
    grid-column: 1;
  }

  .gallery-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
  }

  .gallery-dialog__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-dialog__media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .scenario-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .scenario-tabs,
  .scenario-panel {
    grid-column: 1;
  }

  .scenario-panel {
    min-height: 0;
  }

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

  .process-list__result {
    padding: 0 0 0 76px;
    grid-column: 1 / 3;
    text-align: left;
  }

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

  .materials-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .materials-heading .section-index,
  .materials-heading h2,
  .materials-heading > p:last-child {
    grid-column: 1;
  }

  .materials-heading h2 {
    white-space: normal;
  }

  .materials-heading > p:last-child {
    margin-top: 8px;
  }

  .material-card {
    min-height: 390px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }

  .material-card > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    grid-row: 1;
  }

  .material-card > span {
    padding-top: 22px;
  }

  .cost__title,
  .cost-factors,
  .responsibility__principles,
  .responsibility__copy,
  .faq__grid > div:first-child,
  .faq-list,
  .brief__heading,
  .brief-form {
    grid-column: 1 / 13;
  }

  .cost-factors,
  .responsibility__copy,
  .faq-list,
  .brief-form {
    margin-top: 72px;
  }

  .responsibility__principles {
    width: 100%;
  }

  .responsibility__copy {
    padding-left: 0;
  }

  .site-footer__grid {
    gap: 40px 24px;
  }

  .brand--footer,
  .site-footer__grid > p,
  .site-footer nav,
  .site-footer__details {
    grid-column: span 6;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: calc(100% - 28px);
    --section-space: 76px;
  }

  .brand__mark {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .brand__logo {
    width: 160px;
  }

  .brand__name {
    font-size: 10px;
  }

  .hero {
    min-height: 820px;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(10, 10, 8, 0.4) 0%, rgba(10, 10, 8, 0.15) 26%, rgba(10, 10, 8, 0.9) 100%);
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 15px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link--light {
    width: max-content;
  }

  h2 {
    font-size: 38px;
  }

  .project-card__meta {
    grid-template-columns: 1fr;
  }

  .project-card__meta > p {
    text-align: left;
  }

  .scenario-tabs button:hover,
  .scenario-tabs button[aria-selected='true'] {
    padding-left: 10px;
  }

  .scenario-panel {
    padding: 30px 22px;
  }

  .scenario-panel__deliverable {
    grid-template-columns: 1fr;
  }

  .process-list li {
    gap: 16px;
  }

  .process-list__result {
    padding-left: 64px;
  }

  .material-card {
    min-height: 0;
  }

  .responsibility__principles span {
    min-height: 72px;
  }

  .responsibility__lead {
    padding-left: 18px;
  }

  .responsibility__copy > p:not(.section-index) {
    margin-left: 19px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 18px;
  }

  .brief__heading h2 {
    font-size: 38px;
  }

  .brand--footer,
  .site-footer__grid > p,
  .site-footer nav,
  .site-footer__details {
    grid-column: 1 / 13;
  }
}

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

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

.cookie-banner {
  position: fixed;
  z-index: 1200;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  width: min(720px, calc(100vw - 32px));
  padding: 24px;
  color: var(--paper);
  background: rgba(18, 18, 16, 0.97);
  border: 1px solid rgba(242, 239, 232, 0.22);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-banner p {
  max-width: 52ch;
  margin: 0;
  color: rgba(242, 239, 232, 0.76);
  line-height: 1.5;
}

.cookie-banner a,
.text-button {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-banner .button {
  min-width: 132px;
  white-space: nowrap;
}

.text-button {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .cookie-banner__actions {
    flex-wrap: wrap;
  }
}
