:root {
  --ink: #0b1118;
  --ink-soft: #18222d;
  --paper: #f3f5f6;
  --white: #ffffff;
  --steel: #66717c;
  --steel-light: #cfd5da;
  --line: #d8dde1;
  --traffic-gray: #e4e5e3;
  --nav-gray: #30363b;
  --blue: #173cff;
  --blue-dark: #0d2bd1;
  --error: #ff9a8d;
  --success: #96e6b3;
  --shell: min(92vw, 1280px);
  --header-height: 104px;
  --transition: 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

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

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid transparent;
  padding: 14px 20px;
  color: inherit;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition),
    transform var(--transition);
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
}

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

.button--primary:hover {
  background: var(--blue-dark);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
}

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

.button--dark:hover {
  background: var(--blue);
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--white);
  background: var(--nav-gray);
  backdrop-filter: blur(14px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: #4b5358;
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: block;
  width: clamp(190px, 17vw, 245px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-panel,
.main-nav,
.language-switch {
  display: flex;
  align-items: center;
}

.nav-panel {
  gap: clamp(18px, 2.5vw, 40px);
}

.main-nav {
  gap: clamp(20px, 2.6vw, 42px);
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  gap: 8px;
}

.language-switch span {
  width: 1px;
  height: 15px;
  background: var(--steel-light);
}

.language-switch button {
  border: 0;
  padding: 7px 2px;
  color: #8f9aa4;
  background: none;
  font-size: 0.7rem;
  font-weight: 800;
  cursor: pointer;
}

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

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

.site-header .button--dark:hover {
  color: var(--white);
  background: var(--blue);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  background-color: var(--traffic-gray);
  background-image: linear-gradient(to right, rgb(102 113 124 / 9%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(102 113 124 / 8%) 1px, transparent 1px);
  background-size: 9vw 100%, 100% 80px;
}

.hero::before {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: rgb(102 113 124 / 13%);
  content: "";
}

.hero__grid {
  --hero-edge-space: clamp(72px, 10vh, 104px);

  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 5vw, 78px);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--hero-edge-space) 0;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  flex: 0 0 32px;
  width: 32px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.hero h1 {
  max-width: none;
  margin-bottom: clamp(36px, 5vh, 54px);
  font-size: clamp(3.25rem, 5.15vw, 5.15rem);
  font-weight: 680;
}

.hero h1 span {
  display: inline;
  white-space: normal;
}

.hero .eyebrow {
  margin-bottom: clamp(34px, 4.5vh, 48px);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: clamp(46px, 6vh, 66px);
  color: #39444e;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
}

.hero__actions .button {
  min-height: 62px;
  padding: 18px 30px;
  font-size: 1rem;
}

.hero__visual {
  position: relative;
  height: min(68vh, 650px);
  min-height: 510px;
  align-self: center;
  margin-top: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgb(11 17 24 / 56%) 100%);
  content: "";
  pointer-events: none;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual img {
  object-fit: cover;
  object-position: center 43%;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero__visual:hover img {
  transform: scale(1.025);
}

.hero__marker {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 4%;
  left: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  color: rgb(255 255 255 / 58%);
  pointer-events: none;
  text-align: center;
}

.hero__marker span,
.hero__marker strong {
  max-width: 100%;
  font-size: clamp(2.25rem, 3.6vw, 4rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

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

.section-head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: clamp(60px, 6vw, 82px);
}

.section-head h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 650;
}

.section-index {
  margin: 0 0 18px;
  color: var(--blue);
}

.section-subtitle {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--steel);
  font-size: 1.05rem;
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.approach > .shell,
.projects > .shell {
  position: relative;
  z-index: 2;
}

.approach__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.approach__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.approach__visual::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 42%;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  content: "";
  pointer-events: none;
}

.approach__visual::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgb(11 17 24 / 72%));
  content: "";
  pointer-events: none;
}

.approach__visual picture,
.approach__visual img {
  width: 100%;
  height: 100%;
}

.approach__visual picture {
  display: block;
}

.approach__visual img {
  object-fit: cover;
  object-position: center;
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 20px 20px;
  padding: 15px 0 0;
  border-top: 1px solid rgb(255 255 255 / 45%);
  color: var(--white);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.approach__copy {
  max-width: 680px;
}

.approach__copy > p {
  color: var(--steel);
}

.approach__copy .lead-copy {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.45;
}

.approach__copy blockquote {
  margin: 48px 0 0;
  padding: 26px 0 0 28px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--blue);
}

.approach__copy blockquote p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
}

