@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* Hartmann Forge brand — from logo (steel #5578A1, accent #4C97D5) */
  --navy-950: #0e1824;
  --navy-900: #152536;
  --navy-800: #1e354c;
  --navy-700: #2a4a68;
  --brand: #4c97d5;
  --brand-light: #6aadf0;
  --brand-muted: #5578a1;
  --brand-dark: #3a6fa3;
  /* Legacy aliases — former red tokens now map to logo accent blue */
  --brand-red: var(--brand);
  --brand-red-light: var(--brand-light);
  --gray-50: #f7f9fb;
  --gray-100: #eef2f6;
  --gray-200: #dfe6ee;
  --gray-300: #c8d2de;
  --gray-400: #91a0b2;
  --gray-500: #667889;
  --gray-600: #4a5b6c;
  --gray-800: #2a333c;
  --gray-900: #1a222a;
  --white: #fff;
  --font-head: "Barlow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --container: 1180px;
  --header-container: 1300px;
  --section-gutter: 2.5rem;
  --header-h: 112px;
  --header-logo: 84px;
  --radius: 4px;
  --nav-contact-radius: clamp(15px, 1.25vw, 1.25rem);
  --shadow: 0 4px 24px rgba(14, 24, 36, 0.08);
  --shadow-lg: 0 12px 40px rgba(14, 24, 36, 0.14);
  --ease: 0.22s ease;
  --footer-bg: #152536;
  --footer-crosshatch:
    linear-gradient(
      135deg,
      transparent 47.5%,
      rgba(255, 255, 255, 0.034) 47.5%,
      rgba(255, 255, 255, 0.034) 52.5%,
      transparent 52.5%
    ),
    linear-gradient(
      45deg,
      transparent 47.5%,
      rgba(255, 255, 255, 0.034) 47.5%,
      rgba(255, 255, 255, 0.034) 52.5%,
      transparent 52.5%
    );
  --footer-crosshatch-size: 32px 32px;
  --footer-social-gap: clamp(1.5rem, 3vw, 2.5rem);
  --plate-dark-bg: #243444;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
body.nav-open,
html.scroll-locked,
body.scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}
body.scroll-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.container {
  width: min(var(--container), 100% - var(--section-gutter));
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-950);
}
h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.2rem;
}
p {
  color: var(--gray-500);
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}
.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-800);
}

.section {
  padding: 70px 0;
}
.section--sm {
  padding: 70px 0;
}
.section--muted {
  background: var(--gray-50);
}
.section--dark {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-900));
  color: var(--white);
}
.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .lead {
  color: inherit;
}
.section--dark p {
  opacity: 0.82;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-intro {
  max-width: 38rem;
  margin-bottom: 3rem;
}
.section-intro--center {
  text-align: center;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn--primary:hover {
  background: var(--navy-700);
}
.btn--accent {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
}
.btn--accent:hover {
  background: var(--brand-red-light);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--gray-200);
}
.btn--ghost:hover {
  background: var(--gray-50);
}
.btn.btn--cut,
.home-build__all-btn {
  padding: 0.6rem 1.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brand-red);
  background: var(--white);
  border: 2px solid var(--brand-red);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    border-radius var(--ease);
}
.btn.btn--cut:hover,
.home-build__all-btn:hover {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
}
.btn.btn--cut-invert {
  padding: 0.6rem 1.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  background: var(--brand-red);
  border: 2px solid var(--brand-red);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    border-radius var(--ease);
}
.btn.btn--cut-invert:hover {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--brand-red);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
}
.btn--block {
  display: flex;
  width: 100%;
  margin-top: 1.5rem;
}

/* Header — transparent at top on hero pages; solid background once scrolling begins */
#site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    background var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    backdrop-filter var(--ease),
    height var(--ease);
}
body.is-header-scrolled {
  --header-h: 80px;
  --header-logo: 60px;
}
#site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 16px rgba(14, 24, 36, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#site-header.is-scrolled .header__inner {
  gap: 0.875rem 2rem;
}
#site-header.is-scrolled .header__name strong {
  font-size: 1.125rem;
}
#site-header.is-scrolled .header__name small {
  font-size: 0.625rem;
}
#site-header.is-scrolled .nav__link,
#site-header.is-scrolled .nav__trigger {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
}
#site-header.is-scrolled .nav__contact {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

/* Nav dropdown open — header blends into panel */
#site-header.has-nav-dropdown {
  background: var(--white);
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#site-header.has-nav-dropdown .nav__panel {
  box-shadow:
    0 1.25rem 2.5rem rgba(14, 24, 36, 0.1),
    0 0.25rem 0.75rem rgba(14, 24, 36, 0.05);
}

/* At rest over a hero — transparent header, light nav text */
body.has-hero #site-header:not(.is-scrolled):not(.has-nav-dropdown) {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero #site-header:not(.is-scrolled) .header__name strong,
body.has-hero #site-header:not(.is-scrolled) .nav__link,
body.has-hero #site-header:not(.is-scrolled) .nav__trigger {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 14px rgba(14, 24, 36, 0.55);
  transition:
    color var(--ease),
    background var(--ease),
    text-shadow var(--ease);
}
body.has-hero #site-header.is-scrolled .header__name strong,
body.has-hero #site-header.is-scrolled .nav__link,
body.has-hero #site-header.is-scrolled .nav__trigger {
  color: var(--gray-800);
  text-shadow: none;
  transition:
    color var(--ease),
    background var(--ease),
    text-shadow var(--ease);
}
body.has-hero #site-header:not(.is-scrolled) .header__name small {
  color: rgba(255, 255, 255, 0.68);
  text-shadow: 0 1px 10px rgba(14, 24, 36, 0.45);
  transition:
    color var(--ease),
    text-shadow var(--ease);
}
body.has-hero #site-header:not(.is-scrolled) .nav__link:hover,
body.has-hero #site-header:not(.is-scrolled) .nav__trigger:hover,
body.has-hero
  #site-header:not(.is-scrolled)
  .nav__item--drop.is-open
  .nav__trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}
body.has-hero #site-header:not(.is-scrolled) .nav__link.is-active,
body.has-hero #site-header:not(.is-scrolled) .nav__trigger.is-active {
  color: var(--brand-red-light);
}
body.has-hero #site-header:not(.is-scrolled) .nav__chev {
  opacity: 0.8;
}
body.has-hero #site-header:not(.is-scrolled) .header__toggle span {
  background: var(--white);
  box-shadow: 0 0 8px rgba(14, 24, 36, 0.35);
  transition:
    background var(--ease),
    box-shadow var(--ease);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--ease),
    border-color var(--ease);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch__btn {
  color: rgba(255, 255, 255, 0.85);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch__btn.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
body.has-hero #site-header:not(.is-scrolled) .lang-switch__sep {
  background: rgba(255, 255, 255, 0.3);
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  text-shadow: none;
  box-shadow: 0 4px 18px rgba(14, 24, 36, 0.28);
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    box-shadow var(--ease),
    border-radius var(--ease);
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: none;
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact.is-active {
  background: var(--brand-red-light);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}
body.has-hero #site-header:not(.is-scrolled) .nav__contact.is-active:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: none;
}
body.has-hero
  #site-header:not(.is-scrolled)
  .header__brand:hover
  .header__name
  strong {
  color: var(--white);
}
body.has-hero #site-header.is-scrolled .header__name small {
  color: var(--gray-500);
  text-shadow: none;
  transition:
    color var(--ease),
    text-shadow var(--ease);
}
body.has-hero #site-header.is-scrolled .header__toggle span {
  background: var(--navy-950);
  box-shadow: none;
  transition:
    background var(--ease),
    box-shadow var(--ease);
}

body.has-hero #site-header.has-nav-dropdown .header__name strong,
body.has-hero #site-header.has-nav-dropdown .nav__link,
body.has-hero #site-header.has-nav-dropdown .nav__trigger {
  color: var(--gray-800);
  text-shadow: none;
}
body.has-hero #site-header.has-nav-dropdown .header__name small {
  color: var(--gray-500);
  text-shadow: none;
}
body.has-hero #site-header.has-nav-dropdown .nav__link:hover,
body.has-hero #site-header.has-nav-dropdown .nav__trigger:hover,
body.has-hero
  #site-header.has-nav-dropdown
  .nav__item--drop.is-open
  .nav__trigger {
  color: var(--navy-800);
  background: var(--gray-50);
}
body.has-hero #site-header.has-nav-dropdown .nav__link.is-active,
body.has-hero #site-header.has-nav-dropdown .nav__trigger.is-active {
  color: var(--navy-800);
}
body.has-hero #site-header.has-nav-dropdown .nav__chev {
  opacity: 0.5;
}
body.has-hero #site-header.has-nav-dropdown .lang-switch {
  background: var(--gray-100);
  border-color: var(--gray-200);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.has-hero #site-header.has-nav-dropdown .lang-switch__btn {
  color: var(--gray-500);
}
body.has-hero #site-header.has-nav-dropdown .lang-switch__btn.is-active {
  background: var(--white);
  color: var(--navy-950);
}
body.has-hero #site-header.has-nav-dropdown .lang-switch__sep {
  background: var(--gray-300);
}
body.has-hero #site-header.has-nav-dropdown .nav__contact {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  text-shadow: none;
  box-shadow: none;
}
body.has-hero #site-header.has-nav-dropdown .nav__contact:hover {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--brand-red);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
}
body.has-hero #site-header.has-nav-dropdown .nav__contact.is-active {
  background: var(--white);
  border-color: var(--brand-red);
  color: var(--brand-red);
  box-shadow: none;
}
body.has-hero
  #site-header.has-nav-dropdown
  .header__brand:hover
  .header__name
  strong {
  color: var(--navy-800);
}

