:root {
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ink: #111719;
  --muted: #6f7877;
  --paper: #f7f5ef;
  --white: #ffffff;
  --soft: #e7ece9;
  --line: rgba(17, 23, 25, 0.13);
  --charcoal: #0f242e;
  --forest: #173947;
  --night: #061217;
  --clay: #457d9b;
  --sand: #d7e5e5;
  --logo-steel: #457d9b;
  --logo-teal: #52a4b5;
  --logo-aqua: #5ec7c9;
  --title-h1: 5.8rem;
  --title-h2: 4.1rem;
  --title-h3: 2.1rem;
  --title-h4: 1.3rem;
  --container: min(1200px, calc(100vw - 44px));
  --narrow: min(860px, calc(100vw - 44px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  text-rendering: geometricPrecision;
  max-width: 100vw;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  transition: transform 0.2s ease;
}

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

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

.narrow {
  width: var(--narrow);
}

.section {
  padding-block: clamp(78px, 10vw, 142px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(247, 245, 239, 0.86);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 23, 25, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1320px, calc(100vw - 40px));
  height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  width: auto;
  height: 75px;
}

.site-footer .brand-logo {
  filter: invert(1);
}
.brand-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.1vw + 0.9rem, 1.6rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.nav-item {
  position: relative;
}

.nav-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  position: relative;
  opacity: 0.82;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  opacity: 1;
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  transform: scaleX(1);
}


.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.site-header.is-scrolled .nav-cta,
.site-header.nav-active .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.nav-cta-mobile,
.menu-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: url("assets/hero/home.webp")
    center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5, 13, 16, 0) 0%,
    rgba(5, 13, 16, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100vw - 36px));
  margin-top: 42px;
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0;
  color: inherit;
  text-wrap: balance;
}

h1 {
  font-size: var(--title-h1);
  line-height: 0.9;
}

.hero h1,
.project-hero h1,
.contact-hero h1 {
  font-family: Georgia, serif;
}

h2 {
  font-size: var(--title-h2);
  line-height: 0.98;
}

h3 {
  font-size: var(--title-h3);
  line-height: 1.12;
}

h4 {
  font-size: var(--title-h4);
  line-height: 1.18;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: var(--title-h1);
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 500;
}

.hero-content > p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 19px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.button span {
  transition: transform 0.25s ease;
}

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

.button:hover span,
.button:focus-visible span {
  transform: translateX(3px);
}

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

.button-light:hover,
.button-light:focus-visible {
  background: var(--sand);
}

.button-light-soft {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(17, 23, 25, 0.12);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--forest);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.54);
  color: var(--white);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.partner-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper), #eef2ee);
  border-block: 1px solid rgba(17, 23, 25, 0.06);
}

