@font-face {
  font-family: "VeDa Century Gothic";
  src:
    url("assets/fonts/CenturyGothic.ttf") format("truetype"),
    local("Century Gothic"),
    local("CenturyGothic");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "VeDa Century Gothic";
  src:
    url("assets/fonts/CenturyGothic-Bold.ttf") format("truetype"),
    local("Century Gothic Bold"),
    local("CenturyGothic-Bold");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #111111;
  --ink: #1f1f1d;
  --muted: #686761;
  --paper: #f6f4ee;
  --white: #ffffff;
  --stone: #d9d4c8;
  --green: #596554;
  --red: #d10000;
  --line: rgba(31, 31, 29, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --max: 1180px;
  --header: 74px;
  --image-radius: 18px;
  --font-main: "VeDa Century Gothic", "Century Gothic", CenturyGothic,
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

.site-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
  pointer-events: none;
}

.site-background-video,
.site-background-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-background-video {
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02) brightness(1);
  pointer-events: none;
  user-select: none;
}

.site-background-video::-webkit-media-controls,
.site-background-video::-webkit-media-controls-panel,
.site-background-video::-webkit-media-controls-enclosure,
.site-background-video::-webkit-media-controls-start-playback-button,
.site-background-video::-webkit-media-controls-overlay-play-button,
.site-background-video::-webkit-media-controls-current-time-display,
.site-background-video::-webkit-media-controls-time-remaining-display,
.site-background-video::-webkit-media-controls-timeline {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-background-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.34), rgba(17, 17, 17, 0.08) 48%, rgba(17, 17, 17, 0.22)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.04) 34%, rgba(17, 17, 17, 0.28));
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 7.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header);
  padding: 0 32px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(17, 17, 17, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}

.brand span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  min-height: 42px;
  padding: 11px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
  outline: none;
}

.language-switch {
  display: inline-flex;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.language-switch button {
  min-width: 44px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--black);
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--header));
  padding: clamp(96px, 16svh, 170px) 0 clamp(64px, 11svh, 120px);
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.26), rgba(17, 17, 17, 0.04));
  color: var(--white);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  border-left: 0;
}

.hero h1 {
  color: var(--red);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.44);
}

.eyebrow,
.section-label,
.showcase-grid p,
.awards-layout p {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.46);
}

.hero-lead {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.55vw, 1.38rem);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.48);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
}

.button.primary {
  background: var(--white);
  color: var(--black);
}

.button.secondary {
  border-color: var(--line-dark);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 244, 238, 0.9);
  backdrop-filter: blur(18px);
}

.stats-band div {
  min-height: 164px;
  padding: 30px 32px;
  border-right: 1px solid var(--line);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--black);
  font-family: var(--font-main);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.92;
}

.stats-band span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  max-width: 220px;
}

