* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --page-gutter: max(5vw, calc((100vw - 1800px) / 2));
}

/* Consent UI stays independent of the animated sections. */
.cookie-notice[hidden], .cookie-notice [hidden], .cookie-preferences[hidden] { display: none; }
.cookie-notice {
  position: fixed;
  z-index: 10000;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  left: max(16px, env(safe-area-inset-left));
  width: auto;
  max-width: 560px;
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  margin-left: auto;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid #555;
  border-radius: 20px;
  background: #171717;
  color: #f2f2f2;
  box-shadow: 0 12px 50px #0005;
  font-size: 14px;
  line-height: 1.55;
}
.cookie-notice h2 { font-size: 22px; line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 12px; }
.cookie-notice p { margin-bottom: 14px; }
.cookie-notice details { margin: 12px 0; }
.cookie-notice details p { margin-top: 12px; }
.cookie-notice summary, .cookie-notice a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cookie-actions button { flex: 1 1 130px; min-height: 44px; padding: 10px 14px; border: 1px solid #aaa; border-radius: 100px; background: transparent; color: inherit; font-size: 14px; }
.cookie-actions button:hover { background: #333; }
.cookie-preferences { border: 0; background: transparent; color: inherit; font: inherit; text-align: left; text-decoration: underline; text-underline-offset: 3px; min-height: 44px; }
.has-custom-cursor .cookie-notice, .has-custom-cursor .cookie-notice button, .has-custom-cursor .cookie-notice a, .cookie-notice summary, .cookie-preferences { cursor: pointer; }
.cookie-notice :focus-visible, .cookie-preferences:focus-visible { outline: 2px solid #ff885c; outline-offset: 4px; }

html {
  scroll-behavior: smooth;

  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;

  background: #0b0b0b;
  color: #f2f2f2;

  overflow-x: hidden;
}

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

button,
input,
textarea {
  font-family: inherit;
}


/* ========================================
CUSTOM CURSOR
======================================== */

@media (min-width: 601px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {

  .has-custom-cursor body,
  .has-custom-cursor a,
  .has-custom-cursor button,
  .has-custom-cursor input,
  .has-custom-cursor textarea,
  .has-custom-cursor .privacy-notice > summary {
    cursor: none;
  }

  .has-custom-cursor .cursor {
    display: block;
  }

}

.cursor {
  display: none;

  position: fixed;

  left: 0;
  top: 0;

  width: 28px;
  height: 28px;

  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  pointer-events: none;

  z-index: 9999;

  transform: translate(-50%, -50%);

  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #fff;

  transform: translate(-50%, -50%);
}


/* ========================================
HERO
======================================== */

.hero {
  position: relative;

  width: 100%;
  min-height: 100vh;

  padding: 35px var(--page-gutter) 50px;

  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav {
  position: relative;

  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;

  gap: 35px;
}

.nav-links {
  display: flex;

  gap: 35px;

  font-size: 14px;
}

.nav-links a {
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.5;
}


/* ========================================
LANGUAGE SWITCH
======================================== */

.language-switch {
  display: flex;

  padding: 3px;

  gap: 2px;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
}

.language-button {
  min-width: 42px;
  height: 32px;

  padding: 0 10px;

  border: none;
  border-radius: 100px;

  background: transparent;

  color: rgba(255, 255, 255, 0.65);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;

  opacity: 1;

  transition:
    color 0.3s,
    background 0.3s;
}

.language-button:hover {
  color: #fff;

  background: rgba(255, 255, 255, 0.08);
}

.language-button.active {
  color: #fff;

  background: rgba(255, 255, 255, 0.16);
}


/* ========================================
HERO TEXT
======================================== */

.hero-content {
  position: relative;

  z-index: 3;

  margin-top: auto;
  margin-bottom: auto;
}

.eyebrow {
  margin-bottom: 30px;

  font-size: 13px;

  text-transform: uppercase;
  letter-spacing: 3px;

  opacity: 0.6;
}

h1 {
  font-size: clamp(70px, 10vw, 170px);

  line-height: 0.82;

  letter-spacing: -0.07em;

  font-weight: 700;
}

h1 span {
  display: block;
}

.hero-bottom {
  margin-top: 50px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-bottom p {
  max-width: 360px;

  font-size: 17px;

  line-height: 1.5;

  opacity: 0.6;
}

.hero-button {
  padding: 17px 22px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;

  color: white;

  background: transparent;

  font-size: 14px;

  display: flex;
  gap: 25px;
  align-items: center;
}


/* ========================================
ORBS
======================================== */

.orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(60px);

  opacity: 0.6;

  pointer-events: none;
}

.orb-one {
  width: 500px;
  height: 500px;

  background: #ff5c35;

  right: -100px;
  top: 15%;
}

.orb-two {
  width: 350px;
  height: 350px;

  background: #6941ff;

  left: 25%;
  bottom: -150px;
}


/* ========================================
SCROLL INDICATOR
======================================== */

.scroll-indicator {
  position: absolute;

  left: 50%;
  bottom: 40px;

  transform: translateX(-50%);

  font-size: clamp(12px, calc(10px + 0.4vw), 20px);
  line-height: 1.2;

  opacity: 0.5;

  display: flex;
  align-items: center;

  gap: clamp(10px, 0.65vw, 16px);
}


/* ========================================
MARQUEE
======================================== */

.marquee {
  overflow: hidden;

  padding: clamp(18px, 2.2vw, 40px) 0;

  background: #f1f1f1;
  color: #111;
}

.marquee-track {
  width: max-content;

  display: flex;
  align-items: center;

  gap: clamp(20px, 2.8vw, 50px);

  font-size: clamp(24px, 3vw, 55px);
  font-weight: 700;
  line-height: 1;

  white-space: nowrap;
}

.marquee-track > span {
  flex-shrink: 0;
}


/* ========================================
WORK
======================================== */

.work {
  padding: 140px var(--page-gutter);
}

.work-intro span,
.process-heading > span,
.capabilities-header > h2 {
  font-size: 13px;

  text-transform: uppercase;

  opacity: 0.5;
}

.work-intro h2 {
  margin-top: 35px;
  margin-bottom: 120px;

  max-width: 900px;

  font-size: clamp(55px, 8vw, 120px);

  line-height: 0.95;

  letter-spacing: -0.06em;
}

.process-heading > span {
  opacity: 0.7;
}


/* ========================================
PROJECTS
======================================== */

.project {
  padding: 70px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: grid;

  grid-template-columns: 100px 1fr;

  gap: 40px;
}

.project-number {
  font-size: 13px;

  opacity: 0.5;
}

.project-card {
  position: relative;

  min-height: 600px;

  padding: 50px;

  background: #191919;

  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-card.second {
  background: #151515;
}

.project-gradient {
  position: absolute;

  width: 450px;
  height: 450px;

  border-radius: 50%;

  top: 5%;
  right: 10%;

  background: linear-gradient(
    135deg,
    #ff5c35,
    #ffcc00,
    #6941ff
  );

  filter: blur(15px);
}

.project-card h3 {
  position: relative;

  font-size: clamp(50px, 7vw, 100px);

  letter-spacing: -0.05em;
}

.project-card span {
  position: relative;

  margin-top: 15px;

  opacity: 0.5;
}


/* ========================================
PROCESS
======================================== */

.process {
  padding: 150px var(--page-gutter);

  background: #f0f0ec;
  color: #111;
}

.process-heading {
  display: grid;

  grid-template-columns: 1fr 3fr;

  gap: 50px;

  margin-bottom: 120px;
}

.process-heading h2 {
  max-width: 1000px;

  font-size: clamp(55px, 8vw, 120px);

  line-height: 0.9;

  letter-spacing: -0.065em;
}

.process-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.process-step {
  position: relative;

  min-height: 260px;

  padding: 45px 0;

  border-top: 1px solid rgba(0, 0, 0, 0.2);

  display: grid;

  grid-template-columns: 1fr 3fr 80px;

  gap: 50px;

  align-items: flex-start;

  overflow: hidden;

  transition: color 0.35s ease;
}


/* PROCESS HOVER BACKGROUND */

.process-step::before {
  content: "";

  position: absolute;

  inset: 0;

  background: #111;

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-step:hover::before {
  transform: scaleY(1);
}

.process-step:hover {
  color: #f2f2f2;
}

.step-number,
.step-content,
.step-icon {
  position: relative;

  z-index: 2;
}

.step-number {
  font-size: 13px;

  opacity: 0.7;
}

.step-label {
  display: block;

  margin-bottom: 18px;

  font-size: 12px;

  letter-spacing: 0.2em;

  opacity: 0.7;
}

.step-content h3 {
  font-size: clamp(45px, 6vw, 90px);

  line-height: 1;

  letter-spacing: -0.055em;
}

.step-content p {
  margin-top: 25px;

  max-width: 550px;

  line-height: 1.6;

  opacity: 0.7;
}

.step-icon {
  font-size: 30px;

  justify-self: flex-end;
}


/* ========================================
CAPABILITIES
======================================== */

.capabilities {
  /* The following statement provides the shared vertical interval. */
  padding: 150px var(--page-gutter) 0;
}

.capabilities-header {
  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 100px;
}

.capabilities-header > h2 {
  font-weight: 400;
}

.capabilities-header p {
  max-width: 400px;

  font-size: 18px;

  line-height: 1.5;

  opacity: 0.55;
}

.capabilities-list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.capability {
  position: relative;

  padding: 40px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.15);

  display: grid;

  grid-template-columns: 100px 1fr auto;

  align-items: center;

  overflow: hidden;
}

.capability > * {
  position: relative;

  z-index: 2;
}

.capability > span {
  font-size: 13px;

  opacity: 0.5;
}

.capability h3 {
  font-size: clamp(40px, 6vw, 85px);

  letter-spacing: -0.05em;
}


/* Keep hover feedback, but reserve lateral movement for wider mouse layouts. */

@media (hover: hover) and (pointer: fine) {

  .capability {
    transition: color 0.3s, background-color 0.3s;
  }

  .capability:hover {
    color: #111;
    background-color: #f2f2f2;
  }

}

@media (min-width: 801px) and (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {

  .capability h3 {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .capability > span:last-child {
    transition: transform 0.4s;
  }

  .capability:hover h3 {
    transform: translateX(25px);
  }

  .capability:hover > span:last-child {
    transform: translateX(-15px) rotate(45deg);
  }

}


/* ========================================
STATEMENT
======================================== */

.statement {
  padding: 150px var(--page-gutter);

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;
}

.statement-content {
  width: 100%;

  max-width: 1500px;
}

.statement p {
  margin-bottom: 40px;

  opacity: 0.5;
}

.statement h2 {
  width: 100%;

  font-size: clamp(80px, 11vw, 180px);

  line-height: 0.8;

  letter-spacing: -0.07em;

  text-align: left;
}

.statement h2 span {
  display: block;
}


/* ========================================
CONTACT
======================================== */

.contact {
  position: relative;

  min-height: 100vh;

  padding: 120px var(--page-gutter) 45px;

  background: #f1f1f1;
  color: #111;

  overflow: hidden;

  display: flex;
  flex-direction: column;

  justify-content: space-between;
}

.contact-content {
  position: relative;

  z-index: 2;

  width: 100%;
}

.contact-orb {
  position: absolute;

  width: 500px;
  height: 500px;

  right: -100px;
  top: -100px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #ff5c35,
    #ffcc00,
    #6941ff
  );

  filter: blur(50px);

  opacity: 0.7;

  pointer-events: none;
}

.contact-label {
  position: relative;

  margin-bottom: 40px;

  font-size: 14px;

  text-transform: uppercase;
  letter-spacing: 0.15em;

  opacity: 0.75;
}

.contact h2 {
  position: relative;

  max-width: 1200px;

  font-size: clamp(75px, 12vw, 190px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.contact h2 span {
  display: block;
}


/* ========================================
CONTACT FORM
======================================== */

.contact-form {
  position: relative;

  width: 100%;
  max-width: 1050px;

  margin-top: 85px;
  margin-right: auto;
  margin-bottom: 120px;
  margin-left: auto;

  border-top: 1px solid rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 50px;
}

.form-field {
  position: relative;

  padding: 30px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.form-field label {
  display: block;

  margin-bottom: 16px;

  font-size: 11px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.13em;

  opacity: 0.75;
}

.form-field input,
.form-field textarea {
  width: 100%;

  padding: 0;

  border: none;
  outline: none;

  background: transparent;

  color: #111;

  font-size: clamp(22px, 2.5vw, 34px);

  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #808080;
  opacity: 1;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.form-bottom {
  padding-top: 35px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;
}

.form-submit {
  flex-shrink: 0;
  padding: 18px 24px;

  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 100px;

  color: #111;

  background: transparent;

  font-size: 14px;

  display: flex;
  align-items: center;

  gap: 35px;
}

.form-status {
  min-height: 20px;
  min-width: 0;
  flex: 1;
  max-width: 680px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.form-status[data-state] {
  padding: 14px 16px;
  border: 1px solid currentColor;
  border-radius: 8px;
}

.form-status[data-state="sending"] { color: #333; background: #e9e9e5; }
.form-status[data-state="success"] { color: #24543c; background: #e8f0e9; }
.form-status[data-state="invalid"],
.form-status[data-state="invalidEmail"] { color: #70440f; background: #faf0df; }
.form-status[data-state="error"] { color: #852f24; background: #faebe7; }

.form-status-icon { display: none; }
.form-status[data-state] .form-status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.form-status[data-state="sending"] .form-status-icon {
  border-right-color: transparent;
}
.form-field:has([aria-invalid="true"]) { border-bottom-color: #852f24; }
.form-field [aria-invalid="true"] { outline: 1px solid #852f24; outline-offset: 4px; }
.form-submit:disabled { cursor: wait; }
.form-submit:focus-visible { outline: 2px solid #111; outline-offset: 4px; }

@media (prefers-reduced-motion: no-preference) {
  .form-status[data-state] { animation: form-feedback-in 180ms ease-out; }
  .form-status[data-state="sending"] .form-status-icon { animation: form-feedback-spin 900ms linear infinite; }
}
@keyframes form-feedback-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes form-feedback-spin {
  to { transform: rotate(360deg); }
}


/* ========================================
CONTACT FOOTER
======================================== */

.contact-footer {
  position: relative;

  z-index: 2;

  padding-top: 30px;

  border-top: 1px solid rgba(0, 0, 0, 0.2);

  font-size: 12px;

  color: #606060;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px 24px;
  line-height: 20px;
}

/* Three groups share the row; equal free space separates them on wide screens. */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 24px;
  max-width: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #555;
}

.contact-footer:has(.privacy-notice[open]) .footer-legal {
  flex-basis: 100%;
}

.footer-legal .cookie-preferences {
  padding: 12px 0;
  line-height: inherit;
  text-decoration: none;
}

.locations span {
  white-space: nowrap;
}

.footer-email {
  flex-shrink: 0;

  transition: color 0.3s ease;
}

.footer-legal .cookie-preferences,
.privacy-notice > summary,
.privacy-copy a {
  transition: color 0.3s ease;
}

.footer-email:hover,
.footer-legal .cookie-preferences:hover,
.privacy-notice > summary:hover,
.privacy-copy a:hover {
  color: #808080;
}

.locations {
  margin-left: 0;

  display: flex;

  flex-wrap: wrap;
  justify-content: flex-end;

  gap: 12px 24px;
}


/* ========================================
TABLET
======================================== */

/* Privacy stays compact until opened; content remains available without JavaScript. */
.privacy-copy a {
  text-decoration: none;
  overflow-wrap: anywhere;
}

.privacy-notice {
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
  scroll-margin-top: 24px;
}

.privacy-notice[open] {
  flex-basis: 100%;
}

.privacy-notice summary {
  list-style: none;
  min-height: 44px;
  padding: 12px 0;
  font-size: 12px;
  color: #555;
  cursor: pointer;
  text-decoration: none;
  text-underline-offset: 3px;
}

.privacy-notice summary::-webkit-details-marker {
  display: none;
}

.privacy-copy {
  max-width: 760px;
  padding: 20px 0 8px;
  color: #333;
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.privacy-copy h3 { font-size: 22px; line-height: 1.25; margin-bottom: 16px; }
.privacy-copy p { margin-bottom: 14px; }
.privacy-notice :focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

@media (max-width: 800px) {

  :root {
    --page-gutter: 5vw;
  }


  .hero {
    min-height: 100svh;
  }


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

    gap: 24px;
  }


  .project-card {
    min-height: clamp(450px, 74vw, 600px);
  }


  /* PROCESS */

  .process {
    padding-top: 110px;
    padding-bottom: 110px;
  }


  .process-heading {
    grid-template-columns: 1fr;

    margin-bottom: 80px;
  }


  .process-step {
    grid-template-columns: 48px minmax(0, 1fr) 32px;

    gap: 20px;
  }


  .step-content,
  .capability h3 {
    min-width: 0;
  }


  /* CAPABILITIES */

  .capabilities {
    padding-top: 110px;
  }


  .capabilities-header {
    flex-direction: column;
  }


  .capability {
    grid-template-columns: 48px minmax(0, 1fr) 32px;

    gap: 20px;
  }


  /* STATEMENT */

  .statement {
    padding-top: 110px;
    padding-bottom: 110px;
  }


  .statement h2 {
    text-align: left;
  }

}


/* ========================================
MOBILE
======================================== */

@media (max-width: 600px) {

  :root {
    --page-gutter: max(16px, 5vw);
  }


  .hero {
    min-height: max(100svh, 680px);

    padding-top: max(22px, env(safe-area-inset-top));
    padding-bottom: 36px;
  }


  nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }


  .nav-right {
    display: contents;
  }


  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    font-size: 13px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .nav-links a:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
    border-radius: 2px;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
  }


  h1 {
    font-size: clamp(39px, 12.2vw, 56px);

    line-height: 0.86;

    letter-spacing: -0.065em;
  }


  .hero-bottom {
    margin-top: 36px;

    align-items: flex-start;
    flex-direction: column;

    gap: 26px;
  }


  .hero-bottom p {
    max-width: 320px;

    font-size: 15px;
  }


  .hero-button {
    max-width: 100%;

    padding: 15px 18px;

    gap: 20px;
  }


  .scroll-indicator {
    bottom: 24px;
  }


  /* WORK */

  .work {
    padding-top: 95px;
    padding-bottom: 95px;
  }


  .work-intro h2 {
    margin-top: 24px;
    margin-bottom: 72px;

    font-size: clamp(40px, 12vw, 56px);
  }


  .project {
    padding: 48px 0;

    gap: 20px;
  }


  .project-card {
    min-height: clamp(360px, 118vw, 500px);

    padding: 26px;
  }


  .project-gradient {
    width: min(280px, 82vw);
    height: min(280px, 82vw);
  }


  .project-card h3 {
    font-size: clamp(42px, 14vw, 64px);
  }


  /* PROCESS */

  .process {
    padding-top: 95px;
    padding-bottom: 95px;
  }


  .process-heading {
    margin-bottom: 64px;
  }


  .process-heading h2 {
    font-size: clamp(44px, 13vw, 62px);
  }


  .process-step {
    min-height: 0;

    padding: 36px 0;

    grid-template-columns: 32px minmax(0, 1fr) 24px;

    gap: 12px;
  }


  .step-content h3 {
    font-size: clamp(36px, 11vw, 50px);
  }


  .step-content p {
    margin-top: 18px;

    font-size: 14px;
  }


  .step-icon {
    font-size: 24px;
  }


  /* CAPABILITIES */

  .capabilities {
    padding-top: 95px;
  }


  .capabilities-header {
    margin-bottom: 64px;
  }


  .capability {
    padding: 30px 0;

    grid-template-columns: 30px minmax(0, 1fr) 22px;

    gap: 10px;
  }


  .capability h3 {
    font-size: clamp(24px, 8vw, 38px);

    letter-spacing: -0.045em;
  }


  /* STATEMENT */

  .statement {
    padding-top: 95px;
    padding-bottom: 95px;
  }


  .statement h2 {
    font-size: clamp(54px, 16vw, 76px);
  }


  /* CONTACT */

  .contact {
    min-height: 100svh;

    padding-top: 80px;
    padding-bottom: 32px;
  }


  .contact h2 {
    font-size: clamp(56px, 18vw, 82px);
  }


  html[lang="en"] .contact h2 {
    font-size: clamp(47px, 15vw, 68px);
  }


  .contact-form {
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
  }


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

    gap: 0;
  }


  .form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-status { width: 100%; flex: none; }


  .form-submit {
    justify-content: space-between;

    width: 100%;
  }


  .contact-footer,
  .footer-main {
    align-items: flex-start;
    flex-direction: column;

    gap: 18px;
  }


  .locations {
    margin-left: 0;

    justify-content: flex-start;
    flex-direction: column;

    gap: 8px;
  }

}


/* ========================================
SMALL MOBILE
======================================== */

@media (max-width: 360px) {

  .logo {
    font-size: 17px;
  }


  .language-button {
    min-width: 36px;
    height: 30px;

    padding: 0 8px;
  }


  .eyebrow {
    margin-bottom: 22px;

    font-size: 11px;

    letter-spacing: 2.2px;
  }


  .contact-footer {
    font-size: 11px;
  }

}


/* ========================================
REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

}