.header__inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem 2.5rem;
  transition:
    gap var(--ease),
    height var(--ease);
}
#site-header .container {
  width: min(var(--header-container), 100% - 3rem);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 0;
}
.header__brand:hover .header__name strong {
  color: var(--navy-800);
}
.header__brand img {
  width: auto;
  height: var(--header-logo);
  max-width: clamp(11rem, 40vw, 22rem);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 1;
  min-width: 0;
  transition: height var(--ease);
}
.header__logo--light {
  display: none;
}
body.has-hero
  #site-header:not(.is-scrolled):not(.has-nav-dropdown)
  .header__logo--light {
  display: block;
}
body.has-hero
  #site-header:not(.is-scrolled):not(.has-nav-dropdown)
  .header__logo--dark {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}
.header__name {
  display: none;
  line-height: 1.15;
}
.header__name strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-950);
  transition:
    font-size var(--ease),
    color var(--ease);
}
.header__name small {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    font-size var(--ease),
    color var(--ease);
}

.nav {
  display: none;
  justify-self: stretch;
  justify-content: center;
  min-width: 0;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.125rem;
}
.nav__link,
.nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-800);
  border-radius: var(--radius);
  transition:
    color var(--ease),
    background var(--ease),
    padding var(--ease),
    font-size var(--ease);
}
.nav__contact {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.75rem;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--brand-red);
  border: 2px solid var(--brand-red);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  white-space: nowrap;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    box-shadow var(--ease),
    border-radius var(--ease),
    padding var(--ease),
    font-size var(--ease);
}
.nav__contact:hover {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--brand-red);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: none;
}
.nav__contact.is-active {
  background: var(--white);
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.nav__contact.is-active:hover {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--brand-red);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: none;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
}
.lang-switch__btn {
  min-width: 2.5rem;
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  border-radius: 999px;
  transition:
    color var(--ease),
    background var(--ease);
}
.lang-switch__btn:hover {
  color: var(--navy-800);
}
.lang-switch__btn.is-active {
  background: var(--white);
  color: var(--navy-950);
  box-shadow: 0 1px 3px rgba(14, 24, 36, 0.08);
}
.lang-switch__sep {
  width: 1px;
  height: 0.875rem;
  background: var(--gray-300);
  flex-shrink: 0;
}
.nav__link:hover,
.nav__trigger:hover,
.nav__item--drop.is-open .nav__trigger {
  color: var(--navy-800);
  background: var(--gray-50);
}
.nav__link:focus-visible,
.nav__trigger:focus-visible,
.nav__contact:focus-visible,
.lang-switch__btn:focus-visible,
.header__toggle:focus-visible,
.header__brand:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
.nav__link.is-active,
.nav__trigger.is-active {
  color: var(--navy-800);
}
.nav__chev {
  transition: transform var(--ease);
  opacity: 0.5;
}
.nav__item--drop.is-open .nav__chev {
  transform: rotate(180deg);
}
.nav__item--drop {
  position: relative;
}
.nav__panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  max-width: none;
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  box-shadow:
    0 1.25rem 2.5rem rgba(14, 24, 36, 0.1),
    0 0.25rem 0.75rem rgba(14, 24, 36, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
  z-index: 100;
  overflow: hidden;
}
.nav__item--drop.is-open .nav__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__panel-container {
  width: min(var(--header-container), 100% - 3rem);
  margin-inline: auto;
}
.nav__panel-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 28%) 1fr;
  min-height: 18.5rem;
}
.nav__panel-nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--gray-200);
}
.nav__panel-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.5rem;
  text-align: left;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-950);
  background: none;
  border: none;
  border-top: 1px solid var(--gray-200);
  cursor: pointer;
  transition: color var(--ease);
}
.nav__panel-nav-item:first-child {
  border-top: none;
}
.nav__panel-nav-item:hover,
.nav__panel-nav-item:focus-visible {
  color: var(--navy-800);
  outline: none;
}
.nav__panel-nav-item.is-active {
  color: var(--navy-800);
  box-shadow:
    inset 0 2px 0 var(--navy-800),
    inset 0 -2px 0 var(--navy-800);
}
.nav__panel-nav-icon {
  flex-shrink: 0;
  width: 1rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: inherit;
}
.nav__panel-preview {
  position: relative;
  min-height: 18.5rem;
}
.nav__panel-preview-pane {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  height: 100%;
  padding: 2rem 2.5rem;
}
.nav__panel-preview-pane.is-active {
  display: grid;
}
.nav__panel-preview-media {
  border-radius: 0 1.25rem 0 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  box-shadow: inset 0 0 0 1px rgba(14, 24, 36, 0.06);
}
.nav__panel-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav__panel-preview-media--placeholder {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.nav__panel-preview-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
}
.nav__panel-preview-title {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-950);
}
.nav__panel-preview-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}
.nav__panel-preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.75rem 1.625rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--brand-red);
  border: 2px solid var(--brand-red);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    border-radius var(--ease);
}
.nav__panel-preview-cta:hover {
  background: var(--white);
  color: var(--brand-red);
  border-color: var(--brand-red);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
}
.nav__panel-preview-cta:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
@media (max-width: 1023px) {
  .nav__panel-layout {
    grid-template-columns: minmax(12.5rem, 32%) 1fr;
  }
  .nav__panel-preview-pane {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .nav__panel-nav-item {
    padding: 1rem 1.125rem;
    font-size: 0.8125rem;
  }
}

.header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.header__toggle span {
  display: block;
  height: 2px;
  background: var(--navy-950);
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mob-nav__backdrop {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 1098;
  background: rgba(14, 24, 36, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav__backdrop:not([hidden]) {
  display: block;
}
body.nav-open .mob-nav__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mob-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 1099;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  visibility: hidden;
}
.mob-nav:not([hidden]) {
  display: flex;
}
.mob-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}
.mob-nav__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  max-height: 100%;
  background: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(14, 24, 36, 0.12);
}
.mob-nav__scroll {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(0.75rem, 2.5vw, 1rem) clamp(1rem, 4vw, 1.5rem)
    calc(0.75rem + env(safe-area-inset-bottom, 0px));
}
.mob-nav__tools {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}
.mob-nav__tools .lang-switch {
  border-color: rgba(30, 81, 164, 0.2);
}
.mob-nav__tools .lang-switch__btn:hover {
  color: #1e51a4;
}
.mob-nav__tools .lang-switch__btn.is-active {
  color: #1e51a4;
}
.mob-nav__tools .lang-switch__sep {
  background: rgba(30, 81, 164, 0.25);
}
.mob-nav__menu {
  display: flex;
  flex-direction: column;
}
.mob-nav__group {
  display: flex;
  flex-direction: column;
}
.mob-nav__link,
.mob-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}
.mob-nav__link {
  color: var(--navy-950);
}
.mob-nav__link[data-nav="approach"],
.mob-nav__trigger {
  color: #1e51a4;
}
.mob-nav__group.is-open .mob-nav__trigger svg {
  transform: rotate(180deg);
}
.mob-nav__trigger svg {
  transition: transform var(--ease);
  flex-shrink: 0;
}
.mob-nav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.mob-nav__group.is-open .mob-nav__sub {
  max-height: min(70vh, 48rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 0.5rem 1rem;
}
.mob-nav__sublink {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.9375rem;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
}
.mob-nav__link.is-active,
.mob-nav__sublink:hover {
  color: var(--navy-800);
}
.mob-nav__link.is-active[data-nav="approach"] {
  color: #1e51a4;
}
.mob-nav__footer {
  flex-shrink: 0;
  padding: 0.75rem clamp(1rem, 4vw, 1.5rem)
    calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.mob-nav__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy-800);
  border-radius: var(--radius);
}
.mob-nav__contact.is-active {
  background: var(--white);
  color: var(--navy-800);
  border: 2px solid var(--navy-800);
}
.mob-nav__link:focus-visible,
.mob-nav__trigger:focus-visible,
.mob-nav__sublink:focus-visible,
.mob-nav__contact:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .mob-nav__backdrop,
  .mob-nav__sub,
  .mob-nav__trigger svg {
    transition: none;
  }
}