.section {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.intro-section,
.projects-section,
.awards-section {
  background: rgba(246, 244, 238, 0.92);
  box-shadow: 0 0 0 100vmax rgba(246, 244, 238, 0.92);
  clip-path: inset(0 -100vmax);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

.section-header.wide {
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 0.78fr);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: 72px;
  align-items: start;
  padding-top: 18px;
}

.text-stack {
  display: grid;
  gap: 22px;
  color: rgba(31, 31, 29, 0.74);
  font-size: 1.06rem;
}

.services-section {
  width: 100%;
  max-width: none;
  padding: 100px max(24px, calc((100% - var(--max)) / 2));
  background: rgba(17, 17, 17, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.services-section .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.service-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.services-grid article {
  --reveal-delay: 0ms;
  min-height: 300px;
  padding: 30px;
  background: rgba(17, 17, 17, 0.72);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    background 220ms ease;
}

.services-grid article.service-reveal {
  transform: translateY(48px) scale(0.98);
}

.services-grid article.service-reveal.is-visible {
  transform: translateY(0) scale(1);
}

.services-grid article:nth-child(1) {
  --reveal-delay: 90ms;
}

.services-grid article:nth-child(2) {
  --reveal-delay: 180ms;
}

.services-grid article:nth-child(3) {
  --reveal-delay: 270ms;
}

.services-grid article:nth-child(4) {
  --reveal-delay: 360ms;
}

.services-grid article:hover {
  background: rgba(17, 17, 17, 0.86);
}

.services-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.services-grid h3 {
  margin-top: 62px;
}

.services-grid p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-grid article {
  min-height: 420px;
  background: transparent;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.showcase-grid article:not(.showcase-large) {
  padding-bottom: 30px;
}

.showcase-grid .showcase-large {
  padding-bottom: 30px;
}

.showcase-media-link {
  display: block;
  height: 100%;
  border-radius: var(--image-radius);
  outline-offset: 6px;
}

.showcase-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.showcase-grid .showcase-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
}

.showcase-media-link:hover img,
.showcase-media-link:focus-visible img {
  filter: brightness(1.04);
  transform: scale(1.015);
}

.showcase-media-link:focus-visible {
  outline: 1px solid var(--red);
}

.showcase-large img {
  height: 100%;
}

.showcase-grid article > div,
.showcase-grid article:not(.showcase-large) {
  display: flex;
  flex-direction: column;
}

.showcase-grid article > div,
.showcase-grid article:not(.showcase-large) p,
.showcase-grid article:not(.showcase-large) h3 {
  padding-left: 0;
  padding-right: 0;
}

.showcase-grid article > div {
  justify-content: flex-end;
  padding-top: 28px;
  padding-bottom: 28px;
}

.showcase-grid .showcase-large > div {
  padding-left: clamp(32px, 4vw, 58px);
}

.showcase-grid article:not(.showcase-large) p {
  margin-top: 24px;
}

.showcase-grid h3 {
  margin-top: 12px;
}

.showcase-grid span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--black);
  outline: none;
}

.project-list {
  display: grid;
  grid-template-columns: minmax(180px, 0.26fr) minmax(0, 0.74fr);
  gap: clamp(32px, 5vw, 72px);
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.project-list h3 {
  max-width: 220px;
  font-size: clamp(1.35rem, 2.1vw, 2.2rem);
  line-height: 1.04;
}

.project-list ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: project-list;
}

.project-list li {
  counter-increment: project-list;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.project-list li::before {
  content: "0" counter(project-list);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
}

.project-list li span {
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.project-list em {
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
}

.project-list a:hover,
.project-list a:focus-visible {
  color: var(--red);
  outline: none;
}

.video-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: clamp(430px, 56svh, 560px);
  margin: -1px 0 100px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.02));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.16),
    inset 0 -1px rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.video-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(var(--max), calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  padding: 88px 0;
}

.video-copy .section-label {
  color: var(--red);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.48);
}

.video-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.video-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.52);
}

.awards-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.awards-layout article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.awards-layout > article:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 34px;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.awards-layout h3 {
  margin-top: 14px;
}

.awards-layout span {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}

.awards-layout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 700;
}

.awards-layout article.award-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.award-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.award-feature div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.detail-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--image-radius);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.48fr);
  gap: 72px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  background: rgba(246, 244, 238, 0.92);
  box-shadow: 0 0 0 100vmax rgba(246, 244, 238, 0.92);
  clip-path: inset(0 -100vmax);
}

.contact-section h2 {
  margin-top: 14px;
}

.contact-section p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 14px;
  align-content: start;
  margin: 0;
  font-style: normal;
}

.contact-card a,
.contact-card span {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  font-size: 1.08rem;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--red);
  outline: none;
}

.project-page {
  position: relative;
  z-index: 1;
  background: rgba(246, 244, 238, 0.94);
}

.project-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  color: var(--white);
}

.project-hero-image,
.project-hero::after {
  position: absolute;
  inset: 0;
}

.project-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.66), rgba(17, 17, 17, 0.18) 54%, rgba(17, 17, 17, 0.42)),
    linear-gradient(180deg, rgba(17, 17, 17, 0.14), rgba(17, 17, 17, 0.68));
}

.project-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 126px 0 84px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 52px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--white);
  outline: none;
}

.project-hero h1 {
  max-width: 980px;
  margin-top: 16px;
  color: var(--white);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.52);
}

.project-hero-lead {
  max-width: 640px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.6vw, 1.42rem);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

.project-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.project-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 72px;
  align-items: start;
}

.project-facts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.project-facts div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.project-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.68rem);
  font-weight: 400;
  line-height: 1.08;
}

.project-copy h2 {
  max-width: 820px;
  margin-top: 14px;
}

.project-copy p {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(31, 31, 29, 0.74);
  font-size: 1.06rem;
}

.project-image-band {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 96px;
}

.project-image-band img {
  width: 100%;
  max-height: 72svh;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.16);
}