.partner-marquee {
  --partner-gap: clamp(34px, 5vw, 76px);
  width: 100%;
  overflow: hidden;
  padding-block: clamp(14px, 2vw, 22px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: var(--partner-gap);
  animation: partner-scroll 118s linear infinite;
  will-change: transform;
}

.partner-list {
  display: flex;
  align-items: center;
  gap: var(--partner-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo {
  --logo-scale: 1;
  flex: 0 0 auto;
  width: clamp(146px, 15vw, 218px);
  height: clamp(58px, 6.5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px clamp(12px, 2vw, 24px);
}

.partner-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) saturate(0.2) contrast(0.92);
  mix-blend-mode: multiply;
  transform: scale(var(--logo-scale));
  transform-origin: center;
}

.logo-marriott,
.logo-tobacco {
  --logo-scale: 1.08;
}

.logo-wide {
  --logo-scale: 0.98;
  width: clamp(172px, 18vw, 244px);
}

.logo-square {
  width: clamp(120px, 11vw, 160px);
}

.logo-tall {
  width: clamp(102px, 9vw, 138px);
}

.logo-compact {
  width: clamp(132px, 12vw, 174px);
}

.logo-wide img {
  opacity: 0.52;
}

.logo-bbi,
.logo-scc {
  --logo-scale: 1.05;
  width: clamp(178px, 19vw, 258px);
}

@keyframes partner-scroll {
  to {
    transform: translate3d(calc(-50% - (var(--partner-gap) / 2)), 0, 0);
  }
}

.about-section {
  padding-top: clamp(70px, 8vw, 118px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 118px);
}

.about-image {
  margin: 0;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 0.96;
  object-fit: cover;
}

.about-copy h2,
.stages-grid h2,
.faq-grid h2{
  margin-bottom: 22px;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.about-copy h2 {
  max-width: 520px;
}

.about-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 14px;
}

.about-copy .button {
  margin-top: 16px;
}

.services-showcase {
  background: var(--forest);
  color: var(--white);
}

.services-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  align-items: start;
  gap: clamp(44px, 9vw, 132px);
  margin-bottom: clamp(54px, 7vw, 84px);
}

.services-showcase-heading h2 {
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.services-showcase-heading h2 span {
  font-style: italic;
  font-weight: 500;
}

.services-showcase-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(38px, 3.2vw, 48px) clamp(20px, 2.7vw, 32px);
}

.service-card {
  min-width: 0;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  object-fit: cover;
}

.service-card h3 {
  margin: clamp(20px, 2vw, 27px) 0 13px;
  font-size: var(--title-h3);
  font-weight: 500;
  line-height: 1.12;
}

.service-card p {
  max-width: 95%;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  line-height: 1.55;
}

.service-card .small-link {
  margin-top: 18px;
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.service-card .small-link:hover,
.service-card .small-link:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.partners-section {
  scroll-margin-top: 76px;
  background: var(--forest);
  color: var(--white);
}

.partners-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  align-items: start;
  gap: clamp(44px, 9vw, 132px);
  margin-bottom: clamp(48px, 6vw, 76px);
}

.partners-heading h2 {
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.partners-heading h2 span {
  font-style: italic;
  font-weight: 500;
}

.partners-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(28px, 5vw, 74px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.partners-card {
  min-width: 0;
  min-height: clamp(108px, 9vw, 142px);
  display: grid;
  place-items: center;
  padding: clamp(10px, 1.6vw, 22px);
}

.partners-logo {
  --partner-logo-width: 190px;
  --partner-logo-height: 52px;
  display: block;
  width: min(var(--partner-logo-width), 100%);
  height: var(--partner-logo-height);
  object-fit: contain;
  object-position: center;
  opacity: 0.84;
  filter: brightness(0) saturate(100%) invert(65%) sepia(28%) saturate(631%)
    hue-rotate(140deg) brightness(93%) contrast(86%);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.partners-card:hover .partners-logo,
.partners-card:focus-within .partners-logo {
  opacity: 1;
  transform: scale(1.035);
}

.partners-logo-kaindl {
  --partner-logo-width: 100px;
  --partner-logo-height: 90px;
}

.partners-logo-egger {
  --partner-logo-width: 218px;
  --partner-logo-height: 60px;
}

.partners-logo-gtv {
  --partner-logo-width: 168px;
  --partner-logo-height: 42px;
}

.partners-logo-yildiz {
  --partner-logo-width: 228px;
  --partner-logo-height: 82px;
}

.partners-logo-sch {
  --partner-logo-width: 250px;
  --partner-logo-height: 48px;
}

.partners-logo-hansgrohe {
  --partner-logo-width: 250px;
  --partner-logo-height: 44px;
}

.partners-logo-starax {
  --partner-logo-width: 230px;
  --partner-logo-height: 62px;
}

.partners-logo-kronospan {
  --partner-logo-width: 235px;
  --partner-logo-height: 58px;
}

.partners-logo-alveus {
  --partner-logo-width: 250px;
  --partner-logo-height: 44px;
}

.section-center {
  text-align: center;
}

.section-center h2 {
  margin-bottom: 14px;
  font-size: var(--title-h2);
  line-height: 1.02;
}

.section-center h2 span,
.stages-grid h2 span,
.faq-grid h2 span,
.metrics-section h2 span {
  font-style: italic;
}

.section-center p {
  width: min(680px, 100%);
  margin-inline: auto;
  color: var(--muted);
  font-size: 14px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 76px);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metrics-grid article {
  min-height: 166px;
  padding: 30px clamp(20px, 4vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics-grid p {
  margin-bottom: 14px;
  color: #31393a;
  font-size: 12px;
  font-weight: 700;
}

.metrics-grid strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: clamp(3.1rem, 4.6vw, 4.9rem);
  font-weight: 500;
  line-height: 0.88;
}

.metrics-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.scroll-gallery-section {
  --gallery-copy-opacity: 0.18;
  position: relative;
  min-height: 230svh;
  overflow: clip;
  background: var(--white);
}

.scroll-gallery-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.scroll-gallery-copy {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 42px));
  color: var(--ink);
  opacity: var(--gallery-copy-opacity);
  text-align: center;
}

.scroll-gallery-copy h2 {
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.scroll-gallery-copy h2 span {
  display: block;
}

.scroll-gallery-copy h2 span:first-child {
  margin-bottom: clamp(26px, 4vw, 54px);
  font-style: italic;
}

.scroll-gallery-copy h2 span:last-child {
  max-width: 840px;
  margin-inline: auto;
  font-size: inherit;
}

.scroll-gallery-collage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.scroll-gallery-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 22px 52px rgba(17, 23, 25, 0.1);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.scroll-gallery-card-a {
  width: clamp(330px, 33vw, 680px);
  height: clamp(212px, 21vw, 420px);
  z-index: 7;
}

.scroll-gallery-card-b {
  width: clamp(250px, 24vw, 470px);
  height: clamp(210px, 20vw, 395px);
  z-index: 3;
}

.scroll-gallery-card-c {
  width: clamp(255px, 25vw, 510px);
  height: clamp(170px, 17vw, 350px);
  z-index: 5;
}

.scroll-gallery-card-d {
  width: clamp(290px, 29vw, 590px);
  height: clamp(164px, 16vw, 325px);
  z-index: 2;
}

.scroll-gallery-card-e {
  width: clamp(270px, 26vw, 535px);
  height: clamp(205px, 20vw, 400px);
  z-index: 6;
}

.scroll-gallery-card-f {
  width: clamp(280px, 29vw, 580px);
  height: clamp(164px, 17vw, 335px);
  z-index: 4;
}

.scroll-gallery-card-g {
  width: clamp(250px, 23vw, 470px);
  height: clamp(188px, 17vw, 350px);
  z-index: 1;
}

.stages-intro {
  padding-top: clamp(30px, 6vw, 82px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.stages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.74fr);
  align-items: end;
  gap: clamp(42px, 9vw, 132px);
}

.stages-grid h2 {
  margin: 0;
  max-width: 700px;
}

.stages-grid p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.process-stack {
  background: var(--charcoal);
}

.process-panel {
  position: relative;
  min-height: clamp(480px, 60vw, 630px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.process-panel.has-lazy-background {
  background-image: var(--lazy-background-image);
}

.process-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 29, 36, 0.88), rgba(9, 29, 36, 0.54) 48%, rgba(9, 29, 36, 0.23)),
    linear-gradient(180deg, rgba(9, 29, 36, 0.14), rgba(9, 29, 36, 0.86));
}

.process-content {
  display: grid;
  grid-template-columns: minmax(0, 650px) auto;
  align-items: end;
  gap: 42px;
  padding-block: clamp(38px, 6vw, 72px);
}

.process-copy {
  max-width: 670px;
}

.process-number {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: clamp(4.8rem, 7vw, 7.2rem);
  line-height: 0.8;
}

.process-copy h3 {
  margin-bottom: 14px;
  font-size: var(--title-h3);
  line-height: 1.12;
}

.process-copy p {
  width: min(550px, 100%);
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
}

.process-copy dl {
  width: min(610px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  margin: 0 0 22px;
  padding: 0;
}

.process-copy dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-copy dd {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1;
}

.process-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 2px;
  white-space: nowrap;
}

.work-gallery-section {
  padding-top: 0;
  scroll-margin-top: 76px;
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.78), rgba(255, 255, 255, 0.96) 34%),
    var(--white);
}

.work-gallery-tabs-shell {
  position: sticky;
  top: 76px;
  z-index: 15;
  margin-bottom: 18px;
  border-block: 1px solid rgba(17, 23, 25, 0.08);
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(18px);
}

.work-gallery-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 14px;
  scrollbar-width: thin;
}