main {
  padding-top: 0;
}
body.no-hero main {
  padding-top: var(--header-h);
}
.page-top {
  padding-top: 3rem;
}

/* Hero banners — unified header integration across all pages */
.hero,
.page-hero,
.page-head {
  position: relative;
  margin-top: 0;
  padding: calc(var(--header-h) + 2.75rem) 0 3.75rem;
  background: var(--navy-950) center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero::before,
.page-hero::before,
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 24, 36, 0.86) 0%,
    rgba(14, 24, 36, 0.72) var(--header-h),
    rgba(14, 24, 36, 0.52) 42%,
    rgba(14, 24, 36, 0.82) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero .container,
.page-hero .container,
.page-head .container {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: min(100svh, 920px);
  display: flex;
  align-items: center;
  padding-bottom: 5.5rem;
}
.hero h1 {
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 1.25rem;
}
.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}
.hero .lead:last-of-type {
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Homepage hero — natural image, no overlay */
.hero.hero--home {
  background: var(--navy-950);
}
.hero.hero--home::before {
  display: none;
}
.hero-home__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-home__slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  will-change: transform;
  animation-duration: 16s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero-home__slide--primary {
  background-image: url("/asset/hero-sec/MLS-10.webp");
  animation-name: hero-home-slide-a;
}
.hero-home__slide--alt {
  background-image: url("/asset/services/01_ALEX_NYE_ELAC-G8_001-Stars.jpg.webp");
  animation-name: hero-home-slide-b;
}
@keyframes hero-home-slide-a {
  0%,
  43.75% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-100%, 0, 0);
  }
  50.01%,
  93.75% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hero-home-slide-b {
  0%,
  43.75% {
    transform: translate3d(100%, 0, 0);
  }
  50%,
  93.75% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-home__slide {
    animation: none;
    transform: none;
  }
  .hero-home__slide--primary {
    opacity: 1;
  }
  .hero-home__slide--alt {
    opacity: 0;
  }
}
.hero.hero--home .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: min(var(--header-container), 100% - 3rem);
  margin-inline: auto;
}
.hero-home__panel-stage {
  position: relative;
  z-index: 1;
  display: contents;
}
.hero-home__panel-media {
  display: none;
}
.hero-home__panel {
  --hero-panel-radius: clamp(1.5rem, 3.5vw, 2.75rem);
  position: relative;
  width: min(100%, 40rem);
  border-radius: 0 var(--hero-panel-radius) 0 var(--hero-panel-radius);
  overflow: hidden;
  background: rgba(14, 24, 36, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 40px rgba(14, 24, 36, 0.12);
}
.hero-home__panel-head {
  padding: clamp(2.25rem, 4.5vw, 3.25rem) clamp(2rem, 4vw, 3rem) 0;
}
.hero-home__panel-head h1 {
  color: var(--white);
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 20px rgba(14, 24, 36, 0.45);
}
.hero-home__panel-body {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  padding: 1.75rem clamp(2rem, 4vw, 3rem) clamp(2.25rem, 4.5vw, 3.25rem);
}
.hero-home__lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(14, 24, 36, 0.35);
}
.hero-home__lead--secondary {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 767px) {
  .hero.hero--home {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 0;
    overflow: hidden;
    background-color: #d6d6d6;
  }
  .hero.hero--home::before {
    display: block;
    background: none;
    background-image: var(--footer-crosshatch);
    background-size: var(--footer-crosshatch-size);
    z-index: 0;
  }
  .hero-home__slides {
    position: relative;
    inset: auto;
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 2;
    overflow: hidden;
    z-index: 1;
    border-radius: 0 0 clamp(3.5rem, 14vw, 6.5rem) 0;
  }
  .hero-home__panel-stage {
    display: block;
    position: relative;
    flex: none;
    margin-inline: auto;
    min-height: clamp(22rem, 58svh, 30rem);
    margin-top: -0.25rem;
    overflow: hidden;
    border-radius: 0 clamp(3.5rem, 14vw, 6.5rem) 0 clamp(3.5rem, 14vw, 6.5rem);
  }
  .hero-home__panel-media {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    overflow: hidden;
    z-index: 0;
  }
  .hero.hero--home .container {
    position: relative;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0;
    justify-content: stretch;
    z-index: 1;
  }
  .hero-home__panel {
    width: 100%;
    margin-top: 0;
    border-radius: 0 clamp(3.5rem, 14vw, 6.5rem) 0 clamp(3.5rem, 14vw, 6.5rem);
    background: rgba(14, 24, 36, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(14, 24, 36, 0.12);
  }
  .hero-home__panel-head {
    padding: clamp(1.75rem, 5vw, 2.25rem) clamp(1.25rem, 4vw, 1.75rem) 0;
  }
  .hero-home__panel-body {
    padding: 1.25rem clamp(1.25rem, 4vw, 1.75rem) clamp(1.75rem, 5vw, 2.25rem);
  }
  .hero-home__panel-head h1 {
    max-width: none;
  }
}

.page-hero,
.page-head {
  min-height: clamp(260px, 38vh, 420px);
  display: flex;
  align-items: flex-end;
}
.page-hero h1,
.page-head h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  max-width: 22ch;
}
.page-hero p,
.page-head p,
.page-hero .lead,
.page-head .lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-hero--placeholder {
  min-height: clamp(220px, 32vh, 360px);
}
.page-hero--placeholder .page-hero__title {
  width: min(18rem, 70%);
  height: 2.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}
.page-hero--placeholder .page-hero__lead {
  width: min(28rem, 90%);
  height: 1rem;
  margin-top: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero + .section,
.page-head + .section {
  position: relative;
  z-index: 1;
}

/* Grids & cards */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--2 {
  grid-template-columns: 1fr;
}
.grid--3 {
  grid-template-columns: 1fr;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow var(--ease),
    transform var(--ease);
  height: 100%;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.card:hover .card__img img {
  transform: scale(1.03);
}
.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}
.card__meta {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.875rem;
  flex: 1;
}
.card__link {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
}
.card--project {
  --card-cut-radius: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--card-cut-radius) 0 var(--card-cut-radius) 0;
  transition:
    box-shadow var(--ease),
    transform var(--ease),
    border-radius var(--ease);
}
.card--project:hover {
  border-radius: 0 var(--card-cut-radius) 0 var(--card-cut-radius);
}
.card--project .card__sector-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card--project .card__sector {
  color: var(--navy-800);
}
.card--project .card__location {
  color: var(--gray-400);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.card--project .card__location::before {
  content: "·";
  margin-right: 0.5rem;
  color: var(--gray-300);
}

/* Featured Work (homepage) */
.featured-work {
  position: relative;
  background-color: #eceff4;
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(14, 24, 36, 0.06) 46%,
      rgba(14, 24, 36, 0.06) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(14, 24, 36, 0.06) 46%,
      rgba(14, 24, 36, 0.06) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
  overflow: hidden;
}
.featured-work .container {
  position: relative;
  z-index: 1;
}
.featured-work__header {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}
.featured-work__header h2 {
  margin: 0;
}
.featured-work__grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}
.featured-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
  transition:
    box-shadow var(--ease),
    border-color var(--ease),
    transform var(--ease);
}
.featured-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.featured-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.featured-card:hover .featured-card__media img {
  transform: scale(1.04);
}
.featured-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.375rem 1.5rem 1.5rem;
}
.featured-card__title {
  font-size: clamp(1.0625rem, 1.5cqi, 1.25rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--navy-950);
}
.featured-card__summary {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.featured-card__link {
  margin-top: 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
}

/* Home services mosaic (homepage) */
.home-services {
  padding-bottom: 0;
}
.home-services__header {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.home-services__intro {
  margin-bottom: 0;
}
.home-services-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

/* Homepage difference band */
.home-difference {
  position: relative;
  background-color: var(--footer-bg);
  color: var(--white);
  overflow: hidden;
}
.home-difference::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(255, 255, 255, 0.028) 46%,
      rgba(255, 255, 255, 0.028) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(255, 255, 255, 0.028) 46%,
      rgba(255, 255, 255, 0.028) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
  pointer-events: none;
}
.home-difference__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
.home-difference__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red-light);
  margin-bottom: 1rem;
}
.home-difference__title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 20ch;
}
.home-difference__lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 36rem;
}
.home-difference__list {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.home-difference__list li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.home-difference__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--brand-red);
  border-radius: 1px;
  transform: rotate(45deg);
}
.home-difference__cta {
  margin-top: 0;
  padding: 0.75rem 2rem;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--footer-bg);
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    border-radius var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}
.home-difference__cta:hover,
.home-difference__cta:focus-visible {
  background: var(--footer-bg);
  color: var(--white);
  border-color: var(--white);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  box-shadow: none;
  transform: none;
}
.home-difference__media {
  margin: 0;
  border-radius: 0 clamp(1.75rem, 3.5vw, 2.75rem) 0
    clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
}
.home-difference__media img {
  display: block;
  width: 100%;
  min-height: clamp(300px, 52vw, 400px);
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
}

