:root {
  --blue: #2e59b7;
  --blue-dark: #23458f;
  --black: #08090b;
  --ink: #17191d;
  --gray-900: #282c32;
  --gray-700: #59616d;
  --gray-500: #9299a3;
  --gray-300: #d2d6dc;
  --gray-200: #e4e7eb;
  --gray-100: #f2f4f6;
  --white: #ffffff;
  --content: 1360px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

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

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

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

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: 0;
}

h1,
h2 {
  font-weight: 400;
}

h1 {
  margin-bottom: 8px;
  font-size: 88px;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 54px;
}

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

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.content-width {
  width: min(calc(100% - 72px), var(--content));
  margin-inline: auto;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
}

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

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

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

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--blue);
  background: var(--white);
  border-color: var(--black);
}

.text-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 5px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: var(--white);
}

.ui-arrow-right {
  display: inline-block;
  flex: 0 0 auto;
  color: currentColor;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 3px;
  display: inline-block;
  margin-right: 12px;
  background: var(--blue);
  vertical-align: middle;
}

.eyebrow-dark {
  color: var(--gray-700);
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 12px 32px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid #25282e;
}

.brand {
  width: clamp(112px, 11vw, 154px);
  display: flex;
  align-items: center;
  justify-self: start;
}

.brand img {
  width: 100%;
  height: auto;
  aspect-ratio: 413 / 56;
  object-fit: contain;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.desktop-nav > a,
.nav-item > a {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #d8dce3;
  font-size: 13px;
  white-space: nowrap;
}

.desktop-nav > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a.is-current::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.chevron {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin: -4px 0 0 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.dropdown {
  position: absolute;
  z-index: 10;
  top: calc(100% + 17px);
  left: -18px;
  width: 224px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: #111318;
  border: 1px solid #30343b;
  border-top: 3px solid var(--blue);
  transform: translateY(7px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
}

.dropdown::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: block;
  padding: 11px 12px;
  color: #e5e8ed;
  font-size: 13px;
  border-bottom: 1px solid #2a2e35;
}

.dropdown a:last-child {
  border-bottom: 0;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: #20242b;
}

.dropdown-wide {
  width: 320px;
}

.dropdown strong,
.dropdown span {
  display: block;
}

.dropdown strong {
  font-weight: 600;
}

.dropdown span {
  margin-top: 3px;
  color: #9ea5af;
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.language-control {
  position: relative;
}

.language-button {
  min-width: 58px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 6px;
  color: #d8dce3;
  background: transparent;
  border: 0;
}

.language-button strong {
  font-size: 12px;
}

.language-mark {
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 1px solid #858c97;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--black), inset 0 0 0 4px #858c97;
}

.language-button .chevron {
  width: 6px;
  height: 6px;
  margin-left: 0;
}

.language-button[aria-expanded="true"] .chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  padding: 8px;
  background: #111318;
  border: 1px solid #30343b;
  border-top: 3px solid var(--blue);
}

.language-menu button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 10px 9px;
  color: #e5e8ed;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #2a2e35;
}

.language-menu button:last-child {
  border-bottom: 0;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button.is-current {
  background: #20242b;
}

.language-menu button.is-current {
  box-shadow: inset 3px 0 var(--blue);
}

.language-menu span {
  color: #acb2bc;
}

.header-quote,
.mobile-quote {
  min-height: 46px;
  padding: 10px 20px;
  color: var(--white);
  background: transparent;
  border: 1px solid #aeb4bf;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.header-quote:hover,
.header-quote:focus-visible,
.mobile-quote:hover,
.mobile-quote:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.menu-button {
  width: 46px;
  height: 44px;
  display: none;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid #555b65;
  border-radius: 4px;
}

.menu-button span {
  width: 22px;
  height: 1px;
  display: block;
  margin: 6px auto;
  background: currentColor;
}

.mobile-nav {
  grid-column: 1 / -1;
  padding: 10px 0 5px;
  background: var(--black);
  border-top: 1px solid #25282e;
}

.mobile-nav > a {
  display: block;
  padding: 11px 0;
  color: #e8eaf0;
  border-bottom: 1px solid #25282e;
}

.mobile-quote {
  width: 100%;
  margin-top: 18px;
}

.hero {
  position: relative;
  min-height: 600px;
  height: clamp(600px, calc(100svh - 138px), 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}

.hero-statement {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 34px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: #e0e3e7;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-caption {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 23px;
  margin: 0;
  color: #d7dbe1;
  font-size: 12px;
}

.hero-caption span {
  padding: 0 5px;
}

.route-strip {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.route-strip-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(3, auto);
  align-items: stretch;
  gap: 0;
}

.route-strip-inner > span {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.route-strip a {
  min-width: 185px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-left: 1px solid var(--gray-200);
}

.route-strip a:hover,
.route-strip a:focus-visible {
  color: var(--blue);
  background: var(--gray-100);
}

.route-strip strong {
  color: var(--blue);
  font-size: 11px;
}

.route-strip a span {
  font-size: 14px;
  font-weight: 600;
}

.range-section,
.projects-section {
  padding: 126px 0;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 96px;
  margin-bottom: 68px;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--gray-700);
  font-size: 17px;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 28px;
}

.collection-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--black);
}

.collection-card:first-child {
  aspect-ratio: 1.42 / 1;
}

.collection-card:last-child {
  aspect-ratio: 1.03 / 1;
}

.collection-card > a,
.collection-card img,
.collection-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.collection-card img {
  object-fit: cover;
  transition: transform 500ms ease;
}

.collection-card:first-child img {
  object-position: center;
}

.collection-card:last-child img {
  object-position: center 46%;
}

.collection-shade {
  background: rgba(0, 0, 0, 0.35);
}

.collection-card:hover img,
.collection-card:focus-within img {
  transform: scale(1.025);
}

.collection-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 124px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: end;
  gap: 22px;
  padding: 24px 26px;
  color: var(--white);
  background: rgba(8, 9, 11, 0.82);
}

.collection-number {
  color: #9eb8ed;
  font-size: 12px;
  font-weight: 700;
}

.collection-copy small,
.collection-copy strong {
  display: block;
}

.collection-copy small {
  margin-bottom: 6px;
  color: #c9ced6;
  font-size: 12px;
}

.collection-copy strong {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.collection-arrow {
  padding-bottom: 3px;
  font-size: 21px;
}

.range-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-300);
}