.process-list {
  display: grid;
  margin: clamp(80px, 10vw, 140px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
}

.process-list li {
  position: relative;
  min-height: 250px;
  padding: 32px clamp(24px, 3vw, 42px) 28px 0;
}

.process-list li + li {
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.process-list h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.process-list p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.projects {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--traffic-gray);
}

.projects .section-head h2 {
  color: var(--ink);
}

.projects .section-subtitle {
  color: var(--steel);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(22px, 2.5vw, 36px);
}

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

.project-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-soft);
}

.project-card__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 10%);
  content: "";
  pointer-events: none;
}

.project-card__image::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgb(11 17 24 / 72%));
  content: "";
  pointer-events: none;
}

.project-card__image picture,
.project-card__image img {
  width: 100%;
  height: 100%;
}

.project-card__image picture {
  display: block;
}

.project-card__image img {
  object-fit: cover;
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.project-card:hover .project-card__image img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.project-card__tag {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 0 0;
  border-top: 1px solid rgb(255 255 255 / 45%);
  color: var(--white);
  background: transparent;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-card__body {
  position: relative;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.project-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.project-card p {
  margin-bottom: 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.contact::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgb(255 255 255 / 8%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / 7%) 1px, transparent 1px);
  background-size: 9vw 100%, 100% 80px;
  content: "";
  pointer-events: none;
}

.page-watermark {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 1;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: opacity 240ms ease;
  user-select: none;
}

.page-watermark img {
  width: clamp(280px, 52vw, 780px);
  height: auto;
  margin-inline: auto;
  opacity: 0.08;
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(6636%) hue-rotate(234deg)
    brightness(96%) contrast(110%);
  transition: filter 360ms ease, opacity 360ms ease;
}

.page-watermark[data-tone="approach"] img {
  opacity: 0.045;
  filter: brightness(0) saturate(100%);
}

.page-watermark[data-tone="projects"] img {
  opacity: 0.075;
}

.page-watermark[data-tone="contact"] img {
  opacity: 0.12;
  filter: none;
}

.page-watermark.is-hidden {
  opacity: 0;
}

.contact__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(450px, 1fr);
  gap: clamp(60px, 9vw, 140px);
}

.section-head--light {
  margin-bottom: clamp(60px, 6vw, 82px);
}

.section-head--light .section-index,
.section-head--light h2 {
  color: var(--white);
}

.section-head--light .section-subtitle {
  max-width: 610px;
  color: rgb(255 255 255 / 78%);
}

.direct-contact {
  margin-top: 0;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 28%);
}