.service-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: clamp(200px, 42vw, 280px);
  color: var(--white);
  background: var(--gray-900);
}
.service-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.35s ease;
}
.service-tile:hover .service-tile__img,
.service-tile:focus-visible .service-tile__img {
  opacity: 0.88;
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.35s ease;
  pointer-events: none;
}
.service-tile:hover::after,
.service-tile:focus-visible::after {
  background: rgba(0, 0, 0, 0.2);
}
.service-tile__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 0.875rem 2rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  max-width: calc(100% - 2rem);
}

/* Projects page toolbar */
.page-hero__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-red-light);
  margin-bottom: 0.75rem;
}
.page-hero--work h1 {
  max-width: 16ch;
}
.projects-portfolio {
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
}
.projects-portfolio__grid-wrap {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.projects-portfolio .empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.975rem;
}
.projects-portfolio__more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.projects-portfolio__more[hidden] {
  display: none;
}
.projects-card--enter {
  opacity: 0;
  transform: translateY(0.75rem);
}
.projects-card--enter.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .projects-card--enter,
  .projects-card--enter.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.projects-toolbar {
  position: relative;
  z-index: 50;
  background-color: var(--white);
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(14, 24, 36, 0.035) 46%,
      rgba(14, 24, 36, 0.035) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(14, 24, 36, 0.035) 46%,
      rgba(14, 24, 36, 0.035) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
}
.projects-toolbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.projects-toolbar__inner > .btn {
  margin-top: 0;
  flex-shrink: 0;
}
.projects-toolbar__title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy-950);
}
.projects-filter-menu {
  position: relative;
  width: min(100%, 26rem);
  margin-left: auto;
}
.projects-filter-menu__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.85rem 1.1rem;
  text-align: left;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: 0 8px 24px rgba(14, 24, 36, 0.05);
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    border-radius var(--ease);
}
.projects-filter-menu__trigger:hover,
.projects-filter-menu.is-open .projects-filter-menu__trigger {
  border-color: rgba(14, 24, 36, 0.28);
  box-shadow: 0 12px 28px rgba(14, 24, 36, 0.08);
}
.projects-filter-menu.is-open .projects-filter-menu__trigger {
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
}
.projects-filter-menu__trigger:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
.projects-filter-menu__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.projects-filter-menu__label {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.projects-filter-menu__value {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-950);
}
.projects-filter-menu__chevron {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--navy-800);
  transition: transform 0.25s ease;
}
.projects-filter-menu.is-open .projects-filter-menu__chevron {
  transform: rotate(180deg);
}
.projects-filter-menu__list {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  right: 0;
  z-index: 60;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  box-shadow: 0 18px 40px rgba(14, 24, 36, 0.12);
}
.projects-filter-menu__option {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  color: var(--navy-950);
  border: 1px solid transparent;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease);
}
.projects-filter-menu__option:hover,
.projects-filter-menu__option:focus-visible {
  background: rgba(14, 24, 36, 0.04);
  outline: none;
}
.projects-filter-menu__option.is-selected {
  background: rgba(235, 0, 27, 0.06);
  border-color: rgba(235, 0, 27, 0.14);
}
.projects-filter-menu__option-label {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
}
.projects-filter-menu__sub {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--gray-600);
}
@media (prefers-reduced-motion: reduce) {
  .projects-filter-menu__chevron,
  .projects-filter-menu__trigger,
  .projects-filter-menu__option {
    transition: none;
  }
}

/* Approach page */
.approach-philosophy > .container,
.approach-pillars-section > .container,
.approach-lifecycle > .container,
.approach-delivery > .container,
.approach-precon > .container,
.approach-trust > .container {
  position: relative;
  z-index: 1;
}
.approach-philosophy__split {
  align-items: center;
}
.approach-philosophy__copy p + p {
  margin-top: 1rem;
}
.approach-pillars-section__intro {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}
.approach-pillars-section__lead {
  color: rgba(255, 255, 255, 0.78);
}
.approach-pillars-section .section-intro h2,
.approach-pillars-section .section-intro .lead {
  color: var(--white);
}
.approach-pillars-section .section-intro .lead {
  color: rgba(255, 255, 255, 0.78);
}
.approach-pillars {
  display: grid;
  gap: 1.5rem;
}
.approach-pillar {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  overflow: hidden;
  color: var(--navy-950);
  text-decoration: none;
  transition:
    box-shadow var(--ease),
    border-color var(--ease),
    transform var(--ease);
}
a.approach-pillar:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.approach-pillar__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.approach-pillar__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
a.approach-pillar:hover .approach-pillar__media img {
  transform: scale(1.04);
}
.approach-pillar__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.4rem;
}
.approach-pillar__title {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--navy-950);
}
.approach-pillar__text {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}
.approach-pillar__link {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-red);
}
.approach-precon__split {
  align-items: center;
}
.approach-precon__media {
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  box-shadow: none;
}
.approach-precon__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.approach-lifecycle .lifecycle__item,
.approach-delivery .delivery__item {
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gray-100);
  color: var(--navy-800);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* Homepage What We Build carousel */
.home-build {
  position: relative;
  background-color: var(--white);
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(14, 24, 36, 0.035) 46%,
      rgba(14, 24, 36, 0.035) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(14, 24, 36, 0.035) 46%,
      rgba(14, 24, 36, 0.035) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
  overflow: hidden;
}
.home-build.projects-portfolio {
  overflow: visible;
}
.home-build .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.home-build__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.home-build__title {
  font-size: clamp(2.125rem, 4.5vw, 3rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.home-build__actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.75rem;
}
.home-build__all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.home-build__viewport {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  container-type: inline-size;
  padding: 0;
}
.home-build__track {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline-start: var(--home-build-inset, 0px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
}
.home-build__track::-webkit-scrollbar {
  display: none;
}
.home-build__track-start,
.home-build__track-end {
  flex: 0 0 auto;
  width: 0;
  height: 1px;
  pointer-events: none;
}
.home-build__slide {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  gap: clamp(0.875rem, 2.25cqi, 1.5rem);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
}
.home-build__slide + .home-build__slide {
  margin-left: clamp(6rem, 16cqi, 11rem);
}
.home-build__slide-media {
  flex: 0 0 clamp(16rem, 54cqi, 38rem);
  display: block;
  border-radius: 0 clamp(2.25rem, 4.5cqi, 3.75rem) 0
    clamp(2.25rem, 4.5cqi, 3.75rem);
  overflow: hidden;
  background: var(--gray-100);
  min-height: clamp(17rem, 40cqi, 22.5rem);
  transition: opacity var(--ease);
}
.home-build__slide-media:hover {
  opacity: 0.92;
}
.home-build__slide-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.home-build__slide-copy {
  flex: 0 0 clamp(9rem, 18cqi, 12.75rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-width: 0;
  padding: 0.125rem 0 0.25rem;
}
.home-build__slide-copy h3 {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.35rem;
  color: var(--navy-950);
}
.home-build__slide-copy h3 a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}
.home-build__slide-copy h3 a:hover {
  color: var(--navy-800);
}
.home-build__slide-label {
  margin: 0;
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--navy-950);
}
.home-build__slide-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  transition: color var(--ease);
}
.home-build__slide-cta:hover {
  color: var(--navy-700);
}
.home-build__scrubber {
  margin-top: clamp(2.25rem, 4vw, 3rem);
}
.home-build__scrubber-rail {
  position: relative;
  height: 1px;
  background: var(--gray-300);
  cursor: pointer;
}
.home-build__scrubber-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.75rem;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--navy-800);
  border-radius: 50%;
  cursor: grab;
}
.home-build__scrubber-thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin: -0.25rem 0 0 -0.25rem;
  border-radius: 50%;
  background: var(--navy-800);
}
.home-build__scrubber-thumb.is-dragging {
  cursor: grabbing;
}
.home-build__scrubber.is-static .home-build__scrubber-thumb {
  cursor: default;
}

/* Pillars */
.pillars {
  display: grid;
  gap: 1.5rem;
}
.pillar {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  height: 100%;
}
.pillar__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pillar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar__body {
  padding: 1.75rem;
}
.pillar__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--navy-800);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.pillar h3 {
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.9375rem;
}

/* Project sectors */
.sector-card,
.market-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
}
.sector-card img,
.market-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sector-card:hover img,
.market-card:hover img {
  transform: scale(1.04);
}
.sector-card__overlay,
.market-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 24, 36, 0.1) 0%,
    rgba(14, 24, 36, 0.88) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}
.sector-card__overlay h3,
.market-card__overlay h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
}
.sector-card__overlay p,
.market-card__overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
}
.sector-card__meta {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-red-light);
}
.sector-card__cta,
.market-card__cta {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-red-light);
}