.range-footer p {
  max-width: 720px;
  margin: 0;
  color: var(--gray-700);
}

.projects-section {
  background: var(--gray-100);
}

.project-carousel {
  background: var(--black);
}

.project-stage {
  position: relative;
  height: clamp(560px, 50vw, 720px);
  max-height: 720px;
  overflow: hidden;
}

.project-slide,
.project-slide > a,
.project-slide img,
.project-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-slide img {
  object-fit: cover;
}

.project-slide:nth-child(1) img {
  object-position: center 52%;
}

.project-slide:nth-child(2) img {
  object-position: center;
}

.project-shade {
  background: rgba(0, 0, 0, 0.24);
}

.project-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 36px;
  padding: 34px 38px;
  color: var(--white);
  background: rgba(8, 9, 11, 0.78);
}

.project-copy small,
.project-copy strong,
.project-copy > span:last-child {
  display: block;
}

.project-copy small {
  margin-bottom: 8px;
  color: #cfd4db;
  font-size: 12px;
  text-transform: uppercase;
}

.project-copy strong {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.12;
}

.project-copy > span:last-child {
  justify-self: end;
  color: #d8dce2;
  text-align: right;
}

.project-controls {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto auto;
  align-items: center;
  gap: 24px;
  padding: 0 28px;
  color: var(--white);
}

.project-progress {
  height: 2px;
  overflow: hidden;
  background: #4a4f58;
}

.project-progress span {
  width: 25%;
  height: 100%;
  display: block;
  background: var(--blue);
  transition: width 280ms ease;
}

.project-count {
  display: flex;
  gap: 6px;
  margin: 0;
  color: #9fa6b0;
  font-size: 13px;
}

.project-count strong {
  color: var(--white);
}

.project-buttons {
  display: flex;
  border-right: 1px solid #3a3e45;
  border-left: 1px solid #3a3e45;
}

.project-buttons button {
  width: 46px;
  height: 46px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-right: 1px solid #3a3e45;
}

.project-buttons button:last-child {
  border-right: 0;
}

.project-buttons button:hover,
.project-buttons button:focus-visible {
  color: var(--blue);
  background: var(--white);
}

.project-controls .text-link {
  min-width: 110px;
  justify-self: end;
  font-size: 13px;
}

.facts-band {
  padding: 118px 0 0;
  color: var(--white);
  background: var(--black);
}

.facts-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 90px;
  padding-bottom: 82px;
}

.facts-intro h2 {
  grid-column: 2;
  max-width: 860px;
}

.facts-intro .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0;
  border-top: 1px solid #3a3e45;
}

.facts-grid div {
  min-height: 196px;
  padding: 34px 28px 30px 0;
  border-right: 1px solid #3a3e45;
}

.facts-grid div:not(:first-child) {
  padding-left: 28px;
}

.facts-grid div:last-child {
  border-right: 0;
}

.facts-grid dt {
  margin-bottom: 52px;
  font-size: 40px;
  line-height: 1.1;
}

.facts-grid dd {
  margin: 0;
  color: #aeb4bd;
  font-size: 13px;
}

