:root {
  color-scheme: light;
  --ink: #111513;
  --ink-soft: #2d3430;
  --muted: #6e766f;
  --paper: #f4f3ef;
  --paper-strong: #fbfaf6;
  --stone: #d9ddd6;
  --line: rgba(17, 21, 19, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #17483d;
  --accent-bright: #c6e2d8;
  --silver: #e8ebe7;
  --radius: 28px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --shadow-soft: 0 24px 80px rgba(33, 43, 39, 0.14);
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --font-text: "Aptos", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background-image:
    linear-gradient(rgba(17, 21, 19, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 21, 19, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 70%, transparent);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 68px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(17, 21, 19, 0.58);
  color: #fff;
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
  transition: background 600ms var(--ease), transform 600ms var(--ease), border-color 600ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(17, 21, 19, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand__mark {
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.brand__mark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link {
  padding: 11px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  transition: color 500ms var(--ease), background 500ms var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.header-cta {
  padding: 14px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transition: transform 500ms var(--ease), background 500ms var(--ease);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--accent-bright);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  min-width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: background 500ms var(--ease), color 500ms var(--ease), transform 500ms var(--ease);
}

.language-switch button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.language-switch button.is-active {
  background: #fff;
  color: var(--ink);
}

.language-switch--mobile {
  margin-top: 12px;
  border-color: rgba(255, 255, 255, 0.22);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  position: relative;
}

.menu-button span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 600ms var(--ease), top 600ms var(--ease);
}

.menu-button span:first-child {
  top: 19px;
}

.menu-button span:last-child {
  top: 28px;
}

.menu-button.is-open span:first-child {
  top: 24px;
  transform: rotate(45deg);
}

.menu-button.is-open span:last-child {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 15;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 34px;
  padding: 120px 24px 40px;
  background: rgba(17, 21, 19, 0.92);
  color: #fff;
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
  text-align: center;
}

.mobile-menu a:not(.button) {
  font-family: var(--font-display);
  font-size: clamp(34px, 12vw, 72px);
  line-height: 0.95;
}

.hero {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 150px 0 54px;
  overflow: hidden;
  color: #fff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background:
    linear-gradient(90deg, rgba(17, 21, 19, 0.75), rgba(17, 21, 19, 0.18) 54%, rgba(17, 21, 19, 0.66)),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=84") center/cover;
  transform: scale(1.03);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(to top, rgba(17, 21, 19, 0.9), transparent 42%),
    radial-gradient(circle at 20% 80%, rgba(198, 226, 216, 0.18), transparent 34%);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.35fr);
  align-items: end;
  gap: clamp(30px, 8vw, 130px);
}

.hero__copy {
  max-width: 910px;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.75;
}

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

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

h1 {
  max-width: 1000px;
  margin-bottom: 26px;
  font-size: clamp(56px, 8vw, 122px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 0.94;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
}

.hero__lead,
.page-hero__lead,
.section-heading p:not(.eyebrow),
.intro-text p,
.detail-copy p,
.portfolio-teaser__copy p,
.cta-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero__lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  padding: 7px 8px 7px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 600ms var(--ease), background 600ms var(--ease), color 600ms var(--ease), border-color 600ms var(--ease);
}

.button i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-style: normal;
  transition: transform 600ms var(--ease), background 600ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
}

.button:active {
  transform: scale(0.98);
}

.button:hover i {
  transform: translate(3px, -1px) scale(1.04);
}

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

.button--light i {
  background: var(--silver);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost i {
  background: rgba(255, 255, 255, 0.13);
}

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

.button--dark i {
  background: rgba(255, 255, 255, 0.13);
}

.hero-panel {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel > * {
  display: block;
  margin: 0;
  padding: 20px;
  border-radius: calc(var(--radius) - 10px);
  background: rgba(255, 255, 255, 0.11);
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-panel strong {
  padding-top: 0;
  padding-bottom: 4px;
  font-family: var(--font-display);
  font-size: 42px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.section {
  padding: clamp(88px, 12vw, 170px) 0;
}

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

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

.section--dark .eyebrow,
.section--dark p,
.section--dark span {
  color: rgba(255, 255, 255, 0.7);
}

.section--stone {
  background: var(--stone);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.section-heading--wide {
  max-width: 1080px;
  margin-bottom: 56px;
}

.intro-text {
  padding-top: 56px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.metrics div,
.contact-cards div,
.control-list div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(17, 21, 19, 0.05);
}

.metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.metrics span,
.contact-cards span,
.control-list span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.4;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 16px;
}

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  transition: transform 700ms var(--ease), background 700ms var(--ease);
}

.service-card:nth-child(2) {
  transform: translateY(44px);
}

.service-card span,
.detail-number,
.project-card span,
.timeline-item > span {
  display: inline-block;
  margin-bottom: 26px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section--dark .service-card span {
  color: var(--accent-bright);
}

.service-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.service-card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(150deg, rgba(198, 226, 216, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.service-card:nth-child(2):hover {
  transform: translateY(34px);
}

.portfolio-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.75fr);
  gap: clamp(40px, 9vw, 150px);
  align-items: center;
}

.portfolio-teaser__copy {
  max-width: 650px;
}

.portfolio-teaser__copy .button {
  margin-top: 18px;
}

.image-stack {
  position: relative;
  min-height: 670px;
}

.image-stack img {
  position: absolute;
  width: 68%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.image-stack img:first-child {
  top: 0;
  right: 0;
}

.image-stack img:last-child {
  left: 0;
  bottom: 0;
  width: 56%;
  height: 420px;
}

.process-band {
  display: grid;
  gap: 50px;
}

.process-band h2 {
  max-width: 900px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-steps article {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
}

.process-steps span {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.process-steps p {
  color: var(--muted);
  line-height: 1.5;
}

.cta-section {
  background: var(--ink);
}

.cta-panel {
  min-height: 460px;
  display: grid;
  align-content: end;
  justify-items: start;
  padding: clamp(32px, 7vw, 82px);
  border-radius: calc(var(--radius) + 10px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 21, 19, 0.88), rgba(17, 21, 19, 0.38)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.cta-panel h2 {
  max-width: 900px;
}

.cta-panel p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  padding: 180px 0 96px;
  background:
    linear-gradient(135deg, rgba(244, 243, 239, 0.94), rgba(217, 221, 214, 0.84)),
    radial-gradient(circle at 80% 20%, rgba(23, 72, 61, 0.16), transparent 30%);
}

.page-hero--services,
.page-hero--process {
  background:
    linear-gradient(120deg, rgba(17, 21, 19, 0.84), rgba(17, 21, 19, 0.48)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1900&q=82") center/cover;
  color: #fff;
}

.page-hero--process {
  background:
    linear-gradient(120deg, rgba(17, 21, 19, 0.86), rgba(17, 21, 19, 0.5)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.page-hero--services .page-hero__lead,
.page-hero--process .page-hero__lead {
  color: rgba(255, 255, 255, 0.76);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
  gap: clamp(30px, 8vw, 120px);
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 0;
}

.page-hero__lead {
  margin-bottom: 10px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.detail-grid--reverse {
  grid-template-columns: minmax(360px, 0.62fr) minmax(0, 0.9fr);
}

.detail-media {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.42);
}

.detail-media img {
  width: 100%;
  height: min(66vw, 680px);
  object-fit: cover;
  border-radius: var(--radius);
}

.detail-copy {
  max-width: 620px;
}

.clean-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  grid-column: span 6;
  min-height: 640px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  color: #fff;
  isolation: isolate;
}

.project-card--large {
  grid-column: span 8;
  min-height: 760px;
}

.project-card--wide {
  grid-column: span 12;
  min-height: 620px;
}

.project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(17, 21, 19, 0.88), rgba(17, 21, 19, 0.08) 70%);
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card div {
  padding: clamp(28px, 4vw, 52px);
}

.project-card span {
  color: rgba(255, 255, 255, 0.72);
}

.project-card h2 {
  margin-bottom: 14px;
}

.project-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.55;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: 0 18px 60px rgba(17, 21, 19, 0.06);
}

.timeline-item h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 58px);
}

.timeline-item p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.control-list {
  display: grid;
  gap: 12px;
}

.control-list div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
}

.control-list strong {
  display: block;
  font-size: 20px;
}

.contact-hero {
  min-height: 100dvh;
  padding: 180px 0 96px;
  background:
    linear-gradient(90deg, rgba(244, 243, 239, 0.94), rgba(244, 243, 239, 0.74)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1900&q=82") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: clamp(34px, 8vw, 110px);
  align-items: start;
}

.contact-copy {
  padding-top: 28px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.contact-cards strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 9px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
}

.contact-form label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  margin: 4px;
}

.form-note {
  margin: 0 12px 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  padding: 58px 0;
  background: #0d100f;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) 1fr minmax(220px, 0.4fr);
  gap: 40px;
  align-items: start;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer p,
.footer-contact,
.site-footer nav a {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.site-footer nav a {
  transition: color 400ms var(--ease);
}

.site-footer nav a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  filter: blur(10px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease), filter 850ms var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .desktop-nav,
  .header-cta,
  .site-header > .language-switch {
    display: none;
  }

  .menu-button {
    display: block;
    position: fixed;
    top: 32px;
    right: max(24px, calc((100vw - 1180px) / 2 + 24px));
    z-index: 25;
    flex: 0 0 48px;
  }

  .hero__content,
  .split,
  .portfolio-teaser,
  .page-hero__grid,
  .detail-grid,
  .detail-grid--reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .process-steps,
  .metrics,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(2),
  .service-card:nth-child(2):hover {
    transform: none;
  }

  .hero-panel {
    max-width: 420px;
  }

  .project-card,
  .project-card--large,
  .project-card--wide {
    grid-column: span 12;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1380px);
  }

  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    transform: none;
    display: flex;
    justify-content: space-between;
    min-height: 60px;
    padding: 6px 7px 6px 14px;
    gap: 10px;
  }

  .menu-button {
    position: fixed;
    top: 18px;
    right: 19px;
    z-index: 25;
    display: block !important;
    flex: 0 0 48px;
  }

  .brand {
    font-size: 15px;
  }

  .brand__mark {
    width: 28px;
    height: 28px;
  }

  .hero,
  .contact-hero {
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(34px, 11vw, 58px);
    line-height: 0.98;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: space-between;
  }

  .section {
    padding: 76px 0;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .image-stack img,
  .image-stack img:first-child,
  .image-stack img:last-child {
    position: static;
    width: 100%;
    height: 360px;
  }

  .detail-media img {
    height: 420px;
  }

  .project-card,
  .project-card--large,
  .project-card--wide {
    min-height: 520px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-panel {
    min-height: 520px;
  }
}