/* Quote band */
.quote-band {
  background: var(--navy-950);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.quote-band blockquote {
  max-width: 46rem;
  margin: 0 auto;
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  line-height: 1.65;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
}
.quote-band footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

/* Delivery */
.delivery {
  display: grid;
  gap: 1.25rem;
}
.delivery__item {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
}
a.delivery__item:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.delivery__item h3 {
  color: var(--navy-950);
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
}
.delivery__item p {
  font-size: 0.9375rem;
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}
.delivery__link {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-red);
}

/* Difference */
.difference {
  display: grid;
  gap: 1rem;
}
.difference__item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--brand-red);
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.difference__item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}
.difference__item p {
  font-size: 0.9375rem;
  margin: 0;
}

/* About page */
.about-metrics__eyebrow,
.about-story__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}
.about-metrics__eyebrow {
  color: var(--brand-red-light);
}
.about-metrics > .container {
  position: relative;
  z-index: 1;
}
.about-metrics__intro {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}
.about-metrics__intro h2 {
  color: var(--white);
  margin-bottom: 0;
}
.about-metrics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.about-metrics__item {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 1.35rem 0;
  text-align: left;
}
.about-metrics__item + .about-metrics__item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.about-metrics__value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about-metrics__label {
  display: block;
  max-width: 16ch;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}
.about-story__split {
  align-items: center;
}
.about-story__copy h2 {
  margin-bottom: 1rem;
}
.about-story__checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.about-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.about-story__portrait {
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
}
.about-story__photo {
  overflow: hidden;
  border-radius: 0 clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.25rem, 5vw, 3.5rem);
}
.about-story__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.about-values > .container,
.about-explore-section > .container {
  position: relative;
  z-index: 1;
}
.about-values .section-intro {
  margin-bottom: clamp(2.5rem, 4.5vw, 3.25rem);
}
.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 2.75rem);
}
.about-values__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1.25rem;
  row-gap: 0.5rem;
  align-content: start;
  max-width: 28rem;
}
.about-values__icon {
  grid-row: 1 / span 2;
  align-self: start;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  background: var(--navy-900);
  border-radius: 0 calc(var(--nav-contact-radius) * 0.55) 0
    calc(var(--nav-contact-radius) * 0.55);
}
.about-values__icon img {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
}
.about-values__item h3 {
  grid-column: 2;
  align-self: end;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  margin: 0;
  color: var(--navy-950);
}
.about-values__item p {
  grid-column: 2;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-600);
}
.about-explore {
  display: grid;
  gap: 1.5rem;
}
.about-explore__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow var(--ease),
    border-color var(--ease),
    transform var(--ease);
}
.about-explore__card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.about-explore__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}
.about-explore__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-explore__card:hover .about-explore__media img {
  transform: scale(1.04);
}
.about-explore__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.35rem 1.4rem;
}
.about-explore__title {
  font-size: 1.125rem;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--navy-950);
}
.about-explore__text {
  flex: 1;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--gray-600);
}
.about-explore__link {
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-red);
}

/* Values / team (legacy shared) */
.value-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 100%;
}
.value-card__bar {
  width: 32px;
  height: 3px;
  background: var(--brand-red);
  margin-bottom: 1rem;
}
.team-card {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 100%;
}
.team-card__photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--gray-100);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card__role {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}
.team-card p {
  font-size: 0.875rem;
}

/* Leadership page */
.leadership__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}
.leadership-hero h1 {
  margin-bottom: 0.35rem;
}
.leadership-hero__role {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.leadership-bio__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-800);
  margin-bottom: 1rem;
}
.leadership-bio__body p:last-child {
  margin-bottom: 0;
}
.leadership-bio__closing {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-800);
}
.leadership-bio__credentials-block {
  margin-top: 3.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--gray-200);
}
.leadership-bio__credentials-eyebrow {
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 1.5rem;
}
.leadership-bio__credentials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}
.leadership-bio__credential {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  column-gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
}
.leadership-bio__credential + .leadership-bio__credential {
  border-top: 1px solid var(--gray-200);
}
.leadership-bio__credential-logo {
  display: block;
  width: 6rem;
  max-height: 2.75rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.leadership-bio__credential-copy {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}
.leadership-bio__credential-label {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.3;
}
.leadership-bio__credential-detail {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.5;
}
.leadership-bio__portrait {
  margin: 0;
  max-width: 26rem;
  margin-inline: auto;
  align-self: center;
}
.leadership-bio__photo {
  overflow: hidden;
  border-radius: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.25rem, 5vw, 3.5rem) 0;
}
.leadership-bio__portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 12%;
}
.leadership-bio__caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0 0;
}
.leadership-bio__caption strong {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-800);
}
.leadership-bio__caption span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
}
.leadership-metrics > .container {
  position: relative;
  z-index: 1;
}
.leadership-metrics__intro {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}
.leadership-metrics__intro h2 {
  color: var(--white);
  margin-bottom: 0;
}
.leadership-metrics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.leadership-metrics__item {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 1.35rem 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.leadership-metrics__item + .leadership-metrics__item {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.leadership-metrics__value {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.leadership-metrics__label {
  display: block;
  max-width: 14ch;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}
.leadership-timeline {
  max-width: 42rem;
}
#leadership-expertise .home-build__slide {
  gap: 0;
}
#leadership-expertise .home-build__slide + .home-build__slide {
  margin-left: clamp(1.75rem, 4vw, 3rem);
}
#leadership-expertise .home-build__slide-media:hover {
  opacity: 1;
}
.leadership-expertise__media {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 0 0 clamp(19rem, 46cqi, 30rem);
  width: clamp(19rem, 46cqi, 30rem);
  min-height: 0;
  height: auto;
  padding: clamp(1.5rem, 3.25cqi, 2rem);
  background: var(--navy-900);
  color: var(--white);
  box-sizing: border-box;
}
.leadership-expertise__media::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--brand-red);
  flex-shrink: 0;
}
.leadership-expertise__media h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
}
.leadership-expertise__media p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

/* Timeline (leadership & shared) */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--gray-200);
}
.timeline__item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-red);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--brand-red);
}
.timeline__year {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}
.timeline__item h3 {
  margin-bottom: 0.35rem;
}
.timeline__item p {
  font-size: 0.9375rem;
}

/* History chronicle */
.history-chronicle > .container {
  position: relative;
  z-index: 1;
}
.history-chronicle__eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
}
.history-chronicle__intro {
  max-width: 42rem;
  margin-bottom: clamp(2.75rem, 5.5vw, 4rem);
}
.history-chronicle__intro h2 {
  margin-bottom: 0.85rem;
}
.history-chronicle__track {
  --history-rail-inset: 0.75rem;
  --history-content-inset: 2.15rem;
  position: relative;
  padding-block: 0.25rem;
}
.history-chronicle__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--history-rail-inset);
  z-index: 2;
  width: 2px;
  transform: none;
  pointer-events: none;
}
.history-chronicle__progress-rail {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(14, 24, 36, 0.12);
}
.history-chronicle__progress-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--brand-red-light) 0%,
    var(--brand-red) 55%,
    #c40016 100%
  );
  transform: scaleY(0);
  transform-origin: top center;
  will-change: transform;
  box-shadow: 0 0 0 1px rgba(235, 0, 27, 0.08);
}
.history-chronicle__node {
  position: absolute;
  left: 50%;
  z-index: 3;
  width: 0.75rem;
  height: 0.75rem;
  margin: -0.375rem 0 0 -0.375rem;
  border: 2px solid rgba(14, 24, 36, 0.18);
  background: var(--white);
  box-sizing: border-box;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.history-chronicle__node.is-passed {
  border-color: var(--brand-red);
  background: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(235, 0, 27, 0.12);
}
.history-chronicle__node.is-active {
  border-color: var(--brand-red);
  background: var(--white);
  transform: scale(1.2);
  box-shadow: 0 0 0 5px rgba(235, 0, 27, 0.16);
}
.history-chronicle__items {
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
  padding-inline: 0;
  padding-left: var(--history-content-inset);
}
.history-chronicle__item {
  display: grid;
  gap: clamp(1.35rem, 2.75vw, 2rem);
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
  align-items: center;
  opacity: 0.72;
  transform: translateY(0.4rem);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.history-chronicle__item.is-passed,
.history-chronicle__item.is-active {
  opacity: 1;
  transform: translateY(0);
}
.history-chronicle__item:first-child {
  padding-top: 0.35rem;
}
.history-chronicle__item:last-child {
  padding-bottom: 0.35rem;
}
.history-chronicle__copy {
  min-width: 0;
}
.history-chronicle__year {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--brand-red);
  margin: 0 0 0.7rem;
}
.history-chronicle__title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  margin: 0 0 0.7rem;
  color: var(--navy-950);
}
.history-chronicle__text {
  margin: 0;
  max-width: 38ch;
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.history-chronicle__media {
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 32px rgba(14, 24, 36, 0.08);
}
.history-chronicle__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.history-chronicle__item.is-active .history-chronicle__media img,
.history-chronicle__item.is-passed .history-chronicle__media img {
  transform: scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .history-chronicle__item,
  .history-chronicle__node,
  .history-chronicle__media img,
  .history-chronicle__progress-fill {
    transition: none;
  }
  .history-chronicle__item {
    opacity: 1;
    transform: none;
  }
}

/* Badges / certs */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.badge {
  padding: 0.625rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: var(--white);
}
.badges--light .badge {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--navy-950);
}