.inquiry-band {
  padding: 96px 0;
  color: var(--white);
  background: var(--blue);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: end;
  gap: 96px;
}

.inquiry-layout h2 {
  max-width: 700px;
}

.inquiry-layout > div:last-child {
  justify-self: end;
  max-width: 490px;
}

.inquiry-layout > div:last-child p {
  margin-bottom: 26px;
  color: #e5ebf8;
}

.site-footer {
  padding: 72px 0 28px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(140px, 0.7fr));
  gap: 58px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 164px;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 350px;
  color: #aeb4bd;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 6px;
  font-size: 13px;
}

.footer-grid a {
  color: #aeb4bd;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: #7f8792;
  font-size: 11px;
  border-top: 1px solid #2a2d33;
}

.mobile-contact-bar {
  display: none;
}

.modal,
.success-dialog {
  position: fixed;
  z-index: 100;
  inset: 0;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  border: 0;
}

.quote-panel {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: min(610px, 100%);
  height: 100%;
  overflow-y: auto;
  padding: 64px 56px;
  color: var(--ink);
  background: var(--white);
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 28px;
}

.quote-kicker {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.quote-panel h2 {
  margin-bottom: 42px;
  font-size: 46px;
}

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

.form-grid label,
.file-field > span {
  display: block;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  margin-top: 8px;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gray-500);
  border-radius: 0;
}

.form-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.field-wide {
  grid-column: 1 / -1;
}

.file-upload-control {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 9px;
}

.file-upload-control label {
  margin: 0;
  padding: 9px 14px;
  color: var(--ink);
  border: 1px solid var(--gray-500);
  border-radius: 3px;
  cursor: pointer;
}

.file-upload-control span {
  min-width: 0;
  overflow: hidden;
  color: var(--gray-700);
  text-overflow: ellipsis;
  white-space: nowrap;
}

#quote-attachment {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.file-field small {
  display: block;
  margin-top: 5px;
  color: var(--gray-700);
}

.success-dialog {
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.72);
}

.success-dialog section {
  width: min(100%, 470px);
  padding: 44px;
  color: var(--ink);
  background: var(--white);
  border-top: 4px solid var(--blue);
}

.success-rule {
  width: 34px;
  height: 3px;
  display: block;
  margin-bottom: 30px;
  background: var(--blue);
}

.success-dialog h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.success-dialog p {
  margin-bottom: 30px;
  color: var(--gray-700);
  font-size: 17px;
}

/* Homepage v2: project-led hero, direct category routes and compact project proof. */
.hero-slides,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 900ms;
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 7000ms linear;
}

.hero-slide.is-active img {
  transform: scale(1.045);
}

.hero-slide:nth-child(1) img {
  object-position: center 52%;
}

.hero-slide:nth-child(2) img {
  object-position: center 48%;
}

.hero-slide:nth-child(3) img {
  object-position: center 52%;
}

.hero-slide .hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.35) 46%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
  z-index: 3;
  padding-bottom: 86px;
  pointer-events: none;
}

.hero-content > * {
  pointer-events: auto;
}

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 72px;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: #e2e5e9;
  font-size: 18px;
}

.hero-caption {
  z-index: 2;
  right: 36px;
  bottom: 76px;
  max-width: 520px;
  color: #e4e7eb;
  text-align: right;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: 36px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.hero-progress {
  width: 120px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.38);
}

.hero-progress span {
  width: 33.333%;
  height: 100%;
  display: block;
  background: var(--white);
  transition: width 320ms ease;
}

.hero-count {
  min-width: 48px;
  display: flex;
  gap: 5px;
  margin: 0;
  color: #c4c9d0;
  font-size: 11px;
}