.project-gallery-header {
  display: grid;
  grid-template-columns: minmax(160px, 0.26fr) minmax(0, 0.74fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 42px;
}

.project-gallery-header h2 {
  max-width: 860px;
}

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

.project-gallery figure {
  min-height: 420px;
  margin: 0;
}

.project-gallery figure.wide {
  grid-column: span 2;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.project-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.project-location {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.project-location img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.project-location span {
  display: block;
  margin-top: 22px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-location h3 {
  margin-top: 14px;
  font-size: clamp(1.3rem, 1.8vw, 1.95rem);
}

.project-location p {
  margin-top: 18px;
  color: var(--muted);
}

.project-detail-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  align-items: stretch;
}

.project-detail-block img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--image-radius);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

.project-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 0 34px 40px;
}

.project-detail-copy h2 {
  margin-top: 14px;
}

.project-detail-copy p {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
}

.project-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) auto;
  gap: 36px;
  align-items: end;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 96px;
  border-top: 1px solid var(--line);
}

.project-cta p {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
}

.project-cta .button.primary {
  background: var(--black);
  color: var(--white);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 32px;
  background: rgba(17, 17, 17, 0.94);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  backdrop-filter: blur(18px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .intro-layout,
  .project-overview,
  .project-detail-block,
  .awards-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - var(--header));
    padding: 120px 0 88px;
  }

  .hero-content {
    border-left: 0;
    border-top: 0;
  }

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

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

  .showcase-grid .showcase-large,
  .awards-layout article.award-feature {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .award-feature img {
    height: 560px;
  }

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

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

  .project-detail-copy {
    padding: 34px 0 0;
  }

  .project-detail-block img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 68px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0 16px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .nav {
    justify-content: flex-end;
  }

  .nav a {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 0.84rem;
  }

  .nav a:nth-child(2),
  .nav a:nth-child(3) {
    display: none;
  }

  .language-switch button {
    min-width: 38px;
    min-height: 32px;
  }

  .hero {
    min-height: calc(100svh - var(--header));
    padding: 96px 0 64px;
  }

  .site-background-video {
    transform: scale(1.18);
    transform-origin: center center;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 0;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .stats-band,
  .services-grid,
  .showcase-grid,
  .project-list,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    min-height: 132px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .project-section,
  .project-image-band,
  .project-cta,
  .contact-section {
    width: min(100% - 32px, var(--max));
    padding: 72px 0;
  }

  .project-hero {
    min-height: calc(100svh - var(--header));
  }

  .project-hero-content {
    width: min(100% - 32px, var(--max));
    padding: 96px 0 62px;
  }

  .back-link {
    margin-bottom: 42px;
  }

  .project-overview {
    gap: 36px;
  }

  .project-gallery-header {
    display: block;
    margin-bottom: 34px;
  }

  .project-gallery-header h2 {
    margin-top: 12px;
  }

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

  .project-location-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-gallery figure,
  .project-gallery figure.wide {
    grid-column: auto;
    min-height: 300px;
  }

  .project-detail-block img {
    min-height: 360px;
  }

  .project-detail-copy {
    padding: 22px 0 0;
  }

  .project-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-section {
    padding: 72px 16px;
  }

  .section-header {
    display: block;
    margin-bottom: 36px;
  }

  .section-header h2,
  .intro-layout h2 {
    margin-top: 12px;
  }

  .intro-layout {
    gap: 28px;
  }

  .services-grid article {
    min-height: 230px;
    padding: 24px;
  }

  .services-grid h3 {
    margin-top: 42px;
  }

  .showcase-grid article {
    min-height: auto;
  }

  .showcase-grid article:not(.showcase-large) {
    padding-bottom: 24px;
  }

  .showcase-grid img,
  .showcase-large img {
    height: 280px;
  }

  .showcase-grid article > div,
  .showcase-grid article:not(.showcase-large) p,
  .showcase-grid article:not(.showcase-large) h3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .showcase-grid .showcase-large > div {
    padding-left: 20px;
  }

  .showcase-grid article > div {
    padding-bottom: 24px;
  }

  .project-list {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 42px;
    padding: 28px 0 0;
  }

  .project-list h3 {
    max-width: none;
  }

  .project-list li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 4px 14px;
    align-items: start;
    padding: 18px 0;
  }

  .project-list em {
    grid-column: 2;
    white-space: normal;
  }

  .video-section {
    min-height: 430px;
    margin-bottom: 72px;
  }

  .video-copy {
    width: min(100% - 32px, var(--max));
    min-height: inherit;
    padding: 56px 0;
  }

  .awards-layout > article:first-child,
  .award-feature div {
    min-height: auto;
    padding: 24px;
  }

  .awards-layout ul {
    grid-template-columns: 1fr;
  }

  .award-feature img {
    height: 420px;
  }

  .detail-gallery img {
    height: 300px;
  }

  .contact-section {
    gap: 34px;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }
}

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

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