/* Layout helpers */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--gray-800);
  font-size: 0.9375rem;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--brand-red);
  border-radius: 1px;
}

/* Service / project layouts */
.service-layout,
.project-layout {
  display: grid;
  gap: 3rem;
}
.service-layout__side,
.project-layout__side {
  padding: 2rem;
  align-self: start;
}
.service-layout__side {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: 0 12px 32px rgba(14, 24, 36, 0.06);
}
.service-detail {
  padding-top: clamp(2rem, 4vw, 3rem);
}
.service-detail__intro {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.service-detail__intro h2 {
  margin-bottom: 0.85rem;
}
.service-detail__intro .lead {
  margin: 0;
  max-width: 48ch;
}
.service-detail__deliver h2 {
  margin-bottom: 1rem;
}
.service-side__eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.service-related {
  overflow: visible;
}
.service-related__intro {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.service-related__intro h2 {
  margin: 0;
}
.home-build.services-portfolio {
  overflow: visible;
}
.services-portfolio__grid-wrap {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}
.project-layout__side {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: 0 12px 32px rgba(14, 24, 36, 0.06);
}
.project-detail {
  padding-top: clamp(2rem, 4vw, 3rem);
}
.project-detail__intro h2 {
  margin-bottom: 0.85rem;
}
.project-detail__intro .lead {
  margin: 0;
  max-width: 42ch;
}
.project-story {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.project-story__block h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--navy-950);
}
.project-story__block p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.7;
}
.project-side__eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--font-head);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.project-side__services {
  margin: 1.5rem 0 1.75rem;
}
.project-side__services h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.project-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.project-service-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition:
    color var(--ease),
    background var(--ease),
    border-color var(--ease);
}
.project-service-chip:hover {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
}
.project-related {
  overflow: visible;
}
.project-related__intro {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.project-related__intro h2 {
  margin: 0;
}

.step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.step__n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}
.step p {
  font-size: 0.875rem;
  margin: 0;
}
.scope-list div {
  margin-bottom: 1rem;
}
.scope-list dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
}
.scope-list dd {
  font-weight: 600;
  color: var(--navy-950);
}

/* Project detail gallery — centered peek carousel */
.project-gallery {
  container-type: inline-size;
  container-name: project-gallery;
  --gallery-slide: 78cqi;
  --gallery-gap: clamp(0.75rem, 2cqi, 1.35rem);
  --gallery-side: calc((100cqi - var(--gallery-slide)) / 2);
  margin-top: clamp(2.75rem, 5vw, 4rem);
}
.project-gallery__status {
  margin: 0.85rem 0 0;
  padding-inline: var(--gallery-side);
  text-align: right;
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}
.project-gallery__stage {
  position: relative;
}
.project-gallery__track {
  display: flex;
  align-items: center;
  gap: var(--gallery-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--gallery-side);
  padding-inline: var(--gallery-side);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x;
}
.project-gallery__track::-webkit-scrollbar {
  display: none;
}
.project-gallery__slide {
  flex: 0 0 var(--gallery-slide);
  width: var(--gallery-slide);
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-900);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: 0 14px 36px rgba(14, 24, 36, 0.12);
  opacity: 0.42;
  transform: scale(0.94);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.project-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 48px rgba(14, 24, 36, 0.18);
}
.project-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.project-gallery--solo {
  --gallery-slide: 100cqi;
  --gallery-gap: 0px;
  --gallery-side: 0px;
}
.project-gallery--solo .project-gallery__slide {
  opacity: 1;
  transform: none;
}
.project-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  transform: translateY(-50%);
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(14, 24, 36, 0.08);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  box-shadow: 0 8px 22px rgba(14, 24, 36, 0.16);
  transition:
    background var(--ease),
    color var(--ease),
    opacity var(--ease),
    border-radius var(--ease);
}
.project-gallery__nav:hover:not(:disabled) {
  color: var(--white);
  background: var(--brand-red);
  border-color: var(--brand-red);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
}
.project-gallery__nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.project-gallery__nav:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
.project-gallery__nav--prev {
  left: max(0.35rem, calc(var(--gallery-side) * 0.28));
}
.project-gallery__nav--next {
  right: max(0.35rem, calc(var(--gallery-side) * 0.28));
}
@media (max-width: 767px) {
  .project-gallery {
    --gallery-slide: 84cqi;
  }
  .project-gallery__nav {
    width: 2.35rem;
    height: 2.35rem;
  }
}
@media (min-width: 1024px) {
  .project-gallery {
    --gallery-slide: 70cqi;
  }
}
@supports not (width: 1cqi) {
  .project-gallery {
    --gallery-slide: 78%;
    --gallery-gap: 1rem;
    --gallery-side: 11%;
  }
  .project-gallery--solo {
    --gallery-slide: 100%;
    --gallery-side: 0%;
  }
}
.project-gallery__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.project-gallery__dots + .project-gallery__status {
  margin-top: 0.65rem;
}
.project-gallery__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  background: rgba(14, 24, 36, 0.18);
  border-radius: 1px;
  transition:
    background var(--ease),
    transform var(--ease);
}
.project-gallery__dot.is-active {
  background: var(--brand-red);
  transform: scale(1.2);
}
.project-gallery__dot:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .project-gallery__track {
    scroll-behavior: auto;
  }
  .project-gallery__slide,
  .project-gallery__nav,
  .project-gallery__dot {
    transition: none;
  }
}

.gallery {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
}

/* Homepage testimonials */
.home-testimonials {
  position: relative;
  background-color: var(--white);
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(14, 24, 36, 0.03) 46%,
      rgba(14, 24, 36, 0.03) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(14, 24, 36, 0.03) 46%,
      rgba(14, 24, 36, 0.03) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
  overflow: hidden;
}
.home-testimonials .container {
  position: relative;
  z-index: 1;
  overflow: visible;
}
.home-testimonials__header {
  margin-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  text-align: center;
}
.home-testimonials__title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.home-testimonials__viewport {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  container-type: inline-size;
  padding: 0 0 0.5rem;
}
.home-testimonials__track {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline-start: var(--home-testimonials-inset, 0px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0 0.75rem;
  margin: 0;
}
.home-testimonials__track::-webkit-scrollbar {
  display: none;
}
.home-testimonials__track-start,
.home-testimonials__track-end {
  flex: 0 0 auto;
  width: 0;
  height: 1px;
  pointer-events: none;
}
.home-testimonials__slide {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: clamp(20rem, 44cqi, 26rem);
  min-height: clamp(17rem, 48cqi, 21rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 clamp(1.75rem, 4cqi, 2.75rem) 0 clamp(1.75rem, 4cqi, 2.75rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.home-testimonials__slide + .home-testimonials__slide {
  margin-left: clamp(3rem, 8cqi, 5rem);
}
.home-testimonials__scrubber {
  margin-top: clamp(2.25rem, 4vw, 3rem);
}
.home-testimonials__scrubber-rail {
  position: relative;
  height: 1px;
  background: var(--gray-300);
  cursor: pointer;
}
.home-testimonials__scrubber-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: -0.75rem;
  padding: 0;
  background: var(--white);
  border: 2px solid var(--navy-800);
  border-radius: 50%;
  cursor: grab;
}
.home-testimonials__scrubber-thumb::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  margin: -0.25rem 0 0 -0.25rem;
  border-radius: 50%;
  background: var(--navy-800);
}
.home-testimonials__scrubber-thumb.is-dragging {
  cursor: grabbing;
}
.home-testimonials__scrubber.is-static .home-testimonials__scrubber-thumb {
  cursor: default;
}
.home-testimonials__slide .testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3cqi, 2rem);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}
.testimonial-card__mark {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4cqi, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-red);
  opacity: 0.45;
  margin-bottom: 0.875rem;
}
.testimonial-card__text {
  flex: 1;
  margin: 0 0 1.25rem;
  font-size: clamp(0.9375rem, 1.55cqi, 1.03125rem);
  line-height: 1.75;
  color: var(--gray-800);
}
.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.testimonial-card__brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 11rem;
  height: 2rem;
}
.testimonial-card__logo {
  display: block;
  width: 100%;
  height: 2rem;
  object-fit: contain;
  object-position: left center;
}
.testimonial-card__meta {
  width: 100%;
}
.testimonial-card__name {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  font-style: normal;
  color: var(--navy-950);
  line-height: 1.3;
}
.testimonial-card__role {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--gray-500);
}