.hero-count strong {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-buttons button {
  width: 38px;
  height: 36px;
  padding: 0;
  color: var(--white);
  background: rgba(8, 9, 11, 0.26);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-buttons button:last-child {
  border-right: 0;
}

.hero-buttons button:hover,
.hero-buttons button:focus-visible {
  color: var(--black);
  background: var(--white);
}

.new-products-section {
  padding: 104px 0 110px;
  background: var(--gray-100);
}

.new-products-heading {
  margin-bottom: 44px;
}

.new-products-heading .eyebrow {
  margin-bottom: 18px;
}

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

.new-product-card {
  min-width: 0;
}

.new-product-card > a {
  height: 100%;
  display: grid;
  grid-template-rows: auto 118px;
}

.new-product-media {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
}

.new-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.new-product-card:hover .new-product-media img,
.new-product-card:focus-within .new-product-media img {
  transform: scale(1.035);
}

.new-product-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 19px 44px 17px 2px;
  border-top: 1px solid var(--gray-300);
}

.new-product-copy small,
.new-product-copy strong,
.new-product-meta {
  display: block;
}

.new-product-copy small {
  margin-bottom: 5px;
  color: var(--gray-700);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.new-product-copy strong {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.new-product-meta {
  color: var(--gray-700);
  font-size: 12px;
}

.new-product-arrow {
  position: absolute;
  right: 3px;
  bottom: 19px;
  font-size: 18px;
}

.new-product-card:hover .new-product-copy strong,
.new-product-card:focus-within .new-product-copy strong {
  color: var(--blue);
}

.range-section {
  padding: 92px 0 56px;
}

.projects-section {
  padding: 78px 0 118px;
}

.range-intro > .eyebrow {
  margin-bottom: 30px;
}

.range-portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
}

.range-portal {
  position: relative;
  min-width: 0;
  border: 1px solid #20242a;
  border-radius: 16px;
  overflow: hidden;
  background: var(--black);
}

.range-portal > a {
  height: 100%;
  display: grid;
  grid-template-rows: 116px auto;
}

.range-portal-copy {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 62px 24px 28px;
  color: var(--white);
  background: var(--black);
  transition: color 220ms ease, background 220ms ease;
}

.range-portal:hover .range-portal-copy,
.range-portal:focus-within .range-portal-copy {
  color: var(--white);
  background: #15181d;
}

.range-portal strong,
.range-portal small {
  display: block;
}

.range-portal strong {
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.range-portal-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  transition: color 220ms ease, transform 220ms ease;
}

.range-portal:hover .range-portal-arrow,
.range-portal:focus-within .range-portal-arrow {
  color: var(--blue);
  transform: translate3d(3px, -50%, 0);
}

.range-portal-media {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.18 / 1;
  display: block;
  overflow: hidden;
  background: var(--gray-200);
}

.range-portal-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0), rgba(8, 9, 11, 0.64));
}

.range-portal-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 23px;
  left: 28px;
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.range-portal-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.range-portal:nth-child(1) img {
  object-position: center;
}

.range-portal:nth-child(2) img {
  object-position: center 48%;
}

.range-portal:nth-child(3) img {
  object-position: 44% center;
}

.range-portal:hover img,
.range-portal:focus-within img {
  transform: scale(1.035);
}

.range-footer {
  justify-content: flex-end;
  margin-top: 28px;
}

.projects-heading {
  grid-template-columns: minmax(0, 760px);
}

.projects-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 34px;
}

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

.project-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 0.77 / 1;
  overflow: hidden;
  background: var(--gray-900);
  border-radius: 16px;
}

.project-card > a,
.project-card img,
.project-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:nth-child(1) img {
  object-position: 43% center;
}

.project-card:nth-child(2) img {
  object-position: 48% center;
}

.project-card:nth-child(3) img {
  object-position: 52% center;
}

.project-card:nth-child(4) img {
  object-position: 50% center;
}

.project-card-shade {
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.03) 30%, rgba(8, 9, 11, 0.86) 100%);
}

.project-card-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px 22px;
  color: var(--white);
}

.project-card-arrow {
  position: absolute;
  right: 22px;
  bottom: 27px;
  font-size: 19px;
}

.project-card-copy small,
.project-card-copy strong {
  display: block;
}

.project-card-copy small {
  margin-bottom: 8px;
  color: #d4d8de;
  font-size: 10px;
  text-transform: uppercase;
}

.project-card-copy strong {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.14;
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.035);
}

.js .site-header .brand,
.js .site-header .desktop-nav > *,
.js .site-header .header-actions > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: header-content-in 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .site-header .brand {
  animation-delay: 40ms;
}

.js .site-header .desktop-nav > :nth-child(1) { animation-delay: 100ms; }
.js .site-header .desktop-nav > :nth-child(2) { animation-delay: 145ms; }
.js .site-header .desktop-nav > :nth-child(3) { animation-delay: 190ms; }
.js .site-header .desktop-nav > :nth-child(4) { animation-delay: 235ms; }
.js .site-header .desktop-nav > :nth-child(5) { animation-delay: 280ms; }
.js .site-header .desktop-nav > :nth-child(6) { animation-delay: 325ms; }
.js .site-header .desktop-nav > :nth-child(7) { animation-delay: 370ms; }
.js .site-header .desktop-nav > :nth-child(8) { animation-delay: 415ms; }
.js .site-header .header-actions > :nth-child(1) { animation-delay: 460ms; }
.js .site-header .header-actions > :nth-child(2) { animation-delay: 505ms; }