.work-gallery-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(17, 23, 25, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(17, 23, 25, 0.68);
  cursor: pointer;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.work-gallery-tab:hover,
.work-gallery-tab:focus-visible {
  border-color: rgba(17, 23, 25, 0.34);
  color: var(--ink);
  transform: translateY(-1px);
}

.work-gallery-tab[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.work-gallery-status {
  min-height: 18px;
  margin-bottom: 18px;
  color: #31393a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-gallery-grid {
  grid-auto-flow: dense;
}

.work-gallery-grid figure:nth-child(12n + 1),
.work-gallery-grid figure:nth-child(12n + 8) {
  grid-column: span 2;
  grid-row: span 2;
}

.work-gallery-grid figure:nth-child(12n + 5),
.work-gallery-grid figure:nth-child(12n + 11) {
  grid-column: span 2;
}

.work-gallery-grid figure:nth-child(12n + 1) img,
.work-gallery-grid figure:nth-child(12n + 8) img {
  min-height: 542px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.other-project-card.is-linked-card,
.project-showcase-card.is-linked-card {
  cursor: pointer;
}

.card-meta {
  margin-bottom: 18px;
  color: #31393a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.other-project-card h3 a,
.project-showcase-copy h3 a {
  color: inherit;
  transition: color 0.2s ease;
}
.other-project-card h3 a:hover,
.other-project-card h3 a:focus-visible,
.project-showcase-copy h3 a:hover,
.project-showcase-copy h3 a:focus-visible {
  color: var(--logo-steel);
}

.small-link {
  width: max-content;
  min-height: 34px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.small-link:hover,
.small-link:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}

.faq-grid {
  width: min(1780px, calc(100vw - clamp(40px, 12vw, 248px)));
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 0.34fr);
  align-items: start;
  gap: clamp(44px, 8vw, 132px);
  margin-bottom: clamp(76px, 9vw, 122px);
}

.faq-grid h2 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: var(--title-h2);
  line-height: 0.98;
}

.faq-grid h2 span {
  display: block;
}

.faq-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(17, 23, 25, 0.52);
  font-size: clamp(1.05rem, 1.35vw, 1.42rem);
  line-height: 1.55;
}

.faq-list {
  border-top: 0;
}

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

.faq-item button {
  width: 100%;
  min-height: clamp(92px, 8.1vw, 136px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 26px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.35vw, 2.52rem);
  font-weight: 500;
  line-height: 1.15;
}

.faq-item button span {
  width: 34px;
  height: 34px;
  justify-self: end;
  position: relative;
}

.faq-item button span::before,
.faq-item button span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item button span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open button span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.32s var(--ease),
    opacity 0.2s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 260px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  max-width: 760px;
  padding: 0 84px 36px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  line-height: 1.7;
}

.final-cta {
  padding-top: clamp(30px, 5vw, 80px);
}

.cta-banner {
  min-height: clamp(290px, 35vw, 460px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 23, 25, 0.16), rgba(17, 23, 25, 0.2));
  background-position: center;
  background-size: cover;
}

.cta-banner.has-lazy-background {
  background-image:
    linear-gradient(rgba(17, 23, 25, 0.16), rgba(17, 23, 25, 0.2)),
    var(--lazy-background-image);
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 31% 0;
  background: rgba(15, 36, 46, 0.42);
  backdrop-filter: blur(1px);
}

.cta-banner > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 24px;
  color: var(--white);
  text-align: center;
  padding-inline: 22px;
}

.cta-banner h2 {
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.project-hero {
  min-height: 92vh;
  min-height: 92svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
  color: var(--white);
}

.project-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.96);
}

.project-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 31, 0.84), rgba(8, 24, 31, 0.42) 54%, rgba(8, 24, 31, 0.18)),
    linear-gradient(180deg, rgba(8, 24, 31, 0.1), rgba(8, 24, 31, 0.88));
}

.project-hero-content {
  padding-block: clamp(132px, 15vw, 214px) clamp(54px, 8vw, 92px);
}