/* CTA */
.cta-band {
  background: linear-gradient(155deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.75rem;
  max-width: 32rem;
  margin-inline: auto;
}

/* Homepage closing CTA */
.cta-band--home {
  --cta-size: clamp(16rem, 38vw, 28rem);
  --cta-moon: calc(var(--cta-size) * 2.083333);
  --cta-top-pad: clamp(0.5rem, 1vw, 0.75rem);
  /* Cropped viewBox: disc center at y=112, graphic height 312/400 of width */
  --cta-graphic-h: calc(var(--cta-moon) * 0.78);
  --cta-disc-center: calc(var(--cta-moon) * 0.28);
  --cta-split-y: calc(var(--cta-top-pad) + var(--cta-disc-center));
  --cta-content-gap: clamp(0.25rem, 0.75vw, 0.5rem);
  --cta-content-pull: clamp(4.75rem, 10vw, 7.75rem);
  --cta-dark-bg: var(--footer-bg);
  --cta-light-bg: var(--white);
  position: relative;
  padding: 0;
  overflow: visible;
}
.cta-band__split {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--cta-light-bg) 0%,
    var(--cta-light-bg) var(--cta-split-y),
    var(--cta-dark-bg) var(--cta-split-y),
    var(--cta-dark-bg) 100%
  );
  z-index: 0;
}
.cta-band__split::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--cta-split-y);
  bottom: 0;
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(255, 255, 255, 0.028) 46%,
      rgba(255, 255, 255, 0.028) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(255, 255, 255, 0.028) 46%,
      rgba(255, 255, 255, 0.028) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
  pointer-events: none;
}
.cta-band__split::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--cta-split-y);
  background-color: var(--cta-light-bg);
  background-image:
    linear-gradient(
      135deg,
      transparent 46%,
      rgba(14, 24, 36, 0.03) 46%,
      rgba(14, 24, 36, 0.03) 54%,
      transparent 54%
    ),
    linear-gradient(
      45deg,
      transparent 46%,
      rgba(14, 24, 36, 0.03) 46%,
      rgba(14, 24, 36, 0.03) 54%,
      transparent 54%
    );
  background-size: 11px 11px;
  pointer-events: none;
}
.cta-band__hero {
  position: relative;
  z-index: 1;
  padding-top: var(--cta-top-pad);
  display: flex;
  justify-content: center;
}
.cta-band__moon {
  position: relative;
  width: min(var(--cta-moon), calc(100vw - 2.5rem));
  aspect-ratio: 400 / 312;
  margin: 0;
}
.cta-band__graphic {
  display: block;
  width: 100%;
  height: 100%;
}
.cta-band__photo {
  filter: drop-shadow(0 18px 36px rgba(14, 24, 36, 0.28));
}
.cta-band__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "lead . accent"
    ". btn .";
  align-items: center;
  column-gap: clamp(1rem, 3vw, 2rem);
  row-gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: calc(-1 * var(--cta-content-pull));
  padding: var(--cta-content-gap) 0 clamp(3rem, 7vw, 4.75rem);
}
.cta-band__headline {
  display: contents;
}
.cta-band__actions {
  grid-area: btn;
  justify-self: center;
}
.cta-band__line {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 3.2vw, 2.25rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.cta-band__line--lead {
  grid-area: lead;
  justify-self: start;
  align-self: end;
  max-width: 14ch;
  text-align: left;
}
.cta-band__line--accent {
  grid-area: accent;
  justify-self: end;
  align-self: end;
  max-width: 12ch;
  text-align: right;
}
.cta-band__cta {
  margin: 0;
  padding: 0.85rem 2.25rem;
  min-width: clamp(14rem, 28vw, 17.5rem);
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--navy-950);
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  transition:
    background var(--ease),
    border-color var(--ease),
    color var(--ease),
    border-radius var(--ease),
    transform var(--ease);
}

.cta-band__cta:hover,
.cta-band__cta:focus-visible {
  background: var(--footer-bg);
  color: var(--white);
  border-color: var(--white);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  box-shadow: none;
  transform: none;
}

/* Contact form */
.form {
  max-width: 36rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-800);
}
.form-status {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--navy-800);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}
.contact-info h3 {
  margin-bottom: 1rem;
}
.contact-info li {
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
}
.contact-info a {
  color: var(--navy-800);
  font-weight: 500;
}

/* Footer */
#site-footer {
  position: relative;
  background-color: var(--footer-bg);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  overflow: hidden;
}
#site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--footer-crosshatch);
  background-size: var(--footer-crosshatch-size);
  pointer-events: none;
}
#site-footer > .container {
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  padding-bottom: 0;
}
.footer__social-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  margin-top: var(--footer-social-gap);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__col--brand {
  max-width: 26rem;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  transition: opacity var(--ease);
}
.footer__brand:hover,
.footer__brand:focus-visible {
  opacity: 0.92;
}
.footer__brand img {
  flex-shrink: 0;
  width: clamp(4.5rem, 8vw, 5.5rem);
  height: clamp(4.5rem, 8vw, 5.5rem);
  object-fit: contain;
}
.footer__tagline {
  font-family: var(--font-head);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
  max-width: 16rem;
}
.footer__tagline-line {
  display: inline-block;
}
.footer__tagline-accent {
  color: var(--brand-red-light);
}
.footer__tagline-accent--finale {
  color: var(--brand-red);
}
.footer__social {
  z-index: 1;
}
.footer__social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--nav-contact-radius) 0 var(--nav-contact-radius) 0;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background var(--ease),
    border-color var(--ease),
    transform var(--ease),
    opacity var(--ease);
}
.footer__social-link:hover,
.footer__social-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.footer__social-link img {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  object-fit: contain;
}
.footer__social-link:focus-visible {
  outline: 2px solid var(--brand-red-light);
  outline-offset: 3px;
}
#site-footer h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8a8a8;
  margin-bottom: 1.25rem;
}
.footer__nav ul {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__nav li {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer__contact-item {
  color: rgba(255, 255, 255, 0.82);
}
#site-footer a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--ease);
}
#site-footer a:hover,
#site-footer a:focus-visible {
  color: var(--white);
}
#site-footer a:focus-visible,
.footer__brand:focus-visible {
  outline: 2px solid var(--brand-red-light);
  outline-offset: 3px;
}
.footer__link-all,
.footer__map {
  font-weight: 600;
  color: var(--brand-red-light);
}
.footer__link-all:hover,
.footer__link-all:focus-visible,
.footer__map:hover,
.footer__map:focus-visible {
  color: var(--white);
}
.footer__bottom {
  position: relative;
  isolation: isolate;
  background-color: var(--plate-dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer__bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--footer-crosshatch);
  background-size: var(--footer-crosshatch-size);
  pointer-events: none;
  z-index: 0;
}
.footer__bottom-inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0;
  text-align: center;
}
.footer__bottom p {
  margin: 0;
  color: inherit;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.footer__bottom a:hover,
.footer__bottom a:focus-visible {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.trust-grid__item {
  padding: 1.75rem 1.25rem;
  text-align: center;
}
.trust-grid__item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.trust-grid__item span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Lifecycle */
.lifecycle {
  display: grid;
  gap: 1.25rem;
}
.lifecycle__item {
  display: block;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 var(--nav-contact-radius) 0 var(--nav-contact-radius);
  color: inherit;
  text-decoration: none;
  transition:
    box-shadow var(--ease),
    border-color var(--ease),
    transform var(--ease);
  height: 100%;
}
.lifecycle__item:hover {
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}
.lifecycle__step {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.8125rem;
  color: var(--brand-red);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.lifecycle__item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--navy-950);
}
.lifecycle__item p {
  font-size: 0.9375rem;
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
}
.lifecycle__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-red);
}