.direct-contact > span,
.direct-contact small {
  display: block;
  color: rgb(255 255 255 / 66%);
  font-size: 0.73rem;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 13px 0 7px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.direct-contact svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-form {
  padding: clamp(28px, 4vw, 50px);
  color: var(--white);
  background: var(--nav-gray);
  box-shadow: 0 28px 60px rgb(0 0 0 / 18%);
}

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

.field {
  margin-bottom: 24px;
}

.field label {
  display: flex;
  min-height: 24px;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: #dfe4e8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.field label i {
  color: var(--blue);
  font-size: 0.95rem;
  font-style: normal;
}

.field label em {
  color: #7f8b95;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #44505b;
  border-radius: 0;
  padding: 12px 0 13px;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 1.05rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field textarea {
  min-height: 124px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #707b85;
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 18px;
  padding-top: 5px;
  color: var(--error);
  font-size: 0.74rem;
  line-height: 1.3;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 4px;
}

.form-footer p {
  max-width: 220px;
  margin: 0;
  color: #8d98a2;
  font-size: 0.75rem;
  line-height: 1.45;
}

.form-status {
  display: none;
  margin-top: 24px;
  padding: 15px 17px;
  border-left: 3px solid var(--success);
  color: var(--white);
  background: #18252a;
  font-size: 0.9rem;
}

.contact-form .button {
  font-size: 1rem;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: var(--error);
  background: #2a1d1d;
}

.site-footer {
  padding: 56px 0;
  color: var(--white);
  background: var(--nav-gray);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
}

.footer-brand {
  display: block;
  width: 190px;
  margin-bottom: 14px;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.site-footer p,
.footer-meta,
.back-to-top {
  color: #818b94;
  font-size: 0.73rem;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-meta a {
  color: var(--white);
  text-underline-offset: 4px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a {
  color: #aeb7bf;
}

.footer-legal a:hover {
  color: var(--white);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.back-to-top span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid #39424a;
  place-items: center;
  transition: border-color var(--transition), background var(--transition);
}

.back-to-top:hover span:last-child {
  border-color: var(--blue);
  background: var(--blue);
}

.js.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

@media (max-width: 1080px) {
  :root {
    --shell: min(92vw, 960px);
  }

  .header-cta {
    display: none;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 5vw, 3.6rem);
  }

  .contact__inner {
    grid-template-columns: minmax(280px, 0.7fr) minmax(400px, 1fr);
    gap: 54px;
  }

  .contact-form {
    padding: 34px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 82px;
  }

  .brand {
    width: 172px;
  }

  .site-header {
    backdrop-filter: none;
  }

  body {
    font-size: 17px;
  }

  .button {
    min-height: 56px;
    padding: 16px 22px;
    font-size: 0.95rem;
  }

  .eyebrow,
  .section-index {
    font-size: 0.78rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    place-content: center;
    gap: 7px;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform var(--transition);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .js .nav-panel {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 100px 8vw 60px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background: var(--nav-gray);
    transform: translateY(-16px);
    transition: visibility var(--transition), opacity var(--transition), transform var(--transition);
  }

  .js .nav-panel.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .no-js .nav-panel {
    width: 100%;
    gap: 16px;
  }

  .no-js .nav-toggle,
  .no-js .language-switch {
    display: none;
  }

  .no-js .site-header {
    position: static;
  }

  .no-js .site-header__inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .no-js .main-nav {
    width: 100%;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }

  .no-js .main-nav a {
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .no-js .hero {
    padding-top: 0;
  }

  .main-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav a {
    font-size: clamp(2.1rem, 8vw, 4rem);
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 1.05;
  }

  .js .nav-panel .header-cta {
    display: inline-flex;
    width: 100%;
    max-width: 340px;
  }

  .language-switch button {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero::before {
    display: none;
  }

  .hero__grid {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__content {
    padding: 74px 0 96px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 8.8vw, 4.6rem);
  }

  .hero__lead {
    font-size: 1.12rem;
  }

  .hero__visual {
    width: 100%;
    height: min(95vw, 700px);
    min-height: 520px;
    margin-top: 0;
  }

  .section-subtitle {
    max-width: 580px;
    font-size: 1.12rem;
  }

  .approach__copy > p,
  .process-list p,
  .project-card p {
    font-size: 1rem;
  }

  .image-caption,
  .project-card__tag,
  .direct-contact > span,
  .direct-contact small,
  .site-footer p,
  .footer-meta,
  .back-to-top {
    font-size: 0.78rem;
  }

  .field input,
  .field textarea {
    font-size: 1.08rem;
  }

  .field-error {
    font-size: 0.78rem;
  }

  .field label {
    font-size: 0.86rem;
  }

  .form-footer p {
    font-size: 0.8rem;
  }

  .approach__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-list li {
    min-height: 280px;
  }

  .project-card {
    grid-column: span 6;
  }

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

  .contact__intro {
    max-width: 680px;
  }

  .direct-contact {
    margin-top: 48px;
  }
}

@media (max-width: 820px) and (max-height: 680px) {
  .js .nav-panel {
    justify-content: flex-start;
    gap: 16px;
    padding-top: calc(var(--header-height) + 12px);
    padding-bottom: 16px;
  }

  .main-nav {
    gap: 2px;
  }

  .main-nav a {
    padding-block: 4px;
    font-size: clamp(1.6rem, 5vw, 2.1rem);
  }

  .language-switch button {
    padding-block: 4px;
  }

  .js .nav-panel .header-cta {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(90vw, 560px);
  }

  .brand {
    width: 158px;
  }

  .hero__content {
    padding-top: 66px;
    padding-bottom: 96px;
  }

  .eyebrow {
    margin-bottom: 30px;
  }

  .hero h1 {
    margin-bottom: 34px;
    font-size: clamp(2.55rem, 11.5vw, 3.8rem);
  }

  .hero__actions {
    align-items: center;
    flex-direction: column;
    gap: 14px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 64px;
    font-size: 1.02rem;
  }

  .hero__visual {
    height: 118vw;
    min-height: 460px;
  }

  .hero__marker {
    right: 16px;
    bottom: 4%;
    left: 16px;
  }

  .hero__marker span,
  .hero__marker strong {
    font-size: clamp(2.15rem, 11vw, 3.7rem);
  }

  .section {
    padding: 92px 0;
  }

  .section-head {
    margin-bottom: 54px;
  }

  .section-head h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-head--light {
    margin-bottom: 54px;
  }

  .approach__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .approach__visual {
    width: calc(100% - 14px);
  }

  .approach__copy blockquote {
    margin-top: 36px;
  }

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

  .process-list li {
    min-height: 0;
    padding: 28px 0 34px;
  }

  .process-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .project-grid {
    gap: 58px 0;
  }

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

  .project-card__body {
    padding-top: 24px;
  }

  .contact__inner {
    gap: 50px;
  }

  .contact-form {
    width: 100vw;
    margin-left: -5vw;
    padding: 34px 5vw;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer p {
    max-width: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .back-to-top {
    justify-self: start;
  }
}

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

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

  .js.reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