.project-back-link {
  width: max-content;
  min-height: 34px;
  margin-bottom: clamp(46px, 8vw, 96px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.project-back-link::before {
  content: "←";
}

.project-back-link:hover,
.project-back-link:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.project-hero h1 {
  width: min(880px, 100%);
  margin-bottom: 22px;
  font-size: var(--title-h1);
  line-height: 0.88;
}

.project-hero-content > p {
  width: min(650px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
}

.project-hero-facts {
  width: min(740px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.project-hero-facts dt,
.project-facts-panel dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-hero-facts dd,
.project-facts-panel dd {
  margin: 5px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.08;
}

.project-overview {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(231, 236, 233, 0.34)),
    var(--paper);
}

.project-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
  gap: clamp(48px, 8vw, 118px);
}

.project-facts-panel {
  position: sticky;
  top: 108px;
  padding-top: 8px;
}

.project-facts-panel dl {
  display: grid;
  gap: 24px;
  margin: 0 0 30px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.project-facts-panel dt {
  color: rgba(17, 23, 25, 0.48);
}

.project-facts-panel dd {
  color: var(--ink);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(17, 23, 25, 0.16);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(17, 23, 25, 0.68);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.project-description {
  max-width: 840px;
}

.project-description h2,
.project-gallery-heading h2,
.other-projects-heading h2 {
  margin-bottom: 24px;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.project-description h2 {
  max-width: 760px;
}

.project-lead {
  color: #31393a;
  font-size: clamp(1.18rem, 1.8vw, 1.72rem);
  line-height: 1.48;
}

.project-description p {
  color: var(--muted);
}

.project-gallery-section {
  background: var(--white);
}

.project-gallery-heading,
.other-projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: clamp(38px, 8vw, 112px);
  margin-bottom: clamp(42px, 6vw, 74px);
}

.project-gallery-heading h2,
.other-projects-heading h2 {
  margin: 0;
}

.project-gallery-heading h2 span,
.other-projects-heading h2 span {
  display: block;
  font-style: italic;
}

.project-gallery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.project-gallery-grid figure {
  min-width: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.project-gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, rgba(17, 23, 25, 0), rgba(17, 23, 25, 0.44));
  opacity: 0.44;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-gallery-grid figure:hover::after,
.project-gallery-grid figure:focus-within::after {
  opacity: 0.7;
}

.project-gallery-trigger {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  padding: 0;
}

.project-gallery-trigger:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: -7px;
}

.project-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition:
    filter 0.35s ease,
    transform 0.45s var(--ease);
}

.project-gallery-grid figure:hover img,
.project-gallery-grid figure:focus-within img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.project-gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.project-gallery-feature img {
  min-height: 542px;
}

.project-gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.9);
  color: var(--ink);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(17, 23, 25, 0.12);
  pointer-events: none;
}

.gallery-page .project-hero h1 {
  width: min(980px, 100%);
}

.gallery-page-section {
  background:
    linear-gradient(180deg, rgba(247, 245, 239, 0.64), rgba(255, 255, 255, 0.96) 42%),
    var(--white);
}

.gallery-page-heading {
  align-items: start;
}

.gallery-page-heading p {
  max-width: 460px;
}

.gallery-page-grid {
  grid-auto-flow: dense;
}

.gallery-page-grid .gallery-card-wide {
  grid-column: span 2;
}

.gallery-page-grid .gallery-card-tall {
  grid-row: span 2;
}

.gallery-page-grid .gallery-card-tall img {
  min-height: 542px;
}

body.lightbox-open {
  overflow: hidden;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.4vw, 34px);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.project-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(94, 199, 201, 0.18), rgba(7, 22, 27, 0) 32%),
    rgba(5, 13, 16, 0.88);
  backdrop-filter: blur(20px);
}

.project-lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100svh - clamp(24px, 4.8vw, 68px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 21, 27, 0.76);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.38);
  padding: clamp(14px, 2.2vw, 26px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.34s ease,
    transform 0.38s var(--ease);
}

.project-lightbox.is-open .project-lightbox-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-lightbox-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.project-lightbox-topbar h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.8rem);
  line-height: 1.02;
}

.project-lightbox-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.1);
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.project-lightbox-icon:hover,
.project-lightbox-icon:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.project-lightbox-icon span {
  display: block;
  line-height: 1;
}

.project-lightbox-close span {
  margin-top: -2px;
  font-size: 30px;
}

.project-lightbox-nav span {
  margin-top: -4px;
  font-size: 46px;
  font-family: Georgia, serif;
}

.project-lightbox-viewer {
  min-height: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
}

.project-lightbox-figure {
  --lightbox-drag-x: 0px;
  --lightbox-change-x: 0px;
  min-width: 0;
  display: grid;
  gap: 12px;
  margin: 0;
}

.project-lightbox-panel[data-direction="next"] .project-lightbox-figure {
  --lightbox-change-x: -18px;
}

.project-lightbox-panel[data-direction="prev"] .project-lightbox-figure {
  --lightbox-change-x: 18px;
}

.project-lightbox-figure img {
  width: 100%;
  height: min(68svh, 680px);
  max-height: calc(100svh - 250px);
  object-fit: contain;
  background: rgba(247, 245, 239, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  cursor: grab;
  opacity: 1;
  transform: translate3d(var(--lightbox-drag-x), 0, 0) scale(1);
  user-select: none;
  transition:
    opacity 0.22s ease,
    transform 0.3s var(--ease);
}

.project-lightbox-figure.is-dragging img {
  cursor: grabbing;
  transition: none;
}

.project-lightbox-figure.is-changing img {
  opacity: 0.18;
  transform: translate3d(var(--lightbox-change-x), 0, 0) scale(0.985);
}

.project-lightbox-figure figcaption {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.project-lightbox-figure figcaption span:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  white-space: nowrap;
}

.project-lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 5px;
  scrollbar-width: thin;
}

.project-lightbox-thumb {
  width: clamp(60px, 7.5vw, 92px);
  aspect-ratio: 1.24 / 1;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(247, 245, 239, 0.08);
  cursor: pointer;
  opacity: 0.56;
  padding: 3px;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.project-lightbox-thumb:hover,
.project-lightbox-thumb:focus-visible,
.project-lightbox-thumb[aria-pressed="true"] {
  background: rgba(94, 199, 201, 0.16);
  border-color: rgba(94, 199, 201, 0.78);
  opacity: 1;
  transform: translateY(-1px);
}

.project-lightbox-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.project-cta-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 38, 48, 0.92), rgba(12, 38, 48, 0.56));
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.project-cta-strip.has-lazy-background {
  background-image:
    linear-gradient(90deg, rgba(12, 38, 48, 0.92), rgba(12, 38, 48, 0.56)),
    var(--lazy-background-image);
}