/* Responsive */
@media (min-width: 640px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .leadership-bio__credentials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .leadership-bio__credential {
    grid-template-columns: 1fr;
    align-items: start;
    align-content: start;
    row-gap: 1rem;
    padding: 0 1.5rem;
  }
  .leadership-bio__credential + .leadership-bio__credential {
    border-top: 0;
    border-left: 1px solid var(--gray-200);
  }
  .leadership-bio__credential:first-child {
    padding-left: 0;
  }
  .leadership-bio__credential:last-child {
    padding-right: 0;
  }
  .leadership-bio__credential-logo {
    width: auto;
    max-width: 8.5rem;
    max-height: 2.85rem;
  }
  .about-explore {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 3.5rem);
    row-gap: clamp(2rem, 3.5vw, 2.75rem);
  }
  .about-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-metrics__item {
    padding: 1.5rem 0.85rem;
    text-align: center;
    justify-items: center;
  }
  .about-metrics__item + .about-metrics__item {
    border-top: 0;
  }
  .about-metrics__item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .about-metrics__item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .about-metrics__label {
    max-width: 14ch;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 96px;
    --header-logo: 64px;
    --section-gutter: 2rem;
  }
  body.is-header-scrolled {
    --header-h: 72px;
    --header-logo: 48px;
  }
  #site-header .container {
    width: min(var(--header-container), 100% - var(--section-gutter));
  }
  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 0.5rem;
  }
  .header__actions {
    gap: 0.5rem;
    margin-left: 0;
    flex-shrink: 0;
  }
  .header__actions .lang-switch {
    display: none;
  }
  .header__actions .nav__contact {
    display: inline-flex;
    padding: 0.5rem 1.575rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  #site-header.is-scrolled .header__inner {
    gap: 0.75rem 0.5rem;
  }
  #site-header.is-scrolled .header__actions .nav__contact {
    padding: 0.5rem 1.575rem;
    font-size: 0.75rem;
  }
  .header__toggle {
    border-radius: var(--radius);
    transition: background var(--ease);
    padding: 10px 0 10px 10px;
    width: auto;
    min-width: 34px;
  }
  .header__toggle:active {
    background: var(--gray-100);
  }
  .nav__panel {
    display: none !important;
  }
  .cta-band__moon {
    width: min(var(--cta-moon), calc(100vw - var(--section-gutter)));
  }
  .home-build__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
  .home-build__actions {
    width: auto;
    margin-left: auto;
    flex-wrap: nowrap;
  }
  .home-build__all-btn {
    flex: none;
    justify-content: center;
  }
  .home-build__viewport {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
  }
  .home-build__slide {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
    width: calc(100vw - var(--section-gutter) - clamp(1.25rem, 5vw, 2rem));
    scroll-snap-align: start;
  }
  .home-build__slide + .home-build__slide {
    margin-left: 1rem;
    margin-top: 0;
  }
  .home-build__slide-media {
    flex: none;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .home-build__slide-copy {
    flex: none;
    width: 100%;
    min-height: 0;
    gap: 0;
    padding: 0;
    justify-content: flex-start;
  }
  .home-build__slide-cta {
    display: none;
  }
  #leadership-expertise .home-build__slide {
    width: calc(100vw - var(--section-gutter) - clamp(1.25rem, 5vw, 2rem));
  }
  #leadership-expertise .home-build__slide + .home-build__slide {
    margin-left: 1.25rem;
  }
  #leadership-expertise .leadership-expertise__media {
    flex: none;
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
  }
  .home-testimonials__header {
    margin-bottom: 1.75rem;
  }
  .home-testimonials__viewport {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .home-testimonials__slide {
    width: min(88vw, 26rem);
    min-height: 18rem;
  }
  .home-testimonials__slide + .home-testimonials__slide {
    margin-left: clamp(2rem, 5vw, 3rem);
  }
  .featured-work__grid {
    gap: clamp(2rem, 5vw, 2.75rem);
  }
  .home-services__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-services__header .btn--cut {
    align-self: flex-end;
    margin-left: auto;
  }
  .home-services-mosaic .service-tile {
    min-height: clamp(260px, 55vw, 340px);
  }
  .home-services-mosaic .service-tile__label {
    width: max-content;
    max-width: calc(100% - 1rem);
    padding-inline: 1.75rem;
    white-space: nowrap;
  }
  .cta-band--home {
    --cta-size: clamp(13rem, 42vw, 19.5rem);
    --cta-content-pull: clamp(1.25rem, 3.5vw, 2rem);
  }
  .cta-band__content {
    margin-top: calc(-1 * var(--cta-content-pull));
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "btn"
      "accent";
    row-gap: 1.7rem;
  }
  .cta-band__line--lead,
  .cta-band__line--accent {
    max-width: none;
    justify-self: stretch;
  }
  .cta-band__line {
    font-size: 30px;
  }
  .cta-band__line--lead {
    text-align: left;
  }
  .cta-band__line--accent {
    text-align: right;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 496px) {
  .footer__col--contact {
    grid-column: 1 / -1;
  }
  .footer__col--contact .footer__nav li,
  .footer__col--contact a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header__inner {
    gap: 1rem 1.25rem;
  }
  .header__name strong {
    font-size: 1.125rem;
  }
  .header__name small {
    font-size: 0.625rem;
  }
  .nav__link,
  .nav__trigger {
    padding: 0.5625rem 0.6875rem;
    font-size: 0.8125rem;
  }
  .nav__contact {
    padding: 0.6rem 1.75rem;
    font-size: 0.875rem;
  }
  .lang-switch__btn {
    min-width: 2.25rem;
    font-size: 0.6875rem;
  }
}

@media (min-width: 768px) {
  .mob-nav,
  .mob-nav__backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .header__name {
    display: block;
  }
  .nav {
    display: flex;
  }
  .nav__contact {
    display: inline-flex;
  }
  .header__toggle {
    display: none;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .leadership-metrics__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .leadership-metrics__item {
    padding: 1.5rem 0.85rem;
    text-align: center;
    justify-items: center;
  }
  .leadership-metrics__item + .leadership-metrics__item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .leadership-metrics__item:first-child {
    padding-left: 0;
  }
  .leadership-metrics__item:last-child {
    padding-right: 0;
  }
  .leadership-metrics__value {
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  }
  .leadership-metrics__label {
    max-width: 11ch;
    font-size: 0.75rem;
  }
  .featured-work__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-difference__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2.5rem, 4vw, 3.5rem);
    align-items: center;
  }
  .home-difference__media img {
    min-height: clamp(420px, 46vw, 560px);
    aspect-ratio: 4 / 3.5;
  }
  .home-services-mosaic {
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows:
      minmax(260px, 36vw) repeat(2, minmax(160px, 22vw))
      minmax(280px, 32vw);
    grid-template-areas:
      "s0 s0 s0 s0 s1 s1 s1 s1 s1 s1"
      "s2 s2 s2 s2 s2 s3 s3 s3 s3 s3"
      "s2 s2 s2 s2 s2 s4 s4 s4 s4 s4"
      "s5 s5 s5 s5 s5 s5 s5 s5 s5 s5";
  }
  .home-services-mosaic .service-tile {
    min-height: 0;
  }
  .service-tile--1 {
    grid-area: s0;
  }
  .service-tile--2 {
    grid-area: s1;
  }
  .service-tile--3 {
    grid-area: s2;
  }
  .service-tile--4 {
    grid-area: s3;
  }
  .service-tile--5 {
    grid-area: s4;
  }
  .service-tile--6 {
    grid-area: s5;
  }
  .approach-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .delivery {
    grid-template-columns: repeat(2, 1fr);
  }
  .difference {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-explore {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-metrics__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .about-metrics__item {
    padding: 1.5rem 0.85rem;
    text-align: center;
    justify-items: center;
    border-top: 0;
    border-right: 0;
  }
  .about-metrics__item + .about-metrics__item {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }
  .about-metrics__item:nth-child(n + 3) {
    border-top: 0;
  }
  .about-metrics__item:first-child {
    padding-left: 0;
  }
  .about-metrics__item:last-child {
    padding-right: 0;
  }
  .about-metrics__value {
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  }
  .about-metrics__label {
    max-width: 12ch;
    font-size: 0.75rem;
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .service-layout,
  .project-layout {
    grid-template-columns: 1.4fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: none;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .history-chronicle__track {
    --history-rail-inset: 50%;
    --history-content-inset: 0;
  }
  .history-chronicle__items {
    padding-inline: 0;
    padding-left: 0;
  }
  .history-chronicle__progress {
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
  }
  .history-chronicle__node {
    width: 0.875rem;
    height: 0.875rem;
    margin: -0.4375rem 0 0 -0.4375rem;
  }
  .history-chronicle__item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    column-gap: clamp(4rem, 8vw, 6rem);
    padding: clamp(2.75rem, 5vw, 4rem) 0;
  }
  .history-chronicle__item:nth-child(even) .history-chronicle__copy {
    order: 2;
  }
  .history-chronicle__item:nth-child(even) .history-chronicle__media {
    order: 1;
  }
  .history-chronicle__text {
    max-width: 42ch;
  }
  .footer__col--brand {
    grid-column: auto;
    max-width: 26rem;
  }
  .footer__grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 1fr));
  }
  .nav__link,
  .nav__trigger {
    padding: 0.625rem 0.9375rem;
  }
  .approach-pillars {
    grid-template-columns: repeat(4, 1fr);
  }
  .delivery {
    grid-template-columns: repeat(4, 1fr);
  }
  .lifecycle {
    grid-template-columns: repeat(4, 1fr);
  }
  .featured-work__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .leadership-metrics__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .leadership-metrics__item {
    padding: 1.85rem 1.35rem;
  }
  .leadership-metrics__value {
    font-size: clamp(1.85rem, 2.4vw, 2.35rem);
  }
  .leadership-metrics__label {
    max-width: 12ch;
    font-size: 0.8125rem;
  }
}

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