.js .mobile-nav:not([hidden]) > * {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: header-content-in 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .mobile-nav:not([hidden]) > :nth-child(1) { animation-delay: 0ms; }
.js .mobile-nav:not([hidden]) > :nth-child(2) { animation-delay: 45ms; }
.js .mobile-nav:not([hidden]) > :nth-child(3) { animation-delay: 90ms; }
.js .mobile-nav:not([hidden]) > :nth-child(4) { animation-delay: 135ms; }
.js .mobile-nav:not([hidden]) > :nth-child(5) { animation-delay: 180ms; }
.js .mobile-nav:not([hidden]) > :nth-child(6) { animation-delay: 225ms; }
.js .mobile-nav:not([hidden]) > :nth-child(7) { animation-delay: 270ms; }
.js .mobile-nav:not([hidden]) > :nth-child(8) { animation-delay: 315ms; }
.js .mobile-nav:not([hidden]) > :nth-child(9) { animation-delay: 360ms; }

@keyframes header-content-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.js .hero-content h1,
.js .hero-content .hero-copy,
.js .hero-content .text-link {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  animation: hero-content-in 880ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-content h1 {
  animation-delay: 100ms;
}

.js .hero-content .hero-copy {
  animation-delay: 180ms;
}

.js .hero-content .text-link {
  animation-delay: 255ms;
}

.js .hero-slides {
  opacity: 0;
  filter: brightness(0.82) saturate(0.9);
  animation: hero-visual-in 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-slide.is-active .hero-caption,
.js .hero-controls {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  animation: hero-support-in 700ms cubic-bezier(0.22, 1, 0.36, 1) 240ms forwards;
}

.js .hero-controls {
  animation-delay: 310ms;
}

@keyframes hero-content-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-visual-in {
  to {
    opacity: 1;
    filter: brightness(1) saturate(1);
  }
}

@keyframes hero-support-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 840ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js [data-reveal="media"] {
  transform: translate3d(0, 36px, 0);
}

.js [data-reveal="feature"] {
  transform: translate3d(0, 38px, 0) scale(0.99);
  transition-duration: 760ms, 920ms;
}

.js [data-reveal="feature"] [data-reveal-media] {
  opacity: 0.82;
  filter: blur(2px) saturate(0.92);
  transform: scale(1.012);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 880ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-delay, 0ms) + 35ms);
  will-change: opacity, filter, transform;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.js [data-reveal="feature"].is-visible [data-reveal-media] {
  opacity: 1;
  filter: none;
  transform: scale(1);
  will-change: auto;
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
    gap: 18px;
    padding-inline: 24px;
  }

  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav > a,
  .nav-item > a {
    font-size: 12px;
  }

  .header-quote {
    padding-inline: 14px;
    font-size: 14px;
  }
}

@media (max-width: 1110px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-quote {
    display: none;
  }

  .header-actions {
    grid-column: 3;
  }

  .menu-button {
    display: block;
  }

  .js .site-header .header-actions > :nth-child(1) {
    animation-delay: 90ms;
  }

  .js .site-header .header-actions > :nth-child(3) {
    animation-delay: 150ms;
  }

  .section-heading,
  .facts-intro,
  .inquiry-layout {
    gap: 52px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 70px;
  }

  h2 {
    font-size: 44px;
  }

  .content-width {
    width: min(calc(100% - 48px), var(--content));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .collection-card:first-child,
  .collection-card:last-child {
    aspect-ratio: 1.5 / 1;
  }

  .facts-intro {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .facts-intro h2,
  .facts-intro .eyebrow {
    grid-column: 1;
    grid-row: auto;
  }

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

  .facts-grid div:nth-child(2) {
    border-right: 0;
  }

  .facts-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid #3a3e45;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .inquiry-layout > div:last-child {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, minmax(120px, 0.6fr));
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }

  .hero-content h1 {
    max-width: 680px;
    font-size: 58px;
  }

  .new-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 36px;
  }

  .new-product-card:nth-child(odd) {
    --reveal-delay: 0ms !important;
  }

  .new-product-card:nth-child(even) {
    --reveal-delay: 90ms !important;
  }

  .range-portal strong {
    font-size: 23px;
  }

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

  .project-card {
    aspect-ratio: 0.9 / 1;
  }

  .project-card:nth-child(odd) {
    --reveal-delay: 0ms !important;
  }

  .project-card:nth-child(even) {
    --reveal-delay: 90ms !important;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-bottom: 58px;
    font-size: 15px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .content-width {
    width: calc(100% - 32px);
  }

  .site-header {
    min-height: var(--header-height);
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    padding: 10px 16px;
  }

  .brand {
    width: 132px;
  }

  .header-actions {
    gap: 5px;
  }

  .language-button {
    min-width: 52px;
    padding-inline: 3px;
  }

  .language-button .language-mark,
  .language-button .chevron {
    display: none;
  }

  .language-menu {
    right: -48px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .mobile-nav {
    max-height: calc(100svh - 70px);
    overflow-y: auto;
  }

  .hero {
    min-height: 560px;
    height: clamp(560px, calc(100svh - 126px), 680px);
  }

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

  .hero-shade {
    background: rgba(0, 0, 0, 0.53);
  }

  .hero-content {
    padding-bottom: 62px;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero-statement {
    margin-bottom: 14px;
    font-size: 28px;
  }

  .hero-copy {
    max-width: 340px;
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-caption {
    right: 16px;
    bottom: 17px;
    max-width: calc(100% - 32px);
    font-size: 10px;
  }

  .range-section,
  .projects-section {
    padding: 78px 0;
  }

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

  .section-heading > p {
    font-size: 15px;
  }

  .range-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .project-stage {
    height: 560px;
  }

  .project-copy {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 20px;
  }

  .project-copy strong {
    font-size: 27px;
  }

  .project-copy > span:last-child {
    justify-self: start;
    text-align: left;
    font-size: 13px;
  }

  .project-controls {
    min-height: 68px;
    grid-template-columns: minmax(70px, 1fr) auto auto;
    gap: 12px;
    padding: 0 12px;
  }

  .project-progress {
    min-width: 70px;
  }

  .project-buttons button {
    width: 40px;
    height: 44px;
  }

  .project-controls .text-link {
    display: none;
  }

  .facts-band {
    padding-top: 78px;
  }

  .facts-intro {
    padding-bottom: 46px;
  }

  .facts-grid div,
  .facts-grid div:not(:first-child) {
    min-height: 154px;
    padding: 24px 14px 22px 0;
  }

  .facts-grid div:nth-child(even) {
    padding-left: 16px;
  }

  .facts-grid dt {
    margin-bottom: 34px;
    font-size: 28px;
  }

  .facts-grid div:last-child dt {
    font-size: 23px;
  }

  .inquiry-band {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-contact-bar {
    position: fixed;
    z-index: 65;
    right: 0;
    bottom: 0;
    left: 0;
    height: 58px;
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    color: var(--white);
    background: var(--black);
    border-top: 1px solid #343840;
  }

  .mobile-contact-bar a,
  .mobile-contact-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    border: 0;
    border-right: 1px solid #343840;
    font-size: 12px;
    font-weight: 600;
  }

  .mobile-contact-bar button {
    color: var(--black);
    background: var(--white);
    border-right: 0;
  }

  .quote-panel {
    padding: 56px 24px 80px;
  }

  .quote-panel h2 {
    margin-bottom: 34px;
    font-size: 36px;
  }

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

  .field-wide {
    grid-column: 1;
  }

  .success-dialog section {
    padding: 34px 28px;
  }

  .success-dialog h2 {
    font-size: 32px;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .hero-content h1 {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: 44px;
  }

  .hero-copy {
    max-width: 335px;
    margin-bottom: 22px;
    font-size: 15px;
  }

  .hero-slide:nth-child(1) img {
    object-position: 61% center;
  }

  .hero-slide:nth-child(2) img {
    object-position: 53% center;
  }

  .hero-caption {
    display: none;
  }

  .hero-controls {
    right: 16px;
    bottom: 18px;
    left: 16px;
    justify-content: flex-end;
    gap: 10px;
  }

  .hero-progress {
    width: auto;
    min-width: 56px;
    max-width: 96px;
    flex: 1;
  }

  .hero-buttons button {
    width: 34px;
    height: 34px;
  }

  .new-products-section {
    padding: 64px 0 70px;
  }

  .new-products-heading {
    margin-bottom: 30px;
  }

  .new-products-heading h2 {
    font-size: 36px;
  }

  .new-products-grid {
    gap: 28px 12px;
  }

  .new-product-card > a {
    grid-template-rows: auto 108px;
  }

  .new-product-copy {
    padding: 15px 30px 13px 0;
  }

  .new-product-copy small {
    min-height: 2.7em;
    margin-bottom: 4px;
    font-size: 9px;
    line-height: 1.35;
  }

  .new-product-copy strong {
    font-size: 20px;
  }

  .new-product-meta {
    font-size: 10px;
  }

  .new-product-arrow {
    right: 0;
    bottom: 15px;
    font-size: 16px;
  }

  .range-section {
    padding: 64px 0 40px;
  }

  .projects-section {
    padding: 56px 0 78px;
  }

  .range-intro > .eyebrow {
    margin-bottom: 22px;
  }

  .range-portal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .range-portal {
    --reveal-delay: 0ms !important;
  }

  .range-portal > a {
    grid-template-rows: 86px auto;
  }

  .range-portal-copy {
    padding: 20px 54px 20px 20px;
  }

  .range-portal strong {
    margin-bottom: 0;
    font-size: 22px;
  }

  .range-portal-arrow {
    right: 20px;
  }

  .range-portal-media {
    aspect-ratio: 1.35 / 1;
  }

  .range-portal-caption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 12px;
  }

  .project-grid {
    gap: 10px;
  }

  .project-card {
    aspect-ratio: 0.72 / 1;
  }

  .project-card-copy {
    padding: 16px 13px;
  }

  .project-card-copy small {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .project-card-copy strong {
    font-size: 17px;
    line-height: 1.16;
  }

  .project-card-arrow {
    right: 13px;
    bottom: 17px;
    font-size: 16px;
  }

  .projects-footer {
    margin-top: 24px;
  }

  .inquiry-layout > div {
    --reveal-delay: 0ms !important;
  }
}

/* Homepage V2.2: wide portfolio slider with an image-derived reflection. */
.portfolio-hero {
  min-height: 0;
  height: auto;
  display: grid;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 24px;
  padding: 46px 0 48px;
  box-sizing: border-box;
  background: #08090b;
}

.hero-intro {
  position: relative;
  z-index: 2;
}

.hero-intro,
.portfolio-slider {
  width: calc(100% - 72px);
  max-width: none;
}

.hero-intro h1 {
  margin: 0 0 8px;
  color: #9ea5b0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-slogan {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.portfolio-slider {
  position: relative;
  isolation: isolate;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 3px;
  gap: 14px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.portfolio-slider::after {
  position: absolute;
  z-index: 0;
  top: calc(100% - 16px);
  bottom: auto;
  left: 23%;
  width: 54%;
  height: 82px;
  content: "";
  pointer-events: none;
  opacity: 0.4;
  background-image: var(--portfolio-reflection-image);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  border-radius: 50%;
  filter: blur(25px) saturate(1.38);
  mix-blend-mode: screen;
  transform: scaleY(0.48);
  transform-origin: center top;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
  transition: background-image 420ms ease, opacity 420ms ease;
}

.portfolio-track {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: max(320px, calc(75svh - 247px));
  min-width: 0;
  min-height: 0;
  display: block;
  outline: 0;
}

.portfolio-track:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.portfolio-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9%;
  min-width: 0;
  overflow: hidden;
  opacity: 0.72;
  background: #15181d;
  border: 0;
  border-radius: 14px;
  transition:
    left 860ms cubic-bezier(0.22, 1, 0.36, 1),
    width 860ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease;
}

.portfolio-slide[data-position="-2"] {
  left: 0;
  width: 5%;
}

.portfolio-slide[data-position="-1"] {
  left: 6%;
  width: 8%;
}

.portfolio-slide[data-position="0"] {
  left: 15%;
  width: 70%;
}

.portfolio-slide[data-position="1"] {
  left: 86%;
  width: 8%;
}

.portfolio-slide[data-position="2"] {
  left: 95%;
  width: 5%;
}

.portfolio-slide.is-wrapping {
  transition: none;
}

.portfolio-slide.is-active {
  opacity: 1;
}

.portfolio-slide > img,
.portfolio-slide-shade,
.portfolio-slide-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-slide > img {
  display: block;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
}

.portfolio-slide:nth-child(1) > img {
  object-position: 43% center;
}

.portfolio-slide:nth-child(2) > img {
  object-position: 49% center;
}

.portfolio-slide:nth-child(3) > img {
  object-position: center 50%;
}

.portfolio-slide:nth-child(4) > img {
  object-position: 52% center;
}

.portfolio-slide:nth-child(5) > img {
  object-position: 50% center;
}

.portfolio-slide.is-active > img {
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1.018);
}

.portfolio-slide-shade {
  z-index: 1;
  display: block;
  pointer-events: none;
  background: rgba(8, 9, 11, 0.53);
  transition: background 620ms ease;
}

.portfolio-slide.is-active .portfolio-slide-shade {
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.05) 44%, rgba(8, 9, 11, 0.27) 100%);
}

.portfolio-slide-select {
  z-index: 2;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.portfolio-rail-label {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  writing-mode: vertical-rl;
  transform: translateX(-50%) rotate(180deg);
  transition: opacity 240ms ease;
}

.portfolio-slide.is-active .portfolio-rail-label {
  opacity: 0;
}

.portfolio-slide-copy {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 20px;
  left: 50%;
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 14px 20px;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: translate3d(-50%, 12px, 0);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.portfolio-slide.is-active .portfolio-slide-copy {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
  transition:
    opacity 460ms cubic-bezier(0.22, 1, 0.36, 1) 860ms,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1) 860ms,
    visibility 0s linear 860ms;
}

.portfolio-slide-copy h2 {
  max-width: 100%;
  margin: 0 0 7px;
  color: var(--white);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.18;
}

.portfolio-slide-copy h2 span {
  color: #b7c9ef;
}

.portfolio-slide-copy p {
  margin: 0 0 14px;
  color: #d8dce3;
  font-size: 14px;
}

.portfolio-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.portfolio-button:hover,
.portfolio-button:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.portfolio-timeline {
  position: relative;
  z-index: 2;
  width: min(240px, 42%);
  height: 3px;
  justify-self: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.portfolio-timeline span {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--blue);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left center;
}

.portfolio-timeline span.is-running {
  animation: portfolio-autoplay 5000ms linear forwards;
}

@keyframes portfolio-autoplay {
  to {
    transform: scaleX(1);
  }
}

.js .hero-intro h1,
.js .hero-intro .hero-slogan,
.js .portfolio-slider {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: portfolio-hero-in 820ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.js .hero-intro .hero-slogan {
  animation-delay: 80ms;
}

.js .portfolio-slider {
  filter: blur(2px);
  transform: translate3d(0, 30px, 0) scale(0.99);
  animation-name: portfolio-stage-in;
  animation-duration: 940ms;
  animation-delay: 150ms;
}

@keyframes portfolio-hero-in {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes portfolio-stage-in {
  to {
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 900px) {
  .portfolio-hero {
    gap: 20px;
    padding: 38px 0 42px;
  }

  .hero-intro,
  .portfolio-slider {
    width: calc(100% - 48px);
  }

  .portfolio-track {
    max-height: max(300px, calc(75svh - 229px));
  }

  .portfolio-slide[data-position="-2"] {
    left: 0;
    width: 5%;
  }

  .portfolio-slide[data-position="-1"] {
    left: 6%;
    width: 8%;
  }

  .portfolio-slide[data-position="0"] {
    left: 15%;
    width: 70%;
  }

  .portfolio-slide[data-position="1"] {
    left: 86%;
    width: 8%;
  }

  .portfolio-slide[data-position="2"] {
    left: 95%;
    width: 5%;
  }

  .portfolio-slide-copy {
    bottom: 14px;
    padding: 16px;
  }

  .portfolio-slide-copy h2 {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .portfolio-hero {
    gap: 18px;
    padding: 30px 0 34px;
  }

  .hero-intro h1 {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .hero-intro {
    width: calc(100% - 32px);
  }

  .portfolio-slider {
    width: calc(100% - 20px);
    gap: 11px;
    padding: 0;
    border-radius: 0;
  }

  .portfolio-slider::after {
    top: calc(100% - 12px);
    bottom: auto;
    left: 20%;
    width: 60%;
    height: 58px;
    opacity: 0.3;
    filter: blur(21px) saturate(1.22);
    transform: scaleY(0.5);
  }

  .portfolio-track {
    max-height: max(260px, calc(75svh - 193px));
    min-height: 0;
  }

  .portfolio-slide {
    border-radius: 9px;
  }

  .portfolio-slide[data-position="-2"] {
    left: 0;
    width: 5%;
  }

  .portfolio-slide[data-position="-1"] {
    left: 6%;
    width: 8%;
  }

  .portfolio-slide[data-position="0"] {
    left: 15%;
    width: 70%;
  }

  .portfolio-slide[data-position="1"] {
    left: 86%;
    width: 8%;
  }

  .portfolio-slide[data-position="2"] {
    left: 95%;
    width: 5%;
  }

  .portfolio-rail-label {
    display: none;
  }

  .portfolio-slide-copy {
    bottom: 7px;
    width: 82%;
    padding: 11px 8px;
  }

  .portfolio-slide-copy h2 {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.2;
  }

  .portfolio-slide-copy p {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .portfolio-button {
    min-height: 32px;
    gap: 7px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .portfolio-timeline {
    width: 120px;
  }

  .js .portfolio-slider {
    filter: none;
  }
}

@media (orientation: portrait) {
  .portfolio-track {
    aspect-ratio: 1.05 / 1;
  }
}

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

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

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

  .js [data-reveal="feature"] [data-reveal-media] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .js .hero-content h1,
  .js .hero-content .hero-copy,
  .js .hero-content .text-link {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js .hero-slides,
  .js .hero-slide.is-active .hero-caption,
  .js .hero-controls {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .js .hero-intro h1,
  .js .hero-intro .hero-slogan,
  .js .portfolio-slider {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .portfolio-slide,
  .portfolio-slide > img,
  .portfolio-slide-shade,
  .portfolio-slide-copy,
  .portfolio-rail-label {
    transition: none;
  }

  .portfolio-timeline span,
  .portfolio-timeline span.is-running {
    animation: none;
    transform: scaleX(1);
  }

  .js .site-header .brand,
  .js .site-header .desktop-nav > *,
  .js .site-header .header-actions > *,
  .js .mobile-nav:not([hidden]) > * {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
  }
}