.project-cta-content {
  min-height: clamp(330px, 35vw, 480px);
  display: grid;
  align-content: center;
  justify-items: start;
  padding-block: clamp(76px, 10vw, 132px);
}

.project-cta-content h2 {
  width: min(860px, 100%);
  margin: 0 0 26px;
  font-size: var(--title-h2);
  line-height: 0.98;
}

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

.other-projects-heading {
  align-items: center;
}

.other-projects-heading .small-link {
  justify-self: end;
  margin-top: 0;
}

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

.other-project-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 23, 25, 0.08);
  overflow: hidden;
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.other-project-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.other-project-card-media{
  display: block;
  overflow: hidden;
}

.other-project-card img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.other-project-card div {
  padding: 24px;
}

.other-project-card h3 {
  margin-bottom: 12px;
  font-size: var(--title-h3);
}

.other-project-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.projects-hero h1 {
  width: min(960px, 100%);
}

.projects-tabs-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(231, 236, 233, 0.3)),
    var(--paper);
}

.projects-tabs-shell {
  position: sticky;
  top: 76px;
  z-index: 20;
  scroll-margin-top: 76px;
  border-bottom: 1px solid rgba(17, 23, 25, 0.1);
  background: rgba(247, 245, 239, 0.9);
  backdrop-filter: blur(18px);
}

.projects-tabs {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 14px;
  scrollbar-width: thin;
}

.projects-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border: 1px solid rgba(17, 23, 25, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(17, 23, 25, 0.68);
  cursor: pointer;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.projects-tab:hover,
.projects-tab:focus-visible {
  border-color: rgba(17, 23, 25, 0.34);
  color: var(--ink);
  transform: translateY(-1px);
}

.projects-tab[aria-selected="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.projects-panels {
  padding-block: clamp(66px, 8vw, 112px);
}

.projects-panel[hidden] {
  display: none;
}

.projects-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.46fr);
  align-items: end;
  gap: clamp(38px, 8vw, 112px);
  margin-bottom: clamp(42px, 6vw, 74px);
}

.projects-panel-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.projects-panel-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
}

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

.project-showcase-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 25, 0.08);
  background: rgba(255, 255, 255, 0.58);
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.project-showcase-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.project-showcase-card-featured {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.06fr) minmax(290px, 0.72fr);
  grid-template-rows: 1fr;
}

.project-showcase-media {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.project-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 264px;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.97);
  transition:
    filter 0.35s ease,
    transform 0.45s var(--ease);
}

.project-showcase-card:not(.project-showcase-card-featured) .project-showcase-media img {
  aspect-ratio: 1.26 / 1;
}

.project-showcase-card:hover .project-showcase-media img {
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1.035);
}

.project-showcase-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 32px);
}

.project-showcase-copy h3 {
  margin-bottom: 13px;
  font-size: var(--title-h3);
  line-height: 1.08;
}

.project-showcase-card-featured h3 {
  font-size: clamp(2.15rem, 3vw, 3.15rem);
}

.project-showcase-copy > p:not(.card-meta) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.project-card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.project-card-facts dt {
  color: rgba(17, 23, 25, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-card-facts dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.12rem, 1.4vw, 1.45rem);
  line-height: 1.08;
}

.project-showcase-copy .small-link {
  margin-top: 18px;
}

.services-hero .project-hero-image {
  object-position: center 58%;
}

.services-hero-content h1 {
  width: min(1020px, 100%);
}

.services-hero-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-anchor-strip {
  position: sticky;
  top: 76px;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 23, 25, 0.1);
  background: rgba(247, 245, 239, 0.91);
  backdrop-filter: blur(18px);
}

.services-anchor-list {
  width: var(--container);
  margin-inline: auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 14px;
  scrollbar-width: thin;
}

.services-anchor-list a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 23, 25, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(17, 23, 25, 0.68);
  padding: 0 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.services-anchor-list a:hover,
.services-anchor-list a:focus-visible {
  border-color: rgba(17, 23, 25, 0.34);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-1px);
}

.services-intro {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(231, 236, 233, 0.32)),
    var(--paper);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: clamp(38px, 8vw, 112px);
}

.services-intro-grid h2 {
  max-width: 830px;
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.services-intro-grid p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.6;
}

.service-detail-section {
  scroll-margin-top: 144px;
  padding-block: clamp(78px, 10vw, 136px);
  background: var(--paper);
}

.service-detail-section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(231, 236, 233, 0.46)),
    var(--soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(46px, 8vw, 116px);
}

.service-detail-grid-reverse .service-detail-copy {
  grid-column: 2;
}

.service-detail-grid-reverse .service-gallery {
  grid-column: 1;
  grid-row: 1;
}

.service-detail-copy h2 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.service-lead {
  max-width: 680px;
  margin-bottom: clamp(28px, 4vw, 42px);
  color: #31393a;
  font-size: clamp(1.08rem, 1.45vw, 1.38rem);
  line-height: 1.56;
}

.service-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(28px, 4vw, 42px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.service-detail-columns h3 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-detail-columns ol,
.service-detail-columns ul {
  display: grid;
  gap: 11px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.service-detail-columns ol {
  padding-left: 18px;
}

.service-detail-columns ul {
  padding-left: 17px;
}

.service-detail-columns li::marker {
  color: var(--clay);
  font-weight: 800;
}

.service-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.72fr);
  grid-auto-rows: minmax(190px, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}

.service-gallery figure {
  min-width: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--soft);
}

.service-gallery-feature {
  grid-row: span 2;
}

.service-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.97);
  transition:
    filter 0.35s ease,
    transform 0.45s var(--ease);
}

.service-gallery figure:hover img {
  filter: saturate(1.03) contrast(1.01);
  transform: scale(1.035);
}

.service-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 28px);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(247, 245, 239, 0.9);
  color: var(--ink);
  padding: 0 13px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(17, 23, 25, 0.12);
}

.services-final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 38, 48, 0.92), rgba(12, 38, 48, 0.56));
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.services-final-cta.has-lazy-background {
  background-image:
    linear-gradient(90deg, rgba(12, 38, 48, 0.92), rgba(12, 38, 48, 0.56)),
    var(--lazy-background-image);
}

.services-final-cta-content {
  min-height: clamp(330px, 35vw, 480px);
  display: grid;
  align-content: center;
  justify-items: start;
  padding-block: clamp(76px, 10vw, 132px);
}

.services-final-cta-content h2 {
  width: min(890px, 100%);
  margin: 0 0 26px;
  font-size: var(--title-h2);
  line-height: 0.98;
}

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

.contact-page .site-header {
  background: rgba(247, 245, 239, 0.88);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(17, 23, 25, 0.06);
  backdrop-filter: blur(18px);
}

.contact-page .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.contact-hero {
  padding-block: clamp(138px, 15vw, 206px) clamp(44px, 7vw, 86px);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: clamp(44px, 10vw, 148px);
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.8rem, 6.8vw, 6rem);
  line-height: 0.91;
}

.contact-title-line {
  display: block;
  font-style: normal;
  font-weight: 500;
}

.contact-title-line-em {
  font-style: italic;
  font-weight: 500;
}

.contact-hero-copy p {
  margin: 0;
  color: #31393a;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.58;
}

.contact-form-section {
  padding-bottom: clamp(72px, 8vw, 112px);
  background: linear-gradient(180deg, var(--paper) 0 35%, var(--forest) 35% 100%);
}

.contact-form {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4.8vw, 52px);
  background: var(--white);
  border: 1px solid rgba(17, 23, 25, 0.08);
  box-shadow: 0 30px 72px rgba(17, 23, 25, 0.1);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 22px;
}

.contact-field {
  min-width: 0;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 23, 25, 0.12);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-field input {
  min-height: 52px;
}

.contact-field textarea {
  min-height: 148px;
  padding-block: 16px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(17, 23, 25, 0.38);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--clay);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(82, 164, 181, 0.13);
  outline: 0;
}

.contact-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--forest);
  transform: translateY(-2px);
}

.contact-image-cta {
  min-height: clamp(430px, 48vw, 650px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(8, 20, 24, 0.36), rgba(8, 20, 24, 0.46));
  background-position: center;
  background-size: cover;
}

.contact-image-cta.has-lazy-background {
  background-image:
    linear-gradient(rgba(8, 20, 24, 0.36), rgba(8, 20, 24, 0.46)),
    var(--lazy-background-image);
}

.contact-image-cta::after {
  content: "";
  position: absolute;
  inset: 29% 0;
  background: rgba(15, 36, 46, 0.46);
  backdrop-filter: blur(1px);
}

.contact-image-cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding-block: clamp(84px, 10vw, 132px);
}

.contact-image-cta-content h2 {
  width: min(980px, 100%);
  margin: 0;
  font-size: var(--title-h2);
  line-height: 0.98;
}

.contact-image-cta-content h2 span {
  display: inline;
}

.contact-image-cta-content h2 span + span::before {
  content: " ";
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  padding-top: clamp(52px, 7vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer::before {
  content: none;
}

.site-footer .container {
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-brand .brand {
  width: fit-content;
  margin-bottom: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-brand .brand-mark {
  font-size: clamp(1.5rem, 1.3vw + 1rem, 2rem);
  color: var(--white);
}

.footer-description {
  max-width: 300px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-bottom: 1px solid rgba(94, 199, 201, 0.7);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.footer-contact {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-contact h2 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-contact-list {
  display: grid;
  gap: 11px;
  margin: 0;
}

.footer-contact-list div {
  display: block;
  padding-top: 0;
  border-top: 0;
}

.footer-contact-list dt {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-contact-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.site-footer address {
  color: inherit;
  font-style: normal;
  line-height: inherit;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav a,
.footer-social a,
.footer-bottom a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.site-footer a {
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.footer-social a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a::after {
  content: ">";
  color: rgba(94, 199, 201, 0.82);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  margin-top: clamp(44px, 7vw, 82px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

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

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

@media (max-width: 1080px) {
  .nav-shell {
    gap: 20px;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-link {
    font-size: 11px;
  }

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

  .process-actions {
    justify-content: flex-start;
  }

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

  .project-gallery-feature {
    grid-column: 1 / -1;
  }

  .project-gallery-feature img {
    min-height: 430px;
  }

  .gallery-page-grid .gallery-card-tall img {
    min-height: 430px;
  }

  .project-lightbox-panel {
    width: min(940px, 100%);
  }

  .other-projects-grid {
    grid-template-columns: 1fr;
  }

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

  .project-showcase-card-featured {
    grid-column: 1 / -1;
  }

  .services-intro-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-detail-grid-reverse .service-detail-copy,
  .service-detail-grid-reverse .service-gallery {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(720px, calc(100vw - 34px));
    --narrow: min(720px, calc(100vw - 34px));
    --title-h1: 4.6rem;
    --title-h2: 3.35rem;
    --title-h3: 1.85rem;
    --title-h4: 1.2rem;
  }

  .section {
    padding-block: 76px;
  }

  .nav-shell {
    width: min(100vw - 28px, 760px);
    height: 68px;
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 64px 12px auto auto;
    display: grid;
    justify-self: stretch;
    justify-items: start;
    align-content: start;
    gap: 0;
    width: min(340px, calc(100vw - 24px));
    max-height: calc(100svh - 80px);
    min-height: 0;
    overflow-y: auto;
    padding: 10px 12px 12px;
    border: 1px solid rgba(17, 23, 25, 0.1);
    border-radius: 8px;
    background: rgba(247, 245, 239, 0.95);
    color: var(--ink);
    box-shadow: 0 20px 46px rgba(17, 23, 25, 0.16);
    backdrop-filter: blur(18px);
    transform: translateY(0) scale(1);
    transform-origin: top right;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav:not(.is-open) {
    transform: translateY(-8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .site-nav:not(.is-open) * {
    pointer-events: none;
  }

  body.nav-open .site-nav.is-open,
  .site-header.nav-active .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav-menu {
    width: 100%;
    display: grid;
    gap: 2px;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(17, 23, 25, 0.1);
  }

  .nav-link {
    width: 100%;
    min-height: 40px;
    padding: 10px 2px;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
  }


  .nav-link::before,


  .nav-cta-desktop {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    margin-top: 10px;
    background: var(--ink);
    color: var(--white);
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    grid-area: 1 / 1;
    background: currentColor;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle.is-open span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: rotate(-45deg);
  }

  .hero h1 {
    font-size: var(--title-h1);
  }

  .partner-marquee {
    --partner-gap: 28px;
    padding-block: 12px;
  }

  .partner-track {
    animation-duration: 96s;
  }

  .partner-logo {
    width: 148px;
    height: 58px;
    padding-inline: 12px;
  }

  .logo-wide,
  .logo-bbi,
  .logo-scc {
    width: 174px;
  }

  .logo-square {
    width: 120px;
  }

  .logo-tall {
    width: 96px;
  }

  .logo-compact {
    width: 132px;
  }

  .about-grid,
  .services-showcase-heading,
  .partners-heading,
  .stages-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-overview-grid,
  .project-gallery-heading,
  .other-projects-heading,
  .projects-panel-heading,
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-hero {
    padding-block: 124px 48px;
  }

  .contact-hero-copy {
    max-width: 640px;
  }

  .contact-form-section {
    background: linear-gradient(180deg, var(--paper) 0 28%, var(--forest) 28% 100%);
  }

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

  .projects-tabs-shell {
    top: 68px;
    scroll-margin-top: 68px;
  }

  .work-gallery-tabs-shell {
    top: 68px;
  }

  .services-anchor-strip {
    top: 68px;
  }

  .service-detail-section {
    scroll-margin-top: 132px;
  }

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

  .project-showcase-card-featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .project-showcase-card-featured .project-showcase-media img {
    aspect-ratio: 1.45 / 1;
    min-height: 320px;
  }

  .project-facts-panel {
    position: static;
  }

  .project-lightbox {
    padding: 12px;
  }

  .project-lightbox-panel {
    max-height: calc(100svh - 24px);
    padding: 14px;
  }

  .project-lightbox-viewer {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .project-lightbox-icon {
    width: 38px;
    height: 38px;
  }

  .project-lightbox-nav span {
    font-size: 40px;
  }

  .project-lightbox-figure img {
    height: min(62svh, 560px);
    max-height: calc(100svh - 235px);
  }

  .other-projects-heading .small-link {
    justify-self: start;
  }

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

  .services-showcase-heading {
    margin-bottom: 44px;
  }

  .services-showcase-heading p {
    max-width: 620px;
  }

  .partners-heading {
    margin-bottom: 42px;
  }

  .partners-heading p {
    max-width: 620px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .partners-card {
    min-height: 112px;
  }

  .services-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
  }

  .service-detail-columns {
    grid-template-columns: 1fr;
  }

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

  .scroll-gallery-section {
    min-height: 210svh;
  }

  .scroll-gallery-copy {
    width: min(720px, calc(100vw - 34px));
  }

  .scroll-gallery-copy h2 {
    font-size: var(--title-h2);
  }

  .scroll-gallery-copy h2 span:last-child {
    font-size: inherit;
  }

  .scroll-gallery-card-a {
    width: clamp(260px, 54vw, 500px);
    height: clamp(170px, 34vw, 315px);
  }

  .scroll-gallery-card-b,
  .scroll-gallery-card-c,
  .scroll-gallery-card-g {
    width: clamp(190px, 39vw, 360px);
    height: clamp(142px, 29vw, 270px);
  }

  .scroll-gallery-card-d,
  .scroll-gallery-card-f {
    width: clamp(230px, 46vw, 430px);
    height: clamp(132px, 26vw, 245px);
  }

  .scroll-gallery-card-e {
    width: clamp(210px, 42vw, 390px);
    height: clamp(158px, 31vw, 292px);
  }

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

  .faq-grid {
    width: var(--container);
  }

  .faq-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 48px;
  }

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

@media (max-width: 560px) {
  :root {
    --title-h1: 3.55rem;
    --title-h2: 2.65rem;
    --title-h3: 1.55rem;
    --title-h4: 1.05rem;
  }

  body {
    font-size: 14px;
  }

  .section {
    padding-block: 62px;
  }

  .hero-content {
    margin-top: 22px;
  }

  .hero h1 {
    line-height: 0.92;
  }
  .project-hero {
    min-height: 86svh;
  }
  .project-hero-content {
    padding-block: 118px 42px;
  }

  .project-back-link {
    margin-bottom: 48px;
  }
  .project-hero h1 {
    line-height: 0.92;
  }

  .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(2.58rem, 10.5vw, 2.9rem);
    line-height: 0.98;
    text-wrap: wrap;
  }

  .project-hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-copy h2,
  .services-showcase-heading h2,
  .services-intro-grid h2,
  .service-detail-copy h2,
  .services-final-cta-content h2,
  .partners-heading h2,
  .stages-grid h2,
  .faq-grid h2,
  .section-center h2,
  .project-description h2,
  .project-gallery-heading h2,
  .projects-panel-heading h2,
  .project-cta-content h2,
  .contact-image-cta-content h2,
  .other-projects-heading h2 {
    font-size: var(--title-h2);
  }

  .contact-image-cta-content h2 {
    max-width: 320px;
    font-size: clamp(2.1rem, 10vw, 2.45rem);
    line-height: 1.05;
    text-wrap: wrap;
  }

  .contact-image-cta-content h2 span {
    display: block;
  }

  .contact-image-cta-content h2 span + span::before {
    content: none;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form-grid {
    gap: 20px;
  }

  .contact-field input {
    min-height: 50px;
  }

  .contact-image-cta::after {
    inset: 24% 0;
  }

  .projects-tabs {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-block: 11px;
  }

  .work-gallery-tabs {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-block: 11px;
  }

  .projects-tab {
    flex: 1 1 calc(50% - 8px);
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 14px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .work-gallery-tab {
    flex: 1 1 calc(50% - 8px);
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 14px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .services-anchor-list {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    padding-block: 11px;
  }

  .services-anchor-list a {
    flex: 1 1 calc(50% - 8px);
    min-height: 39px;
    justify-content: center;
    padding-inline: 14px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .services-hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .service-gallery-feature {
    grid-row: auto;
  }

  .service-gallery img {
    aspect-ratio: 1.18 / 1;
    min-height: 270px;
  }

  .project-showcase-card-featured .project-showcase-media img {
    min-height: 270px;
  }

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

  .project-gallery-grid img,
  .project-gallery-feature img {
    min-height: 270px;
  }

  .gallery-page-grid .gallery-card-wide,
  .gallery-page-grid .gallery-card-tall,
  .work-gallery-grid figure:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-page-grid .gallery-card-tall img {
    min-height: 270px;
  }

  .project-gallery-grid figcaption {
    min-height: 32px;
    white-space: normal;
  }

  .project-lightbox-panel {
    gap: 12px;
  }

  .project-lightbox-topbar {
    gap: 14px;
  }

  .project-lightbox-topbar h2 {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .project-lightbox-viewer {
    position: relative;
    grid-template-columns: 1fr;
  }

  .project-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    background: rgba(15, 36, 46, 0.68);
    transform: translateY(-50%);
  }

  .project-lightbox-nav:hover,
  .project-lightbox-nav:focus-visible {
    transform: translateY(calc(-50% - 1px));
  }

  [data-lightbox-prev] {
    left: 8px;
  }

  [data-lightbox-next] {
    right: 8px;
  }

  .project-lightbox-figure img {
    height: min(56svh, 460px);
    max-height: calc(100svh - 250px);
  }

  .project-lightbox-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-inline: 2px;
  }

  .project-lightbox-thumb {
    width: 62px;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    max-width: 100%;
  }

  .partners-grid {
    gap: 24px 18px;
  }

  .partners-card {
    min-height: 92px;
    padding: 10px;
  }

  .partners-logo-kaindl {
    --partner-logo-width: 78px;
    --partner-logo-height: 70px;
  }

  .partners-logo-egger {
    --partner-logo-width: 148px;
    --partner-logo-height: 42px;
  }

  .partners-logo-gtv {
    --partner-logo-width: 122px;
    --partner-logo-height: 32px;
  }

  .partners-logo-yildiz {
    --partner-logo-width: 150px;
    --partner-logo-height: 56px;
  }

  .partners-logo-sch,
  .partners-logo-hansgrohe,
  .partners-logo-kronospan,
  .partners-logo-alveus {
    --partner-logo-width: 158px;
    --partner-logo-height: 34px;
  }

  .partners-logo-starax {
    --partner-logo-width: 150px;
    --partner-logo-height: 42px;
  }

  .metrics-grid article {
    min-height: 145px;
    padding: 26px 22px;
  }

  .scroll-gallery-section {
    min-height: 190svh;
  }

  .scroll-gallery-copy h2 {
    font-size: var(--title-h2);
    line-height: 1;
  }

  .scroll-gallery-copy h2 span:first-child {
    margin-bottom: 22px;
  }

  .scroll-gallery-copy h2 span:last-child {
    font-size: inherit;
  }

  .scroll-gallery-card-a {
    width: min(76vw, 340px);
    height: min(49vw, 220px);
  }

  .scroll-gallery-card-b,
  .scroll-gallery-card-c,
  .scroll-gallery-card-e,
  .scroll-gallery-card-g {
    width: min(56vw, 255px);
    height: min(42vw, 190px);
  }

  .scroll-gallery-card-d,
  .scroll-gallery-card-f {
    width: min(68vw, 310px);
    height: min(39vw, 178px);
  }

  .process-panel {
    min-height: 620px;
  }

  .process-copy dl {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-actions {
    flex-wrap: wrap;
  }

  .faq-item button {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 16px;
    font-size: clamp(1.45rem, 7vw, 2.25rem);
  }

  .faq-item button span {
    width: 28px;
    height: 28px;
  }

  .faq-item button span::before,
  .faq-item button span::after {
    width: 22px;
  }

  .faq-answer p {
    padding: 0 0 28px;
  }

  .cta-banner::after {
    inset: 24% 0;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .partner-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .partner-track {
    animation: none;
    transform: none;
  }

  .partner-list[aria-hidden="true"] {
    display: none;
  }

  .scroll-gallery-section {
    --gallery-copy-opacity: 1;
    min-height: auto;
  }

  .scroll-gallery-sticky {
    position: relative;
    min-height: 100svh;
  }

  .scroll-gallery-card {
    will-change: auto;
  }

  .project-lightbox,
  .project-lightbox-panel,
  .project-lightbox-figure img {
    transition: none;
  }

  .project-lightbox-panel {
    transform: none;
  }
}
